aws-sdk-servicecatalog 1.36.0 → 1.41.1

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
- SHA1:
3
- metadata.gz: 9474dd62edd17c2504b38768a27ad049b498321d
4
- data.tar.gz: 6b0855fd760bc87c038dc1187147765e11ef6c6a
2
+ SHA256:
3
+ metadata.gz: f35b1726cb3a67ff84d19a3184c27fc0028e282b67425a7b661e626a639e59d1
4
+ data.tar.gz: e3c0e1f972616b2ab69ff36928e44ffd3b67456462b28f8a703670d92257a53a
5
5
  SHA512:
6
- metadata.gz: 7184bb5c68a15771fc6be6e5197d00ae16d2960ef33d1e890f3712b7c07237b5145e0740072afcc540ae94d2559db40c00e35e9617447a6e9d3052c3b7cb0d10
7
- data.tar.gz: 23c972bbb4acb4b0e9cae868b3701dd6fbe0439200dd965cb23921ea90a5beffc895df46d30c377dbfdeb9233cdd4edbb88cd2bc161834765f7068d50e6d48d9
6
+ metadata.gz: 4707108d4fa8c2056b8e296d05d2eaaa3aef40debff7f090f7dba5e2e70a9e5c2680b68600b65287d00cca2dc454f292ee49687f783360a94d7327bc70a72d10
7
+ data.tar.gz: 46665b3ab7e79e6e41dc15c5bd9db528db322c846c2c001bb680088896f2bbd28179d1b77ba0e9a8b9a9d9a2754fd5f0b48bdb64a967c2796f2fd12e787f456d
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
45
45
  # @service
46
46
  module Aws::ServiceCatalog
47
47
 
48
- GEM_VERSION = '1.36.0'
48
+ GEM_VERSION = '1.41.1'
49
49
 
50
50
  end
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
30
 
@@ -69,6 +70,7 @@ module Aws::ServiceCatalog
69
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
72
74
  add_plugin(Aws::Plugins::SignatureV4)
73
75
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
76
 
@@ -105,7 +107,7 @@ module Aws::ServiceCatalog
105
107
  # @option options [required, String] :region
106
108
  # The AWS region to connect to. The configured `:region` is
107
109
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
109
111
  #
110
112
  # * `Aws.config[:region]`
111
113
  # * `ENV['AWS_REGION']`
@@ -161,7 +163,7 @@ module Aws::ServiceCatalog
161
163
  # @option options [String] :endpoint
162
164
  # The client endpoint is normally constructed from the `:region`
163
165
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
167
  #
166
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +178,7 @@ module Aws::ServiceCatalog
176
178
  # requests fetching endpoints information. Defaults to 60 sec.
177
179
  #
178
180
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
181
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
182
  #
181
183
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
184
  # The log formatter.
@@ -279,8 +281,7 @@ module Aws::ServiceCatalog
279
281
  #
280
282
  # @option options [Integer] :http_read_timeout (60) The default
281
283
  # number of seconds to wait for response data. This value can
282
- # safely be set
283
- # per-request on the session yielded by {#session_for}.
284
+ # safely be set per-request on the session.
284
285
  #
285
286
  # @option options [Float] :http_idle_timeout (5) The number of
286
287
  # seconds a connection is allowed to sit idle before it is
@@ -292,7 +293,7 @@ module Aws::ServiceCatalog
292
293
  # request body. This option has no effect unless the request has
293
294
  # "Expect" header set to "100-continue". Defaults to `nil` which
294
295
  # disables this behaviour. This value can safely be set per
295
- # request on the session yielded by {#session_for}.
296
+ # request on the session.
296
297
  #
297
298
  # @option options [Boolean] :http_wire_trace (false) When `true`,
298
299
  # HTTP debug output will be sent to the `:logger`.
@@ -435,6 +436,8 @@ module Aws::ServiceCatalog
435
436
 
436
437
  # Associates the specified product with the specified portfolio.
437
438
  #
439
+ # A delegated admin is authorized to invoke this command.
440
+ #
438
441
  # @option params [String] :accept_language
439
442
  # The language code.
440
443
  #
@@ -723,6 +726,8 @@ module Aws::ServiceCatalog
723
726
 
724
727
  # Creates a constraint.
725
728
  #
729
+ # A delegated admin is authorized to invoke this command.
730
+ #
726
731
  # @option params [String] :accept_language
727
732
  # The language code.
728
733
  #
@@ -744,10 +749,29 @@ module Aws::ServiceCatalog
744
749
  #
