Skip to content

Commit

Permalink
Updates SDK to v2.1181.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jul 22, 2022
1 parent b17693f commit 17127b3
Show file tree
Hide file tree
Showing 26 changed files with 1,354 additions and 317 deletions.
32 changes: 32 additions & 0 deletions .changes/2.1181.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"type": "feature",
"category": "Account",
"description": "This release enables customers to manage the primary contact information for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/API_Operations.html"
},
{
"type": "feature",
"category": "EC2",
"description": "Added support for EC2 M1 Mac instances. For more information, please visit aws.amazon.com/mac."
},
{
"type": "feature",
"category": "IotDeviceAdvisor",
"description": "Added new service feature (Early access only) - Long Duration Test, where customers can test the IoT device to observe how it behaves when the device is in operation for longer period."
},
{
"type": "feature",
"category": "MediaLive",
"description": "Link devices now support remote rebooting. Link devices now support maintenance windows. Maintenance windows allow a Link device to install software updates without stopping the MediaLive channel. The channel will experience a brief loss of input from the device while updates are installed."
},
{
"type": "feature",
"category": "RDS",
"description": "This release adds the \"ModifyActivityStream\" API with support for audit policy state locking and unlocking."
},
{
"type": "feature",
"category": "TranscribeService",
"description": "Remove unsupported language codes for StartTranscriptionJob and update VocabularyFileUri for UpdateMedicalVocabulary"
}
]
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1180.0-->
<!--LATEST=2.1181.0-->
<!--ENTRYINSERT-->

## 2.1181.0
* feature: Account: This release enables customers to manage the primary contact information for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/API_Operations.html
* feature: EC2: Added support for EC2 M1 Mac instances. For more information, please visit aws.amazon.com/mac.
* feature: IotDeviceAdvisor: Added new service feature (Early access only) - Long Duration Test, where customers can test the IoT device to observe how it behaves when the device is in operation for longer period.
* feature: MediaLive: Link devices now support remote rebooting. Link devices now support maintenance windows. Maintenance windows allow a Link device to install software updates without stopping the MediaLive channel. The channel will experience a brief loss of input from the device while updates are installed.
* feature: RDS: This release adds the "ModifyActivityStream" API with support for audit policy state locking and unlocking.
* feature: TranscribeService: Remove unsupported language codes for StartTranscriptionJob and update VocabularyFileUri for UpdateMedicalVocabulary

## 2.1180.0
* feature: Athena: This feature allows customers to retrieve runtime statistics for completed queries
* feature: CloudWatch: Adding support for the suppression of Composite Alarm actions
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.1180.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1181.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
101 changes: 101 additions & 0 deletions apis/account-2021-02-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,26 @@
}
}
},
"GetContactInformation": {
"http": {
"requestUri": "/getContactInformation",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"AccountId": {}
}
},
"output": {
"type": "structure",
"members": {
"ContactInformation": {
"shape": "Sd"
}
}
}
},
"PutAlternateContact": {
"http": {
"requestUri": "/putAlternateContact",
Expand Down Expand Up @@ -100,6 +120,25 @@
}
},
"idempotent": true
},
"PutContactInformation": {
"http": {
"requestUri": "/putContactInformation",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"ContactInformation"
],
"members": {
"AccountId": {},
"ContactInformation": {
"shape": "Sd"
}
}
},
"idempotent": true
}
},
"shapes": {
Expand All @@ -118,6 +157,68 @@
"Sa": {
"type": "string",
"sensitive": true
},
"Sd": {
"type": "structure",
"required": [
"AddressLine1",
"City",
"CountryCode",
"FullName",
"PhoneNumber",
"PostalCode"
],
"members": {
"AddressLine1": {
"shape": "Se"
},
"AddressLine2": {
"shape": "Se"
},
"AddressLine3": {
"shape": "Se"
},
"City": {
"type": "string",
"sensitive": true
},
"CompanyName": {
"type": "string",
"sensitive": true
},
"CountryCode": {
"type": "string",
"sensitive": true
},
"DistrictOrCounty": {
"type": "string",
"sensitive": true
},
"FullName": {
"type": "string",
"sensitive": true
},
"PhoneNumber": {
"type": "string",
"sensitive": true
},
"PostalCode": {
"type": "string",
"sensitive": true
},
"StateOrRegion": {
"type": "string",
"sensitive": true
},
"WebsiteUrl": {
"type": "string",
"sensitive": true
}
}
},
"Se": {
"type": "string",
"sensitive": true
}
}
}
Loading

0 comments on commit 17127b3

Please sign in to comment.