Skip to content

Commit

Permalink
Updates SDK to v2.737.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 19, 2020
1 parent 784f93b commit be7bae7
Show file tree
Hide file tree
Showing 24 changed files with 1,627 additions and 219 deletions.
22 changes: 22 additions & 0 deletions .changes/2.737.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "IVS",
"description": "Amazon Interactive Video Service (IVS) now offers customers the ability to create private channels, allowing customers to restrict their streams by channel or viewer."
},
{
"type": "feature",
"category": "LakeFormation",
"description": "Adding additional field in ListPermissions API response to return RAM resource share ARN if a resource were shared through AWS RAM service."
},
{
"type": "feature",
"category": "ServiceCatalog",
"description": "Enhance SearchProvisionedProducts API to allow queries using productName and provisioningArtifactName. Added lastProvisioningRecordId and lastSuccessfulRecordId to Read ProvisionedProduct APIs"
},
{
"type": "feature",
"category": "StorageGateway",
"description": "Added WORM, tape retention lock, and custom pool features for virtual tapes."
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.736.0-->
<!--LATEST=2.737.0-->
<!--ENTRYINSERT-->

## 2.737.0
* feature: IVS: Amazon Interactive Video Service (IVS) now offers customers the ability to create private channels, allowing customers to restrict their streams by channel or viewer.
* feature: LakeFormation: Adding additional field in ListPermissions API response to return RAM resource share ARN if a resource were shared through AWS RAM service.
* feature: ServiceCatalog: Enhance SearchProvisionedProducts API to allow queries using productName and provisioningArtifactName. Added lastProvisioningRecordId and lastSuccessfulRecordId to Read ProvisionedProduct APIs
* feature: StorageGateway: Added WORM, tape retention lock, and custom pool features for virtual tapes.

## 2.736.0
* feature: CognitoIdentityServiceProvider: Adding the option to use a service linked role to publish events to Pinpoint.
* feature: DataSync: DataSync support for filters as input arguments to the ListTasks and ListLocations API calls.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version.
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.736.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.737.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
161 changes: 143 additions & 18 deletions apis/ivs-2020-07-14.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
}
},
"errors": {
"shape": "Sf"
"shape": "Sg"
}
}
}
Expand All @@ -65,11 +65,11 @@
"streamKeys": {
"type": "list",
"member": {
"shape": "Sp"
"shape": "Sq"
}
},
"errors": {
"shape": "Sf"
"shape": "Sg"
}
}
}
Expand All @@ -84,8 +84,11 @@
"name": {},
"latencyMode": {},
"type": {},
"authorized": {
"type": "boolean"
},
"tags": {
"shape": "Sc"
"shape": "Sd"
}
}
},
Expand All @@ -96,7 +99,7 @@
"shape": "S6"
},
"streamKey": {
"shape": "Sp"
"shape": "Sq"
}
}
}
Expand All @@ -113,15 +116,15 @@
"members": {
"channelArn": {},
"tags": {
"shape": "Sc"
"shape": "Sd"
}
}
},
"output": {
"type": "structure",
"members": {
"streamKey": {
"shape": "Sp"
"shape": "Sq"
}
}
}
Expand All @@ -140,6 +143,24 @@
}
}
},
"DeletePlaybackKeyPair": {
"http": {
"requestUri": "/DeletePlaybackKeyPair"
},
"input": {
"type": "structure",
"required": [
"arn"
],
"members": {
"arn": {}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"DeleteStreamKey": {
"http": {
"requestUri": "/DeleteStreamKey"
Expand Down Expand Up @@ -176,6 +197,28 @@
}
}
},
"GetPlaybackKeyPair": {
"http": {
"requestUri": "/GetPlaybackKeyPair"
},
"input": {
"type": "structure",
"required": [
"arn"
],
"members": {
"arn": {}
}
},
"output": {
"type": "structure",
"members": {
"keyPair": {
"shape": "S16"
}
}
}
},
"GetStream": {
"http": {
"requestUri": "/GetStream"
Expand Down Expand Up @@ -227,7 +270,33 @@
"type": "structure",
"members": {
"streamKey": {
"shape": "Sp"
"shape": "Sq"
}
}
}
},
"ImportPlaybackKeyPair": {
"http": {
"requestUri": "/ImportPlaybackKeyPair"
},
"input": {
"type": "structure",
"required": [
"publicKeyMaterial"
],
"members": {
"publicKeyMaterial": {},
"name": {},
"tags": {
"shape": "Sd"
}
}
},
"output": {
"type": "structure",
"members": {
"keyPair": {
"shape": "S16"
}
}
}
Expand Down Expand Up @@ -260,8 +329,47 @@
"arn": {},
"name": {},
"latencyMode": {},
"authorized": {
"type": "boolean"
},
"tags": {
"shape": "Sd"
}
}
}
},
"nextToken": {}
}
}
},
"ListPlaybackKeyPairs": {
"http": {
"requestUri": "/ListPlaybackKeyPairs"
},
"input": {
"type": "structure",
"members": {
"nextToken": {},
"maxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"required": [
"keyPairs"
],
"members": {
"keyPairs": {
"type": "list",
"member": {
"type": "structure",
"members": {
"arn": {},
"name": {},
"tags": {
"shape": "Sc"
"shape": "Sd"
}
}
}
Expand Down Expand Up @@ -301,7 +409,7 @@
"arn": {},
"channelArn": {},
"tags": {
"shape": "Sc"
"shape": "Sd"
}
}
}
Expand Down Expand Up @@ -378,7 +486,7 @@
],
"members": {
"tags": {
"shape": "Sc"
"shape": "Sd"
},
"nextToken": {}
}
Expand Down Expand Up @@ -434,7 +542,7 @@
"locationName": "resourceArn"
},
"tags": {
"shape": "Sc"
"shape": "Sd"
}
}
},
Expand Down Expand Up @@ -485,7 +593,10 @@
"arn": {},
"name": {},
"latencyMode": {},
"type": {}
"type": {},
"authorized": {
"type": "boolean"
}
}
},
"output": {
Expand All @@ -508,17 +619,20 @@
"type": {},
"ingestEndpoint": {},
"playbackUrl": {},
"authorized": {
"type": "boolean"
},
"tags": {
"shape": "Sc"
"shape": "Sd"
}
}
},
"Sc": {
"Sd": {
"type": "map",
"key": {},
"value": {}
},
"Sf": {
"Sg": {
"type": "list",
"member": {
"type": "structure",
Expand All @@ -529,14 +643,25 @@
}
}
},
"Sp": {
"Sq": {
"type": "structure",
"members": {
"arn": {},
"value": {},
"channelArn": {},
"tags": {
"shape": "Sc"
"shape": "Sd"
}
}
},
"S16": {
"type": "structure",
"members": {
"arn": {},
"name": {},
"fingerprint": {},
"tags": {
"shape": "Sd"
}
}
}
Expand Down
Loading

0 comments on commit be7bae7

Please sign in to comment.