745
750
  # LAUNCH
746
751
  #
747
- # : Specify the `RoleArn` property as follows:
752
+ # : You are required to specify either the `RoleArn` or the
753
+ # `LocalRoleName` but can't use both.
754
+ #
755
+ # Specify the `RoleArn` property as follows:
748
756
  #
749
757
  # `\{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"\}`
750
758
  #
759
+ # Specify the `LocalRoleName` property as follows:
760
+ #
761
+ # `\{"LocalRoleName": "SCBasicLaunchRole"\}`
762
+ #
763
+ # If you specify the `LocalRoleName` property, when an account uses
764
+ # the launch constraint, the IAM role with that name in the account
765
+ # will be used. This allows launch-role constraints to be
766
+ # account-agnostic so the administrator can create fewer resources per
767
+ # shared account.
768
+ #
769
+ # <note markdown="1"> The given role name must exist in the account used to create the
770
+ # launch constraint and the account of the user who launches a product
771
+ # with this launch constraint.
772
+ #
773
+ # </note>
774
+ #
751
775
  # You cannot have both a `LAUNCH` and a `STACKSET` constraint.
752
776
  #
753
777
  # You also cannot have more than one `LAUNCH` constraint on a product
@@ -858,6 +882,8 @@ module Aws::ServiceCatalog
858
882
 
859
883
  # Creates a portfolio.
860
884
  #
885
+ # A delegated admin is authorized to invoke this command.
886
+ #
861
887
  # @option params [String] :accept_language
862
888
  # The language code.
863
889
  #
@@ -931,9 +957,15 @@ module Aws::ServiceCatalog
931
957
 
932
958
  # Shares the specified portfolio with the specified account or
933
959
  # organization node. Shares to an organization node can only be created
934
- # by the master account of an Organization. AWSOrganizationsAccess must
935
- # be enabled in order to create a portfolio share to an organization
936
- # node.
960
+ # by the master account of an organization or by a delegated
961
+ # administrator. You can share portfolios to an organization, an
962
+ # organizational unit, or a specific account.
963
+ #
964
+ # Note that if a delegated admin is de-registered, they can no longer
965
+ # create portfolio shares.
966
+ #
967
+ # `AWSOrganizationsAccess` must be enabled in order to create a
968
+ # portfolio share to an organization node.
937
969
  #
938
970
  # @option params [String] :accept_language
939
971
  # The language code.
@@ -988,6 +1020,8 @@ module Aws::ServiceCatalog
988
1020
 
989
1021
  # Creates a product.
990
1022
  #
1023
+ # A delegated admin is authorized to invoke this command.
1024
+ #
991
1025
  # @option params [String] :accept_language
992
1026
  # The language code.
993
1027
  #
@@ -1313,8 +1347,11 @@ module Aws::ServiceCatalog
1313
1347
  #
1314
1348
  # Name
1315
1349
  #
1316
- # : The name of the AWS Systems Manager Document. For example,
1317
- # `AWS-RestartEC2Instance`.
1350
+ # : The name of the AWS Systems Manager document (SSM document). For
1351
+ # example, `AWS-RestartEC2Instance`.
1352
+ #
1353
+ # If you are using a shared SSM document, you must provide the ARN
1354
+ # instead of the name.
1318
1355
  #
1319
1356
  # Version
1320
1357
  #
@@ -1429,6 +1466,8 @@ module Aws::ServiceCatalog
1429
1466
 
1430
1467
  # Deletes the specified constraint.
1431
1468
  #
1469
+ # A delegated admin is authorized to invoke this command.
1470
+ #
1432
1471
  # @option params [String] :accept_language
1433
1472
  # The language code.
1434
1473
  #
@@ -1464,6 +1503,8 @@ module Aws::ServiceCatalog
1464
1503
  # You cannot delete a portfolio if it was shared with you or if it has
1465
1504
  # associated products, users, constraints, or shared accounts.
1466
1505
  #
1506
+ # A delegated admin is authorized to invoke this command.
1507
+ #
1467
1508
  # @option params [String] :accept_language
1468
1509
  # The language code.
1469
1510
  #
@@ -1496,7 +1537,11 @@ module Aws::ServiceCatalog
1496
1537
 
1497
1538
  # Stops sharing the specified portfolio with the specified account or
1498
1539
  # organization node. Shares to an organization node can only be deleted
1499
- # by the master account of an Organization.
1540
+ # by the master account of an organization or by a delegated
1541
+ # administrator.
1542
+ #
1543
+ # Note that if a delegated admin is de-registered, portfolio shares
1544
+ # created from that account are removed.
1500
1545
  #
