aws-sdk-servicecatalog 1.53.0 → 1.54.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08bfb722431b9c56c12e81bfee6ac0959ab3dadf3c5a89aa9561ecdeeddf5306'
4
- data.tar.gz: 787373b8ae69fe44c24cb0d204fca7d4ec9ce1b73f59d49d21096ea4d6cf8a79
3
+ metadata.gz: 4b494341b2a32e5bbbb2ed4c472ea9976d02c47c9606ce62390c52896e664c1c
4
+ data.tar.gz: 30747df77e8bb0e5885964aa8198f1e05bebc6228dfe28693f83b6e5d19aa21c
5
5
  SHA512:
6
- metadata.gz: 6b5d2913cd11aff20fa151bf76a41f606c08d28eb6401e6be02db95a2b5952e384fdf35a549c093dab3ff71efd07f4324db48afef9f87fd5c794aadee5485f1a
7
- data.tar.gz: 5b95e67c62b0c3e5dff0312cf574c86e40a511b61b36c9d8f11408d0fd26798989c466c55ad6326c36acf1bffbd097b964168614a73ba71f310f42accd75b6ca
6
+ metadata.gz: b0d7e9c7e3d87e599de5e7b8747a5ebc5525d8a2c8b9410bd14f6bd69f8f3bc1e26336f6cfaddafde584162b4515ceb5a4ac907987519e58afaf33a87e247b8c
7
+ data.tar.gz: 856531f2886b0a483aa0981d649df38ea5667ecfc348bbfd8b248dfaff1bdf0dd4ab97c984d7f3181f6669f79009a3b85b223add64ba0808deceb7869134c0d7
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
48
48
  # @!group service
49
49
  module Aws::ServiceCatalog
50
50
 
51
- GEM_VERSION = '1.53.0'
51
+ GEM_VERSION = '1.54.0'
52
52
 
53
53
  end
@@ -5268,16 +5268,17 @@ module Aws::ServiceCatalog
5268
5268
  # @option params [required, Hash<String,String>] :provisioned_product_properties
5269
5269
  # A map that contains the provisioned product properties to be updated.
5270
5270
  #
5271
- # The `LAUNCH_ROLE` key accepts user ARNs and role ARNs. This key allows
5272
- # an administrator to call `UpdateProvisionedProductProperties` to
5273
- # update the launch role that is associated with a provisioned product.
5274
- # This role is used when an end-user calls a provisioning operation such
5275
- # as `UpdateProvisionedProduct`, `TerminateProvisionedProduct`, or
5276
- # `ExecuteProvisionedProductServiceAction`. Only an ARN role or `null`
5277
- # is valid. A user ARN is invalid. For example, if an admin user passes
5278
- # `null` as the value for the key `LAUNCH_ROLE`, the admin removes the
5279
- # launch role that is associated with the provisioned product. As a
5280
- # result, the end user operations use the credentials of the end user.
5271
+ # The `LAUNCH_ROLE` key accepts role ARNs. This key allows an
5272
+ # administrator to call `UpdateProvisionedProductProperties` to update
5273
+ # the launch role that is associated with a provisioned product. This
5274
+ # role is used when an end user calls a provisioning operation such as
5275
+ # `UpdateProvisionedProduct`, `TerminateProvisionedProduct`, or
5276
+ # `ExecuteProvisionedProductServiceAction`. Only a role ARN or an empty
5277
+ # string `""` is valid. A user ARN is invalid. if an admin user passes
5278
+ # an empty string `""` as the value for the key `LAUNCH_ROLE`, the admin
5279
+ # removes the launch role that is associated with the provisioned
5280
+ # product. As a result, the end user operations use the credentials of
5281
+ # the end user.
5281
5282
  #
5282
5283
  # The `OWNER` key accepts user ARNs and role ARNs. The owner is the user
5283
5284
  # that has permission to see, update, terminate, and execute service
@@ -5536,7 +5537,7 @@ module Aws::ServiceCatalog
5536
5537
  params: params,
5537
5538
  config: config)
5538
5539
  context[:gem_name] = 'aws-sdk-servicecatalog'
5539
- context[:gem_version] = '1.53.0'
5540
+ context[:gem_version] = '1.54.0'
5540
5541
  Seahorse::Client::Request.new(handlers, context)
5541
5542
  end
5542
5543
 
@@ -7193,18 +7193,17 @@ module Aws::ServiceCatalog
7193
7193
  # A map that contains the provisioned product properties to be
7194
7194
  # updated.
7195
7195
  #
7196
- # The `LAUNCH_ROLE` key accepts user ARNs and role ARNs. This key
7197
- # allows an administrator to call `UpdateProvisionedProductProperties`
7198
- # to update the launch role that is associated with a provisioned
7199
- # product. This role is used when an end-user calls a provisioning
7200
- # operation such as `UpdateProvisionedProduct`,
7201
- # `TerminateProvisionedProduct`, or
7202
- # `ExecuteProvisionedProductServiceAction`. Only an ARN role or `null`
7203
- # is valid. A user ARN is invalid. For example, if an admin user
7204
- # passes `null` as the value for the key `LAUNCH_ROLE`, the admin
7205
- # removes the launch role that is associated with the provisioned
7206
- # product. As a result, the end user operations use the credentials of
7207
- # the end user.
7196
+ # The `LAUNCH_ROLE` key accepts role ARNs. This key allows an
7197
+ # administrator to call `UpdateProvisionedProductProperties` to update
7198
+ # the launch role that is associated with a provisioned product. This
7199
+ # role is used when an end user calls a provisioning operation such as
7200
+ # `UpdateProvisionedProduct`, `TerminateProvisionedProduct`, or
7201
+ # `ExecuteProvisionedProductServiceAction`. Only a role ARN or an
7202
+ # empty string `""` is valid. A user ARN is invalid. if an admin user
7203
+ # passes an empty string `""` as the value for the key `LAUNCH_ROLE`,
7204
+ # the admin removes the launch role that is associated with the
7205
+ # provisioned product. As a result, the end user operations use the
7206
+ # credentials of the end user.
7208
7207
  #
7209
7208
  # The `OWNER` key accepts user ARNs and role ARNs. The owner is the
7210
7209
  # user that has permission to see, update, terminate, and execute
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-servicecatalog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.53.0
4
+ version: 1.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-04 00:00:00.000000000 Z
11
+ date: 2020-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core