Skip to content

Commit ca72ed3

Browse files
author
AWS
committed
AWS Service Catalog Update: An Admin can now update the launch role associated with a Provisioned Product. Admins and End Users can now view the launch role associated with a Provisioned Product.
1 parent 6d32a50 commit ca72ed3

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Service Catalog",
4+
"description": "An Admin can now update the launch role associated with a Provisioned Product. Admins and End Users can now view the launch role associated with a Provisioned Product."
5+
}

services/servicecatalog/src/main/resources/codegen-resources/service-2.json

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2479,11 +2479,11 @@
24792479
},
24802480
"Id":{
24812481
"shape":"Id",
2482-
"documentation":"<p>The provisioned product identifier.</p>"
2482+
"documentation":"<p>The provisioned product identifier. You must provide the name or ID, but not both.</p> <p>If you do not provide a name or ID, or you provide both name and ID, an <code>InvalidParametersException</code> will occur.</p>"
24832483
},
24842484
"Name":{
24852485
"shape":"ProvisionedProductName",
2486-
"documentation":"<p>The name of the provisioned product.</p>"
2486+
"documentation":"<p>The name of the provisioned product. You must provide the name or ID, but not both.</p> <p>If you do not provide a name or ID, or you provide both name and ID, an <code>InvalidParametersException</code> will occur.</p>"
24872487
}
24882488
},
24892489
"documentation":"DescribeProvisionedProductAPI input structure. AcceptLanguage - [Optional] The language code for localization. Id - [Optional] The provisioned product identifier. Name - [Optional] Another provisioned product identifier. Customers must provide either Id or Name."
@@ -4227,7 +4227,10 @@
42274227
},
42284228
"PropertyKey":{
42294229
"type":"string",
4230-
"enum":["OWNER"],
4230+
"enum":[
4231+
"OWNER",
4232+
"LAUNCH_ROLE"
4233+
],
42314234
"max":128,
42324235
"min":1
42334236
},
@@ -4453,6 +4456,10 @@
44534456
"ProvisioningArtifactId":{
44544457
"shape":"Id",
44554458
"documentation":"<p>The identifier of the provisioning artifact. For example, <code>pa-4abcdjnxjj6ne</code>.</p>"
4459+
},
4460+
"LaunchRoleArn":{
4461+
"shape":"RoleArn",
4462+
"documentation":"<p>The ARN of the launch role associated with the provisioned product.</p>"
44564463
}
44574464
},
44584465
"documentation":"<p>Information about a provisioned product.</p>"
@@ -4980,6 +4987,10 @@
49804987
"RecordTags":{
49814988
"shape":"RecordTags",
49824989
"documentation":"<p>One or more tags.</p>"
4990+
},
4991+
"LaunchRoleArn":{
4992+
"shape":"RoleArn",
4993+
"documentation":"<p>The ARN of the launch role associated with the provisioned product.</p>"
49834994
}
49844995
},
49854996
"documentation":"<p>Information about a request operation.</p>"
@@ -5255,6 +5266,12 @@
52555266
"documentation":"<p>Information about a change to a resource attribute.</p>"
52565267
},
52575268
"ResourceType":{"type":"string"},
5269+
"RoleArn":{
5270+
"type":"string",
5271+
"max":1224,
5272+
"min":1,
5273+
"pattern":"arn:[a-z0-9-\\.]{1,63}:iam::[a-z0-9-\\.]{0,63}:role\\/.{0,1023}"
5274+
},
52585275
"ScanProvisionedProductsInput":{
52595276
"type":"structure",
52605277
"members":{
@@ -6105,7 +6122,7 @@
61056122
},
61066123
"ProvisionedProductProperties":{
61076124
"shape":"ProvisionedProductProperties",
6108-
"documentation":"<p>A map that contains the provisioned product properties to be updated.</p> <p>The <code>OWNER</code> key accepts user ARNs and role ARNs. The owner is the user that is allowed to see, update, terminate, and execute service actions in the provisioned product.</p> <p>The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the <code>ListRecordHistory</code> API. The new owner can describe all past records for the provisioned product using the <code>DescribeRecord</code> API. The previous owner can no longer use <code>DescribeRecord</code>, but can still see the product's history from when he was an owner using <code>ListRecordHistory</code>.</p> <p>If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.</p>"
6125+
"documentation":"<p>A map that contains the provisioned product properties to be updated.</p> <p>The <code>LAUNCH_ROLE</code> key accepts user ARNs and role ARNs. This key allows an administrator to call <code>UpdateProvisionedProductProperties</code> to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as <code>UpdateProvisionedProduct</code>, <code>TerminateProvisionedProduct</code>, or <code>ExecuteProvisionedProductServiceAction</code>. Only an ARN role or <code>null</code> is valid. A user ARN is invalid. For example, if an admin user passes <code>null</code> as the value for the key <code>LAUNCH_ROLE</code>, the admin removes the launch role that is associated with the provisioned product. As a result, the end user operations use the credentials of the end user.</p> <p>The <code>OWNER</code> key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.</p> <p>The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the <code>ListRecordHistory</code> API. The new owner can describe all past records for the provisioned product using the <code>DescribeRecord</code> API. The previous owner can no longer use <code>DescribeRecord</code>, but can still see the product's history from when he was an owner using <code>ListRecordHistory</code>.</p> <p>If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.</p>"
61096126
},
61106127
"IdempotencyToken":{
61116128
"shape":"IdempotencyToken",

0 commit comments

Comments
 (0)