1501
1546
  # @option params [String] :accept_language
1502
1547
  # The language code.
@@ -1550,6 +1595,8 @@ module Aws::ServiceCatalog
1550
1595
  # You cannot delete a product if it was shared with you or is associated
1551
1596
  # with a portfolio.
1552
1597
  #
1598
+ # A delegated admin is authorized to invoke this command.
1599
+ #
1553
1600
  # @option params [String] :accept_language
1554
1601
  # The language code.
1555
1602
  #
@@ -1808,6 +1855,8 @@ module Aws::ServiceCatalog
1808
1855
 
1809
1856
  # Gets information about the specified portfolio.
1810
1857
  #
1858
+ # A delegated admin is authorized to invoke this command.
1859
+ #
1811
1860
  # @option params [String] :accept_language
1812
1861
  # The language code.
1813
1862
  #
@@ -1863,7 +1912,8 @@ module Aws::ServiceCatalog
1863
1912
  end
1864
1913
 
1865
1914
  # Gets the status of the specified portfolio share operation. This API
1866
- # can only be called by the master account in the organization.
1915
+ # can only be called by the master account in the organization or by a
1916
+ # delegated admin.
1867
1917
  #
1868
1918
  # @option params [required, String] :portfolio_share_token
1869
1919
  # The token for the portfolio share operation. This token is returned
@@ -1917,20 +1967,25 @@ module Aws::ServiceCatalog
1917
1967
  #
1918
1968
  # * `zh` - Chinese
1919
1969
  #
1920
- # @option params [required, String] :id
1970
+ # @option params [String] :id
1921
1971
  # The product identifier.
1922
1972
  #
1973
+ # @option params [String] :name
1974
+ # The product name.
1975
+ #
1923
1976
  # @return [Types::DescribeProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1924
1977
  #
1925
1978
  # * {Types::DescribeProductOutput#product_view_summary #product_view_summary} => Types::ProductViewSummary
1926
1979
  # * {Types::DescribeProductOutput#provisioning_artifacts #provisioning_artifacts} => Array&lt;Types::ProvisioningArtifact&gt;
1927
1980
  # * {Types::DescribeProductOutput#budgets #budgets} => Array&lt;Types::BudgetDetail&gt;
1981
+ # * {Types::DescribeProductOutput#launch_paths #launch_paths} => Array&lt;Types::LaunchPath&gt;
1928
1982
  #
1929
1983
  # @example Request syntax with placeholder values
1930
1984
  #
1931
1985
  # resp = client.describe_product({
1932
1986
  # accept_language: "AcceptLanguage",
1933
- # id: "Id", # required
1987
+ # id: "Id",
1988
+ # name: "ProductViewName",
1934
1989
  # })
1935
1990
  #
1936
1991
  # @example Response structure
@@ -1954,6 +2009,9 @@ module Aws::ServiceCatalog
1954
2009
  # resp.provisioning_artifacts[0].guidance #=> String, one of "DEFAULT", "DEPRECATED"
1955
2010
  # resp.budgets #=> Array
1956
2011
  # resp.budgets[0].budget_name #=> String
2012
+ # resp.launch_paths #=> Array
2013
+ # resp.launch_paths[0].id #=> String
2014
+ # resp.launch_paths[0].name #=> String
1957
2015
  #
1958
2016
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProduct AWS API Documentation
1959
2017
  #
@@ -1976,9 +2034,12 @@ module Aws::ServiceCatalog
1976
2034
  #
1977
2035
  # * `zh` - Chinese
1978
2036
  #
1979
- # @option params [required, String] :id
2037
+ # @option params [String] :id
1980
2038
  # The product identifier.
1981
2039
  #
2040
+ # @option params [String] :name
2041
+ # The product name.
2042
+ #
1982
2043
  # @return [Types::DescribeProductAsAdminOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1983
2044
  #
1984
2045
  # * {Types::DescribeProductAsAdminOutput#product_view_detail #product_view_detail} => Types::ProductViewDetail
@@ -1991,7 +2052,8 @@ module Aws::ServiceCatalog
1991
2052
  #
1992
2053
  # resp = client.describe_product_as_admin({
1993
2054
  # accept_language: "AcceptLanguage",
1994
- # id: "Id", # required
2055
+ # id: "Id",
2056
+ # name: "ProductViewName",
1995
2057
  # })
1996
2058
  #
1997
2059
  # @example Response structure
