Skip to content

Commit

Permalink
Updates SDK to v2.912.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 21, 2021
1 parent a70e690 commit 61df8c6
Show file tree
Hide file tree
Showing 21 changed files with 707 additions and 358 deletions.
12 changes: 12 additions & 0 deletions .changes/2.912.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "EFS",
"description": "EFS now supports account preferences. Utilizing the new capability, users can customize some aspects of their experience using EFS APIs and the EFS Console. The first preference clients are able to set is whether to start using longer File System and Mount Target IDs before EFS migrates to such IDs."
},
{
"type": "feature",
"category": "ForecastService",
"description": "Updated attribute statistics in DescribeDatasetImportJob response to support Long values"
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.911.0-->
<!--LATEST=2.912.0-->
<!--ENTRYINSERT-->

## 2.912.0
* feature: EFS: EFS now supports account preferences. Utilizing the new capability, users can customize some aspects of their experience using EFS APIs and the EFS Console. The first preference clients are able to set is whether to start using longer File System and Mount Target IDs before EFS migrates to such IDs.
* feature: ForecastService: Updated attribute statistics in DescribeDatasetImportJob response to support Long values

## 2.911.0
* feature: LexModelsV2: Customers can now use resource-based policies to control access to their Lex V2 bots. This release adds APIs to attach and manage permissions for a bot or a bot alias. For details, see: https://docs.aws.amazon.com/lexv2/latest/dg/security_iam_service-with-iam.html
* feature: Personalize: Added new API to stop a solution version creation that is pending or in progress for Amazon Personalize
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.911.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.912.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
89 changes: 74 additions & 15 deletions apis/elasticfilesystem-2015-02-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,31 @@
}
}
},
"DescribeAccountPreferences": {
"http": {
"method": "GET",
"requestUri": "/2015-02-01/account-preferences",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"NextToken": {},
"MaxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"ResourceIdPreference": {
"shape": "S1s"
},
"NextToken": {}
}
}
},
"DescribeBackupPolicy": {
"http": {
"method": "GET",
Expand All @@ -286,7 +311,7 @@
}
},
"output": {
"shape": "S1r"
"shape": "S1x"
}
},
"DescribeFileSystemPolicy": {
Expand All @@ -308,7 +333,7 @@
}
},
"output": {
"shape": "S1v"
"shape": "S21"
}
},
"DescribeFileSystems": {
Expand Down Expand Up @@ -372,7 +397,7 @@
}
},
"output": {
"shape": "S23"
"shape": "S29"
}
},
"DescribeMountTargetSecurityGroups": {
Expand Down Expand Up @@ -553,6 +578,30 @@
}
}
},
"PutAccountPreferences": {
"http": {
"method": "PUT",
"requestUri": "/2015-02-01/account-preferences",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"ResourceIdType"
],
"members": {
"ResourceIdType": {}
}
},
"output": {
"type": "structure",
"members": {
"ResourceIdPreference": {
"shape": "S1s"
}
}
}
},
"PutBackupPolicy": {
"http": {
"method": "PUT",
Expand All @@ -571,12 +620,12 @@
"locationName": "FileSystemId"
},
"BackupPolicy": {
"shape": "S1s"
"shape": "S1y"
}
}
},
"output": {
"shape": "S1r"
"shape": "S1x"
}
},
"PutFileSystemPolicy": {
Expand All @@ -603,7 +652,7 @@
}
},
"output": {
"shape": "S1v"
"shape": "S21"
}
},
"PutLifecycleConfiguration": {
Expand All @@ -624,12 +673,12 @@
"locationName": "FileSystemId"
},
"LifecyclePolicies": {
"shape": "S24"
"shape": "S2a"
}
}
},
"output": {
"shape": "S23"
"shape": "S29"
}
},
"TagResource": {
Expand Down Expand Up @@ -877,15 +926,25 @@
"type": "list",
"member": {}
},
"S1r": {
"S1s": {
"type": "structure",
"members": {
"ResourceIdType": {},
"Resources": {
"type": "list",
"member": {}
}
}
},
"S1x": {
"type": "structure",
"members": {
"BackupPolicy": {
"shape": "S1s"
"shape": "S1y"
}
}
},
"S1s": {
"S1y": {
"type": "structure",
"required": [
"Status"
Expand All @@ -894,22 +953,22 @@
"Status": {}
}
},
"S1v": {
"S21": {
"type": "structure",
"members": {
"FileSystemId": {},
"Policy": {}
}
},
"S23": {
"S29": {
"type": "structure",
"members": {
"LifecyclePolicies": {
"shape": "S24"
"shape": "S2a"
}
}
},
"S24": {
"S2a": {
"type": "list",
"member": {
"type": "structure",
Expand Down
Loading

0 comments on commit 61df8c6

Please sign in to comment.