Skip to content

Commit

Permalink
Updates SDK to v2.422.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 14, 2019
1 parent f9d4d67 commit 6eb50b2
Show file tree
Hide file tree
Showing 32 changed files with 2,717 additions and 1,538 deletions.
37 changes: 37 additions & 0 deletions .changes/2.422.0.json
@@ -0,0 +1,37 @@
[
{
"type": "feature",
"category": "ACM",
"description": "AWS Certificate Manager has added a new API action, RenewCertificate. RenewCertificate causes ACM to force the renewal of any private certificate which has been exported."
},
{
"type": "feature",
"category": "ACMPCA",
"description": "AWS Certificate Manager (ACM) Private CA allows customers to manage permissions on their CAs. Customers can grant or deny AWS Certificate Manager permission to renew exported private certificates."
},
{
"type": "feature",
"category": "CloudWatch",
"description": "New Messages parameter for the output of GetMetricData, to support new metric search functionality."
},
{
"type": "feature",
"category": "ConfigService",
"description": "AWS Config - add ability to tag, untag and list tags for ConfigRule, ConfigurationAggregator and AggregationAuthorization resource types. Tags can be used for various scenarios including tag based authorization."
},
{
"type": "feature",
"category": "EC2",
"description": "This release adds tagging support for Dedicated Host Reservations."
},
{
"type": "feature",
"category": "Iot",
"description": "In this release, AWS IoT introduces support for tagging OTA Update and Stream resources. For more information about tagging, see the AWS IoT Developer Guide."
},
{
"type": "feature",
"category": "SageMaker",
"description": "Amazon SageMaker Automatic Model Tuning now supports random search and hyperparameter scaling."
}
]
11 changes: 10 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,16 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.421.0-->
<!--LATEST=2.422.0-->
<!--ENTRYINSERT-->

## 2.422.0
* feature: ACM: AWS Certificate Manager has added a new API action, RenewCertificate. RenewCertificate causes ACM to force the renewal of any private certificate which has been exported.
* feature: ACMPCA: AWS Certificate Manager (ACM) Private CA allows customers to manage permissions on their CAs. Customers can grant or deny AWS Certificate Manager permission to renew exported private certificates.
* feature: CloudWatch: New Messages parameter for the output of GetMetricData, to support new metric search functionality.
* feature: ConfigService: AWS Config - add ability to tag, untag and list tags for ConfigRule, ConfigurationAggregator and AggregationAuthorization resource types. Tags can be used for various scenarios including tag based authorization.
* feature: EC2: This release adds tagging support for Dedicated Host Reservations.
* feature: Iot: In this release, AWS IoT introduces support for tagging OTA Update and Stream resources. For more information about tagging, see the AWS IoT Developer Guide.
* feature: SageMaker: Amazon SageMaker Automatic Model Tuning now supports random search and hyperparameter scaling.

## 2.421.0
* feature: ConfigService: Config released Remediation APIs allowing Remediation of Config Rules

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -23,7 +23,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.421.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.422.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
18 changes: 17 additions & 1 deletion apis/acm-2015-12-08.min.json
Expand Up @@ -98,12 +98,17 @@
"type": "structure",
"required": [
"RenewalStatus",
"DomainValidationOptions"
"DomainValidationOptions",
"UpdatedAt"
],
"members": {
"RenewalStatus": {},
"DomainValidationOptions": {
"shape": "Sd"
},
"RenewalStatusReason": {},
"UpdatedAt": {
"type": "timestamp"
}
}
},
Expand Down Expand Up @@ -291,6 +296,17 @@
}
}
},
"RenewCertificate": {
"input": {
"type": "structure",
"required": [
"CertificateArn"
],
"members": {
"CertificateArn": {}
}
}
},
"RequestCertificate": {
"input": {
"type": "structure",
Expand Down
1,812 changes: 969 additions & 843 deletions apis/acm-2015-12-08.normal.json

Large diffs are not rendered by default.

81 changes: 78 additions & 3 deletions apis/acm-pca-2017-08-22.min.json
Expand Up @@ -65,6 +65,24 @@
},
"idempotent": true
},
"CreatePermission": {
"input": {
"type": "structure",
"required": [
"CertificateAuthorityArn",
"Principal",
"Actions"
],
"members": {
"CertificateAuthorityArn": {},
"Principal": {},
"SourceAccount": {},
"Actions": {
"shape": "S10"
}
}
}
},
"DeleteCertificateAuthority": {
"input": {
"type": "structure",
Expand All @@ -79,6 +97,20 @@
}
}
},
"DeletePermission": {
"input": {
"type": "structure",
"required": [
"CertificateAuthorityArn",
"Principal"
],
"members": {
"CertificateAuthorityArn": {},
"Principal": {},
"SourceAccount": {}
}
}
},
"DescribeCertificateAuthority": {
"input": {
"type": "structure",
Expand All @@ -93,7 +125,7 @@
"type": "structure",
"members": {
"CertificateAuthority": {
"shape": "S11"
"shape": "S17"
}
}
}
Expand Down Expand Up @@ -251,7 +283,46 @@
"CertificateAuthorities": {
"type": "list",
"member": {
"shape": "S11"
"shape": "S17"
}
},
"NextToken": {}
}
}
},
"ListPermissions": {
"input": {
"type": "structure",
"required": [
"CertificateAuthorityArn"
],
"members": {
"CertificateAuthorityArn": {},
"NextToken": {},
"MaxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"Permissions": {
"type": "list",
"member": {
"type": "structure",
"members": {
"CertificateAuthorityArn": {},
"CreatedAt": {
"type": "timestamp"
},
"Principal": {},
"SourceAccount": {},
"Actions": {
"shape": "S10"
},
"Policy": {}
}
}
},
"NextToken": {}
Expand Down Expand Up @@ -420,7 +491,11 @@
}
}
},
"S11": {
"S10": {
"type": "list",
"member": {}
},
"S17": {
"type": "structure",
"members": {
"Arn": {},
Expand Down

0 comments on commit 6eb50b2

Please sign in to comment.