@@ -2239,12 +2301,18 @@ module Aws::ServiceCatalog
2239
2301
  #
2240
2302
  # * `zh` - Chinese
2241
2303
  #
2242
- # @option params [required, String] :provisioning_artifact_id
2304
+ # @option params [String] :provisioning_artifact_id
2243
2305
  # The identifier of the provisioning artifact.
2244
2306
  #
2245
- # @option params [required, String] :product_id
2307
+ # @option params [String] :product_id
2246
2308
  # The product identifier.
2247
2309
  #
2310
+ # @option params [String] :provisioning_artifact_name
2311
+ # The provisioning artifact name.
2312
+ #
2313
+ # @option params [String] :product_name
2314
+ # The product name.
2315
+ #
2248
2316
  # @option params [Boolean] :verbose
2249
2317
  # Indicates whether a verbose level of detail is enabled.
2250
2318
  #
@@ -2258,8 +2326,10 @@ module Aws::ServiceCatalog
2258
2326
  #
2259
2327
  # resp = client.describe_provisioning_artifact({
2260
2328
  # accept_language: "AcceptLanguage",
2261
- # provisioning_artifact_id: "Id", # required
2262
- # product_id: "Id", # required
2329
+ # provisioning_artifact_id: "Id",
2330
+ # product_id: "Id",
2331
+ # provisioning_artifact_name: "ProvisioningArtifactName",
2332
+ # product_name: "ProductViewName",
2263
2333
  # verbose: false,
2264
2334
  # })
2265
2335
  #
@@ -2580,6 +2650,12 @@ module Aws::ServiceCatalog
2580
2650
  # after calling this API. This API can only be called by the master
2581
2651
  # account in the organization.
2582
2652
  #
2653
+ # This API can't be invoked if there are active delegated
2654
+ # administrators in the organization.
2655
+ #
2656
+ # Note that a delegated administrator is not authorized to invoke
2657
+ # `DisableAWSOrganizationsAccess`.
2658
+ #
2583
2659
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2584
2660
  #
2585
2661
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisableAWSOrganizationsAccess AWS API Documentation
@@ -2657,6 +2733,8 @@ module Aws::ServiceCatalog
2657
2733
 
2658
2734
  # Disassociates the specified product from the specified portfolio.
2659
2735
  #
2736
+ # A delegated admin is authorized to invoke this command.
2737
+ #
2660
2738
  # @option params [String] :accept_language
2661
2739
  # The language code.
2662
2740
  #
@@ -2769,6 +2847,9 @@ module Aws::ServiceCatalog
2769
2847
  # shares can be in sync with any changes in your AWS Organizations
2770
2848
  # structure.
2771
2849
  #
2850
+ # Note that a delegated administrator is not authorized to invoke
2851
+ # `EnableAWSOrganizationsAccess`.
2852
+ #
2772
2853
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2773
2854
  #
2774
2855
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/EnableAWSOrganizationsAccess AWS API Documentation
@@ -2921,7 +3002,8 @@ module Aws::ServiceCatalog
2921
3002
  end
2922
3003
 
2923
3004
  # Get the Access Status for AWS Organization portfolio share feature.
2924
- # This API can only be called by the master account in the organization.
3005
+ # This API can only be called by the master account in the organization
3006
+ # or by a delegated admin.
2925
3007
  #
2926
3008
  # @return [Types::GetAWSOrganizationsAccessStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2927
3009
  #
@@ -3181,7 +3263,10 @@ module Aws::ServiceCatalog
3181
3263
 
3182
3264
  # Lists the organization nodes that have access to the specified
3183
3265
  # portfolio. This API can only be called by the master account in the
3184
- # organization.
3266
+ # organization or by a delegated admin.
3267
+ #
3268
+ # If a delegated admin is de-registered, they can no longer perform this
3269
+ # operation.
3185
3270
  #
3186
3271
  # @option params [String] :accept_language
3187
3272
  # The language code.
@@ -3248,6 +3333,10 @@ module Aws::ServiceCatalog
3248
3333
 
3249
3334
  # Lists the account IDs that have access to the specified portfolio.
3250
3335
  #
3336
+ # A delegated admin can list the accounts that have access to the shared
3337
+ # portfolio. Note that if a delegated admin is de-registered, they can
3338
+ # no longer perform this operation.
3339
+ #
3251
3340
  # @option params [String] :accept_language
3252
3341
  # The language code.
3253
3342
  #
@@ -4592,10 +4681,29 @@ module Aws::ServiceCatalog
4592
4681
  #
4593
4682
  # LAUNCH
