Skip to content

Commit cf6e277

Browse files
Merge pull request #2647 from aws/release
Release v1.19.49
2 parents 2aa0226 + b9b2c2c commit cf6e277

File tree

6 files changed

+80
-6
lines changed

6 files changed

+80
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Release v1.19.49 (2019-06-12)
2+
===
3+
4+
### Service Client Updates
5+
* `service/servicecatalog`: Updates service API and documentation
6+
* This release adds a new field named Guidance to update provisioning artifact, this field can be set by the administrator to provide guidance to end users about which provisioning artifacts to use.
7+
18
Release v1.19.48 (2019-06-11)
29
===
310

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.19.48"
8+
const SDKVersion = "1.19.49"

models/apis/servicecatalog/2015-12-10/api-2.json

+13-3
Original file line numberDiff line numberDiff line change
@@ -2948,7 +2948,8 @@
29482948
"Id":{"shape":"Id"},
29492949
"Name":{"shape":"ProvisioningArtifactName"},
29502950
"Description":{"shape":"ProvisioningArtifactDescription"},
2951-
"CreatedTime":{"shape":"ProvisioningArtifactCreatedTime"}
2951+
"CreatedTime":{"shape":"ProvisioningArtifactCreatedTime"},
2952+
"Guidance":{"shape":"ProvisioningArtifactGuidance"}
29522953
}
29532954
},
29542955
"ProvisioningArtifactActive":{"type":"boolean"},
@@ -2962,13 +2963,21 @@
29622963
"Description":{"shape":"ProvisioningArtifactName"},
29632964
"Type":{"shape":"ProvisioningArtifactType"},
29642965
"CreatedTime":{"shape":"CreationTime"},
2965-
"Active":{"shape":"ProvisioningArtifactActive"}
2966+
"Active":{"shape":"ProvisioningArtifactActive"},
2967+
"Guidance":{"shape":"ProvisioningArtifactGuidance"}
29662968
}
29672969
},
29682970
"ProvisioningArtifactDetails":{
29692971
"type":"list",
29702972
"member":{"shape":"ProvisioningArtifactDetail"}
29712973
},
2974+
"ProvisioningArtifactGuidance":{
2975+
"type":"string",
2976+
"enum":[
2977+
"DEFAULT",
2978+
"DEPRECATED"
2979+
]
2980+
},
29722981
"ProvisioningArtifactInfo":{
29732982
"type":"map",
29742983
"key":{"shape":"ProvisioningArtifactInfoKey"},
@@ -3806,7 +3815,8 @@
38063815
"ProvisioningArtifactId":{"shape":"Id"},
38073816
"Name":{"shape":"ProvisioningArtifactName"},
38083817
"Description":{"shape":"ProvisioningArtifactDescription"},
3809-
"Active":{"shape":"ProvisioningArtifactActive"}
3818+
"Active":{"shape":"ProvisioningArtifactActive"},
3819+
"Guidance":{"shape":"ProvisioningArtifactGuidance"}
38103820
}
38113821
},
38123822
"UpdateProvisioningArtifactOutput":{

models/apis/servicecatalog/2015-12-10/docs-2.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -1981,6 +1981,14 @@
19811981
"ListProvisioningArtifactsOutput$ProvisioningArtifactDetails": "<p>Information about the provisioning artifacts.</p>"
19821982
}
19831983
},
1984+
"ProvisioningArtifactGuidance": {
1985+
"base": null,
1986+
"refs": {
1987+
"ProvisioningArtifact$Guidance": "<p>Information set by the administrator to provide guidance to end users about which provisioning artifacts to use.</p>",
1988+
"ProvisioningArtifactDetail$Guidance": "<p>Information set by the administrator to provide guidance to end users about which provisioning artifacts to use.</p>",
1989+
"UpdateProvisioningArtifactInput$Guidance": "<p>Information set by the administrator to provide guidance to end users about which provisioning artifacts to use.</p> <p>The <code>DEFAULT</code> value indicates that the product version is active.</p> <p>The administrator can set the guidance to <code>DEPRECATED</code> to inform users that the product version is deprecated. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.</p>"
1990+
}
1991+
},
19841992
"ProvisioningArtifactInfo": {
19851993
"base": null,
19861994
"refs": {
@@ -2761,7 +2769,7 @@
27612769
"refs": {
27622770
"CreatePortfolioOutput$Tags": "<p>Information about the tags associated with the portfolio.</p>",
27632771
"CreateProductOutput$Tags": "<p>Information about the tags associated with the product.</p>",
2764-
"CreateProvisionedProductPlanInput$Tags": "<p>One or more tags.</p>",
2772+
"CreateProvisionedProductPlanInput$Tags": "<p>One or more tags.</p> <p>If the plan is for an existing provisioned product, the product must have a <code>RESOURCE_UPDATE</code> constraint with <code>TagUpdatesOnProvisionedProduct</code> set to <code>ALLOWED</code> to allow tag updates.</p>",
27652773
"DescribePortfolioOutput$Tags": "<p>Information about the tags associated with the portfolio.</p>",
27662774
"DescribeProductAsAdminOutput$Tags": "<p>Information about the tags associated with the product.</p>",
27672775
"LaunchPathSummary$Tags": "<p>The tags associated with this product path.</p>",

service/kafka/api.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

service/servicecatalog/api.go

+49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)