Skip to content

Commit

Permalink
Updates SDK to v2.1595.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Apr 8, 2024
1 parent 096b605 commit eb2fa4d
Show file tree
Hide file tree
Showing 23 changed files with 1,168 additions and 92 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1595.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "ControlCatalog",
"description": "This is the initial SDK release for AWS Control Catalog, a central catalog for AWS managed controls. This release includes 3 new APIs - ListDomains, ListObjectives, and ListCommonControls - that vend high-level data to categorize controls across the AWS platform."
},
{
"type": "feature",
"category": "Mgn",
"description": "Added USE_SOURCE as default option to LaunchConfigurationTemplate bootMode parameter."
},
{
"type": "feature",
"category": "NetworkMonitor",
"description": "Updated the allowed monitorName length for CloudWatch Network Monitor."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1594.0-->
<!--LATEST=2.1595.0-->
<!--ENTRYINSERT-->

## 2.1595.0
* feature: ControlCatalog: This is the initial SDK release for AWS Control Catalog, a central catalog for AWS managed controls. This release includes 3 new APIs - ListDomains, ListObjectives, and ListCommonControls - that vend high-level data to categorize controls across the AWS platform.
* feature: Mgn: Added USE_SOURCE as default option to LaunchConfigurationTemplate bootMode parameter.
* feature: NetworkMonitor: Updated the allowed monitorName length for CloudWatch Network Monitor.

## 2.1594.0
* feature: QuickSight: Adding IAMIdentityCenterInstanceArn parameter to CreateAccountSubscription
* feature: ResourceGroups: Added a new QueryErrorCode RESOURCE_TYPE_NOT_SUPPORTED that is returned by the ListGroupResources operation if the group query contains unsupported resource types.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
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.1594.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1595.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
5 changes: 5 additions & 0 deletions apis/controlcatalog-2018-05-10.examples.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}
228 changes: 228 additions & 0 deletions apis/controlcatalog-2018-05-10.min.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,228 @@
{
"version": "2.0",
"metadata": {
"apiVersion": "2018-05-10",
"endpointPrefix": "controlcatalog",
"jsonVersion": "1.1",
"protocol": "rest-json",
"serviceFullName": "AWS Control Catalog",
"serviceId": "ControlCatalog",
"signatureVersion": "v4",
"signingName": "controlcatalog",
"uid": "controlcatalog-2018-05-10"
},
"operations": {
"ListCommonControls": {
"http": {
"requestUri": "/common-controls",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"CommonControlFilter": {
"type": "structure",
"members": {
"Objectives": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Arn": {}
}
}
}
}
},
"MaxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
},
"NextToken": {
"location": "querystring",
"locationName": "nextToken"
}
}
},
"output": {
"type": "structure",
"required": [
"CommonControls"
],
"members": {
"CommonControls": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Arn",
"CreateTime",
"Description",
"Domain",
"LastUpdateTime",
"Name",
"Objective"
],
"members": {
"Arn": {},
"CreateTime": {
"type": "timestamp"
},
"Description": {},
"Domain": {
"shape": "Se"
},
"LastUpdateTime": {
"type": "timestamp"
},
"Name": {},
"Objective": {
"type": "structure",
"members": {
"Arn": {},
"Name": {}
}
}
}
}
},
"NextToken": {}
}
}
},
"ListDomains": {
"http": {
"requestUri": "/domains",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"MaxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
},
"NextToken": {
"location": "querystring",
"locationName": "nextToken"
}
}
},
"output": {
"type": "structure",
"required": [
"Domains"
],
"members": {
"Domains": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Arn",
"CreateTime",
"Description",
"LastUpdateTime",
"Name"
],
"members": {
"Arn": {},
"CreateTime": {
"type": "timestamp"
},
"Description": {},
"LastUpdateTime": {
"type": "timestamp"
},
"Name": {}
}
}
},
"NextToken": {}
}
}
},
"ListObjectives": {
"http": {
"requestUri": "/objectives",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"MaxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
},
"NextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"ObjectiveFilter": {
"type": "structure",
"members": {
"Domains": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Arn": {}
}
}
}
}
}
}
},
"output": {
"type": "structure",
"required": [
"Objectives"
],
"members": {
"NextToken": {},
"Objectives": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Arn",
"CreateTime",
"Description",
"Domain",
"LastUpdateTime",
"Name"
],
"members": {
"Arn": {},
"CreateTime": {
"type": "timestamp"
},
"Description": {},
"Domain": {
"shape": "Se"
},
"LastUpdateTime": {
"type": "timestamp"
},
"Name": {}
}
}
}
}
}
}
},
"shapes": {
"Se": {
"type": "structure",
"members": {
"Arn": {},
"Name": {}
}
}
}
}

0 comments on commit eb2fa4d

Please sign in to comment.