aws-sdk-servicecatalog 1.45.0 → 1.50.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 -2
- data/lib/aws-sdk-servicecatalog/client.rb +116 -29
- data/lib/aws-sdk-servicecatalog/client_api.rb +36 -1
- data/lib/aws-sdk-servicecatalog/types.rb +102 -11
- 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: 2f789325a33be8f521fdf12bc60e848a9524be45ea47ca6b3d895cc44b175651
|
4
|
+
data.tar.gz: 9a21e0b10e94c42f8e58bdb8b7206456f2d00529ce8dc8eec42a75ab3ac564f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cde3457a5e2f10a22e405cac55f2dc19fe700bef22f2738fd83d0bdf36b5a7a0cefaa1595005e34e3119122fd81fab2beddac9261d95fe92a42d8686d6cb8ad5
|
7
|
+
data.tar.gz: 57da4589f1e898cc38bf0854645a9a608c6eac90aa95487e04a5f45ca7b165a9211b34f2855dcf26268548e70607f6e4e6ac4d91bd218ae09c09d6325d3c6aa1
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-servicecatalog/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::ServiceCatalog
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.50.0'
|
51
52
|
|
52
53
|
end
|
@@ -85,13 +85,28 @@ module Aws::ServiceCatalog
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::ServiceCatalog
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -340,8 +355,8 @@ module Aws::ServiceCatalog
|
|
340
355
|
# The type of shared portfolios to accept. The default is to accept
|
341
356
|
# imported portfolios.
|
342
357
|
#
|
343
|
-
# * `AWS_ORGANIZATIONS` - Accept portfolios shared by the
|
344
|
-
# of your organization.
|
358
|
+
# * `AWS_ORGANIZATIONS` - Accept portfolios shared by the management
|
359
|
+
# account of your organization.
|
345
360
|
#
|
346
361
|
# * `IMPORTED` - Accept imported portfolios.
|
347
362
|
#
|
@@ -959,7 +974,7 @@ module Aws::ServiceCatalog
|
|
959
974
|
|
960
975
|
# Shares the specified portfolio with the specified account or
|
961
976
|
# organization node. Shares to an organization node can only be created
|
962
|
-
# by the
|
977
|
+
# by the management account of an organization or by a delegated
|
963
978
|
# administrator. You can share portfolios to an organization, an
|
964
979
|
# organizational unit, or a specific account.
|
965
980
|
#
|
@@ -990,9 +1005,10 @@ module Aws::ServiceCatalog
|
|
990
1005
|
# @option params [Types::OrganizationNode] :organization_node
|
991
1006
|
# The organization node to whom you are going to share. If
|
992
1007
|
# `OrganizationNode` is passed in, `PortfolioShare` will be created for
|
993
|
-
# the node
|
994
|
-
# will be returned in the output
|
995
|
-
# monitor the status of the
|
1008
|
+
# the node an ListOrganizationPortfolioAccessd its children (when
|
1009
|
+
# applies), and a `PortfolioShareToken` will be returned in the output
|
1010
|
+
# in order for the administrator to monitor the status of the
|
1011
|
+
# `PortfolioShare` creation process.
|
996
1012
|
#
|
997
1013
|
# @return [Types::CreatePortfolioShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
998
1014
|
#
|
@@ -1542,7 +1558,7 @@ module Aws::ServiceCatalog
|
|
1542
1558
|
|
1543
1559
|
# Stops sharing the specified portfolio with the specified account or
|
1544
1560
|
# organization node. Shares to an organization node can only be deleted
|
1545
|
-
# by the
|
1561
|
+
# by the management account of an organization or by a delegated
|
1546
1562
|
# administrator.
|
1547
1563
|
#
|
1548
1564
|
# Note that if a delegated admin is de-registered, portfolio shares
|
@@ -1917,8 +1933,8 @@ module Aws::ServiceCatalog
|
|
1917
1933
|
end
|
1918
1934
|
|
1919
1935
|
# Gets the status of the specified portfolio share operation. This API
|
1920
|
-
# can only be called by the
|
1921
|
-
# delegated admin.
|
1936
|
+
# can only be called by the management account in the organization or by
|
1937
|
+
# a delegated admin.
|
1922
1938
|
#
|
1923
1939
|
# @option params [required, String] :portfolio_share_token
|
1924
1940
|
# The token for the portfolio share operation. This token is returned
|
@@ -2170,9 +2186,12 @@ module Aws::ServiceCatalog
|
|
2170
2186
|
#
|
2171
2187
|
# * `zh` - Chinese
|
2172
2188
|
#
|
2173
|
-
# @option params [
|
2189
|
+
# @option params [String] :id
|
2174
2190
|
# The provisioned product identifier.
|
2175
2191
|
#
|
2192
|
+
# @option params [String] :name
|
2193
|
+
# The name of the provisioned product.
|
2194
|
+
#
|
2176
2195
|
# @return [Types::DescribeProvisionedProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2177
2196
|
#
|
2178
2197
|
# * {Types::DescribeProvisionedProductOutput#provisioned_product_detail #provisioned_product_detail} => Types::ProvisionedProductDetail
|
@@ -2182,7 +2201,8 @@ module Aws::ServiceCatalog
|
|
2182
2201
|
#
|
2183
2202
|
# resp = client.describe_provisioned_product({
|
2184
2203
|
# accept_language: "AcceptLanguage",
|
2185
|
-
# id: "Id",
|
2204
|
+
# id: "Id",
|
2205
|
+
# name: "ProvisionedProductName",
|
2186
2206
|
# })
|
2187
2207
|
#
|
2188
2208
|
# @example Response structure
|
@@ -2675,7 +2695,7 @@ module Aws::ServiceCatalog
|
|
2675
2695
|
# feature will not delete your current shares but it will prevent you
|
2676
2696
|
# from creating new shares throughout your organization. Current shares
|
2677
2697
|
# will not be in sync with your organization structure if it changes
|
2678
|
-
# after calling this API. This API can only be called by the
|
2698
|
+
# after calling this API. This API can only be called by the management
|
2679
2699
|
# account in the organization.
|
2680
2700
|
#
|
2681
2701
|
# This API can't be invoked if there are active delegated
|
@@ -2868,7 +2888,7 @@ module Aws::ServiceCatalog
|
|
2868
2888
|
# Enable portfolio sharing feature through AWS Organizations. This API
|
2869
2889
|
# will allow Service Catalog to receive updates on your organization in
|
2870
2890
|
# order to sync your shares with the current structure. This API can
|
2871
|
-
# only be called by the
|
2891
|
+
# only be called by the management account in the organization.
|
2872
2892
|
#
|
2873
2893
|
# By calling this API Service Catalog will make a call to
|
2874
2894
|
# organizations:EnableAWSServiceAccess on your behalf so that your
|
@@ -3030,8 +3050,8 @@ module Aws::ServiceCatalog
|
|
3030
3050
|
end
|
3031
3051
|
|
3032
3052
|
# Get the Access Status for AWS Organization portfolio share feature.
|
3033
|
-
# This API can only be called by the
|
3034
|
-
# or by a delegated admin.
|
3053
|
+
# This API can only be called by the management account in the
|
3054
|
+
# organization or by a delegated admin.
|
3035
3055
|
#
|
3036
3056
|
# @return [Types::GetAWSOrganizationsAccessStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3037
3057
|
#
|
@@ -3050,6 +3070,73 @@ module Aws::ServiceCatalog
|
|
3050
3070
|
req.send_request(options)
|
3051
3071
|
end
|
3052
3072
|
|
3073
|
+
# This API takes either a `ProvisonedProductId` or a
|
3074
|
+
# `ProvisionedProductName`, along with a list of one or more output
|
3075
|
+
# keys, and responds with the key/value pairs of those outputs.
|
3076
|
+
#
|
3077
|
+
# @option params [String] :accept_language
|
3078
|
+
# The language code.
|
3079
|
+
#
|
3080
|
+
# * `en` - English (default)
|
3081
|
+
#
|
3082
|
+
# * `jp` - Japanese
|
3083
|
+
#
|
3084
|
+
# * `zh` - Chinese
|
3085
|
+
#
|
3086
|
+
# @option params [String] :provisioned_product_id
|
3087
|
+
# The identifier of the provisioned product that you want the outputs
|
3088
|
+
# from.
|
3089
|
+
#
|
3090
|
+
# @option params [String] :provisioned_product_name
|
3091
|
+
# The name of the provisioned product that you want the outputs from.
|
3092
|
+
#
|
3093
|
+
# @option params [Array<String>] :output_keys
|
3094
|
+
# The list of keys that the API should return with their values. If none
|
3095
|
+
# are provided, the API will return all outputs of the provisioned
|
3096
|
+
# product.
|
3097
|
+
#
|
3098
|
+
# @option params [Integer] :page_size
|
3099
|
+
# The maximum number of items to return with this call.
|
3100
|
+
#
|
3101
|
+
# @option params [String] :page_token
|
3102
|
+
# The page token for the next set of results. To retrieve the first set
|
3103
|
+
# of results, use null.
|
3104
|
+
#
|
3105
|
+
# @return [Types::GetProvisionedProductOutputsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3106
|
+
#
|
3107
|
+
# * {Types::GetProvisionedProductOutputsOutput#outputs #outputs} => Array<Types::RecordOutput>
|
3108
|
+
# * {Types::GetProvisionedProductOutputsOutput#next_page_token #next_page_token} => String
|
3109
|
+
#
|
3110
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3111
|
+
#
|
3112
|
+
# @example Request syntax with placeholder values
|
3113
|
+
#
|
3114
|
+
# resp = client.get_provisioned_product_outputs({
|
3115
|
+
# accept_language: "AcceptLanguage",
|
3116
|
+
# provisioned_product_id: "Id",
|
3117
|
+
# provisioned_product_name: "ProvisionedProductName",
|
3118
|
+
# output_keys: ["OutputKey"],
|
3119
|
+
# page_size: 1,
|
3120
|
+
# page_token: "PageToken",
|
3121
|
+
# })
|
3122
|
+
#
|
3123
|
+
# @example Response structure
|
3124
|
+
#
|
3125
|
+
# resp.outputs #=> Array
|
3126
|
+
# resp.outputs[0].output_key #=> String
|
3127
|
+
# resp.outputs[0].output_value #=> String
|
3128
|
+
# resp.outputs[0].description #=> String
|
3129
|
+
# resp.next_page_token #=> String
|
3130
|
+
#
|
3131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/GetProvisionedProductOutputs AWS API Documentation
|
3132
|
+
#
|
3133
|
+
# @overload get_provisioned_product_outputs(params = {})
|
3134
|
+
# @param [Hash] params ({})
|
3135
|
+
def get_provisioned_product_outputs(params = {}, options = {})
|
3136
|
+
req = build_request(:get_provisioned_product_outputs, params)
|
3137
|
+
req.send_request(options)
|
3138
|
+
end
|
3139
|
+
|
3053
3140
|
# Lists all portfolios for which sharing was accepted by this account.
|
3054
3141
|
#
|
3055
3142
|
# @option params [String] :accept_language
|
@@ -3072,8 +3159,8 @@ module Aws::ServiceCatalog
|
|
3072
3159
|
# The type of shared portfolios to list. The default is to list imported
|
3073
3160
|
# portfolios.
|
3074
3161
|
#
|
3075
|
-
# * `AWS_ORGANIZATIONS` - List portfolios shared by the
|
3076
|
-
# of your organization
|
3162
|
+
# * `AWS_ORGANIZATIONS` - List portfolios shared by the management
|
3163
|
+
# account of your organization
|
3077
3164
|
#
|
3078
3165
|
# * `AWS_SERVICECATALOG` - List default portfolios
|
3079
3166
|
#
|
@@ -3290,8 +3377,8 @@ module Aws::ServiceCatalog
|
|
3290
3377
|
end
|
3291
3378
|
|
3292
3379
|
# Lists the organization nodes that have access to the specified
|
3293
|
-
# portfolio. This API can only be called by the
|
3294
|
-
# organization or by a delegated admin.
|
3380
|
+
# portfolio. This API can only be called by the management account in
|
3381
|
+
# the organization or by a delegated admin.
|
3295
3382
|
#
|
3296
3383
|
# If a delegated admin is de-registered, they can no longer perform this
|
3297
3384
|
# operation.
|
@@ -4268,8 +4355,8 @@ module Aws::ServiceCatalog
|
|
4268
4355
|
# The type of shared portfolios to reject. The default is to reject
|
4269
4356
|
# imported portfolios.
|
4270
4357
|
#
|
4271
|
-
# * `AWS_ORGANIZATIONS` - Reject portfolios shared by the
|
4272
|
-
# of your organization.
|
4358
|
+
# * `AWS_ORGANIZATIONS` - Reject portfolios shared by the management
|
4359
|
+
# account of your organization.
|
4273
4360
|
#
|
4274
4361
|
# * `IMPORTED` - Reject imported portfolios.
|
4275
4362
|
#
|
@@ -5421,7 +5508,7 @@ module Aws::ServiceCatalog
|
|
5421
5508
|
params: params,
|
5422
5509
|
config: config)
|
5423
5510
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
5424
|
-
context[:gem_version] = '1.
|
5511
|
+
context[:gem_version] = '1.50.0'
|
5425
5512
|
Seahorse::Client::Request.new(handlers, context)
|
5426
5513
|
end
|
5427
5514
|
|
@@ -162,6 +162,8 @@ module Aws::ServiceCatalog
|
|
162
162
|
FailedServiceActionAssociations = Shapes::ListShape.new(name: 'FailedServiceActionAssociations')
|
163
163
|
GetAWSOrganizationsAccessStatusInput = Shapes::StructureShape.new(name: 'GetAWSOrganizationsAccessStatusInput')
|
164
164
|
GetAWSOrganizationsAccessStatusOutput = Shapes::StructureShape.new(name: 'GetAWSOrganizationsAccessStatusOutput')
|
165
|
+
GetProvisionedProductOutputsInput = Shapes::StructureShape.new(name: 'GetProvisionedProductOutputsInput')
|
166
|
+
GetProvisionedProductOutputsOutput = Shapes::StructureShape.new(name: 'GetProvisionedProductOutputsOutput')
|
165
167
|
HasDefaultPath = Shapes::BooleanShape.new(name: 'HasDefaultPath')
|
166
168
|
Id = Shapes::StringShape.new(name: 'Id')
|
167
169
|
IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
|
@@ -227,6 +229,7 @@ module Aws::ServiceCatalog
|
|
227
229
|
OrganizationNodes = Shapes::ListShape.new(name: 'OrganizationNodes')
|
228
230
|
OutputDescription = Shapes::StringShape.new(name: 'OutputDescription')
|
229
231
|
OutputKey = Shapes::StringShape.new(name: 'OutputKey')
|
232
|
+
OutputKeys = Shapes::ListShape.new(name: 'OutputKeys')
|
230
233
|
OutputValue = Shapes::StringShape.new(name: 'OutputValue')
|
231
234
|
PageSize = Shapes::IntegerShape.new(name: 'PageSize')
|
232
235
|
PageToken = Shapes::StringShape.new(name: 'PageToken')
|
@@ -785,7 +788,8 @@ module Aws::ServiceCatalog
|
|
785
788
|
DescribeProductViewOutput.struct_class = Types::DescribeProductViewOutput
|
786
789
|
|
787
790
|
DescribeProvisionedProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
788
|
-
DescribeProvisionedProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id,
|
791
|
+
DescribeProvisionedProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
|
792
|
+
DescribeProvisionedProductInput.add_member(:name, Shapes::ShapeRef.new(shape: ProvisionedProductName, location_name: "Name"))
|
789
793
|
DescribeProvisionedProductInput.struct_class = Types::DescribeProvisionedProductInput
|
790
794
|
|
791
795
|
DescribeProvisionedProductOutput.add_member(:provisioned_product_detail, Shapes::ShapeRef.new(shape: ProvisionedProductDetail, location_name: "ProvisionedProductDetail"))
|
@@ -953,6 +957,18 @@ module Aws::ServiceCatalog
|
|
953
957
|
GetAWSOrganizationsAccessStatusOutput.add_member(:access_status, Shapes::ShapeRef.new(shape: AccessStatus, location_name: "AccessStatus"))
|
954
958
|
GetAWSOrganizationsAccessStatusOutput.struct_class = Types::GetAWSOrganizationsAccessStatusOutput
|
955
959
|
|
960
|
+
GetProvisionedProductOutputsInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
961
|
+
GetProvisionedProductOutputsInput.add_member(:provisioned_product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisionedProductId"))
|
962
|
+
GetProvisionedProductOutputsInput.add_member(:provisioned_product_name, Shapes::ShapeRef.new(shape: ProvisionedProductName, location_name: "ProvisionedProductName"))
|
963
|
+
GetProvisionedProductOutputsInput.add_member(:output_keys, Shapes::ShapeRef.new(shape: OutputKeys, location_name: "OutputKeys"))
|
964
|
+
GetProvisionedProductOutputsInput.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
|
965
|
+
GetProvisionedProductOutputsInput.add_member(:page_token, Shapes::ShapeRef.new(shape: PageToken, location_name: "PageToken"))
|
966
|
+
GetProvisionedProductOutputsInput.struct_class = Types::GetProvisionedProductOutputsInput
|
967
|
+
|
968
|
+
GetProvisionedProductOutputsOutput.add_member(:outputs, Shapes::ShapeRef.new(shape: RecordOutputs, location_name: "Outputs"))
|
969
|
+
GetProvisionedProductOutputsOutput.add_member(:next_page_token, Shapes::ShapeRef.new(shape: PageToken, location_name: "NextPageToken"))
|
970
|
+
GetProvisionedProductOutputsOutput.struct_class = Types::GetProvisionedProductOutputsOutput
|
971
|
+
|
956
972
|
InvalidParametersException.struct_class = Types::InvalidParametersException
|
957
973
|
|
958
974
|
InvalidStateException.struct_class = Types::InvalidStateException
|
@@ -1175,6 +1191,8 @@ module Aws::ServiceCatalog
|
|
1175
1191
|
|
1176
1192
|
OrganizationNodes.member = Shapes::ShapeRef.new(shape: OrganizationNode)
|
1177
1193
|
|
1194
|
+
OutputKeys.member = Shapes::ShapeRef.new(shape: OutputKey)
|
1195
|
+
|
1178
1196
|
ParameterConstraints.add_member(:allowed_values, Shapes::ShapeRef.new(shape: AllowedValues, location_name: "AllowedValues"))
|
1179
1197
|
ParameterConstraints.struct_class = Types::ParameterConstraints
|
1180
1198
|
|
@@ -2116,6 +2134,7 @@ module Aws::ServiceCatalog
|
|
2116
2134
|
o.input = Shapes::ShapeRef.new(shape: DescribeProvisionedProductInput)
|
2117
2135
|
o.output = Shapes::ShapeRef.new(shape: DescribeProvisionedProductOutput)
|
2118
2136
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2137
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
|
2119
2138
|
end)
|
2120
2139
|
|
2121
2140
|
api.add_operation(:describe_provisioned_product_plan, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2289,6 +2308,22 @@ module Aws::ServiceCatalog
|
|
2289
2308
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
|
2290
2309
|
end)
|
2291
2310
|
|
2311
|
+
api.add_operation(:get_provisioned_product_outputs, Seahorse::Model::Operation.new.tap do |o|
|
2312
|
+
o.name = "GetProvisionedProductOutputs"
|
2313
|
+
o.http_method = "POST"
|
2314
|
+
o.http_request_uri = "/"
|
2315
|
+
o.input = Shapes::ShapeRef.new(shape: GetProvisionedProductOutputsInput)
|
2316
|
+
o.output = Shapes::ShapeRef.new(shape: GetProvisionedProductOutputsOutput)
|
2317
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
|
2318
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2319
|
+
o[:pager] = Aws::Pager.new(
|
2320
|
+
limit_key: "page_size",
|
2321
|
+
tokens: {
|
2322
|
+
"next_page_token" => "page_token"
|
2323
|
+
}
|
2324
|
+
)
|
2325
|
+
end)
|
2326
|
+
|
2292
2327
|
api.add_operation(:list_accepted_portfolio_shares, Seahorse::Model::Operation.new.tap do |o|
|
2293
2328
|
o.name = "ListAcceptedPortfolioShares"
|
2294
2329
|
o.http_method = "POST"
|
@@ -37,7 +37,7 @@ module Aws::ServiceCatalog
|
|
37
37
|
# The type of shared portfolios to accept. The default is to accept
|
38
38
|
# imported portfolios.
|
39
39
|
#
|
40
|
-
# * `AWS_ORGANIZATIONS` - Accept portfolios shared by the
|
40
|
+
# * `AWS_ORGANIZATIONS` - Accept portfolios shared by the management
|
41
41
|
# account of your organization.
|
42
42
|
#
|
43
43
|
# * `IMPORTED` - Accept imported portfolios.
|
@@ -881,10 +881,10 @@ module Aws::ServiceCatalog
|
|
881
881
|
# @!attribute [rw] organization_node
|
882
882
|
# The organization node to whom you are going to share. If
|
883
883
|
# `OrganizationNode` is passed in, `PortfolioShare` will be created
|
884
|
-
# for the node
|
885
|
-
# `PortfolioShareToken` will be returned in the output
|
886
|
-
# the administrator to monitor the status of the
|
887
|
-
# creation process.
|
884
|
+
# for the node an ListOrganizationPortfolioAccessd its children (when
|
885
|
+
# applies), and a `PortfolioShareToken` will be returned in the output
|
886
|
+
# in order for the administrator to monitor the status of the
|
887
|
+
# `PortfolioShare` creation process.
|
888
888
|
# @return [Types::OrganizationNode]
|
889
889
|
#
|
890
890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreatePortfolioShareInput AWS API Documentation
|
@@ -899,7 +899,7 @@ module Aws::ServiceCatalog
|
|
899
899
|
end
|
900
900
|
|
901
901
|
# @!attribute [rw] portfolio_share_token
|
902
|
-
# The portfolio
|
902
|
+
# The portfolio shares a unique identifier that only returns if the
|
903
903
|
# portfolio is shared to an organization node.
|
904
904
|
# @return [String]
|
905
905
|
#
|
@@ -2113,12 +2113,19 @@ module Aws::ServiceCatalog
|
|
2113
2113
|
include Aws::Structure
|
2114
2114
|
end
|
2115
2115
|
|
2116
|
+
# DescribeProvisionedProductAPI input structure. AcceptLanguage -
|
2117
|
+
# \[Optional\] The language code for localization. Id - \[Optional\] The
|
2118
|
+
# provisioned product identifier. Name - \[Optional\] Another
|
2119
|
+
# provisioned product identifier. Customers must provide either Id or
|
2120
|
+
# Name.
|
2121
|
+
#
|
2116
2122
|
# @note When making an API call, you may pass DescribeProvisionedProductInput
|
2117
2123
|
# data as a hash:
|
2118
2124
|
#
|
2119
2125
|
# {
|
2120
2126
|
# accept_language: "AcceptLanguage",
|
2121
|
-
# id: "Id",
|
2127
|
+
# id: "Id",
|
2128
|
+
# name: "ProvisionedProductName",
|
2122
2129
|
# }
|
2123
2130
|
#
|
2124
2131
|
# @!attribute [rw] accept_language
|
@@ -2135,11 +2142,16 @@ module Aws::ServiceCatalog
|
|
2135
2142
|
# The provisioned product identifier.
|
2136
2143
|
# @return [String]
|
2137
2144
|
#
|
2145
|
+
# @!attribute [rw] name
|
2146
|
+
# The name of the provisioned product.
|
2147
|
+
# @return [String]
|
2148
|
+
#
|
2138
2149
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductInput AWS API Documentation
|
2139
2150
|
#
|
2140
2151
|
class DescribeProvisionedProductInput < Struct.new(
|
2141
2152
|
:accept_language,
|
2142
|
-
:id
|
2153
|
+
:id,
|
2154
|
+
:name)
|
2143
2155
|
SENSITIVE = []
|
2144
2156
|
include Aws::Structure
|
2145
2157
|
end
|
@@ -3032,6 +3044,85 @@ module Aws::ServiceCatalog
|
|
3032
3044
|
include Aws::Structure
|
3033
3045
|
end
|
3034
3046
|
|
3047
|
+
# @note When making an API call, you may pass GetProvisionedProductOutputsInput
|
3048
|
+
# data as a hash:
|
3049
|
+
#
|
3050
|
+
# {
|
3051
|
+
# accept_language: "AcceptLanguage",
|
3052
|
+
# provisioned_product_id: "Id",
|
3053
|
+
# provisioned_product_name: "ProvisionedProductName",
|
3054
|
+
# output_keys: ["OutputKey"],
|
3055
|
+
# page_size: 1,
|
3056
|
+
# page_token: "PageToken",
|
3057
|
+
# }
|
3058
|
+
#
|
3059
|
+
# @!attribute [rw] accept_language
|
3060
|
+
# The language code.
|
3061
|
+
#
|
3062
|
+
# * `en` - English (default)
|
3063
|
+
#
|
3064
|
+
# * `jp` - Japanese
|
3065
|
+
#
|
3066
|
+
# * `zh` - Chinese
|
3067
|
+
# @return [String]
|
3068
|
+
#
|
3069
|
+
# @!attribute [rw] provisioned_product_id
|
3070
|
+
# The identifier of the provisioned product that you want the outputs
|
3071
|
+
# from.
|
3072
|
+
# @return [String]
|
3073
|
+
#
|
3074
|
+
# @!attribute [rw] provisioned_product_name
|
3075
|
+
# The name of the provisioned product that you want the outputs from.
|
3076
|
+
# @return [String]
|
3077
|
+
#
|
3078
|
+
# @!attribute [rw] output_keys
|
3079
|
+
# The list of keys that the API should return with their values. If
|
3080
|
+
# none are provided, the API will return all outputs of the
|
3081
|
+
# provisioned product.
|
3082
|
+
# @return [Array<String>]
|
3083
|
+
#
|
3084
|
+
# @!attribute [rw] page_size
|
3085
|
+
# The maximum number of items to return with this call.
|
3086
|
+
# @return [Integer]
|
3087
|
+
#
|
3088
|
+
# @!attribute [rw] page_token
|
3089
|
+
# The page token for the next set of results. To retrieve the first
|
3090
|
+
# set of results, use null.
|
3091
|
+
# @return [String]
|
3092
|
+
#
|
3093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/GetProvisionedProductOutputsInput AWS API Documentation
|
3094
|
+
#
|
3095
|
+
class GetProvisionedProductOutputsInput < Struct.new(
|
3096
|
+
:accept_language,
|
3097
|
+
:provisioned_product_id,
|
3098
|
+
:provisioned_product_name,
|
3099
|
+
:output_keys,
|
3100
|
+
:page_size,
|
3101
|
+
:page_token)
|
3102
|
+
SENSITIVE = []
|
3103
|
+
include Aws::Structure
|
3104
|
+
end
|
3105
|
+
|
3106
|
+
# @!attribute [rw] outputs
|
3107
|
+
# Information about the product created as the result of a request.
|
3108
|
+
# For example, the output for a CloudFormation-backed product that
|
3109
|
+
# creates an S3 bucket would include the S3 bucket URL.
|
3110
|
+
# @return [Array<Types::RecordOutput>]
|
3111
|
+
#
|
3112
|
+
# @!attribute [rw] next_page_token
|
3113
|
+
# The page token to use to retrieve the next set of results. If there
|
3114
|
+
# are no additional results, this value is null.
|
3115
|
+
# @return [String]
|
3116
|
+
#
|
3117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/GetProvisionedProductOutputsOutput AWS API Documentation
|
3118
|
+
#
|
3119
|
+
class GetProvisionedProductOutputsOutput < Struct.new(
|
3120
|
+
:outputs,
|
3121
|
+
:next_page_token)
|
3122
|
+
SENSITIVE = []
|
3123
|
+
include Aws::Structure
|
3124
|
+
end
|
3125
|
+
|
3035
3126
|
# One or more parameters provided to the operation are not valid.
|
3036
3127
|
#
|
3037
3128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/InvalidParametersException AWS API Documentation
|
@@ -3135,8 +3226,8 @@ module Aws::ServiceCatalog
|
|
3135
3226
|
# The type of shared portfolios to list. The default is to list
|
3136
3227
|
# imported portfolios.
|
3137
3228
|
#
|
3138
|
-
# * `AWS_ORGANIZATIONS` - List portfolios shared by the
|
3139
|
-
# of your organization
|
3229
|
+
# * `AWS_ORGANIZATIONS` - List portfolios shared by the management
|
3230
|
+
# account of your organization
|
3140
3231
|
#
|
3141
3232
|
# * `AWS_SERVICECATALOG` - List default portfolios
|
3142
3233
|
#
|
@@ -5735,7 +5826,7 @@ module Aws::ServiceCatalog
|
|
5735
5826
|
# The type of shared portfolios to reject. The default is to reject
|
5736
5827
|
# imported portfolios.
|
5737
5828
|
#
|
5738
|
-
# * `AWS_ORGANIZATIONS` - Reject portfolios shared by the
|
5829
|
+
# * `AWS_ORGANIZATIONS` - Reject portfolios shared by the management
|
5739
5830
|
# account of your organization.
|
5740
5831
|
#
|
5741
5832
|
# * `IMPORTED` - Reject imported portfolios.
|
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.50.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
|
+
date: 2020-10-09 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.
|
22
|
+
version: 3.109.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.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|