Update for big April release, currently on PTR!

This commit is contained in:
GrapeshotGames 2019-04-05 18:19:41 -04:00
parent e866207ebd
commit 490a455cfd
82 changed files with 44286 additions and 6442 deletions

View file

@ -68,6 +68,18 @@ namespace AtlasGridDataLibrary
[DefaultValue("")]
public string HttpAPIKey = "";
[DefaultValue("")]
public string S3URL = "";
[DefaultValue("")]
public string S3AccessKeyId = "";
[DefaultValue("")]
public string S3SecretKey = "";
[DefaultValue("")]
public string S3BucketName = "";
[DefaultValue("")]
public string S3KeyPrefix = "";
@ -77,6 +89,10 @@ namespace AtlasGridDataLibrary
MaxFileHistory = In.MaxFileHistory;
HttpBackupURL = In.HttpBackupURL;
HttpAPIKey = In.HttpAPIKey;
S3URL = In.S3URL;
S3AccessKeyId = In.S3AccessKeyId;
S3SecretKey = In.S3SecretKey;
S3BucketName = In.S3BucketName;
S3KeyPrefix = In.S3KeyPrefix;
}
}