aws-sdk-servicecatalog 1.33.0 → 1.34.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcb79d3daae9179bfd381cdd669d0e488e1fc23b
|
4
|
+
data.tar.gz: fd11fe499083a468a3e5ded619a52ffc439e1227
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e40f03bcf729c77ab35dc75c9c27eac45b483b66b7673cf382035877308d3d9659c00dc8bbe14d3b0d907faf51dd082c6299303ca88c0ee2b0787354f8b16f3
|
7
|
+
data.tar.gz: 80c77954655969aac7e60c291358456388b6ff9a6c652523427debfb6d613ac7616126888c9b5baa51be4f67de25f0fc77b74a7aae0f1a20af445b3cdcfcbb9b
|
@@ -1277,7 +1277,8 @@ module Aws::ServiceCatalog
|
|
1277
1277
|
#
|
1278
1278
|
# : The list of parameters in JSON format.
|
1279
1279
|
#
|
1280
|
-
# For example: `[\{"Name":"InstanceId","Type":"TARGET"\}]
|
1280
|
+
# For example: `[\{"Name":"InstanceId","Type":"TARGET"\}]` or
|
1281
|
+
# `[\{"Name":"InstanceId","Type":"TEXT_VALUE"\}]`.
|
1281
1282
|
#
|
1282
1283
|
# @option params [String] :description
|
1283
1284
|
# The self-service action description.
|
@@ -2434,11 +2435,24 @@ module Aws::ServiceCatalog
|
|
2434
2435
|
req.send_request(options)
|
2435
2436
|
end
|
2436
2437
|
|
2438
|
+
# Finds the default parameters for a specific self-service action on a
|
2439
|
+
# specific provisioned product and returns a map of the results to the
|
2440
|
+
# user.
|
2441
|
+
#
|
2437
2442
|
# @option params [required, String] :provisioned_product_id
|
2443
|
+
# The identifier of the provisioned product.
|
2438
2444
|
#
|
2439
2445
|
# @option params [required, String] :service_action_id
|
2446
|
+
# The self-service action identifier.
|
2440
2447
|
#
|
2441
2448
|
# @option params [String] :accept_language
|
2449
|
+
# The language code.
|
2450
|
+
#
|
2451
|
+
# * `en` - English (default)
|
2452
|
+
#
|
2453
|
+
# * `jp` - Japanese
|
2454
|
+
#
|
2455
|
+
# * `zh` - Chinese
|
2442
2456
|
#
|
2443
2457
|
# @return [Types::DescribeServiceActionExecutionParametersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2444
2458
|
#
|
@@ -2795,6 +2809,12 @@ module Aws::ServiceCatalog
|
|
2795
2809
|
# * `zh` - Chinese
|
2796
2810
|
#
|
2797
2811
|
# @option params [Hash<String,Array>] :parameters
|
2812
|
+
# A map of all self-service action parameters and their values. If a
|
2813
|
+
# provided parameter is of a special type, such as `TARGET`, the
|
2814
|
+
# provided value will override the default value generated by AWS
|
2815
|
+
# Service Catalog. If the parameters field is not provided, no
|
2816
|
+
# additional parameters are passed and default values will be used for
|
2817
|
+
# any special parameters such as `TARGET`.
|
2798
2818
|
#
|
2799
2819
|
# @return [Types::ExecuteProvisionedProductServiceActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2800
2820
|
#
|
@@ -3169,6 +3189,18 @@ module Aws::ServiceCatalog
|
|
3169
3189
|
# @option params [required, String] :portfolio_id
|
3170
3190
|
# The portfolio identifier.
|
3171
3191
|
#
|
3192
|
+
# @option params [String] :organization_parent_id
|
3193
|
+
# The ID of an organization node the portfolio is shared with. All
|
3194
|
+
# children of this node with an inherited portfolio share will be
|
3195
|
+
# returned.
|
3196
|
+
#
|
3197
|
+
# @option params [String] :page_token
|
3198
|
+
# The page token for the next set of results. To retrieve the first set
|
3199
|
+
# of results, use null.
|
3200
|
+
#
|
3201
|
+
# @option params [Integer] :page_size
|
3202
|
+
# The maximum number of items to return with this call.
|
3203
|
+
#
|
3172
3204
|
# @return [Types::ListPortfolioAccessOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3173
3205
|
#
|
3174
3206
|
# * {Types::ListPortfolioAccessOutput#account_ids #account_ids} => Array<String>
|
@@ -3179,6 +3211,9 @@ module Aws::ServiceCatalog
|
|
3179
3211
|
# resp = client.list_portfolio_access({
|
3180
3212
|
# accept_language: "AcceptLanguage",
|
3181
3213
|
# portfolio_id: "Id", # required
|
3214
|
+
# organization_parent_id: "Id",
|
3215
|
+
# page_token: "PageToken",
|
3216
|
+
# page_size: 1,
|
3182
3217
|
# })
|
3183
3218
|
#
|
3184
3219
|
# @example Response structure
|
@@ -4949,6 +4984,10 @@ module Aws::ServiceCatalog
|
|
4949
4984
|
# @option params [Boolean] :active
|
4950
4985
|
# Indicates whether the product version is active.
|
4951
4986
|
#
|
4987
|
+
# Inactive provisioning artifacts are invisible to end users. End users
|
4988
|
+
# cannot launch or update a provisioned product from an inactive
|
4989
|
+
# provisioning artifact.
|
4990
|
+
#
|
4952
4991
|
# @option params [String] :guidance
|
4953
4992
|
# Information set by the administrator to provide guidance to end users
|
4954
4993
|
# about which provisioning artifacts to use.
|
@@ -5109,7 +5148,7 @@ module Aws::ServiceCatalog
|
|
5109
5148
|
params: params,
|
5110
5149
|
config: config)
|
5111
5150
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
5112
|
-
context[:gem_version] = '1.
|
5151
|
+
context[:gem_version] = '1.34.0'
|
5113
5152
|
Seahorse::Client::Request.new(handlers, context)
|
5114
5153
|
end
|
5115
5154
|
|
@@ -994,6 +994,9 @@ module Aws::ServiceCatalog
|
|
994
994
|
|
995
995
|
ListPortfolioAccessInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
996
996
|
ListPortfolioAccessInput.add_member(:portfolio_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "PortfolioId"))
|
997
|
+
ListPortfolioAccessInput.add_member(:organization_parent_id, Shapes::ShapeRef.new(shape: Id, location_name: "OrganizationParentId"))
|
998
|
+
ListPortfolioAccessInput.add_member(:page_token, Shapes::ShapeRef.new(shape: PageToken, location_name: "PageToken"))
|
999
|
+
ListPortfolioAccessInput.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
|
997
1000
|
ListPortfolioAccessInput.struct_class = Types::ListPortfolioAccessInput
|
998
1001
|
|
999
1002
|
ListPortfolioAccessOutput.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIds, location_name: "AccountIds"))
|
@@ -2313,6 +2316,13 @@ module Aws::ServiceCatalog
|
|
2313
2316
|
o.input = Shapes::ShapeRef.new(shape: ListPortfolioAccessInput)
|
2314
2317
|
o.output = Shapes::ShapeRef.new(shape: ListPortfolioAccessOutput)
|
2315
2318
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2319
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
|
2320
|
+
o[:pager] = Aws::Pager.new(
|
2321
|
+
limit_key: "page_size",
|
2322
|
+
tokens: {
|
2323
|
+
"next_page_token" => "page_token"
|
2324
|
+
}
|
2325
|
+
)
|
2316
2326
|
end)
|
2317
2327
|
|
2318
2328
|
api.add_operation(:list_portfolios, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1248,7 +1248,8 @@ module Aws::ServiceCatalog
|
|
1248
1248
|
#
|
1249
1249
|
# : The list of parameters in JSON format.
|
1250
1250
|
#
|
1251
|
-
# For example: `[\{"Name":"InstanceId","Type":"TARGET"\}]
|
1251
|
+
# For example: `[\{"Name":"InstanceId","Type":"TARGET"\}]`
|
1252
|
+
# or `[\{"Name":"InstanceId","Type":"TEXT_VALUE"\}]`.
|
1252
1253
|
# @return [Hash<String,String>]
|
1253
1254
|
#
|
1254
1255
|
# @!attribute [rw] description
|
@@ -2333,12 +2334,21 @@ module Aws::ServiceCatalog
|
|
2333
2334
|
# }
|
2334
2335
|
#
|
2335
2336
|
# @!attribute [rw] provisioned_product_id
|
2337
|
+
# The identifier of the provisioned product.
|
2336
2338
|
# @return [String]
|
2337
2339
|
#
|
2338
2340
|
# @!attribute [rw] service_action_id
|
2341
|
+
# The self-service action identifier.
|
2339
2342
|
# @return [String]
|
2340
2343
|
#
|
2341
2344
|
# @!attribute [rw] accept_language
|
2345
|
+
# The language code.
|
2346
|
+
#
|
2347
|
+
# * `en` - English (default)
|
2348
|
+
#
|
2349
|
+
# * `jp` - Japanese
|
2350
|
+
#
|
2351
|
+
# * `zh` - Chinese
|
2342
2352
|
# @return [String]
|
2343
2353
|
#
|
2344
2354
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionExecutionParametersInput AWS API Documentation
|
@@ -2351,6 +2361,7 @@ module Aws::ServiceCatalog
|
|
2351
2361
|
end
|
2352
2362
|
|
2353
2363
|
# @!attribute [rw] service_action_parameters
|
2364
|
+
# The parameters of the self-service action.
|
2354
2365
|
# @return [Array<Types::ExecutionParameter>]
|
2355
2366
|
#
|
2356
2367
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionExecutionParametersOutput AWS API Documentation
|
@@ -2727,6 +2738,12 @@ module Aws::ServiceCatalog
|
|
2727
2738
|
# @return [String]
|
2728
2739
|
#
|
2729
2740
|
# @!attribute [rw] parameters
|
2741
|
+
# A map of all self-service action parameters and their values. If a
|
2742
|
+
# provided parameter is of a special type, such as `TARGET`, the
|
2743
|
+
# provided value will override the default value generated by AWS
|
2744
|
+
# Service Catalog. If the parameters field is not provided, no
|
2745
|
+
# additional parameters are passed and default values will be used for
|
2746
|
+
# any special parameters such as `TARGET`.
|
2730
2747
|
# @return [Hash<String,Array<String>>]
|
2731
2748
|
#
|
2732
2749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductServiceActionInput AWS API Documentation
|
@@ -2752,13 +2769,19 @@ module Aws::ServiceCatalog
|
|
2752
2769
|
include Aws::Structure
|
2753
2770
|
end
|
2754
2771
|
|
2772
|
+
# Details of an execution parameter value that is passed to a
|
2773
|
+
# self-service action when executed on a provisioned product.
|
2774
|
+
#
|
2755
2775
|
# @!attribute [rw] name
|
2776
|
+
# The name of the execution parameter.
|
2756
2777
|
# @return [String]
|
2757
2778
|
#
|
2758
2779
|
# @!attribute [rw] type
|
2780
|
+
# The execution parameter type.
|
2759
2781
|
# @return [String]
|
2760
2782
|
#
|
2761
2783
|
# @!attribute [rw] default_values
|
2784
|
+
# The default values for the execution parameter.
|
2762
2785
|
# @return [Array<String>]
|
2763
2786
|
#
|
2764
2787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecutionParameter AWS API Documentation
|
@@ -3186,6 +3209,9 @@ module Aws::ServiceCatalog
|
|
3186
3209
|
# {
|
3187
3210
|
# accept_language: "AcceptLanguage",
|
3188
3211
|
# portfolio_id: "Id", # required
|
3212
|
+
# organization_parent_id: "Id",
|
3213
|
+
# page_token: "PageToken",
|
3214
|
+
# page_size: 1,
|
3189
3215
|
# }
|
3190
3216
|
#
|
3191
3217
|
# @!attribute [rw] accept_language
|
@@ -3202,11 +3228,29 @@ module Aws::ServiceCatalog
|
|
3202
3228
|
# The portfolio identifier.
|
3203
3229
|
# @return [String]
|
3204
3230
|
#
|
3231
|
+
# @!attribute [rw] organization_parent_id
|
3232
|
+
# The ID of an organization node the portfolio is shared with. All
|
3233
|
+
# children of this node with an inherited portfolio share will be
|
3234
|
+
# returned.
|
3235
|
+
# @return [String]
|
3236
|
+
#
|
3237
|
+
# @!attribute [rw] page_token
|
3238
|
+
# The page token for the next set of results. To retrieve the first
|
3239
|
+
# set of results, use null.
|
3240
|
+
# @return [String]
|
3241
|
+
#
|
3242
|
+
# @!attribute [rw] page_size
|
3243
|
+
# The maximum number of items to return with this call.
|
3244
|
+
# @return [Integer]
|
3245
|
+
#
|
3205
3246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListPortfolioAccessInput AWS API Documentation
|
3206
3247
|
#
|
3207
3248
|
class ListPortfolioAccessInput < Struct.new(
|
3208
3249
|
:accept_language,
|
3209
|
-
:portfolio_id
|
3250
|
+
:portfolio_id,
|
3251
|
+
:organization_parent_id,
|
3252
|
+
:page_token,
|
3253
|
+
:page_size)
|
3210
3254
|
include Aws::Structure
|
3211
3255
|
end
|
3212
3256
|
|
@@ -6645,6 +6689,10 @@ module Aws::ServiceCatalog
|
|
6645
6689
|
#
|
6646
6690
|
# @!attribute [rw] active
|
6647
6691
|
# Indicates whether the product version is active.
|
6692
|
+
#
|
6693
|
+
# Inactive provisioning artifacts are invisible to end users. End
|
6694
|
+
# users cannot launch or update a provisioned product from an inactive
|
6695
|
+
# provisioning artifact.
|
6648
6696
|
# @return [Boolean]
|
6649
6697
|
#
|
6650
6698
|
# @!attribute [rw] guidance
|
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.
|
4
|
+
version: 1.34.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:
|
11
|
+
date: 2020-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|