aws-sdk-servicecatalog 1.105.0 → 1.107.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-servicecatalog/client.rb +17 -17
- data/lib/aws-sdk-servicecatalog/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-servicecatalog/endpoints.rb +2 -988
- data/lib/aws-sdk-servicecatalog/plugins/endpoints.rb +1 -186
- data/lib/aws-sdk-servicecatalog/types.rb +18 -18
- data/lib/aws-sdk-servicecatalog.rb +1 -1
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::ServiceCatalog::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,191 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :accept_portfolio_share
|
74
|
-
Aws::ServiceCatalog::Endpoints::AcceptPortfolioShare.build(context)
|
75
|
-
when :associate_budget_with_resource
|
76
|
-
Aws::ServiceCatalog::Endpoints::AssociateBudgetWithResource.build(context)
|
77
|
-
when :associate_principal_with_portfolio
|
78
|
-
Aws::ServiceCatalog::Endpoints::AssociatePrincipalWithPortfolio.build(context)
|
79
|
-
when :associate_product_with_portfolio
|
80
|
-
Aws::ServiceCatalog::Endpoints::AssociateProductWithPortfolio.build(context)
|
81
|
-
when :associate_service_action_with_provisioning_artifact
|
82
|
-
Aws::ServiceCatalog::Endpoints::AssociateServiceActionWithProvisioningArtifact.build(context)
|
83
|
-
when :associate_tag_option_with_resource
|
84
|
-
Aws::ServiceCatalog::Endpoints::AssociateTagOptionWithResource.build(context)
|
85
|
-
when :batch_associate_service_action_with_provisioning_artifact
|
86
|
-
Aws::ServiceCatalog::Endpoints::BatchAssociateServiceActionWithProvisioningArtifact.build(context)
|
87
|
-
when :batch_disassociate_service_action_from_provisioning_artifact
|
88
|
-
Aws::ServiceCatalog::Endpoints::BatchDisassociateServiceActionFromProvisioningArtifact.build(context)
|
89
|
-
when :copy_product
|
90
|
-
Aws::ServiceCatalog::Endpoints::CopyProduct.build(context)
|
91
|
-
when :create_constraint
|
92
|
-
Aws::ServiceCatalog::Endpoints::CreateConstraint.build(context)
|
93
|
-
when :create_portfolio
|
94
|
-
Aws::ServiceCatalog::Endpoints::CreatePortfolio.build(context)
|
95
|
-
when :create_portfolio_share
|
96
|
-
Aws::ServiceCatalog::Endpoints::CreatePortfolioShare.build(context)
|
97
|
-
when :create_product
|
98
|
-
Aws::ServiceCatalog::Endpoints::CreateProduct.build(context)
|
99
|
-
when :create_provisioned_product_plan
|
100
|
-
Aws::ServiceCatalog::Endpoints::CreateProvisionedProductPlan.build(context)
|
101
|
-
when :create_provisioning_artifact
|
102
|
-
Aws::ServiceCatalog::Endpoints::CreateProvisioningArtifact.build(context)
|
103
|
-
when :create_service_action
|
104
|
-
Aws::ServiceCatalog::Endpoints::CreateServiceAction.build(context)
|
105
|
-
when :create_tag_option
|
106
|
-
Aws::ServiceCatalog::Endpoints::CreateTagOption.build(context)
|
107
|
-
when :delete_constraint
|
108
|
-
Aws::ServiceCatalog::Endpoints::DeleteConstraint.build(context)
|
109
|
-
when :delete_portfolio
|
110
|
-
Aws::ServiceCatalog::Endpoints::DeletePortfolio.build(context)
|
111
|
-
when :delete_portfolio_share
|
112
|
-
Aws::ServiceCatalog::Endpoints::DeletePortfolioShare.build(context)
|
113
|
-
when :delete_product
|
114
|
-
Aws::ServiceCatalog::Endpoints::DeleteProduct.build(context)
|
115
|
-
when :delete_provisioned_product_plan
|
116
|
-
Aws::ServiceCatalog::Endpoints::DeleteProvisionedProductPlan.build(context)
|
117
|
-
when :delete_provisioning_artifact
|
118
|
-
Aws::ServiceCatalog::Endpoints::DeleteProvisioningArtifact.build(context)
|
119
|
-
when :delete_service_action
|
120
|
-
Aws::ServiceCatalog::Endpoints::DeleteServiceAction.build(context)
|
121
|
-
when :delete_tag_option
|
122
|
-
Aws::ServiceCatalog::Endpoints::DeleteTagOption.build(context)
|
123
|
-
when :describe_constraint
|
124
|
-
Aws::ServiceCatalog::Endpoints::DescribeConstraint.build(context)
|
125
|
-
when :describe_copy_product_status
|
126
|
-
Aws::ServiceCatalog::Endpoints::DescribeCopyProductStatus.build(context)
|
127
|
-
when :describe_portfolio
|
128
|
-
Aws::ServiceCatalog::Endpoints::DescribePortfolio.build(context)
|
129
|
-
when :describe_portfolio_share_status
|
130
|
-
Aws::ServiceCatalog::Endpoints::DescribePortfolioShareStatus.build(context)
|
131
|
-
when :describe_portfolio_shares
|
132
|
-
Aws::ServiceCatalog::Endpoints::DescribePortfolioShares.build(context)
|
133
|
-
when :describe_product
|
134
|
-
Aws::ServiceCatalog::Endpoints::DescribeProduct.build(context)
|
135
|
-
when :describe_product_as_admin
|
136
|
-
Aws::ServiceCatalog::Endpoints::DescribeProductAsAdmin.build(context)
|
137
|
-
when :describe_product_view
|
138
|
-
Aws::ServiceCatalog::Endpoints::DescribeProductView.build(context)
|
139
|
-
when :describe_provisioned_product
|
140
|
-
Aws::ServiceCatalog::Endpoints::DescribeProvisionedProduct.build(context)
|
141
|
-
when :describe_provisioned_product_plan
|
142
|
-
Aws::ServiceCatalog::Endpoints::DescribeProvisionedProductPlan.build(context)
|
143
|
-
when :describe_provisioning_artifact
|
144
|
-
Aws::ServiceCatalog::Endpoints::DescribeProvisioningArtifact.build(context)
|
145
|
-
when :describe_provisioning_parameters
|
146
|
-
Aws::ServiceCatalog::Endpoints::DescribeProvisioningParameters.build(context)
|
147
|
-
when :describe_record
|
148
|
-
Aws::ServiceCatalog::Endpoints::DescribeRecord.build(context)
|
149
|
-
when :describe_service_action
|
150
|
-
Aws::ServiceCatalog::Endpoints::DescribeServiceAction.build(context)
|
151
|
-
when :describe_service_action_execution_parameters
|
152
|
-
Aws::ServiceCatalog::Endpoints::DescribeServiceActionExecutionParameters.build(context)
|
153
|
-
when :describe_tag_option
|
154
|
-
Aws::ServiceCatalog::Endpoints::DescribeTagOption.build(context)
|
155
|
-
when :disable_aws_organizations_access
|
156
|
-
Aws::ServiceCatalog::Endpoints::DisableAWSOrganizationsAccess.build(context)
|
157
|
-
when :disassociate_budget_from_resource
|
158
|
-
Aws::ServiceCatalog::Endpoints::DisassociateBudgetFromResource.build(context)
|
159
|
-
when :disassociate_principal_from_portfolio
|
160
|
-
Aws::ServiceCatalog::Endpoints::DisassociatePrincipalFromPortfolio.build(context)
|
161
|
-
when :disassociate_product_from_portfolio
|
162
|
-
Aws::ServiceCatalog::Endpoints::DisassociateProductFromPortfolio.build(context)
|
163
|
-
when :disassociate_service_action_from_provisioning_artifact
|
164
|
-
Aws::ServiceCatalog::Endpoints::DisassociateServiceActionFromProvisioningArtifact.build(context)
|
165
|
-
when :disassociate_tag_option_from_resource
|
166
|
-
Aws::ServiceCatalog::Endpoints::DisassociateTagOptionFromResource.build(context)
|
167
|
-
when :enable_aws_organizations_access
|
168
|
-
Aws::ServiceCatalog::Endpoints::EnableAWSOrganizationsAccess.build(context)
|
169
|
-
when :execute_provisioned_product_plan
|
170
|
-
Aws::ServiceCatalog::Endpoints::ExecuteProvisionedProductPlan.build(context)
|
171
|
-
when :execute_provisioned_product_service_action
|
172
|
-
Aws::ServiceCatalog::Endpoints::ExecuteProvisionedProductServiceAction.build(context)
|
173
|
-
when :get_aws_organizations_access_status
|
174
|
-
Aws::ServiceCatalog::Endpoints::GetAWSOrganizationsAccessStatus.build(context)
|
175
|
-
when :get_provisioned_product_outputs
|
176
|
-
Aws::ServiceCatalog::Endpoints::GetProvisionedProductOutputs.build(context)
|
177
|
-
when :import_as_provisioned_product
|
178
|
-
Aws::ServiceCatalog::Endpoints::ImportAsProvisionedProduct.build(context)
|
179
|
-
when :list_accepted_portfolio_shares
|
180
|
-
Aws::ServiceCatalog::Endpoints::ListAcceptedPortfolioShares.build(context)
|
181
|
-
when :list_budgets_for_resource
|
182
|
-
Aws::ServiceCatalog::Endpoints::ListBudgetsForResource.build(context)
|
183
|
-
when :list_constraints_for_portfolio
|
184
|
-
Aws::ServiceCatalog::Endpoints::ListConstraintsForPortfolio.build(context)
|
185
|
-
when :list_launch_paths
|
186
|
-
Aws::ServiceCatalog::Endpoints::ListLaunchPaths.build(context)
|
187
|
-
when :list_organization_portfolio_access
|
188
|
-
Aws::ServiceCatalog::Endpoints::ListOrganizationPortfolioAccess.build(context)
|
189
|
-
when :list_portfolio_access
|
190
|
-
Aws::ServiceCatalog::Endpoints::ListPortfolioAccess.build(context)
|
191
|
-
when :list_portfolios
|
192
|
-
Aws::ServiceCatalog::Endpoints::ListPortfolios.build(context)
|
193
|
-
when :list_portfolios_for_product
|
194
|
-
Aws::ServiceCatalog::Endpoints::ListPortfoliosForProduct.build(context)
|
195
|
-
when :list_principals_for_portfolio
|
196
|
-
Aws::ServiceCatalog::Endpoints::ListPrincipalsForPortfolio.build(context)
|
197
|
-
when :list_provisioned_product_plans
|
198
|
-
Aws::ServiceCatalog::Endpoints::ListProvisionedProductPlans.build(context)
|
199
|
-
when :list_provisioning_artifacts
|
200
|
-
Aws::ServiceCatalog::Endpoints::ListProvisioningArtifacts.build(context)
|
201
|
-
when :list_provisioning_artifacts_for_service_action
|
202
|
-
Aws::ServiceCatalog::Endpoints::ListProvisioningArtifactsForServiceAction.build(context)
|
203
|
-
when :list_record_history
|
204
|
-
Aws::ServiceCatalog::Endpoints::ListRecordHistory.build(context)
|
205
|
-
when :list_resources_for_tag_option
|
206
|
-
Aws::ServiceCatalog::Endpoints::ListResourcesForTagOption.build(context)
|
207
|
-
when :list_service_actions
|
208
|
-
Aws::ServiceCatalog::Endpoints::ListServiceActions.build(context)
|
209
|
-
when :list_service_actions_for_provisioning_artifact
|
210
|
-
Aws::ServiceCatalog::Endpoints::ListServiceActionsForProvisioningArtifact.build(context)
|
211
|
-
when :list_stack_instances_for_provisioned_product
|
212
|
-
Aws::ServiceCatalog::Endpoints::ListStackInstancesForProvisionedProduct.build(context)
|
213
|
-
when :list_tag_options
|
214
|
-
Aws::ServiceCatalog::Endpoints::ListTagOptions.build(context)
|
215
|
-
when :notify_provision_product_engine_workflow_result
|
216
|
-
Aws::ServiceCatalog::Endpoints::NotifyProvisionProductEngineWorkflowResult.build(context)
|
217
|
-
when :notify_terminate_provisioned_product_engine_workflow_result
|
218
|
-
Aws::ServiceCatalog::Endpoints::NotifyTerminateProvisionedProductEngineWorkflowResult.build(context)
|
219
|
-
when :notify_update_provisioned_product_engine_workflow_result
|
220
|
-
Aws::ServiceCatalog::Endpoints::NotifyUpdateProvisionedProductEngineWorkflowResult.build(context)
|
221
|
-
when :provision_product
|
222
|
-
Aws::ServiceCatalog::Endpoints::ProvisionProduct.build(context)
|
223
|
-
when :reject_portfolio_share
|
224
|
-
Aws::ServiceCatalog::Endpoints::RejectPortfolioShare.build(context)
|
225
|
-
when :scan_provisioned_products
|
226
|
-
Aws::ServiceCatalog::Endpoints::ScanProvisionedProducts.build(context)
|
227
|
-
when :search_products
|
228
|
-
Aws::ServiceCatalog::Endpoints::SearchProducts.build(context)
|
229
|
-
when :search_products_as_admin
|
230
|
-
Aws::ServiceCatalog::Endpoints::SearchProductsAsAdmin.build(context)
|
231
|
-
when :search_provisioned_products
|
232
|
-
Aws::ServiceCatalog::Endpoints::SearchProvisionedProducts.build(context)
|
233
|
-
when :terminate_provisioned_product
|
234
|
-
Aws::ServiceCatalog::Endpoints::TerminateProvisionedProduct.build(context)
|
235
|
-
when :update_constraint
|
236
|
-
Aws::ServiceCatalog::Endpoints::UpdateConstraint.build(context)
|
237
|
-
when :update_portfolio
|
238
|
-
Aws::ServiceCatalog::Endpoints::UpdatePortfolio.build(context)
|
239
|
-
when :update_portfolio_share
|
240
|
-
Aws::ServiceCatalog::Endpoints::UpdatePortfolioShare.build(context)
|
241
|
-
when :update_product
|
242
|
-
Aws::ServiceCatalog::Endpoints::UpdateProduct.build(context)
|
243
|
-
when :update_provisioned_product
|
244
|
-
Aws::ServiceCatalog::Endpoints::UpdateProvisionedProduct.build(context)
|
245
|
-
when :update_provisioned_product_properties
|
246
|
-
Aws::ServiceCatalog::Endpoints::UpdateProvisionedProductProperties.build(context)
|
247
|
-
when :update_provisioning_artifact
|
248
|
-
Aws::ServiceCatalog::Endpoints::UpdateProvisioningArtifact.build(context)
|
249
|
-
when :update_service_action
|
250
|
-
Aws::ServiceCatalog::Endpoints::UpdateServiceAction.build(context)
|
251
|
-
when :update_tag_option
|
252
|
-
Aws::ServiceCatalog::Endpoints::UpdateTagOption.build(context)
|
253
|
-
end
|
254
|
-
end
|
255
70
|
end
|
256
71
|
|
257
72
|
def add_handlers(handlers, _config)
|
@@ -605,11 +605,11 @@ module Aws::ServiceCatalog
|
|
605
605
|
#
|
606
606
|
# Specify the `RoleArn` property as follows:
|
607
607
|
#
|
608
|
-
#
|
608
|
+
# `{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"}`
|
609
609
|
#
|
610
610
|
# Specify the `LocalRoleName` property as follows:
|
611
611
|
#
|
612
|
-
#
|
612
|
+
# `{"LocalRoleName": "SCBasicLaunchRole"}`
|
613
613
|
#
|
614
614
|
# If you specify the `LocalRoleName` property, when an account uses
|
615
615
|
# the launch constraint, the IAM role with that name in the account
|
@@ -632,14 +632,14 @@ module Aws::ServiceCatalog
|
|
632
632
|
#
|
633
633
|
# : Specify the `NotificationArns` property as follows:
|
634
634
|
#
|
635
|
-
#
|
636
|
-
# ["arn:aws:sns:us-east-1:123456789012:Topic"]
|
635
|
+
# `{"NotificationArns" :
|
636
|
+
# ["arn:aws:sns:us-east-1:123456789012:Topic"]}`
|
637
637
|
#
|
638
638
|
# RESOURCE\_UPDATE
|
639
639
|
#
|
640
640
|
# : Specify the `TagUpdatesOnProvisionedProduct` property as follows:
|
641
641
|
#
|
642
|
-
#
|
642
|
+
# `{"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}}`
|
643
643
|
#
|
644
644
|
# The `TagUpdatesOnProvisionedProduct` property accepts a string
|
645
645
|
# value of `ALLOWED` or `NOT_ALLOWED`.
|
@@ -648,9 +648,9 @@ module Aws::ServiceCatalog
|
|
648
648
|
#
|
649
649
|
# : Specify the `Parameters` property as follows:
|
650
650
|
#
|
651
|
-
#
|
652
|
-
#
|
653
|
-
# "ExecutionRole": "String"
|
651
|
+
# `{"Version": "String", "Properties": {"AccountList": [ "String" ],
|
652
|
+
# "RegionList": [ "String" ], "AdminRole": "String",
|
653
|
+
# "ExecutionRole": "String"}}`
|
654
654
|
#
|
655
655
|
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
656
656
|
#
|
@@ -1207,8 +1207,8 @@ module Aws::ServiceCatalog
|
|
1207
1207
|
#
|
1208
1208
|
# : The list of parameters in JSON format.
|
1209
1209
|
#
|
1210
|
-
# For example: `[
|
1211
|
-
#
|
1210
|
+
# For example: `[{"Name":"InstanceId","Type":"TARGET"}]` or
|
1211
|
+
# `[{"Name":"InstanceId","Type":"TEXT_VALUE"}]`.
|
1212
1212
|
# @return [Hash<String,String>]
|
1213
1213
|
#
|
1214
1214
|
# @!attribute [rw] description
|
@@ -6500,11 +6500,11 @@ module Aws::ServiceCatalog
|
|
6500
6500
|
#
|
6501
6501
|
# Specify the `RoleArn` property as follows:
|
6502
6502
|
#
|
6503
|
-
#
|
6503
|
+
# `{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"}`
|
6504
6504
|
#
|
6505
6505
|
# Specify the `LocalRoleName` property as follows:
|
6506
6506
|
#
|
6507
|
-
#
|
6507
|
+
# `{"LocalRoleName": "SCBasicLaunchRole"}`
|
6508
6508
|
#
|
6509
6509
|
# If you specify the `LocalRoleName` property, when an account uses
|
6510
6510
|
# the launch constraint, the IAM role with that name in the account
|
@@ -6527,14 +6527,14 @@ module Aws::ServiceCatalog
|
|
6527
6527
|
#
|
6528
6528
|
# : Specify the `NotificationArns` property as follows:
|
6529
6529
|
#
|
6530
|
-
#
|
6531
|
-
# ["arn:aws:sns:us-east-1:123456789012:Topic"]
|
6530
|
+
# `{"NotificationArns" :
|
6531
|
+
# ["arn:aws:sns:us-east-1:123456789012:Topic"]}`
|
6532
6532
|
#
|
6533
6533
|
# RESOURCE\_UPDATE
|
6534
6534
|
#
|
6535
6535
|
# : Specify the `TagUpdatesOnProvisionedProduct` property as follows:
|
6536
6536
|
#
|
6537
|
-
#
|
6537
|
+
# `{"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}}`
|
6538
6538
|
#
|
6539
6539
|
# The `TagUpdatesOnProvisionedProduct` property accepts a string
|
6540
6540
|
# value of `ALLOWED` or `NOT_ALLOWED`.
|
@@ -6543,9 +6543,9 @@ module Aws::ServiceCatalog
|
|
6543
6543
|
#
|
6544
6544
|
# : Specify the `Parameters` property as follows:
|
6545
6545
|
#
|
6546
|
-
#
|
6547
|
-
#
|
6548
|
-
# "ExecutionRole": "String"
|
6546
|
+
# `{"Version": "String", "Properties": {"AccountList": [ "String" ],
|
6547
|
+
# "RegionList": [ "String" ], "AdminRole": "String",
|
6548
|
+
# "ExecutionRole": "String"}}`
|
6549
6549
|
#
|
6550
6550
|
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
6551
6551
|
#
|
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.107.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: 2024-
|
11
|
+
date: 2024-11-06 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.210.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.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|