4594
4683
  #
4595
- # : Specify the `RoleArn` property as follows:
4684
+ # : You are required to specify either the `RoleArn` or the
4685
+ # `LocalRoleName` but can't use both.
4686
+ #
4687
+ # Specify the `RoleArn` property as follows:
4596
4688
  #
4597
4689
  # `\{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"\}`
4598
4690
  #
4691
+ # Specify the `LocalRoleName` property as follows:
4692
+ #
4693
+ # `\{"LocalRoleName": "SCBasicLaunchRole"\}`
4694
+ #
4695
+ # If you specify the `LocalRoleName` property, when an account uses
4696
+ # the launch constraint, the IAM role with that name in the account
4697
+ # will be used. This allows launch-role constraints to be
4698
+ # account-agnostic so the administrator can create fewer resources per
4699
+ # shared account.
4700
+ #
4701
+ # <note markdown="1"> The given role name must exist in the account used to create the
4702
+ # launch constraint and the account of the user who launches a product
4703
+ # with this launch constraint.
4704
+ #
4705
+ # </note>
4706
+ #
4599
4707
  # You cannot have both a `LAUNCH` and a `STACKSET` constraint.
4600
4708
  #
4601
4709
  # You also cannot have more than one `LAUNCH` constraint on a product
@@ -4988,9 +5096,9 @@ module Aws::ServiceCatalog
4988
5096
  # @option params [required, Hash<String,String>] :provisioned_product_properties
4989
5097
  # A map that contains the provisioned product properties to be updated.
4990
5098
  #
4991
- # The `OWNER` key only accepts user ARNs. The owner is the user that is
4992
- # allowed to see, update, terminate, and execute service actions in the
4993
- # provisioned product.
5099
+ # The `OWNER` key accepts user ARNs and role ARNs. The owner is the user
5100
+ # that is allowed to see, update, terminate, and execute service actions
5101
+ # in the provisioned product.
4994
5102
  #
4995
5103
  # The administrator can change the owner of a provisioned product to
4996
5104
  # another IAM user within the same account. Both end user owners and
@@ -5245,7 +5353,7 @@ module Aws::ServiceCatalog
5245
5353
  params: params,
5246
5354
  config: config)
5247
5355
  context[:gem_name] = 'aws-sdk-servicecatalog'
5248
- context[:gem_version] = '1.36.0'
5356
+ context[:gem_version] = '1.41.1'
5249
5357
  Seahorse::Client::Request.new(handlers, context)
5250
5358
  end
5251
5359
 
@@ -169,8 +169,10 @@ module Aws::ServiceCatalog
169
169
  InvalidParametersException = Shapes::StructureShape.new(name: 'InvalidParametersException')
170
170
  InvalidStateException = Shapes::StructureShape.new(name: 'InvalidStateException')
171
171
  LastRequestId = Shapes::StringShape.new(name: 'LastRequestId')
172
+ LaunchPath = Shapes::StructureShape.new(name: 'LaunchPath')
172
173
  LaunchPathSummaries = Shapes::ListShape.new(name: 'LaunchPathSummaries')
173
174
  LaunchPathSummary = Shapes::StructureShape.new(name: 'LaunchPathSummary')
175
+ LaunchPaths = Shapes::ListShape.new(name: 'LaunchPaths')
174
176
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
175
177
  ListAcceptedPortfolioSharesInput = Shapes::StructureShape.new(name: 'ListAcceptedPortfolioSharesInput')
176
178
  ListAcceptedPortfolioSharesOutput = Shapes::StructureShape.new(name: 'ListAcceptedPortfolioSharesOutput')
@@ -746,7 +748,8 @@ module Aws::ServiceCatalog
746
748
  DescribePortfolioShareStatusOutput.struct_class = Types::DescribePortfolioShareStatusOutput
747
749
 
748
750
  DescribeProductAsAdminInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
749
- DescribeProductAsAdminInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
751
+ DescribeProductAsAdminInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
752
+ DescribeProductAsAdminInput.add_member(:name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "Name"))
750
753
  DescribeProductAsAdminInput.struct_class = Types::DescribeProductAsAdminInput
751
754
 
752
755
  DescribeProductAsAdminOutput.add_member(:product_view_detail, Shapes::ShapeRef.new(shape: ProductViewDetail, location_name: "ProductViewDetail"))
@@ -757,12 +760,14 @@ module Aws::ServiceCatalog
757
760
  DescribeProductAsAdminOutput.struct_class = Types::DescribeProductAsAdminOutput
