aws-sdk-servicecatalog 1.52.0 → 1.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3746171ad09274f81345ab8816d3188411b0c37977524385e9fe3eaf98998819
4
- data.tar.gz: 8b2cb2f5f378104704aa46e880b61791970e8a97653223b27c991ae14e1facc5
3
+ metadata.gz: '08bfb722431b9c56c12e81bfee6ac0959ab3dadf3c5a89aa9561ecdeeddf5306'
4
+ data.tar.gz: 787373b8ae69fe44c24cb0d204fca7d4ec9ce1b73f59d49d21096ea4d6cf8a79
5
5
  SHA512:
6
- metadata.gz: af95e9f10914cb1fe58d87adf8a4ade4c6c590c5f29a8b964884741e2a50e83e7564a27b6452b6f9f0c59c9734edcf99e835782587507e4232db53a4feca0646
7
- data.tar.gz: 80df418e1da304a7437ae5860e686231abd4eb770d0e6b236e80b1600f0f5572365af702ffc07c76139ee669b115a51a6cf656f9c5dc0664e525b59fa1d773a6
6
+ metadata.gz: 6b5d2913cd11aff20fa151bf76a41f606c08d28eb6401e6be02db95a2b5952e384fdf35a549c093dab3ff71efd07f4324db48afef9f87fd5c794aadee5485f1a
7
+ data.tar.gz: 5b95e67c62b0c3e5dff0312cf574c86e40a511b61b36c9d8f11408d0fd26798989c466c55ad6326c36acf1bffbd097b964168614a73ba71f310f42accd75b6ca
@@ -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.52.0'
51
+ GEM_VERSION = '1.53.0'
52
52
 
53
53
  end
@@ -5273,8 +5273,11 @@ module Aws::ServiceCatalog
5273
5273
  # update the launch role that is associated with a provisioned product.
5274
5274
  # This role is used when an end-user calls a provisioning operation such
5275
5275
  # as `UpdateProvisionedProduct`, `TerminateProvisionedProduct`, or
5276
- # `ExecuteProvisionedProductServiceAction`. Only an ARN role is valid. A
5277
- # user ARN is invalid.
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.
5278
5281
  #
5279
5282
  # The `OWNER` key accepts user ARNs and role ARNs. The owner is the user
5280
5283
  # that has permission to see, update, terminate, and execute service
@@ -5533,7 +5536,7 @@ module Aws::ServiceCatalog
5533
5536
  params: params,
5534
5537
  config: config)
5535
5538
  context[:gem_name] = 'aws-sdk-servicecatalog'
5536
- context[:gem_version] = '1.52.0'
5539
+ context[:gem_version] = '1.53.0'
5537
5540
  Seahorse::Client::Request.new(handlers, context)
5538
5541
  end
5539
5542
 
@@ -232,6 +232,7 @@ module Aws::ServiceCatalog
232
232
  OutputKeys = Shapes::ListShape.new(name: 'OutputKeys')
233
233
  OutputValue = Shapes::StringShape.new(name: 'OutputValue')
234
234
  PageSize = Shapes::IntegerShape.new(name: 'PageSize')
235
+ PageSizeMax100 = Shapes::IntegerShape.new(name: 'PageSizeMax100')
235
236
  PageToken = Shapes::StringShape.new(name: 'PageToken')
236
237
  ParameterConstraints = Shapes::StructureShape.new(name: 'ParameterConstraints')
237
238
  ParameterKey = Shapes::StringShape.new(name: 'ParameterKey')
@@ -1046,7 +1047,7 @@ module Aws::ServiceCatalog
1046
1047
  ListPortfolioAccessInput.add_member(:portfolio_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "PortfolioId"))
1047
1048
  ListPortfolioAccessInput.add_member(:organization_parent_id, Shapes::ShapeRef.new(shape: Id, location_name: "OrganizationParentId"))
1048
1049
  ListPortfolioAccessInput.add_member(:page_token, Shapes::ShapeRef.new(shape: PageToken, location_name: "PageToken"))
1049
- ListPortfolioAccessInput.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
1050
+ ListPortfolioAccessInput.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSizeMax100, location_name: "PageSize"))
1050
1051
  ListPortfolioAccessInput.struct_class = Types::ListPortfolioAccessInput
1051
1052
 
1052
1053
  ListPortfolioAccessOutput.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIds, location_name: "AccountIds"))
@@ -7199,8 +7199,12 @@ module Aws::ServiceCatalog
7199
7199
  # product. This role is used when an end-user calls a provisioning
7200
7200
  # operation such as `UpdateProvisionedProduct`,
7201
7201
  # `TerminateProvisionedProduct`, or
7202
- # `ExecuteProvisionedProductServiceAction`. Only an ARN role is valid.
7203
- # A user ARN is invalid.
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.
7204
7208
  #
7205
7209
  # The `OWNER` key accepts user ARNs and role ARNs. The owner is the
7206
7210
  # 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.52.0
4
+ version: 1.53.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-10-22 00:00:00.000000000 Z
11
+ date: 2020-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core