Skip to content

Commit

Permalink
Release v1.34.6 (2020-08-17) (#3488)
Browse files Browse the repository at this point in the history
Release v1.34.6 (2020-08-17)
===

### Service Client Updates
* `service/acm`: Updates service API
  * ACM provides support for the new Private CA feature Cross-account CA sharing. ACM users can issue certificates signed by a private CA belonging to another account where the CA was shared with them.
* `service/acm-pca`: Updates service API and documentation
* `service/ecr`: Updates service API and documentation
  * This feature adds support for pushing and pulling Open Container Initiative (OCI) artifacts.
* `service/elasticloadbalancing`: Updates service documentation
* `service/elasticloadbalancingv2`: Updates service documentation
* `service/kinesis`: Updates service API and documentation
  * Introducing ShardFilter for ListShards API to filter the shards using a position in the stream, and ChildShards support for GetRecords and SubscribeToShard API to discover children shards on shard end
* `service/quicksight`: Updates service API, documentation, and paginators
  * Amazon QuickSight now supports programmatic creation and management of analyses with new APIs.
* `service/robomaker`: Updates service API, documentation, and paginators
  • Loading branch information
aws-sdk-go-automation committed Aug 17, 2020
1 parent 7f259aa commit 27ae184
Show file tree
Hide file tree
Showing 34 changed files with 16,986 additions and 5,847 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,20 @@
Release v1.34.6 (2020-08-17)
===

### Service Client Updates
* `service/acm`: Updates service API
* ACM provides support for the new Private CA feature Cross-account CA sharing. ACM users can issue certificates signed by a private CA belonging to another account where the CA was shared with them.
* `service/acm-pca`: Updates service API and documentation
* `service/ecr`: Updates service API and documentation
* This feature adds support for pushing and pulling Open Container Initiative (OCI) artifacts.
* `service/elasticloadbalancing`: Updates service documentation
* `service/elasticloadbalancingv2`: Updates service documentation
* `service/kinesis`: Updates service API and documentation
* Introducing ShardFilter for ListShards API to filter the shards using a position in the stream, and ChildShards support for GetRecords and SubscribeToShard API to discover children shards on shard end
* `service/quicksight`: Updates service API, documentation, and paginators
* Amazon QuickSight now supports programmatic creation and management of analyses with new APIs.
* `service/robomaker`: Updates service API, documentation, and paginators

Release v1.34.5 (2020-08-14)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.34.5"
const SDKVersion = "1.34.6"
146 changes: 129 additions & 17 deletions models/apis/acm-pca/2017-08-22/api-2.json
Expand Up @@ -91,6 +91,22 @@
{"shape":"RequestFailedException"}
]
},
"DeletePolicy":{
"name":"DeletePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeletePolicyRequest"},
"errors":[
{"shape":"ConcurrentModificationException"},
{"shape":"InvalidArnException"},
{"shape":"InvalidStateException"},
{"shape":"LockoutPreventedException"},
{"shape":"RequestFailedException"},
{"shape":"ResourceNotFoundException"}
]
},
"DescribeCertificateAuthority":{
"name":"DescribeCertificateAuthority",
"http":{
Expand Down Expand Up @@ -164,6 +180,21 @@
{"shape":"InvalidStateException"}
]
},
"GetPolicy":{
"name":"GetPolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetPolicyRequest"},
"output":{"shape":"GetPolicyResponse"},
"errors":[
{"shape":"InvalidArnException"},
{"shape":"InvalidStateException"},
{"shape":"RequestFailedException"},
{"shape":"ResourceNotFoundException"}
]
},
"ImportCertificateAuthorityCertificate":{
"name":"ImportCertificateAuthorityCertificate",
"http":{
Expand Down Expand Up @@ -243,6 +274,23 @@
{"shape":"InvalidStateException"}
]
},
"PutPolicy":{
"name":"PutPolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutPolicyRequest"},
"errors":[
{"shape":"ConcurrentModificationException"},
{"shape":"InvalidArnException"},
{"shape":"InvalidStateException"},
{"shape":"InvalidPolicyException"},
{"shape":"LockoutPreventedException"},
{"shape":"RequestFailedException"},
{"shape":"ResourceNotFoundException"}
]
},
"RestoreCertificateAuthority":{
"name":"RestoreCertificateAuthority",
"http":{
Expand Down Expand Up @@ -322,16 +370,22 @@
}
},
"shapes":{
"ASN1PrintableString64":{
"type":"string",
"max":64,
"min":0,
"pattern":"[a-zA-Z0-9'()+-.?:/= ]*"
},
"ASN1Subject":{
"type":"structure",
"members":{
"Country":{"shape":"CountryCodeString"},
"Organization":{"shape":"String64"},
"OrganizationalUnit":{"shape":"String64"},
"DistinguishedNameQualifier":{"shape":"DistinguishedNameQualifierString"},
"DistinguishedNameQualifier":{"shape":"ASN1PrintableString64"},
"State":{"shape":"String128"},
"CommonName":{"shape":"String64"},
"SerialNumber":{"shape":"String64"},
"SerialNumber":{"shape":"ASN1PrintableString64"},
"Locality":{"shape":"String128"},
"Title":{"shape":"String64"},
"Surname":{"shape":"String40"},
Expand All @@ -341,6 +395,12 @@
"GenerationQualifier":{"shape":"String3"}
}
},
"AWSPolicy":{
"type":"string",
"max":20480,
"min":1,
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
},
"AccountId":{
"type":"string",
"max":12,
Expand All @@ -365,7 +425,7 @@
"type":"string",
"max":200,
"min":5,
"pattern":"arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]*:[\\w+=,.@-]+(/[\\w+=/,.@-]+)*"
"pattern":"arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]*:[\\w+=,.@-]+(/[\\w+=,.@-]+)*"
},
"AuditReportId":{
"type":"string",
Expand Down Expand Up @@ -397,6 +457,7 @@
"type":"structure",
"members":{
"Arn":{"shape":"Arn"},
"OwnerAccount":{"shape":"AccountId"},
"CreatedAt":{"shape":"TStamp"},
"LastStateChangeAt":{"shape":"TStamp"},
"Type":{"shape":"CertificateAuthorityType"},
Expand Down Expand Up @@ -470,6 +531,8 @@
},
"CountryCodeString":{
"type":"string",
"max":2,
"min":2,
"pattern":"[A-Za-z]{2}"
},
"CreateCertificateAuthorityAuditReportRequest":{
Expand All @@ -481,15 +544,15 @@
],
"members":{
"CertificateAuthorityArn":{"shape":"Arn"},
"S3BucketName":{"shape":"String"},
"S3BucketName":{"shape":"S3BucketName"},
"AuditReportResponseFormat":{"shape":"AuditReportResponseFormat"}
}
},
"CreateCertificateAuthorityAuditReportResponse":{
"type":"structure",
"members":{
"AuditReportId":{"shape":"AuditReportId"},
"S3Key":{"shape":"String"}
"S3Key":{"shape":"S3Key"}
}
},
"CreateCertificateAuthorityRequest":{
Expand Down Expand Up @@ -568,6 +631,13 @@
"SourceAccount":{"shape":"AccountId"}
}
},
"DeletePolicyRequest":{
"type":"structure",
"required":["ResourceArn"],
"members":{
"ResourceArn":{"shape":"Arn"}
}
},
"DescribeCertificateAuthorityAuditReportRequest":{
"type":"structure",
"required":[
Expand All @@ -583,8 +653,8 @@
"type":"structure",
"members":{
"AuditReportStatus":{"shape":"AuditReportStatus"},
"S3BucketName":{"shape":"String"},
"S3Key":{"shape":"String"},
"S3BucketName":{"shape":"S3BucketName"},
"S3Key":{"shape":"S3Key"},
"CreatedAt":{"shape":"TStamp"}
}
},
Expand All @@ -601,12 +671,6 @@
"CertificateAuthority":{"shape":"CertificateAuthority"}
}
},
"DistinguishedNameQualifierString":{
"type":"string",
"max":64,
"min":0,
"pattern":"[a-zA-Z0-9'()+-.?:/= ]*"
},
"FailureReason":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -660,6 +724,19 @@
"CertificateChain":{"shape":"CertificateChain"}
}
},
"GetPolicyRequest":{
"type":"structure",
"required":["ResourceArn"],
"members":{
"ResourceArn":{"shape":"Arn"}
}
},
"GetPolicyResponse":{
"type":"structure",
"members":{
"Policy":{"shape":"AWSPolicy"}
}
},
"IdempotencyToken":{
"type":"string",
"max":36,
Expand Down Expand Up @@ -775,7 +852,8 @@
"type":"structure",
"members":{
"NextToken":{"shape":"NextToken"},
"MaxResults":{"shape":"MaxResults"}
"MaxResults":{"shape":"MaxResults"},
"ResourceOwner":{"shape":"ResourceOwner"}
}
},
"ListCertificateAuthoritiesResponse":{
Expand Down Expand Up @@ -817,6 +895,13 @@
"NextToken":{"shape":"NextToken"}
}
},
"LockoutPreventedException":{
"type":"structure",
"members":{
"message":{"shape":"String"}
},
"exception":true
},
"MalformedCSRException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -851,10 +936,10 @@
"members":{
"CertificateAuthorityArn":{"shape":"Arn"},
"CreatedAt":{"shape":"TStamp"},
"Principal":{"shape":"String"},
"SourceAccount":{"shape":"String"},
"Principal":{"shape":"Principal"},
"SourceAccount":{"shape":"AccountId"},
"Actions":{"shape":"ActionList"},
"Policy":{"shape":"String"}
"Policy":{"shape":"AWSPolicy"}
}
},
"PermissionAlreadyExistsException":{
Expand All @@ -879,6 +964,17 @@
"min":0,
"pattern":"^[^*]+$"
},
"PutPolicyRequest":{
"type":"structure",
"required":[
"ResourceArn",
"Policy"
],
"members":{
"ResourceArn":{"shape":"Arn"},
"Policy":{"shape":"AWSPolicy"}
}
},
"RequestAlreadyProcessedException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -907,6 +1003,13 @@
},
"exception":true
},
"ResourceOwner":{
"type":"string",
"enum":[
"SELF",
"OTHER_ACCOUNTS"
]
},
"RestoreCertificateAuthorityRequest":{
"type":"structure",
"required":["CertificateAuthorityArn"],
Expand Down Expand Up @@ -946,6 +1049,15 @@
"RevocationReason":{"shape":"RevocationReason"}
}
},
"S3BucketName":{
"type":"string",
"max":63,
"min":3
},
"S3Key":{
"type":"string",
"max":1024
},
"SigningAlgorithm":{
"type":"string",
"enum":[
Expand Down

0 comments on commit 27ae184

Please sign in to comment.