758
761
 
759
762
  DescribeProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
760
- DescribeProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
763
+ DescribeProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
764
+ DescribeProductInput.add_member(:name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "Name"))
761
765
  DescribeProductInput.struct_class = Types::DescribeProductInput
762
766
 
763
767
  DescribeProductOutput.add_member(:product_view_summary, Shapes::ShapeRef.new(shape: ProductViewSummary, location_name: "ProductViewSummary"))
764
768
  DescribeProductOutput.add_member(:provisioning_artifacts, Shapes::ShapeRef.new(shape: ProvisioningArtifacts, location_name: "ProvisioningArtifacts"))
765
769
  DescribeProductOutput.add_member(:budgets, Shapes::ShapeRef.new(shape: Budgets, location_name: "Budgets"))
770
+ DescribeProductOutput.add_member(:launch_paths, Shapes::ShapeRef.new(shape: LaunchPaths, location_name: "LaunchPaths"))
766
771
  DescribeProductOutput.struct_class = Types::DescribeProductOutput
767
772
 
768
773
  DescribeProductViewInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
@@ -793,8 +798,10 @@ module Aws::ServiceCatalog
793
798
  DescribeProvisionedProductPlanOutput.struct_class = Types::DescribeProvisionedProductPlanOutput
794
799
 
795
800
  DescribeProvisioningArtifactInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
796
- DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProvisioningArtifactId"))
797
- DescribeProvisioningArtifactInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProductId"))
801
+ DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
802
+ DescribeProvisioningArtifactInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
803
+ DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
804
+ DescribeProvisioningArtifactInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
798
805
  DescribeProvisioningArtifactInput.add_member(:verbose, Shapes::ShapeRef.new(shape: Verbose, location_name: "Verbose"))
799
806
  DescribeProvisioningArtifactInput.struct_class = Types::DescribeProvisioningArtifactInput
800
807
 
@@ -940,6 +947,10 @@ module Aws::ServiceCatalog
940
947
 
941
948
  InvalidStateException.struct_class = Types::InvalidStateException
942
949
 
950
+ LaunchPath.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
951
+ LaunchPath.add_member(:name, Shapes::ShapeRef.new(shape: PortfolioName, location_name: "Name"))
952
+ LaunchPath.struct_class = Types::LaunchPath
953
+
943
954
  LaunchPathSummaries.member = Shapes::ShapeRef.new(shape: LaunchPathSummary)
944
955
 
945
956
  LaunchPathSummary.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
@@ -948,6 +959,8 @@ module Aws::ServiceCatalog
948
959
  LaunchPathSummary.add_member(:name, Shapes::ShapeRef.new(shape: PortfolioName, location_name: "Name"))
949
960
  LaunchPathSummary.struct_class = Types::LaunchPathSummary
950
961
 
962
+ LaunchPaths.member = Shapes::ShapeRef.new(shape: LaunchPath)
963
+
951
964
  LimitExceededException.struct_class = Types::LimitExceededException
952
965
 
953
966
  ListAcceptedPortfolioSharesInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
@@ -2055,6 +2068,7 @@ module Aws::ServiceCatalog
2055
2068
  o.input = Shapes::ShapeRef.new(shape: DescribeProductAsAdminInput)
2056
2069
  o.output = Shapes::ShapeRef.new(shape: DescribeProductAsAdminOutput)
2057
2070
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2071
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
2058
2072
  end)
2059
2073
 
2060
2074
  api.add_operation(:describe_product_view, Seahorse::Model::Operation.new.tap do |o|
@@ -2093,6 +2107,7 @@ module Aws::ServiceCatalog
2093
2107
  o.input = Shapes::ShapeRef.new(shape: DescribeProvisioningArtifactInput)
2094
2108
  o.output = Shapes::ShapeRef.new(shape: DescribeProvisioningArtifactOutput)
2095
2109
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2110
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
2096
2111
  end)
2097
2112
 
