aws-sdk-servicecatalog 1.38.0 → 1.43.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-servicecatalog.rb +3 -1
- data/lib/aws-sdk-servicecatalog/client.rb +96 -23
- data/lib/aws-sdk-servicecatalog/client_api.rb +21 -4
- data/lib/aws-sdk-servicecatalog/customizations.rb +1 -0
- data/lib/aws-sdk-servicecatalog/errors.rb +2 -0
- data/lib/aws-sdk-servicecatalog/resource.rb +2 -0
- data/lib/aws-sdk-servicecatalog/types.rb +257 -12
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ef758ef400aee72ff1e201d5e9c7abcbc0eaf94ab7296e647665878db2e88c3
|
4
|
+
data.tar.gz: 32f8f073fb6ed992f6166c727e99883e9f7736a1b20532625cc0915731197130
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f767267c89f627d37c77ad34c2722d73c9272fc1ed90c76e7df35e25af273f7816f5435541ce38b5a3f77bb585869da4fa29544907412da31c5e4f87f0964cf4
|
7
|
+
data.tar.gz: 14401562f48cc6a372b0b0a19c16291af341691591b1effb2a0c91ebf4a40fddb8de0a5d473f6ede3a919768d08fd675e30fb5036d90932151b780bbcb8c2d44
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::ServiceCatalog
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.43.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::ServiceCatalog
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::ServiceCatalog
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::ServiceCatalog
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -434,6 +438,8 @@ module Aws::ServiceCatalog
|
|
434
438
|
|
435
439
|
# Associates the specified product with the specified portfolio.
|
436
440
|
#
|
441
|
+
# A delegated admin is authorized to invoke this command.
|
442
|
+
#
|
437
443
|
# @option params [String] :accept_language
|
438
444
|
# The language code.
|
439
445
|
#
|
@@ -722,6 +728,8 @@ module Aws::ServiceCatalog
|
|
722
728
|
|
723
729
|
# Creates a constraint.
|
724
730
|
#
|
731
|
+
# A delegated admin is authorized to invoke this command.
|
732
|
+
#
|
725
733
|
# @option params [String] :accept_language
|
726
734
|
# The language code.
|
727
735
|
#
|
@@ -876,6 +884,8 @@ module Aws::ServiceCatalog
|
|
876
884
|
|
877
885
|
# Creates a portfolio.
|
878
886
|
#
|
887
|
+
# A delegated admin is authorized to invoke this command.
|
888
|
+
#
|
879
889
|
# @option params [String] :accept_language
|
880
890
|
# The language code.
|
881
891
|
#
|
@@ -949,9 +959,15 @@ module Aws::ServiceCatalog
|
|
949
959
|
|
950
960
|
# Shares the specified portfolio with the specified account or
|
951
961
|
# organization node. Shares to an organization node can only be created
|
952
|
-
# by the master account of an
|
953
|
-
#
|
954
|
-
#
|
962
|
+
# by the master account of an organization or by a delegated
|
963
|
+
# administrator. You can share portfolios to an organization, an
|
964
|
+
# organizational unit, or a specific account.
|
965
|
+
#
|
966
|
+
# Note that if a delegated admin is de-registered, they can no longer
|
967
|
+
# create portfolio shares.
|
968
|
+
#
|
969
|
+
# `AWSOrganizationsAccess` must be enabled in order to create a
|
970
|
+
# portfolio share to an organization node.
|
955
971
|
#
|
956
972
|
# @option params [String] :accept_language
|
957
973
|
# The language code.
|
@@ -1006,6 +1022,8 @@ module Aws::ServiceCatalog
|
|
1006
1022
|
|
1007
1023
|
# Creates a product.
|
1008
1024
|
#
|
1025
|
+
# A delegated admin is authorized to invoke this command.
|
1026
|
+
#
|
1009
1027
|
# @option params [String] :accept_language
|
1010
1028
|
# The language code.
|
1011
1029
|
#
|
@@ -1331,8 +1349,11 @@ module Aws::ServiceCatalog
|
|
1331
1349
|
#
|
1332
1350
|
# Name
|
1333
1351
|
#
|
1334
|
-
# : The name of the AWS Systems Manager
|
1335
|
-
# `AWS-RestartEC2Instance`.
|
1352
|
+
# : The name of the AWS Systems Manager document (SSM document). For
|
1353
|
+
# example, `AWS-RestartEC2Instance`.
|
1354
|
+
#
|
1355
|
+
# If you are using a shared SSM document, you must provide the ARN
|
1356
|
+
# instead of the name.
|
1336
1357
|
#
|
1337
1358
|
# Version
|
1338
1359
|
#
|
@@ -1447,6 +1468,8 @@ module Aws::ServiceCatalog
|
|
1447
1468
|
|
1448
1469
|
# Deletes the specified constraint.
|
1449
1470
|
#
|
1471
|
+
# A delegated admin is authorized to invoke this command.
|
1472
|
+
#
|
1450
1473
|
# @option params [String] :accept_language
|
1451
1474
|
# The language code.
|
1452
1475
|
#
|
@@ -1482,6 +1505,8 @@ module Aws::ServiceCatalog
|
|
1482
1505
|
# You cannot delete a portfolio if it was shared with you or if it has
|
1483
1506
|
# associated products, users, constraints, or shared accounts.
|
1484
1507
|
#
|
1508
|
+
# A delegated admin is authorized to invoke this command.
|
1509
|
+
#
|
1485
1510
|
# @option params [String] :accept_language
|
1486
1511
|
# The language code.
|
1487
1512
|
#
|
@@ -1514,7 +1539,11 @@ module Aws::ServiceCatalog
|
|
1514
1539
|
|
1515
1540
|
# Stops sharing the specified portfolio with the specified account or
|
1516
1541
|
# organization node. Shares to an organization node can only be deleted
|
1517
|
-
# by the master account of an
|
1542
|
+
# by the master account of an organization or by a delegated
|
1543
|
+
# administrator.
|
1544
|
+
#
|
1545
|
+
# Note that if a delegated admin is de-registered, portfolio shares
|
1546
|
+
# created from that account are removed.
|
1518
1547
|
#
|
1519
1548
|
# @option params [String] :accept_language
|
1520
1549
|
# The language code.
|
@@ -1568,6 +1597,8 @@ module Aws::ServiceCatalog
|
|
1568
1597
|
# You cannot delete a product if it was shared with you or is associated
|
1569
1598
|
# with a portfolio.
|
1570
1599
|
#
|
1600
|
+
# A delegated admin is authorized to invoke this command.
|
1601
|
+
#
|
1571
1602
|
# @option params [String] :accept_language
|
1572
1603
|
# The language code.
|
1573
1604
|
#
|
@@ -1826,6 +1857,8 @@ module Aws::ServiceCatalog
|
|
1826
1857
|
|
1827
1858
|
# Gets information about the specified portfolio.
|
1828
1859
|
#
|
1860
|
+
# A delegated admin is authorized to invoke this command.
|
1861
|
+
#
|
1829
1862
|
# @option params [String] :accept_language
|
1830
1863
|
# The language code.
|
1831
1864
|
#
|
@@ -1881,7 +1914,8 @@ module Aws::ServiceCatalog
|
|
1881
1914
|
end
|
1882
1915
|
|
1883
1916
|
# Gets the status of the specified portfolio share operation. This API
|
1884
|
-
# can only be called by the master account in the organization
|
1917
|
+
# can only be called by the master account in the organization or by a
|
1918
|
+
# delegated admin.
|
1885
1919
|
#
|
1886
1920
|
# @option params [required, String] :portfolio_share_token
|
1887
1921
|
# The token for the portfolio share operation. This token is returned
|
@@ -1935,20 +1969,25 @@ module Aws::ServiceCatalog
|
|
1935
1969
|
#
|
1936
1970
|
# * `zh` - Chinese
|
1937
1971
|
#
|
1938
|
-
# @option params [
|
1972
|
+
# @option params [String] :id
|
1939
1973
|
# The product identifier.
|
1940
1974
|
#
|
1975
|
+
# @option params [String] :name
|
1976
|
+
# The product name.
|
1977
|
+
#
|
1941
1978
|
# @return [Types::DescribeProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1942
1979
|
#
|
1943
1980
|
# * {Types::DescribeProductOutput#product_view_summary #product_view_summary} => Types::ProductViewSummary
|
1944
1981
|
# * {Types::DescribeProductOutput#provisioning_artifacts #provisioning_artifacts} => Array<Types::ProvisioningArtifact>
|
1945
1982
|
# * {Types::DescribeProductOutput#budgets #budgets} => Array<Types::BudgetDetail>
|
1983
|
+
# * {Types::DescribeProductOutput#launch_paths #launch_paths} => Array<Types::LaunchPath>
|
1946
1984
|
#
|
1947
1985
|
# @example Request syntax with placeholder values
|
1948
1986
|
#
|
1949
1987
|
# resp = client.describe_product({
|
1950
1988
|
# accept_language: "AcceptLanguage",
|
1951
|
-
# id: "Id",
|
1989
|
+
# id: "Id",
|
1990
|
+
# name: "ProductViewName",
|
1952
1991
|
# })
|
1953
1992
|
#
|
1954
1993
|
# @example Response structure
|
@@ -1972,6 +2011,9 @@ module Aws::ServiceCatalog
|
|
1972
2011
|
# resp.provisioning_artifacts[0].guidance #=> String, one of "DEFAULT", "DEPRECATED"
|
1973
2012
|
# resp.budgets #=> Array
|
1974
2013
|
# resp.budgets[0].budget_name #=> String
|
2014
|
+
# resp.launch_paths #=> Array
|
2015
|
+
# resp.launch_paths[0].id #=> String
|
2016
|
+
# resp.launch_paths[0].name #=> String
|
1975
2017
|
#
|
1976
2018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProduct AWS API Documentation
|
1977
2019
|
#
|
@@ -1994,9 +2036,12 @@ module Aws::ServiceCatalog
|
|
1994
2036
|
#
|
1995
2037
|
# * `zh` - Chinese
|
1996
2038
|
#
|
1997
|
-
# @option params [
|
2039
|
+
# @option params [String] :id
|
1998
2040
|
# The product identifier.
|
1999
2041
|
#
|
2042
|
+
# @option params [String] :name
|
2043
|
+
# The product name.
|
2044
|
+
#
|
2000
2045
|
# @return [Types::DescribeProductAsAdminOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2001
2046
|
#
|
2002
2047
|
# * {Types::DescribeProductAsAdminOutput#product_view_detail #product_view_detail} => Types::ProductViewDetail
|
@@ -2009,7 +2054,8 @@ module Aws::ServiceCatalog
|
|
2009
2054
|
#
|
2010
2055
|
# resp = client.describe_product_as_admin({
|
2011
2056
|
# accept_language: "AcceptLanguage",
|
2012
|
-
# id: "Id",
|
2057
|
+
# id: "Id",
|
2058
|
+
# name: "ProductViewName",
|
2013
2059
|
# })
|
2014
2060
|
#
|
2015
2061
|
# @example Response structure
|
@@ -2257,12 +2303,18 @@ module Aws::ServiceCatalog
|
|
2257
2303
|
#
|
2258
2304
|
# * `zh` - Chinese
|
2259
2305
|
#
|
2260
|
-
# @option params [
|
2306
|
+
# @option params [String] :provisioning_artifact_id
|
2261
2307
|
# The identifier of the provisioning artifact.
|
2262
2308
|
#
|
2263
|
-
# @option params [
|
2309
|
+
# @option params [String] :product_id
|
2264
2310
|
# The product identifier.
|
2265
2311
|
#
|
2312
|
+
# @option params [String] :provisioning_artifact_name
|
2313
|
+
# The provisioning artifact name.
|
2314
|
+
#
|
2315
|
+
# @option params [String] :product_name
|
2316
|
+
# The product name.
|
2317
|
+
#
|
2266
2318
|
# @option params [Boolean] :verbose
|
2267
2319
|
# Indicates whether a verbose level of detail is enabled.
|
2268
2320
|
#
|
@@ -2276,8 +2328,10 @@ module Aws::ServiceCatalog
|
|
2276
2328
|
#
|
2277
2329
|
# resp = client.describe_provisioning_artifact({
|
2278
2330
|
# accept_language: "AcceptLanguage",
|
2279
|
-
# provisioning_artifact_id: "Id",
|
2280
|
-
# product_id: "Id",
|
2331
|
+
# provisioning_artifact_id: "Id",
|
2332
|
+
# product_id: "Id",
|
2333
|
+
# provisioning_artifact_name: "ProvisioningArtifactName",
|
2334
|
+
# product_name: "ProductViewName",
|
2281
2335
|
# verbose: false,
|
2282
2336
|
# })
|
2283
2337
|
#
|
@@ -2598,6 +2652,12 @@ module Aws::ServiceCatalog
|
|
2598
2652
|
# after calling this API. This API can only be called by the master
|
2599
2653
|
# account in the organization.
|
2600
2654
|
#
|
2655
|
+
# This API can't be invoked if there are active delegated
|
2656
|
+
# administrators in the organization.
|
2657
|
+
#
|
2658
|
+
# Note that a delegated administrator is not authorized to invoke
|
2659
|
+
# `DisableAWSOrganizationsAccess`.
|
2660
|
+
#
|
2601
2661
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2602
2662
|
#
|
2603
2663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisableAWSOrganizationsAccess AWS API Documentation
|
@@ -2675,6 +2735,8 @@ module Aws::ServiceCatalog
|
|
2675
2735
|
|
2676
2736
|
# Disassociates the specified product from the specified portfolio.
|
2677
2737
|
#
|
2738
|
+
# A delegated admin is authorized to invoke this command.
|
2739
|
+
#
|
2678
2740
|
# @option params [String] :accept_language
|
2679
2741
|
# The language code.
|
2680
2742
|
#
|
@@ -2787,6 +2849,9 @@ module Aws::ServiceCatalog
|
|
2787
2849
|
# shares can be in sync with any changes in your AWS Organizations
|
2788
2850
|
# structure.
|
2789
2851
|
#
|
2852
|
+
# Note that a delegated administrator is not authorized to invoke
|
2853
|
+
# `EnableAWSOrganizationsAccess`.
|
2854
|
+
#
|
2790
2855
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2791
2856
|
#
|
2792
2857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/EnableAWSOrganizationsAccess AWS API Documentation
|
@@ -2939,7 +3004,8 @@ module Aws::ServiceCatalog
|
|
2939
3004
|
end
|
2940
3005
|
|
2941
3006
|
# Get the Access Status for AWS Organization portfolio share feature.
|
2942
|
-
# This API can only be called by the master account in the organization
|
3007
|
+
# This API can only be called by the master account in the organization
|
3008
|
+
# or by a delegated admin.
|
2943
3009
|
#
|
2944
3010
|
# @return [Types::GetAWSOrganizationsAccessStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2945
3011
|
#
|
@@ -3199,7 +3265,10 @@ module Aws::ServiceCatalog
|
|
3199
3265
|
|
3200
3266
|
# Lists the organization nodes that have access to the specified
|
3201
3267
|
# portfolio. This API can only be called by the master account in the
|
3202
|
-
# organization.
|
3268
|
+
# organization or by a delegated admin.
|
3269
|
+
#
|
3270
|
+
# If a delegated admin is de-registered, they can no longer perform this
|
3271
|
+
# operation.
|
3203
3272
|
#
|
3204
3273
|
# @option params [String] :accept_language
|
3205
3274
|
# The language code.
|
@@ -3266,6 +3335,10 @@ module Aws::ServiceCatalog
|
|
3266
3335
|
|
3267
3336
|
# Lists the account IDs that have access to the specified portfolio.
|
3268
3337
|
#
|
3338
|
+
# A delegated admin can list the accounts that have access to the shared
|
3339
|
+
# portfolio. Note that if a delegated admin is de-registered, they can
|
3340
|
+
# no longer perform this operation.
|
3341
|
+
#
|
3269
3342
|
# @option params [String] :accept_language
|
3270
3343
|
# The language code.
|
3271
3344
|
#
|
@@ -5025,9 +5098,9 @@ module Aws::ServiceCatalog
|
|
5025
5098
|
# @option params [required, Hash<String,String>] :provisioned_product_properties
|
5026
5099
|
# A map that contains the provisioned product properties to be updated.
|
5027
5100
|
#
|
5028
|
-
# The `OWNER` key
|
5029
|
-
# allowed to see, update, terminate, and execute service actions
|
5030
|
-
# provisioned product.
|
5101
|
+
# The `OWNER` key accepts user ARNs and role ARNs. The owner is the user
|
5102
|
+
# that is allowed to see, update, terminate, and execute service actions
|
5103
|
+
# in the provisioned product.
|
5031
5104
|
#
|
5032
5105
|
# The administrator can change the owner of a provisioned product to
|
5033
5106
|
# another IAM user within the same account. Both end user owners and
|
@@ -5282,7 +5355,7 @@ module Aws::ServiceCatalog
|
|
5282
5355
|
params: params,
|
5283
5356
|
config: config)
|
5284
5357
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
5285
|
-
context[:gem_version] = '1.
|
5358
|
+
context[:gem_version] = '1.43.0'
|
5286
5359
|
Seahorse::Client::Request.new(handlers, context)
|
5287
5360
|
end
|
5288
5361
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -169,8 +171,10 @@ module Aws::ServiceCatalog
|
|
169
171
|
InvalidParametersException = Shapes::StructureShape.new(name: 'InvalidParametersException')
|
170
172
|
InvalidStateException = Shapes::StructureShape.new(name: 'InvalidStateException')
|
171
173
|
LastRequestId = Shapes::StringShape.new(name: 'LastRequestId')
|
174
|
+
LaunchPath = Shapes::StructureShape.new(name: 'LaunchPath')
|
172
175
|
LaunchPathSummaries = Shapes::ListShape.new(name: 'LaunchPathSummaries')
|
173
176
|
LaunchPathSummary = Shapes::StructureShape.new(name: 'LaunchPathSummary')
|
177
|
+
LaunchPaths = Shapes::ListShape.new(name: 'LaunchPaths')
|
174
178
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
175
179
|
ListAcceptedPortfolioSharesInput = Shapes::StructureShape.new(name: 'ListAcceptedPortfolioSharesInput')
|
176
180
|
ListAcceptedPortfolioSharesOutput = Shapes::StructureShape.new(name: 'ListAcceptedPortfolioSharesOutput')
|
@@ -746,7 +750,8 @@ module Aws::ServiceCatalog
|
|
746
750
|
DescribePortfolioShareStatusOutput.struct_class = Types::DescribePortfolioShareStatusOutput
|
747
751
|
|
748
752
|
DescribeProductAsAdminInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
749
|
-
DescribeProductAsAdminInput.add_member(:id, Shapes::ShapeRef.new(shape: Id,
|
753
|
+
DescribeProductAsAdminInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
|
754
|
+
DescribeProductAsAdminInput.add_member(:name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "Name"))
|
750
755
|
DescribeProductAsAdminInput.struct_class = Types::DescribeProductAsAdminInput
|
751
756
|
|
752
757
|
DescribeProductAsAdminOutput.add_member(:product_view_detail, Shapes::ShapeRef.new(shape: ProductViewDetail, location_name: "ProductViewDetail"))
|
@@ -757,12 +762,14 @@ module Aws::ServiceCatalog
|
|
757
762
|
DescribeProductAsAdminOutput.struct_class = Types::DescribeProductAsAdminOutput
|
758
763
|
|
759
764
|
DescribeProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
760
|
-
DescribeProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id,
|
765
|
+
DescribeProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
|
766
|
+
DescribeProductInput.add_member(:name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "Name"))
|
761
767
|
DescribeProductInput.struct_class = Types::DescribeProductInput
|
762
768
|
|
763
769
|
DescribeProductOutput.add_member(:product_view_summary, Shapes::ShapeRef.new(shape: ProductViewSummary, location_name: "ProductViewSummary"))
|
764
770
|
DescribeProductOutput.add_member(:provisioning_artifacts, Shapes::ShapeRef.new(shape: ProvisioningArtifacts, location_name: "ProvisioningArtifacts"))
|
765
771
|
DescribeProductOutput.add_member(:budgets, Shapes::ShapeRef.new(shape: Budgets, location_name: "Budgets"))
|
772
|
+
DescribeProductOutput.add_member(:launch_paths, Shapes::ShapeRef.new(shape: LaunchPaths, location_name: "LaunchPaths"))
|
766
773
|
DescribeProductOutput.struct_class = Types::DescribeProductOutput
|
767
774
|
|
768
775
|
DescribeProductViewInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
@@ -793,8 +800,10 @@ module Aws::ServiceCatalog
|
|
793
800
|
DescribeProvisionedProductPlanOutput.struct_class = Types::DescribeProvisionedProductPlanOutput
|
794
801
|
|
795
802
|
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,
|
797
|
-
DescribeProvisioningArtifactInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id,
|
803
|
+
DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
|
804
|
+
DescribeProvisioningArtifactInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
|
805
|
+
DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
|
806
|
+
DescribeProvisioningArtifactInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
|
798
807
|
DescribeProvisioningArtifactInput.add_member(:verbose, Shapes::ShapeRef.new(shape: Verbose, location_name: "Verbose"))
|
799
808
|
DescribeProvisioningArtifactInput.struct_class = Types::DescribeProvisioningArtifactInput
|
800
809
|
|
@@ -940,6 +949,10 @@ module Aws::ServiceCatalog
|
|
940
949
|
|
941
950
|
InvalidStateException.struct_class = Types::InvalidStateException
|
942
951
|
|
952
|
+
LaunchPath.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
|
953
|
+
LaunchPath.add_member(:name, Shapes::ShapeRef.new(shape: PortfolioName, location_name: "Name"))
|
954
|
+
LaunchPath.struct_class = Types::LaunchPath
|
955
|
+
|
943
956
|
LaunchPathSummaries.member = Shapes::ShapeRef.new(shape: LaunchPathSummary)
|
944
957
|
|
945
958
|
LaunchPathSummary.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
|
@@ -948,6 +961,8 @@ module Aws::ServiceCatalog
|
|
948
961
|
LaunchPathSummary.add_member(:name, Shapes::ShapeRef.new(shape: PortfolioName, location_name: "Name"))
|
949
962
|
LaunchPathSummary.struct_class = Types::LaunchPathSummary
|
950
963
|
|
964
|
+
LaunchPaths.member = Shapes::ShapeRef.new(shape: LaunchPath)
|
965
|
+
|
951
966
|
LimitExceededException.struct_class = Types::LimitExceededException
|
952
967
|
|
953
968
|
ListAcceptedPortfolioSharesInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
@@ -2055,6 +2070,7 @@ module Aws::ServiceCatalog
|
|
2055
2070
|
o.input = Shapes::ShapeRef.new(shape: DescribeProductAsAdminInput)
|
2056
2071
|
o.output = Shapes::ShapeRef.new(shape: DescribeProductAsAdminOutput)
|
2057
2072
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2073
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
|
2058
2074
|
end)
|
2059
2075
|
|
2060
2076
|
api.add_operation(:describe_product_view, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2093,6 +2109,7 @@ module Aws::ServiceCatalog
|
|
2093
2109
|
o.input = Shapes::ShapeRef.new(shape: DescribeProvisioningArtifactInput)
|
2094
2110
|
o.output = Shapes::ShapeRef.new(shape: DescribeProvisioningArtifactOutput)
|
2095
2111
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2112
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
|
2096
2113
|
end)
|
2097
2114
|
|
2098
2115
|
api.add_operation(:describe_provisioning_parameters, Seahorse::Model::Operation.new.tap do |o|
|