Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.36.19 #3720

Merged
merged 1 commit into from Dec 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
Release v1.36.19 (2020-12-31)
===

### Service Client Updates
* `service/servicecatalog`: Updates service API and documentation
* Enhanced Service Catalog DescribeProvisioningParameters API to return new parameter constraints, i.e., MinLength, MaxLength, MinValue, MaxValue, ConstraintDescription and AllowedPattern

Release v1.36.18 (2020-12-30)
===

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.36.18"
const SDKVersion = "1.36.19"
12 changes: 9 additions & 3 deletions models/apis/servicecatalog/2015-12-10/api-2.json
Expand Up @@ -1230,10 +1230,9 @@
"member":{"shape":"Tag"},
"max":20
},
"AllowedValue":{"type":"string"},
"AllowedValues":{
"type":"list",
"member":{"shape":"AllowedValue"}
"member":{"shape":"String"}
},
"ApproximateCount":{"type":"integer"},
"AssociateBudgetWithResourceInput":{
Expand Down Expand Up @@ -2818,7 +2817,13 @@
"ParameterConstraints":{
"type":"structure",
"members":{
"AllowedValues":{"shape":"AllowedValues"}
"AllowedValues":{"shape":"AllowedValues"},
"AllowedPattern":{"shape":"String"},
"ConstraintDescription":{"shape":"String"},
"MaxLength":{"shape":"String"},
"MinLength":{"shape":"String"},
"MaxValue":{"shape":"String"},
"MinValue":{"shape":"String"}
}
},
"ParameterKey":{
Expand Down Expand Up @@ -3870,6 +3875,7 @@
"type":"string",
"pattern":"[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*"
},
"String":{"type":"string"},
"SuccessfulShares":{
"type":"list",
"member":{"shape":"AccountId"}
Expand Down
18 changes: 12 additions & 6 deletions models/apis/servicecatalog/2015-12-10/docs-2.json
Expand Up @@ -234,12 +234,6 @@
"UpdateProductInput$AddTags": "<p>The tags to add to the product.</p>"
}
},
"AllowedValue": {
"base": null,
"refs": {
"AllowedValues$member": null
}
},
"AllowedValues": {
"base": null,
"refs": {
Expand Down Expand Up @@ -2873,6 +2867,18 @@
"ProvisionedProductPlanDetails$StatusMessage": "<p>The status message.</p>"
}
},
"String": {
"base": null,
"refs": {
"AllowedValues$member": null,
"ParameterConstraints$AllowedPattern": "<p>A regular expression that represents the patterns that allow for <code>String</code> types. The pattern must match the entire parameter value provided.</p>",
"ParameterConstraints$ConstraintDescription": "<p>A string that explains a constraint when the constraint is violated. For example, without a constraint description, a parameter that has an allowed pattern of <code>[A-Za-z0-9]+</code> displays the following error message when the user specifies an invalid value:</p> <p> <code>Malformed input-Parameter MyParameter must match pattern [A-Za-z0-9]+</code> </p> <p>By adding a constraint description, such as must only contain letters (uppercase and lowercase) and numbers, you can display the following customized error message:</p> <p> <code>Malformed input-Parameter MyParameter must only contain uppercase and lowercase letters and numbers.</code> </p>",
"ParameterConstraints$MaxLength": "<p>An integer value that determines the largest number of characters you want to allow for <code>String</code> types. </p>",
"ParameterConstraints$MinLength": "<p>An integer value that determines the smallest number of characters you want to allow for <code>String</code> types.</p>",
"ParameterConstraints$MaxValue": "<p>A numeric value that determines the largest numeric value you want to allow for <code>Number</code> types.</p>",
"ParameterConstraints$MinValue": "<p>A numeric value that determines the smallest numeric value you want to allow for <code>Number</code> types. </p>"
}
},
"SuccessfulShares": {
"base": null,
"refs": {
Expand Down
71 changes: 71 additions & 0 deletions service/servicecatalog/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.