2098
2113
  api.add_operation(:describe_provisioning_parameters, Seahorse::Model::Operation.new.tap do |o|
@@ -613,10 +613,29 @@ module Aws::ServiceCatalog
613
613
  #
614
614
  # LAUNCH
615
615
  #
616
- # : Specify the `RoleArn` property as follows:
616
+ # : You are required to specify either the `RoleArn` or the
617
+ # `LocalRoleName` but can't use both.
618
+ #
619
+ # Specify the `RoleArn` property as follows:
617
620
  #
618
621
  # `\{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"\}`
619
622
  #
623
+ # Specify the `LocalRoleName` property as follows:
624
+ #
625
+ # `\{"LocalRoleName": "SCBasicLaunchRole"\}`
626
+ #
627
+ # If you specify the `LocalRoleName` property, when an account uses
628
+ # the launch constraint, the IAM role with that name in the account
629
+ # will be used. This allows launch-role constraints to be
630
+ # account-agnostic so the administrator can create fewer resources
631
+ # per shared account.
632
+ #
633
+ # <note markdown="1"> The given role name must exist in the account used to create the
634
+ # launch constraint and the account of the user who launches a
635
+ # product with this launch constraint.
636
+ #
637
+ # </note>
638
+ #
620
639
  # You cannot have both a `LAUNCH` and a `STACKSET` constraint.
621
640
  #
622
641
  # You also cannot have more than one `LAUNCH` constraint on a
@@ -1241,8 +1260,11 @@ module Aws::ServiceCatalog
1241
1260
  #
1242
1261
  # Name
1243
1262
  #
1244
- # : The name of the AWS Systems Manager Document. For example,
1245
- # `AWS-RestartEC2Instance`.
1263
+ # : The name of the AWS Systems Manager document (SSM document). For
1264
+ # example, `AWS-RestartEC2Instance`.
1265
+ #
1266
+ # If you are using a shared SSM document, you must provide the ARN
1267
+ # instead of the name.
1246
1268
  #
1247
1269
  # Version
1248
1270
  #
@@ -1861,7 +1883,8 @@ module Aws::ServiceCatalog
1861
1883
  #
1862
1884
  # {
1863
1885
  # accept_language: "AcceptLanguage",
1864
- # id: "Id", # required
1886
+ # id: "Id",
1887
+ # name: "ProductViewName",
1865
1888
  # }
1866
1889
  #
1867
1890
  # @!attribute [rw] accept_language
@@ -1878,11 +1901,16 @@ module Aws::ServiceCatalog
1878
1901
  # The product identifier.
1879
1902
  # @return [String]
1880
1903
  #
1904
+ # @!attribute [rw] name
1905
+ # The product name.
1906
+ # @return [String]
1907
+ #
1881
1908
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductAsAdminInput AWS API Documentation
1882
1909
  #
1883
1910
  class DescribeProductAsAdminInput < Struct.new(
1884
1911
  :accept_language,
1885
- :id)
1912
+ :id,
1913
+ :name)
1886
1914
  include Aws::Structure
1887
1915
  end
1888
1916
 
@@ -1923,7 +1951,8 @@ module Aws::ServiceCatalog
1923
1951
  #
1924
1952
  # {
1925
1953
  # accept_language: "AcceptLanguage",
1926
- # id: "Id", # required
1954
+ # id: "Id",
1955
+ # name: "ProductViewName",
1927
1956
  # }
1928
1957
  #
1929
1958
  # @!attribute [rw] accept_language
@@ -1940,11 +1969,16 @@ module Aws::ServiceCatalog
1940
1969
  # The product identifier.
1941
1970
  # @return [String]
1942
1971
  #
1972
+ # @!attribute [rw] name
1973
+ # The product name.
1974
+ # @return [String]
1975
+ #
1943
1976
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductInput AWS API Documentation
1944
1977
  #
1945
1978
  class DescribeProductInput < Struct.new(
1946
1979
  :accept_language,
1947
- :id)
1980
+ :id,
1981
+ :name)
1948
1982
  include Aws::Structure
1949
1983
  end
1950
1984
 
@@ -1961,12 +1995,17 @@ module Aws::ServiceCatalog
1961
1995
  # Information about the associated budgets.
1962
1996
  # @return [Array<Types::BudgetDetail>]
1963
1997
  #
1998
+ # @!attribute [rw] launch_paths
1999
+ # Information about the associated launch paths.
2000
+ # @return [Array<Types::LaunchPath>]
2001
+ #
1964
2002
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductOutput AWS API Documentation
1965
2003
  #
1966
2004
  class DescribeProductOutput < Struct.new(
1967
2005
  :product_view_summary,
1968
2006
  :provisioning_artifacts,
1969
- :budgets)
2007
+ :budgets,
2008
+ :launch_paths)
1970
2009
  include Aws::Structure
1971
2010
  end
1972
2011
 
@@ -2134,8 +2173,10 @@ module Aws::ServiceCatalog
2134
2173
  #
2135
2174
  # {
2136
2175
  # accept_language: "AcceptLanguage",
