Skip to content

Commit

Permalink
Release v1.36.27 (2021-01-14) (#3742)
Browse files Browse the repository at this point in the history
Release v1.36.27 (2021-01-14)
===

### Service Client Updates
* `service/cognito-identity`: Updates service API and documentation
* `service/pinpoint`: Updates service API and documentation
  * Customers can create segments using 5 new filters. Filters can check for the presence of a substring in attributes and can perform time-based comparisons formatted as ISO_INSTANT datetimes.
* `service/s3control`: Updates service API and documentation
  * Amazon S3 Batch Operations now supports restoring objects from the S3 Intelligent-Tiering Archive Access and Deep Archive Access tiers.
* `service/sagemaker`: Updates service API and documentation
  * This feature allows customers to enable/disable model caching on Multi-Model endpoints.
  • Loading branch information
aws-sdk-go-automation authored Jan 14, 2021
1 parent 5c854db commit d55f8d6
Show file tree
Hide file tree
Showing 15 changed files with 1,373 additions and 386 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Release v1.36.27 (2021-01-14)
===

### Service Client Updates
* `service/cognito-identity`: Updates service API and documentation
* `service/pinpoint`: Updates service API and documentation
* Customers can create segments using 5 new filters. Filters can check for the presence of a substring in attributes and can perform time-based comparisons formatted as ISO_INSTANT datetimes.
* `service/s3control`: Updates service API and documentation
* Amazon S3 Batch Operations now supports restoring objects from the S3 Intelligent-Tiering Archive Access and Deep Archive Access tiers.
* `service/sagemaker`: Updates service API and documentation
* This feature allows customers to enable/disable model caching on Multi-Model endpoints.

Release v1.36.26 (2021-01-13)
===

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

// SDKVersion is the version of this SDK
const SDKVersion = "1.36.26"
const SDKVersion = "1.36.27"
94 changes: 93 additions & 1 deletion models/apis/cognito-identity/2014-06-30/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,22 @@
{"shape":"DeveloperUserAlreadyRegisteredException"}
]
},
"GetPrincipalTagAttributeMap":{
"name":"GetPrincipalTagAttributeMap",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetPrincipalTagAttributeMapInput"},
"output":{"shape":"GetPrincipalTagAttributeMapResponse"},
"errors":[
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"NotAuthorizedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalErrorException"}
]
},
"ListIdentities":{
"name":"ListIdentities",
"http":{
Expand Down Expand Up @@ -283,6 +299,22 @@
{"shape":"ConcurrentModificationException"}
]
},
"SetPrincipalTagAttributeMap":{
"name":"SetPrincipalTagAttributeMap",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"SetPrincipalTagAttributeMapInput"},
"output":{"shape":"SetPrincipalTagAttributeMapResponse"},
"errors":[
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"NotAuthorizedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalErrorException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
Expand Down Expand Up @@ -590,6 +622,7 @@
"IdentityPoolId":{"shape":"IdentityPoolId"},
"IdentityId":{"shape":"IdentityId"},
"Logins":{"shape":"LoginsMap"},
"PrincipalTags":{"shape":"PrincipalTags"},
"TokenDuration":{"shape":"TokenDuration"}
}
},
Expand All @@ -615,6 +648,26 @@
"Token":{"shape":"OIDCToken"}
}
},
"GetPrincipalTagAttributeMapInput":{
"type":"structure",
"required":[
"IdentityPoolId",
"IdentityProviderName"
],
"members":{
"IdentityPoolId":{"shape":"IdentityPoolId"},
"IdentityProviderName":{"shape":"IdentityProviderName"}
}
},
"GetPrincipalTagAttributeMapResponse":{
"type":"structure",
"members":{
"IdentityPoolId":{"shape":"IdentityPoolId"},
"IdentityProviderName":{"shape":"IdentityProviderName"},
"UseDefaults":{"shape":"UseDefaults"},
"PrincipalTags":{"shape":"PrincipalTags"}
}
},
"HideDisabled":{"type":"boolean"},
"IdentitiesList":{
"type":"list",
Expand Down Expand Up @@ -892,6 +945,22 @@
"min":1,
"pattern":"[\\S]+"
},
"PrincipalTagID":{
"type":"string",
"max":128,
"min":1
},
"PrincipalTagValue":{
"type":"string",
"max":256,
"min":1
},
"PrincipalTags":{
"type":"map",
"key":{"shape":"PrincipalTagID"},
"value":{"shape":"PrincipalTagValue"},
"max":50
},
"QueryLimit":{
"type":"integer",
"max":60,
Expand Down Expand Up @@ -970,6 +1039,28 @@
"RoleMappings":{"shape":"RoleMappingMap"}
}
},
"SetPrincipalTagAttributeMapInput":{
"type":"structure",
"required":[
"IdentityPoolId",
"IdentityProviderName"
],
"members":{
"IdentityPoolId":{"shape":"IdentityPoolId"},
"IdentityProviderName":{"shape":"IdentityProviderName"},
"UseDefaults":{"shape":"UseDefaults"},
"PrincipalTags":{"shape":"PrincipalTags"}
}
},
"SetPrincipalTagAttributeMapResponse":{
"type":"structure",
"members":{
"IdentityPoolId":{"shape":"IdentityPoolId"},
"IdentityProviderName":{"shape":"IdentityProviderName"},
"UseDefaults":{"shape":"UseDefaults"},
"PrincipalTags":{"shape":"PrincipalTags"}
}
},
"String":{"type":"string"},
"TagKeysType":{
"type":"string",
Expand Down Expand Up @@ -1064,6 +1155,7 @@
"type":"structure",
"members":{
}
}
},
"UseDefaults":{"type":"boolean"}
}
}
81 changes: 70 additions & 11 deletions models/apis/cognito-identity/2014-06-30/docs-2.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion models/apis/pinpoint/2016-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4810,7 +4810,12 @@
"type": "string",
"enum": [
"INCLUSIVE",
"EXCLUSIVE"
"EXCLUSIVE",
"CONTAINS",
"BEFORE",
"AFTER",
"BETWEEN",
"ON"
]
},
"AttributesResource": {
Expand Down
2 changes: 1 addition & 1 deletion models/apis/pinpoint/2016-12-01/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
"AttributeType" : {
"base" : null,
"refs" : {
"AttributeDimension$AttributeType" : "<p>The type of segment dimension to use. Valid values are: INCLUSIVE, endpoints that match the criteria are included in the segment; and, EXCLUSIVE, endpoints that match the criteria are excluded from the segment.</p>"
"AttributeDimension$AttributeType" : "<p><ul><li>INCLUSIVE - endpoints that have attributes matching the values are included in the segment.</li><li>EXCLUSIVE - endpoints that have attributes matching the values are excluded in the segment.</li><li>CONTAINS - endpoints that have attributes' substrings match the values are included in the segment.</li><li>BEFORE - endpoints with attributes read as ISO_INSTANT datetimes before the value are included in the segment.</li><li>AFTER - endpoints with attributes read as ISO_INSTANT datetimes after the value are included in the segment.</li><li>ON - endpoints with attributes read as ISO_INSTANT dates on the value are included in the segment. Time is ignored in this comparison.</li><li>BETWEEN - endpoints with attributes read as ISO_INSTANT datetimes between the values are included in the segment.</li></p>"
}
},
"AttributesResource" : {
Expand Down
5 changes: 4 additions & 1 deletion models/apis/s3control/2018-08-20/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2464,7 +2464,10 @@
"S3InitiateRestoreObjectOperation":{
"type":"structure",
"members":{
"ExpirationInDays":{"shape":"S3ExpirationInDays"},
"ExpirationInDays":{
"shape":"S3ExpirationInDays",
"box":true
},
"GlacierJobTier":{"shape":"S3GlacierJobTier"}
}
},
Expand Down
Loading

0 comments on commit d55f8d6

Please sign in to comment.