2137
- # provisioning_artifact_id: "Id", # required
2138
- # product_id: "Id", # required
2176
+ # provisioning_artifact_id: "Id",
2177
+ # product_id: "Id",
2178
+ # provisioning_artifact_name: "ProvisioningArtifactName",
2179
+ # product_name: "ProductViewName",
2139
2180
  # verbose: false,
2140
2181
  # }
2141
2182
  #
@@ -2157,6 +2198,14 @@ module Aws::ServiceCatalog
2157
2198
  # The product identifier.
2158
2199
  # @return [String]
2159
2200
  #
2201
+ # @!attribute [rw] provisioning_artifact_name
2202
+ # The provisioning artifact name.
2203
+ # @return [String]
2204
+ #
2205
+ # @!attribute [rw] product_name
2206
+ # The product name.
2207
+ # @return [String]
2208
+ #
2160
2209
  # @!attribute [rw] verbose
2161
2210
  # Indicates whether a verbose level of detail is enabled.
2162
2211
  # @return [Boolean]
@@ -2167,6 +2216,8 @@ module Aws::ServiceCatalog
2167
2216
  :accept_language,
2168
2217
  :provisioning_artifact_id,
2169
2218
  :product_id,
2219
+ :provisioning_artifact_name,
2220
+ :product_name,
2170
2221
  :verbose)
2171
2222
  include Aws::Structure
2172
2223
  end
@@ -2881,6 +2932,24 @@ module Aws::ServiceCatalog
2881
2932
  #
2882
2933
  class InvalidStateException < Aws::EmptyStructure; end
2883
2934
 
2935
+ # A launch path object.
2936
+ #
2937
+ # @!attribute [rw] id
2938
+ # The identifier of the launch path.
2939
+ # @return [String]
2940
+ #
2941
+ # @!attribute [rw] name
2942
+ # The name of the launch path.
2943
+ # @return [String]
2944
+ #
2945
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/LaunchPath AWS API Documentation
2946
+ #
2947
+ class LaunchPath < Struct.new(
2948
+ :id,
2949
+ :name)
2950
+ include Aws::Structure
2951
+ end
2952
+
2884
2953
  # Summary information about a product path for a user.
2885
2954
  #
2886
2955
  # @!attribute [rw] id
@@ -6236,10 +6305,29 @@ module Aws::ServiceCatalog
6236
6305
  #
6237
6306
  # LAUNCH
6238
6307
  #
6239
- # : Specify the `RoleArn` property as follows:
6308
+ # : You are required to specify either the `RoleArn` or the
6309
+ # `LocalRoleName` but can't use both.
6310
+ #
6311
+ # Specify the `RoleArn` property as follows:
6240
6312
  #
6241
6313
  # `\{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"\}`
6242
6314
  #
6315
+ # Specify the `LocalRoleName` property as follows:
6316
+ #
6317
+ # `\{"LocalRoleName": "SCBasicLaunchRole"\}`
6318
+ #
6319
+ # If you specify the `LocalRoleName` property, when an account uses
6320
+ # the launch constraint, the IAM role with that name in the account
6321
+ # will be used. This allows launch-role constraints to be
6322
+ # account-agnostic so the administrator can create fewer resources
6323
+ # per shared account.
6324
+ #
6325
+ # <note markdown="1"> The given role name must exist in the account used to create the
6326
+ # launch constraint and the account of the user who launches a
6327
+ # product with this launch constraint.
6328
+ #
6329
+ # </note>
6330
+ #
6243
6331
  # You cannot have both a `LAUNCH` and a `STACKSET` constraint.
6244
6332
  #
6245
6333
  # You also cannot have more than one `LAUNCH` constraint on a
@@ -6652,9 +6740,9 @@ module Aws::ServiceCatalog
6652
6740
  # A map that contains the provisioned product properties to be
6653
6741
  # updated.
6654
6742
  #
6655
- # The `OWNER` key only accepts user ARNs. The owner is the user that
6656
- # is allowed to see, update, terminate, and execute service actions in
6657
- # the provisioned product.
6743
+ # The `OWNER` key accepts user ARNs and role ARNs. The owner is the
6744
+ # user that is allowed to see, update, terminate, and execute service
6745
+ # actions in the provisioned product.
6658
6746
  #
6659
6747
  # The administrator can change the owner of a provisioned product to
6660
6748
  # another IAM user within the same account. Both end user owners and
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.36.0
4
+ version: 1.41.1
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-03-20 00:00:00.000000000 Z
11
+ date: 2020-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - AWS Service Catalog