aws-sdk-servicecatalog 1.91.0 → 1.93.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 +70 -46
- data/lib/aws-sdk-servicecatalog/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-servicecatalog.rb +1 -1
- data/sig/client.rbs +1494 -0
- data/sig/errors.rbs +32 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1769 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1769 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::ServiceCatalog
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AcceptPortfolioShareInput
|
12
|
+
attr_accessor accept_language: ::String
|
13
|
+
attr_accessor portfolio_id: ::String
|
14
|
+
attr_accessor portfolio_share_type: ("IMPORTED" | "AWS_SERVICECATALOG" | "AWS_ORGANIZATIONS")
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AcceptPortfolioShareOutput < Aws::EmptyStructure
|
19
|
+
end
|
20
|
+
|
21
|
+
class AccessLevelFilter
|
22
|
+
attr_accessor key: ("Account" | "Role" | "User")
|
23
|
+
attr_accessor value: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AssociateBudgetWithResourceInput
|
28
|
+
attr_accessor budget_name: ::String
|
29
|
+
attr_accessor resource_id: ::String
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class AssociateBudgetWithResourceOutput < Aws::EmptyStructure
|
34
|
+
end
|
35
|
+
|
36
|
+
class AssociatePrincipalWithPortfolioInput
|
37
|
+
attr_accessor accept_language: ::String
|
38
|
+
attr_accessor portfolio_id: ::String
|
39
|
+
attr_accessor principal_arn: ::String
|
40
|
+
attr_accessor principal_type: ("IAM" | "IAM_PATTERN")
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class AssociatePrincipalWithPortfolioOutput < Aws::EmptyStructure
|
45
|
+
end
|
46
|
+
|
47
|
+
class AssociateProductWithPortfolioInput
|
48
|
+
attr_accessor accept_language: ::String
|
49
|
+
attr_accessor product_id: ::String
|
50
|
+
attr_accessor portfolio_id: ::String
|
51
|
+
attr_accessor source_portfolio_id: ::String
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class AssociateProductWithPortfolioOutput < Aws::EmptyStructure
|
56
|
+
end
|
57
|
+
|
58
|
+
class AssociateServiceActionWithProvisioningArtifactInput
|
59
|
+
attr_accessor product_id: ::String
|
60
|
+
attr_accessor provisioning_artifact_id: ::String
|
61
|
+
attr_accessor service_action_id: ::String
|
62
|
+
attr_accessor accept_language: ::String
|
63
|
+
attr_accessor idempotency_token: ::String
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class AssociateServiceActionWithProvisioningArtifactOutput < Aws::EmptyStructure
|
68
|
+
end
|
69
|
+
|
70
|
+
class AssociateTagOptionWithResourceInput
|
71
|
+
attr_accessor resource_id: ::String
|
72
|
+
attr_accessor tag_option_id: ::String
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class AssociateTagOptionWithResourceOutput < Aws::EmptyStructure
|
77
|
+
end
|
78
|
+
|
79
|
+
class BatchAssociateServiceActionWithProvisioningArtifactInput
|
80
|
+
attr_accessor service_action_associations: ::Array[Types::ServiceActionAssociation]
|
81
|
+
attr_accessor accept_language: ::String
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class BatchAssociateServiceActionWithProvisioningArtifactOutput
|
86
|
+
attr_accessor failed_service_action_associations: ::Array[Types::FailedServiceActionAssociation]
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class BatchDisassociateServiceActionFromProvisioningArtifactInput
|
91
|
+
attr_accessor service_action_associations: ::Array[Types::ServiceActionAssociation]
|
92
|
+
attr_accessor accept_language: ::String
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class BatchDisassociateServiceActionFromProvisioningArtifactOutput
|
97
|
+
attr_accessor failed_service_action_associations: ::Array[Types::FailedServiceActionAssociation]
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class BudgetDetail
|
102
|
+
attr_accessor budget_name: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class CloudWatchDashboard
|
107
|
+
attr_accessor name: ::String
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class CodeStarParameters
|
112
|
+
attr_accessor connection_arn: ::String
|
113
|
+
attr_accessor repository: ::String
|
114
|
+
attr_accessor branch: ::String
|
115
|
+
attr_accessor artifact_path: ::String
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class ConstraintDetail
|
120
|
+
attr_accessor constraint_id: ::String
|
121
|
+
attr_accessor type: ::String
|
122
|
+
attr_accessor description: ::String
|
123
|
+
attr_accessor owner: ::String
|
124
|
+
attr_accessor product_id: ::String
|
125
|
+
attr_accessor portfolio_id: ::String
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class ConstraintSummary
|
130
|
+
attr_accessor type: ::String
|
131
|
+
attr_accessor description: ::String
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class CopyProductInput
|
136
|
+
attr_accessor accept_language: ::String
|
137
|
+
attr_accessor source_product_arn: ::String
|
138
|
+
attr_accessor target_product_id: ::String
|
139
|
+
attr_accessor target_product_name: ::String
|
140
|
+
attr_accessor source_provisioning_artifact_identifiers: ::Array[::Hash[("Id"), ::String]]
|
141
|
+
attr_accessor copy_options: ::Array[("CopyTags")]
|
142
|
+
attr_accessor idempotency_token: ::String
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class CopyProductOutput
|
147
|
+
attr_accessor copy_product_token: ::String
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class CreateConstraintInput
|
152
|
+
attr_accessor accept_language: ::String
|
153
|
+
attr_accessor portfolio_id: ::String
|
154
|
+
attr_accessor product_id: ::String
|
155
|
+
attr_accessor parameters: ::String
|
156
|
+
attr_accessor type: ::String
|
157
|
+
attr_accessor description: ::String
|
158
|
+
attr_accessor idempotency_token: ::String
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class CreateConstraintOutput
|
163
|
+
attr_accessor constraint_detail: Types::ConstraintDetail
|
164
|
+
attr_accessor constraint_parameters: ::String
|
165
|
+
attr_accessor status: ("AVAILABLE" | "CREATING" | "FAILED")
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class CreatePortfolioInput
|
170
|
+
attr_accessor accept_language: ::String
|
171
|
+
attr_accessor display_name: ::String
|
172
|
+
attr_accessor description: ::String
|
173
|
+
attr_accessor provider_name: ::String
|
174
|
+
attr_accessor tags: ::Array[Types::Tag]
|
175
|
+
attr_accessor idempotency_token: ::String
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class CreatePortfolioOutput
|
180
|
+
attr_accessor portfolio_detail: Types::PortfolioDetail
|
181
|
+
attr_accessor tags: ::Array[Types::Tag]
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class CreatePortfolioShareInput
|
186
|
+
attr_accessor accept_language: ::String
|
187
|
+
attr_accessor portfolio_id: ::String
|
188
|
+
attr_accessor account_id: ::String
|
189
|
+
attr_accessor organization_node: Types::OrganizationNode
|
190
|
+
attr_accessor share_tag_options: bool
|
191
|
+
attr_accessor share_principals: bool
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class CreatePortfolioShareOutput
|
196
|
+
attr_accessor portfolio_share_token: ::String
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class CreateProductInput
|
201
|
+
attr_accessor accept_language: ::String
|
202
|
+
attr_accessor name: ::String
|
203
|
+
attr_accessor owner: ::String
|
204
|
+
attr_accessor description: ::String
|
205
|
+
attr_accessor distributor: ::String
|
206
|
+
attr_accessor support_description: ::String
|
207
|
+
attr_accessor support_email: ::String
|
208
|
+
attr_accessor support_url: ::String
|
209
|
+
attr_accessor product_type: ("CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL")
|
210
|
+
attr_accessor tags: ::Array[Types::Tag]
|
211
|
+
attr_accessor provisioning_artifact_parameters: Types::ProvisioningArtifactProperties
|
212
|
+
attr_accessor idempotency_token: ::String
|
213
|
+
attr_accessor source_connection: Types::SourceConnection
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class CreateProductOutput
|
218
|
+
attr_accessor product_view_detail: Types::ProductViewDetail
|
219
|
+
attr_accessor provisioning_artifact_detail: Types::ProvisioningArtifactDetail
|
220
|
+
attr_accessor tags: ::Array[Types::Tag]
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class CreateProvisionedProductPlanInput
|
225
|
+
attr_accessor accept_language: ::String
|
226
|
+
attr_accessor plan_name: ::String
|
227
|
+
attr_accessor plan_type: ("CLOUDFORMATION")
|
228
|
+
attr_accessor notification_arns: ::Array[::String]
|
229
|
+
attr_accessor path_id: ::String
|
230
|
+
attr_accessor product_id: ::String
|
231
|
+
attr_accessor provisioned_product_name: ::String
|
232
|
+
attr_accessor provisioning_artifact_id: ::String
|
233
|
+
attr_accessor provisioning_parameters: ::Array[Types::UpdateProvisioningParameter]
|
234
|
+
attr_accessor idempotency_token: ::String
|
235
|
+
attr_accessor tags: ::Array[Types::Tag]
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class CreateProvisionedProductPlanOutput
|
240
|
+
attr_accessor plan_name: ::String
|
241
|
+
attr_accessor plan_id: ::String
|
242
|
+
attr_accessor provision_product_id: ::String
|
243
|
+
attr_accessor provisioned_product_name: ::String
|
244
|
+
attr_accessor provisioning_artifact_id: ::String
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class CreateProvisioningArtifactInput
|
249
|
+
attr_accessor accept_language: ::String
|
250
|
+
attr_accessor product_id: ::String
|
251
|
+
attr_accessor parameters: Types::ProvisioningArtifactProperties
|
252
|
+
attr_accessor idempotency_token: ::String
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
256
|
+
class CreateProvisioningArtifactOutput
|
257
|
+
attr_accessor provisioning_artifact_detail: Types::ProvisioningArtifactDetail
|
258
|
+
attr_accessor info: ::Hash[::String, ::String]
|
259
|
+
attr_accessor status: ("AVAILABLE" | "CREATING" | "FAILED")
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class CreateServiceActionInput
|
264
|
+
attr_accessor name: ::String
|
265
|
+
attr_accessor definition_type: ("SSM_AUTOMATION")
|
266
|
+
attr_accessor definition: ::Hash[("Name" | "Version" | "AssumeRole" | "Parameters"), ::String]
|
267
|
+
attr_accessor description: ::String
|
268
|
+
attr_accessor accept_language: ::String
|
269
|
+
attr_accessor idempotency_token: ::String
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class CreateServiceActionOutput
|
274
|
+
attr_accessor service_action_detail: Types::ServiceActionDetail
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class CreateTagOptionInput
|
279
|
+
attr_accessor key: ::String
|
280
|
+
attr_accessor value: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class CreateTagOptionOutput
|
285
|
+
attr_accessor tag_option_detail: Types::TagOptionDetail
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class DeleteConstraintInput
|
290
|
+
attr_accessor accept_language: ::String
|
291
|
+
attr_accessor id: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class DeleteConstraintOutput < Aws::EmptyStructure
|
296
|
+
end
|
297
|
+
|
298
|
+
class DeletePortfolioInput
|
299
|
+
attr_accessor accept_language: ::String
|
300
|
+
attr_accessor id: ::String
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class DeletePortfolioOutput < Aws::EmptyStructure
|
305
|
+
end
|
306
|
+
|
307
|
+
class DeletePortfolioShareInput
|
308
|
+
attr_accessor accept_language: ::String
|
309
|
+
attr_accessor portfolio_id: ::String
|
310
|
+
attr_accessor account_id: ::String
|
311
|
+
attr_accessor organization_node: Types::OrganizationNode
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class DeletePortfolioShareOutput
|
316
|
+
attr_accessor portfolio_share_token: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class DeleteProductInput
|
321
|
+
attr_accessor accept_language: ::String
|
322
|
+
attr_accessor id: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class DeleteProductOutput < Aws::EmptyStructure
|
327
|
+
end
|
328
|
+
|
329
|
+
class DeleteProvisionedProductPlanInput
|
330
|
+
attr_accessor accept_language: ::String
|
331
|
+
attr_accessor plan_id: ::String
|
332
|
+
attr_accessor ignore_errors: bool
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class DeleteProvisionedProductPlanOutput < Aws::EmptyStructure
|
337
|
+
end
|
338
|
+
|
339
|
+
class DeleteProvisioningArtifactInput
|
340
|
+
attr_accessor accept_language: ::String
|
341
|
+
attr_accessor product_id: ::String
|
342
|
+
attr_accessor provisioning_artifact_id: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class DeleteProvisioningArtifactOutput < Aws::EmptyStructure
|
347
|
+
end
|
348
|
+
|
349
|
+
class DeleteServiceActionInput
|
350
|
+
attr_accessor id: ::String
|
351
|
+
attr_accessor accept_language: ::String
|
352
|
+
attr_accessor idempotency_token: ::String
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class DeleteServiceActionOutput < Aws::EmptyStructure
|
357
|
+
end
|
358
|
+
|
359
|
+
class DeleteTagOptionInput
|
360
|
+
attr_accessor id: ::String
|
361
|
+
SENSITIVE: []
|
362
|
+
end
|
363
|
+
|
364
|
+
class DeleteTagOptionOutput < Aws::EmptyStructure
|
365
|
+
end
|
366
|
+
|
367
|
+
class DescribeConstraintInput
|
368
|
+
attr_accessor accept_language: ::String
|
369
|
+
attr_accessor id: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class DescribeConstraintOutput
|
374
|
+
attr_accessor constraint_detail: Types::ConstraintDetail
|
375
|
+
attr_accessor constraint_parameters: ::String
|
376
|
+
attr_accessor status: ("AVAILABLE" | "CREATING" | "FAILED")
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class DescribeCopyProductStatusInput
|
381
|
+
attr_accessor accept_language: ::String
|
382
|
+
attr_accessor copy_product_token: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class DescribeCopyProductStatusOutput
|
387
|
+
attr_accessor copy_product_status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
388
|
+
attr_accessor target_product_id: ::String
|
389
|
+
attr_accessor status_detail: ::String
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class DescribePortfolioInput
|
394
|
+
attr_accessor accept_language: ::String
|
395
|
+
attr_accessor id: ::String
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class DescribePortfolioOutput
|
400
|
+
attr_accessor portfolio_detail: Types::PortfolioDetail
|
401
|
+
attr_accessor tags: ::Array[Types::Tag]
|
402
|
+
attr_accessor tag_options: ::Array[Types::TagOptionDetail]
|
403
|
+
attr_accessor budgets: ::Array[Types::BudgetDetail]
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class DescribePortfolioShareStatusInput
|
408
|
+
attr_accessor portfolio_share_token: ::String
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class DescribePortfolioShareStatusOutput
|
413
|
+
attr_accessor portfolio_share_token: ::String
|
414
|
+
attr_accessor portfolio_id: ::String
|
415
|
+
attr_accessor organization_node_value: ::String
|
416
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "ERROR")
|
417
|
+
attr_accessor share_details: Types::ShareDetails
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class DescribePortfolioSharesInput
|
422
|
+
attr_accessor portfolio_id: ::String
|
423
|
+
attr_accessor type: ("ACCOUNT" | "ORGANIZATION" | "ORGANIZATIONAL_UNIT" | "ORGANIZATION_MEMBER_ACCOUNT")
|
424
|
+
attr_accessor page_token: ::String
|
425
|
+
attr_accessor page_size: ::Integer
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class DescribePortfolioSharesOutput
|
430
|
+
attr_accessor next_page_token: ::String
|
431
|
+
attr_accessor portfolio_share_details: ::Array[Types::PortfolioShareDetail]
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class DescribeProductAsAdminInput
|
436
|
+
attr_accessor accept_language: ::String
|
437
|
+
attr_accessor id: ::String
|
438
|
+
attr_accessor name: ::String
|
439
|
+
attr_accessor source_portfolio_id: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class DescribeProductAsAdminOutput
|
444
|
+
attr_accessor product_view_detail: Types::ProductViewDetail
|
445
|
+
attr_accessor provisioning_artifact_summaries: ::Array[Types::ProvisioningArtifactSummary]
|
446
|
+
attr_accessor tags: ::Array[Types::Tag]
|
447
|
+
attr_accessor tag_options: ::Array[Types::TagOptionDetail]
|
448
|
+
attr_accessor budgets: ::Array[Types::BudgetDetail]
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class DescribeProductInput
|
453
|
+
attr_accessor accept_language: ::String
|
454
|
+
attr_accessor id: ::String
|
455
|
+
attr_accessor name: ::String
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class DescribeProductOutput
|
460
|
+
attr_accessor product_view_summary: Types::ProductViewSummary
|
461
|
+
attr_accessor provisioning_artifacts: ::Array[Types::ProvisioningArtifact]
|
462
|
+
attr_accessor budgets: ::Array[Types::BudgetDetail]
|
463
|
+
attr_accessor launch_paths: ::Array[Types::LaunchPath]
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class DescribeProductViewInput
|
468
|
+
attr_accessor accept_language: ::String
|
469
|
+
attr_accessor id: ::String
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class DescribeProductViewOutput
|
474
|
+
attr_accessor product_view_summary: Types::ProductViewSummary
|
475
|
+
attr_accessor provisioning_artifacts: ::Array[Types::ProvisioningArtifact]
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class DescribeProvisionedProductInput
|
480
|
+
attr_accessor accept_language: ::String
|
481
|
+
attr_accessor id: ::String
|
482
|
+
attr_accessor name: ::String
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class DescribeProvisionedProductOutput
|
487
|
+
attr_accessor provisioned_product_detail: Types::ProvisionedProductDetail
|
488
|
+
attr_accessor cloud_watch_dashboards: ::Array[Types::CloudWatchDashboard]
|
489
|
+
SENSITIVE: []
|
490
|
+
end
|
491
|
+
|
492
|
+
class DescribeProvisionedProductPlanInput
|
493
|
+
attr_accessor accept_language: ::String
|
494
|
+
attr_accessor plan_id: ::String
|
495
|
+
attr_accessor page_size: ::Integer
|
496
|
+
attr_accessor page_token: ::String
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class DescribeProvisionedProductPlanOutput
|
501
|
+
attr_accessor provisioned_product_plan_details: Types::ProvisionedProductPlanDetails
|
502
|
+
attr_accessor resource_changes: ::Array[Types::ResourceChange]
|
503
|
+
attr_accessor next_page_token: ::String
|
504
|
+
SENSITIVE: []
|
505
|
+
end
|
506
|
+
|
507
|
+
class DescribeProvisioningArtifactInput
|
508
|
+
attr_accessor accept_language: ::String
|
509
|
+
attr_accessor provisioning_artifact_id: ::String
|
510
|
+
attr_accessor product_id: ::String
|
511
|
+
attr_accessor provisioning_artifact_name: ::String
|
512
|
+
attr_accessor product_name: ::String
|
513
|
+
attr_accessor verbose: bool
|
514
|
+
attr_accessor include_provisioning_artifact_parameters: bool
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class DescribeProvisioningArtifactOutput
|
519
|
+
attr_accessor provisioning_artifact_detail: Types::ProvisioningArtifactDetail
|
520
|
+
attr_accessor info: ::Hash[::String, ::String]
|
521
|
+
attr_accessor status: ("AVAILABLE" | "CREATING" | "FAILED")
|
522
|
+
attr_accessor provisioning_artifact_parameters: ::Array[Types::ProvisioningArtifactParameter]
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class DescribeProvisioningParametersInput
|
527
|
+
attr_accessor accept_language: ::String
|
528
|
+
attr_accessor product_id: ::String
|
529
|
+
attr_accessor product_name: ::String
|
530
|
+
attr_accessor provisioning_artifact_id: ::String
|
531
|
+
attr_accessor provisioning_artifact_name: ::String
|
532
|
+
attr_accessor path_id: ::String
|
533
|
+
attr_accessor path_name: ::String
|
534
|
+
SENSITIVE: []
|
535
|
+
end
|
536
|
+
|
537
|
+
class DescribeProvisioningParametersOutput
|
538
|
+
attr_accessor provisioning_artifact_parameters: ::Array[Types::ProvisioningArtifactParameter]
|
539
|
+
attr_accessor constraint_summaries: ::Array[Types::ConstraintSummary]
|
540
|
+
attr_accessor usage_instructions: ::Array[Types::UsageInstruction]
|
541
|
+
attr_accessor tag_options: ::Array[Types::TagOptionSummary]
|
542
|
+
attr_accessor provisioning_artifact_preferences: Types::ProvisioningArtifactPreferences
|
543
|
+
attr_accessor provisioning_artifact_outputs: ::Array[Types::ProvisioningArtifactOutput]
|
544
|
+
attr_accessor provisioning_artifact_output_keys: ::Array[Types::ProvisioningArtifactOutput]
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class DescribeRecordInput
|
549
|
+
attr_accessor accept_language: ::String
|
550
|
+
attr_accessor id: ::String
|
551
|
+
attr_accessor page_token: ::String
|
552
|
+
attr_accessor page_size: ::Integer
|
553
|
+
SENSITIVE: []
|
554
|
+
end
|
555
|
+
|
556
|
+
class DescribeRecordOutput
|
557
|
+
attr_accessor record_detail: Types::RecordDetail
|
558
|
+
attr_accessor record_outputs: ::Array[Types::RecordOutput]
|
559
|
+
attr_accessor next_page_token: ::String
|
560
|
+
SENSITIVE: []
|
561
|
+
end
|
562
|
+
|
563
|
+
class DescribeServiceActionExecutionParametersInput
|
564
|
+
attr_accessor provisioned_product_id: ::String
|
565
|
+
attr_accessor service_action_id: ::String
|
566
|
+
attr_accessor accept_language: ::String
|
567
|
+
SENSITIVE: []
|
568
|
+
end
|
569
|
+
|
570
|
+
class DescribeServiceActionExecutionParametersOutput
|
571
|
+
attr_accessor service_action_parameters: ::Array[Types::ExecutionParameter]
|
572
|
+
SENSITIVE: []
|
573
|
+
end
|
574
|
+
|
575
|
+
class DescribeServiceActionInput
|
576
|
+
attr_accessor id: ::String
|
577
|
+
attr_accessor accept_language: ::String
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class DescribeServiceActionOutput
|
582
|
+
attr_accessor service_action_detail: Types::ServiceActionDetail
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class DescribeTagOptionInput
|
587
|
+
attr_accessor id: ::String
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class DescribeTagOptionOutput
|
592
|
+
attr_accessor tag_option_detail: Types::TagOptionDetail
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class DisableAWSOrganizationsAccessInput < Aws::EmptyStructure
|
597
|
+
end
|
598
|
+
|
599
|
+
class DisableAWSOrganizationsAccessOutput < Aws::EmptyStructure
|
600
|
+
end
|
601
|
+
|
602
|
+
class DisassociateBudgetFromResourceInput
|
603
|
+
attr_accessor budget_name: ::String
|
604
|
+
attr_accessor resource_id: ::String
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class DisassociateBudgetFromResourceOutput < Aws::EmptyStructure
|
609
|
+
end
|
610
|
+
|
611
|
+
class DisassociatePrincipalFromPortfolioInput
|
612
|
+
attr_accessor accept_language: ::String
|
613
|
+
attr_accessor portfolio_id: ::String
|
614
|
+
attr_accessor principal_arn: ::String
|
615
|
+
attr_accessor principal_type: ("IAM" | "IAM_PATTERN")
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class DisassociatePrincipalFromPortfolioOutput < Aws::EmptyStructure
|
620
|
+
end
|
621
|
+
|
622
|
+
class DisassociateProductFromPortfolioInput
|
623
|
+
attr_accessor accept_language: ::String
|
624
|
+
attr_accessor product_id: ::String
|
625
|
+
attr_accessor portfolio_id: ::String
|
626
|
+
SENSITIVE: []
|
627
|
+
end
|
628
|
+
|
629
|
+
class DisassociateProductFromPortfolioOutput < Aws::EmptyStructure
|
630
|
+
end
|
631
|
+
|
632
|
+
class DisassociateServiceActionFromProvisioningArtifactInput
|
633
|
+
attr_accessor product_id: ::String
|
634
|
+
attr_accessor provisioning_artifact_id: ::String
|
635
|
+
attr_accessor service_action_id: ::String
|
636
|
+
attr_accessor accept_language: ::String
|
637
|
+
attr_accessor idempotency_token: ::String
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
641
|
+
class DisassociateServiceActionFromProvisioningArtifactOutput < Aws::EmptyStructure
|
642
|
+
end
|
643
|
+
|
644
|
+
class DisassociateTagOptionFromResourceInput
|
645
|
+
attr_accessor resource_id: ::String
|
646
|
+
attr_accessor tag_option_id: ::String
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class DisassociateTagOptionFromResourceOutput < Aws::EmptyStructure
|
651
|
+
end
|
652
|
+
|
653
|
+
class DuplicateResourceException < Aws::EmptyStructure
|
654
|
+
end
|
655
|
+
|
656
|
+
class EnableAWSOrganizationsAccessInput < Aws::EmptyStructure
|
657
|
+
end
|
658
|
+
|
659
|
+
class EnableAWSOrganizationsAccessOutput < Aws::EmptyStructure
|
660
|
+
end
|
661
|
+
|
662
|
+
class EngineWorkflowResourceIdentifier
|
663
|
+
attr_accessor unique_tag: Types::UniqueTagResourceIdentifier
|
664
|
+
SENSITIVE: []
|
665
|
+
end
|
666
|
+
|
667
|
+
class ExecuteProvisionedProductPlanInput
|
668
|
+
attr_accessor accept_language: ::String
|
669
|
+
attr_accessor plan_id: ::String
|
670
|
+
attr_accessor idempotency_token: ::String
|
671
|
+
SENSITIVE: []
|
672
|
+
end
|
673
|
+
|
674
|
+
class ExecuteProvisionedProductPlanOutput
|
675
|
+
attr_accessor record_detail: Types::RecordDetail
|
676
|
+
SENSITIVE: []
|
677
|
+
end
|
678
|
+
|
679
|
+
class ExecuteProvisionedProductServiceActionInput
|
680
|
+
attr_accessor provisioned_product_id: ::String
|
681
|
+
attr_accessor service_action_id: ::String
|
682
|
+
attr_accessor execute_token: ::String
|
683
|
+
attr_accessor accept_language: ::String
|
684
|
+
attr_accessor parameters: ::Hash[::String, ::Array[::String]]
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class ExecuteProvisionedProductServiceActionOutput
|
689
|
+
attr_accessor record_detail: Types::RecordDetail
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
693
|
+
class ExecutionParameter
|
694
|
+
attr_accessor name: ::String
|
695
|
+
attr_accessor type: ::String
|
696
|
+
attr_accessor default_values: ::Array[::String]
|
697
|
+
SENSITIVE: []
|
698
|
+
end
|
699
|
+
|
700
|
+
class FailedServiceActionAssociation
|
701
|
+
attr_accessor service_action_id: ::String
|
702
|
+
attr_accessor product_id: ::String
|
703
|
+
attr_accessor provisioning_artifact_id: ::String
|
704
|
+
attr_accessor error_code: ("DUPLICATE_RESOURCE" | "INTERNAL_FAILURE" | "LIMIT_EXCEEDED" | "RESOURCE_NOT_FOUND" | "THROTTLING" | "INVALID_PARAMETER")
|
705
|
+
attr_accessor error_message: ::String
|
706
|
+
SENSITIVE: []
|
707
|
+
end
|
708
|
+
|
709
|
+
class GetAWSOrganizationsAccessStatusInput < Aws::EmptyStructure
|
710
|
+
end
|
711
|
+
|
712
|
+
class GetAWSOrganizationsAccessStatusOutput
|
713
|
+
attr_accessor access_status: ("ENABLED" | "UNDER_CHANGE" | "DISABLED")
|
714
|
+
SENSITIVE: []
|
715
|
+
end
|
716
|
+
|
717
|
+
class GetProvisionedProductOutputsInput
|
718
|
+
attr_accessor accept_language: ::String
|
719
|
+
attr_accessor provisioned_product_id: ::String
|
720
|
+
attr_accessor provisioned_product_name: ::String
|
721
|
+
attr_accessor output_keys: ::Array[::String]
|
722
|
+
attr_accessor page_size: ::Integer
|
723
|
+
attr_accessor page_token: ::String
|
724
|
+
SENSITIVE: []
|
725
|
+
end
|
726
|
+
|
727
|
+
class GetProvisionedProductOutputsOutput
|
728
|
+
attr_accessor outputs: ::Array[Types::RecordOutput]
|
729
|
+
attr_accessor next_page_token: ::String
|
730
|
+
SENSITIVE: []
|
731
|
+
end
|
732
|
+
|
733
|
+
class ImportAsProvisionedProductInput
|
734
|
+
attr_accessor accept_language: ::String
|
735
|
+
attr_accessor product_id: ::String
|
736
|
+
attr_accessor provisioning_artifact_id: ::String
|
737
|
+
attr_accessor provisioned_product_name: ::String
|
738
|
+
attr_accessor physical_id: ::String
|
739
|
+
attr_accessor idempotency_token: ::String
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class ImportAsProvisionedProductOutput
|
744
|
+
attr_accessor record_detail: Types::RecordDetail
|
745
|
+
SENSITIVE: []
|
746
|
+
end
|
747
|
+
|
748
|
+
class InvalidParametersException < Aws::EmptyStructure
|
749
|
+
end
|
750
|
+
|
751
|
+
class InvalidStateException < Aws::EmptyStructure
|
752
|
+
end
|
753
|
+
|
754
|
+
class LastSync
|
755
|
+
attr_accessor last_sync_time: ::Time
|
756
|
+
attr_accessor last_sync_status: ("SUCCEEDED" | "FAILED")
|
757
|
+
attr_accessor last_sync_status_message: ::String
|
758
|
+
attr_accessor last_successful_sync_time: ::Time
|
759
|
+
attr_accessor last_successful_sync_provisioning_artifact_id: ::String
|
760
|
+
SENSITIVE: []
|
761
|
+
end
|
762
|
+
|
763
|
+
class LaunchPath
|
764
|
+
attr_accessor id: ::String
|
765
|
+
attr_accessor name: ::String
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
769
|
+
class LaunchPathSummary
|
770
|
+
attr_accessor id: ::String
|
771
|
+
attr_accessor constraint_summaries: ::Array[Types::ConstraintSummary]
|
772
|
+
attr_accessor tags: ::Array[Types::Tag]
|
773
|
+
attr_accessor name: ::String
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class LimitExceededException < Aws::EmptyStructure
|
778
|
+
end
|
779
|
+
|
780
|
+
class ListAcceptedPortfolioSharesInput
|
781
|
+
attr_accessor accept_language: ::String
|
782
|
+
attr_accessor page_token: ::String
|
783
|
+
attr_accessor page_size: ::Integer
|
784
|
+
attr_accessor portfolio_share_type: ("IMPORTED" | "AWS_SERVICECATALOG" | "AWS_ORGANIZATIONS")
|
785
|
+
SENSITIVE: []
|
786
|
+
end
|
787
|
+
|
788
|
+
class ListAcceptedPortfolioSharesOutput
|
789
|
+
attr_accessor portfolio_details: ::Array[Types::PortfolioDetail]
|
790
|
+
attr_accessor next_page_token: ::String
|
791
|
+
SENSITIVE: []
|
792
|
+
end
|
793
|
+
|
794
|
+
class ListBudgetsForResourceInput
|
795
|
+
attr_accessor accept_language: ::String
|
796
|
+
attr_accessor resource_id: ::String
|
797
|
+
attr_accessor page_size: ::Integer
|
798
|
+
attr_accessor page_token: ::String
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class ListBudgetsForResourceOutput
|
803
|
+
attr_accessor budgets: ::Array[Types::BudgetDetail]
|
804
|
+
attr_accessor next_page_token: ::String
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class ListConstraintsForPortfolioInput
|
809
|
+
attr_accessor accept_language: ::String
|
810
|
+
attr_accessor portfolio_id: ::String
|
811
|
+
attr_accessor product_id: ::String
|
812
|
+
attr_accessor page_size: ::Integer
|
813
|
+
attr_accessor page_token: ::String
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class ListConstraintsForPortfolioOutput
|
818
|
+
attr_accessor constraint_details: ::Array[Types::ConstraintDetail]
|
819
|
+
attr_accessor next_page_token: ::String
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class ListLaunchPathsInput
|
824
|
+
attr_accessor accept_language: ::String
|
825
|
+
attr_accessor product_id: ::String
|
826
|
+
attr_accessor page_size: ::Integer
|
827
|
+
attr_accessor page_token: ::String
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class ListLaunchPathsOutput
|
832
|
+
attr_accessor launch_path_summaries: ::Array[Types::LaunchPathSummary]
|
833
|
+
attr_accessor next_page_token: ::String
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class ListOrganizationPortfolioAccessInput
|
838
|
+
attr_accessor accept_language: ::String
|
839
|
+
attr_accessor portfolio_id: ::String
|
840
|
+
attr_accessor organization_node_type: ("ORGANIZATION" | "ORGANIZATIONAL_UNIT" | "ACCOUNT")
|
841
|
+
attr_accessor page_token: ::String
|
842
|
+
attr_accessor page_size: ::Integer
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class ListOrganizationPortfolioAccessOutput
|
847
|
+
attr_accessor organization_nodes: ::Array[Types::OrganizationNode]
|
848
|
+
attr_accessor next_page_token: ::String
|
849
|
+
SENSITIVE: []
|
850
|
+
end
|
851
|
+
|
852
|
+
class ListPortfolioAccessInput
|
853
|
+
attr_accessor accept_language: ::String
|
854
|
+
attr_accessor portfolio_id: ::String
|
855
|
+
attr_accessor organization_parent_id: ::String
|
856
|
+
attr_accessor page_token: ::String
|
857
|
+
attr_accessor page_size: ::Integer
|
858
|
+
SENSITIVE: []
|
859
|
+
end
|
860
|
+
|
861
|
+
class ListPortfolioAccessOutput
|
862
|
+
attr_accessor account_ids: ::Array[::String]
|
863
|
+
attr_accessor next_page_token: ::String
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class ListPortfoliosForProductInput
|
868
|
+
attr_accessor accept_language: ::String
|
869
|
+
attr_accessor product_id: ::String
|
870
|
+
attr_accessor page_token: ::String
|
871
|
+
attr_accessor page_size: ::Integer
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class ListPortfoliosForProductOutput
|
876
|
+
attr_accessor portfolio_details: ::Array[Types::PortfolioDetail]
|
877
|
+
attr_accessor next_page_token: ::String
|
878
|
+
SENSITIVE: []
|
879
|
+
end
|
880
|
+
|
881
|
+
class ListPortfoliosInput
|
882
|
+
attr_accessor accept_language: ::String
|
883
|
+
attr_accessor page_token: ::String
|
884
|
+
attr_accessor page_size: ::Integer
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
888
|
+
class ListPortfoliosOutput
|
889
|
+
attr_accessor portfolio_details: ::Array[Types::PortfolioDetail]
|
890
|
+
attr_accessor next_page_token: ::String
|
891
|
+
SENSITIVE: []
|
892
|
+
end
|
893
|
+
|
894
|
+
class ListPrincipalsForPortfolioInput
|
895
|
+
attr_accessor accept_language: ::String
|
896
|
+
attr_accessor portfolio_id: ::String
|
897
|
+
attr_accessor page_size: ::Integer
|
898
|
+
attr_accessor page_token: ::String
|
899
|
+
SENSITIVE: []
|
900
|
+
end
|
901
|
+
|
902
|
+
class ListPrincipalsForPortfolioOutput
|
903
|
+
attr_accessor principals: ::Array[Types::Principal]
|
904
|
+
attr_accessor next_page_token: ::String
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
908
|
+
class ListProvisionedProductPlansInput
|
909
|
+
attr_accessor accept_language: ::String
|
910
|
+
attr_accessor provision_product_id: ::String
|
911
|
+
attr_accessor page_size: ::Integer
|
912
|
+
attr_accessor page_token: ::String
|
913
|
+
attr_accessor access_level_filter: Types::AccessLevelFilter
|
914
|
+
SENSITIVE: []
|
915
|
+
end
|
916
|
+
|
917
|
+
class ListProvisionedProductPlansOutput
|
918
|
+
attr_accessor provisioned_product_plans: ::Array[Types::ProvisionedProductPlanSummary]
|
919
|
+
attr_accessor next_page_token: ::String
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class ListProvisioningArtifactsForServiceActionInput
|
924
|
+
attr_accessor service_action_id: ::String
|
925
|
+
attr_accessor page_size: ::Integer
|
926
|
+
attr_accessor page_token: ::String
|
927
|
+
attr_accessor accept_language: ::String
|
928
|
+
SENSITIVE: []
|
929
|
+
end
|
930
|
+
|
931
|
+
class ListProvisioningArtifactsForServiceActionOutput
|
932
|
+
attr_accessor provisioning_artifact_views: ::Array[Types::ProvisioningArtifactView]
|
933
|
+
attr_accessor next_page_token: ::String
|
934
|
+
SENSITIVE: []
|
935
|
+
end
|
936
|
+
|
937
|
+
class ListProvisioningArtifactsInput
|
938
|
+
attr_accessor accept_language: ::String
|
939
|
+
attr_accessor product_id: ::String
|
940
|
+
SENSITIVE: []
|
941
|
+
end
|
942
|
+
|
943
|
+
class ListProvisioningArtifactsOutput
|
944
|
+
attr_accessor provisioning_artifact_details: ::Array[Types::ProvisioningArtifactDetail]
|
945
|
+
attr_accessor next_page_token: ::String
|
946
|
+
SENSITIVE: []
|
947
|
+
end
|
948
|
+
|
949
|
+
class ListRecordHistoryInput
|
950
|
+
attr_accessor accept_language: ::String
|
951
|
+
attr_accessor access_level_filter: Types::AccessLevelFilter
|
952
|
+
attr_accessor search_filter: Types::ListRecordHistorySearchFilter
|
953
|
+
attr_accessor page_size: ::Integer
|
954
|
+
attr_accessor page_token: ::String
|
955
|
+
SENSITIVE: []
|
956
|
+
end
|
957
|
+
|
958
|
+
class ListRecordHistoryOutput
|
959
|
+
attr_accessor record_details: ::Array[Types::RecordDetail]
|
960
|
+
attr_accessor next_page_token: ::String
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class ListRecordHistorySearchFilter
|
965
|
+
attr_accessor key: ::String
|
966
|
+
attr_accessor value: ::String
|
967
|
+
SENSITIVE: []
|
968
|
+
end
|
969
|
+
|
970
|
+
class ListResourcesForTagOptionInput
|
971
|
+
attr_accessor tag_option_id: ::String
|
972
|
+
attr_accessor resource_type: ::String
|
973
|
+
attr_accessor page_size: ::Integer
|
974
|
+
attr_accessor page_token: ::String
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class ListResourcesForTagOptionOutput
|
979
|
+
attr_accessor resource_details: ::Array[Types::ResourceDetail]
|
980
|
+
attr_accessor page_token: ::String
|
981
|
+
SENSITIVE: []
|
982
|
+
end
|
983
|
+
|
984
|
+
class ListServiceActionsForProvisioningArtifactInput
|
985
|
+
attr_accessor product_id: ::String
|
986
|
+
attr_accessor provisioning_artifact_id: ::String
|
987
|
+
attr_accessor page_size: ::Integer
|
988
|
+
attr_accessor page_token: ::String
|
989
|
+
attr_accessor accept_language: ::String
|
990
|
+
SENSITIVE: []
|
991
|
+
end
|
992
|
+
|
993
|
+
class ListServiceActionsForProvisioningArtifactOutput
|
994
|
+
attr_accessor service_action_summaries: ::Array[Types::ServiceActionSummary]
|
995
|
+
attr_accessor next_page_token: ::String
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class ListServiceActionsInput
|
1000
|
+
attr_accessor accept_language: ::String
|
1001
|
+
attr_accessor page_size: ::Integer
|
1002
|
+
attr_accessor page_token: ::String
|
1003
|
+
SENSITIVE: []
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
class ListServiceActionsOutput
|
1007
|
+
attr_accessor service_action_summaries: ::Array[Types::ServiceActionSummary]
|
1008
|
+
attr_accessor next_page_token: ::String
|
1009
|
+
SENSITIVE: []
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
class ListStackInstancesForProvisionedProductInput
|
1013
|
+
attr_accessor accept_language: ::String
|
1014
|
+
attr_accessor provisioned_product_id: ::String
|
1015
|
+
attr_accessor page_token: ::String
|
1016
|
+
attr_accessor page_size: ::Integer
|
1017
|
+
SENSITIVE: []
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
class ListStackInstancesForProvisionedProductOutput
|
1021
|
+
attr_accessor stack_instances: ::Array[Types::StackInstance]
|
1022
|
+
attr_accessor next_page_token: ::String
|
1023
|
+
SENSITIVE: []
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class ListTagOptionsFilters
|
1027
|
+
attr_accessor key: ::String
|
1028
|
+
attr_accessor value: ::String
|
1029
|
+
attr_accessor active: bool
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class ListTagOptionsInput
|
1034
|
+
attr_accessor filters: Types::ListTagOptionsFilters
|
1035
|
+
attr_accessor page_size: ::Integer
|
1036
|
+
attr_accessor page_token: ::String
|
1037
|
+
SENSITIVE: []
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class ListTagOptionsOutput
|
1041
|
+
attr_accessor tag_option_details: ::Array[Types::TagOptionDetail]
|
1042
|
+
attr_accessor page_token: ::String
|
1043
|
+
SENSITIVE: []
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
class NotifyProvisionProductEngineWorkflowResultInput
|
1047
|
+
attr_accessor workflow_token: ::String
|
1048
|
+
attr_accessor record_id: ::String
|
1049
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED")
|
1050
|
+
attr_accessor failure_reason: ::String
|
1051
|
+
attr_accessor resource_identifier: Types::EngineWorkflowResourceIdentifier
|
1052
|
+
attr_accessor outputs: ::Array[Types::RecordOutput]
|
1053
|
+
attr_accessor idempotency_token: ::String
|
1054
|
+
SENSITIVE: []
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
class NotifyProvisionProductEngineWorkflowResultOutput < Aws::EmptyStructure
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class NotifyTerminateProvisionedProductEngineWorkflowResultInput
|
1061
|
+
attr_accessor workflow_token: ::String
|
1062
|
+
attr_accessor record_id: ::String
|
1063
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED")
|
1064
|
+
attr_accessor failure_reason: ::String
|
1065
|
+
attr_accessor idempotency_token: ::String
|
1066
|
+
SENSITIVE: []
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
class NotifyTerminateProvisionedProductEngineWorkflowResultOutput < Aws::EmptyStructure
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class NotifyUpdateProvisionedProductEngineWorkflowResultInput
|
1073
|
+
attr_accessor workflow_token: ::String
|
1074
|
+
attr_accessor record_id: ::String
|
1075
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED")
|
1076
|
+
attr_accessor failure_reason: ::String
|
1077
|
+
attr_accessor outputs: ::Array[Types::RecordOutput]
|
1078
|
+
attr_accessor idempotency_token: ::String
|
1079
|
+
SENSITIVE: []
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
class NotifyUpdateProvisionedProductEngineWorkflowResultOutput < Aws::EmptyStructure
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class OperationNotSupportedException < Aws::EmptyStructure
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
class OrganizationNode
|
1089
|
+
attr_accessor type: ("ORGANIZATION" | "ORGANIZATIONAL_UNIT" | "ACCOUNT")
|
1090
|
+
attr_accessor value: ::String
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class ParameterConstraints
|
1095
|
+
attr_accessor allowed_values: ::Array[::String]
|
1096
|
+
attr_accessor allowed_pattern: ::String
|
1097
|
+
attr_accessor constraint_description: ::String
|
1098
|
+
attr_accessor max_length: ::String
|
1099
|
+
attr_accessor min_length: ::String
|
1100
|
+
attr_accessor max_value: ::String
|
1101
|
+
attr_accessor min_value: ::String
|
1102
|
+
SENSITIVE: []
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
class PortfolioDetail
|
1106
|
+
attr_accessor id: ::String
|
1107
|
+
attr_accessor arn: ::String
|
1108
|
+
attr_accessor display_name: ::String
|
1109
|
+
attr_accessor description: ::String
|
1110
|
+
attr_accessor created_time: ::Time
|
1111
|
+
attr_accessor provider_name: ::String
|
1112
|
+
SENSITIVE: []
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
class PortfolioShareDetail
|
1116
|
+
attr_accessor principal_id: ::String
|
1117
|
+
attr_accessor type: ("ACCOUNT" | "ORGANIZATION" | "ORGANIZATIONAL_UNIT" | "ORGANIZATION_MEMBER_ACCOUNT")
|
1118
|
+
attr_accessor accepted: bool
|
1119
|
+
attr_accessor share_tag_options: bool
|
1120
|
+
attr_accessor share_principals: bool
|
1121
|
+
SENSITIVE: []
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
class Principal
|
1125
|
+
attr_accessor principal_arn: ::String
|
1126
|
+
attr_accessor principal_type: ("IAM" | "IAM_PATTERN")
|
1127
|
+
SENSITIVE: []
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class ProductViewAggregationValue
|
1131
|
+
attr_accessor value: ::String
|
1132
|
+
attr_accessor approximate_count: ::Integer
|
1133
|
+
SENSITIVE: []
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
class ProductViewDetail
|
1137
|
+
attr_accessor product_view_summary: Types::ProductViewSummary
|
1138
|
+
attr_accessor status: ("AVAILABLE" | "CREATING" | "FAILED")
|
1139
|
+
attr_accessor product_arn: ::String
|
1140
|
+
attr_accessor created_time: ::Time
|
1141
|
+
attr_accessor source_connection: Types::SourceConnectionDetail
|
1142
|
+
SENSITIVE: []
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
class ProductViewSummary
|
1146
|
+
attr_accessor id: ::String
|
1147
|
+
attr_accessor product_id: ::String
|
1148
|
+
attr_accessor name: ::String
|
1149
|
+
attr_accessor owner: ::String
|
1150
|
+
attr_accessor short_description: ::String
|
1151
|
+
attr_accessor type: ("CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL")
|
1152
|
+
attr_accessor distributor: ::String
|
1153
|
+
attr_accessor has_default_path: bool
|
1154
|
+
attr_accessor support_email: ::String
|
1155
|
+
attr_accessor support_description: ::String
|
1156
|
+
attr_accessor support_url: ::String
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class ProvisionProductInput
|
1161
|
+
attr_accessor accept_language: ::String
|
1162
|
+
attr_accessor product_id: ::String
|
1163
|
+
attr_accessor product_name: ::String
|
1164
|
+
attr_accessor provisioning_artifact_id: ::String
|
1165
|
+
attr_accessor provisioning_artifact_name: ::String
|
1166
|
+
attr_accessor path_id: ::String
|
1167
|
+
attr_accessor path_name: ::String
|
1168
|
+
attr_accessor provisioned_product_name: ::String
|
1169
|
+
attr_accessor provisioning_parameters: ::Array[Types::ProvisioningParameter]
|
1170
|
+
attr_accessor provisioning_preferences: Types::ProvisioningPreferences
|
1171
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1172
|
+
attr_accessor notification_arns: ::Array[::String]
|
1173
|
+
attr_accessor provision_token: ::String
|
1174
|
+
SENSITIVE: []
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class ProvisionProductOutput
|
1178
|
+
attr_accessor record_detail: Types::RecordDetail
|
1179
|
+
SENSITIVE: []
|
1180
|
+
end
|
1181
|
+
|
1182
|
+
class ProvisionedProductAttribute
|
1183
|
+
attr_accessor name: ::String
|
1184
|
+
attr_accessor arn: ::String
|
1185
|
+
attr_accessor type: ::String
|
1186
|
+
attr_accessor id: ::String
|
1187
|
+
attr_accessor status: ("AVAILABLE" | "UNDER_CHANGE" | "TAINTED" | "ERROR" | "PLAN_IN_PROGRESS")
|
1188
|
+
attr_accessor status_message: ::String
|
1189
|
+
attr_accessor created_time: ::Time
|
1190
|
+
attr_accessor idempotency_token: ::String
|
1191
|
+
attr_accessor last_record_id: ::String
|
1192
|
+
attr_accessor last_provisioning_record_id: ::String
|
1193
|
+
attr_accessor last_successful_provisioning_record_id: ::String
|
1194
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1195
|
+
attr_accessor physical_id: ::String
|
1196
|
+
attr_accessor product_id: ::String
|
1197
|
+
attr_accessor product_name: ::String
|
1198
|
+
attr_accessor provisioning_artifact_id: ::String
|
1199
|
+
attr_accessor provisioning_artifact_name: ::String
|
1200
|
+
attr_accessor user_arn: ::String
|
1201
|
+
attr_accessor user_arn_session: ::String
|
1202
|
+
SENSITIVE: []
|
1203
|
+
end
|
1204
|
+
|
1205
|
+
class ProvisionedProductDetail
|
1206
|
+
attr_accessor name: ::String
|
1207
|
+
attr_accessor arn: ::String
|
1208
|
+
attr_accessor type: ::String
|
1209
|
+
attr_accessor id: ::String
|
1210
|
+
attr_accessor status: ("AVAILABLE" | "UNDER_CHANGE" | "TAINTED" | "ERROR" | "PLAN_IN_PROGRESS")
|
1211
|
+
attr_accessor status_message: ::String
|
1212
|
+
attr_accessor created_time: ::Time
|
1213
|
+
attr_accessor idempotency_token: ::String
|
1214
|
+
attr_accessor last_record_id: ::String
|
1215
|
+
attr_accessor last_provisioning_record_id: ::String
|
1216
|
+
attr_accessor last_successful_provisioning_record_id: ::String
|
1217
|
+
attr_accessor product_id: ::String
|
1218
|
+
attr_accessor provisioning_artifact_id: ::String
|
1219
|
+
attr_accessor launch_role_arn: ::String
|
1220
|
+
SENSITIVE: []
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
class ProvisionedProductPlanDetails
|
1224
|
+
attr_accessor created_time: ::Time
|
1225
|
+
attr_accessor path_id: ::String
|
1226
|
+
attr_accessor product_id: ::String
|
1227
|
+
attr_accessor plan_name: ::String
|
1228
|
+
attr_accessor plan_id: ::String
|
1229
|
+
attr_accessor provision_product_id: ::String
|
1230
|
+
attr_accessor provision_product_name: ::String
|
1231
|
+
attr_accessor plan_type: ("CLOUDFORMATION")
|
1232
|
+
attr_accessor provisioning_artifact_id: ::String
|
1233
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_SUCCESS" | "CREATE_FAILED" | "EXECUTE_IN_PROGRESS" | "EXECUTE_SUCCESS" | "EXECUTE_FAILED")
|
1234
|
+
attr_accessor updated_time: ::Time
|
1235
|
+
attr_accessor notification_arns: ::Array[::String]
|
1236
|
+
attr_accessor provisioning_parameters: ::Array[Types::UpdateProvisioningParameter]
|
1237
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1238
|
+
attr_accessor status_message: ::String
|
1239
|
+
SENSITIVE: []
|
1240
|
+
end
|
1241
|
+
|
1242
|
+
class ProvisionedProductPlanSummary
|
1243
|
+
attr_accessor plan_name: ::String
|
1244
|
+
attr_accessor plan_id: ::String
|
1245
|
+
attr_accessor provision_product_id: ::String
|
1246
|
+
attr_accessor provision_product_name: ::String
|
1247
|
+
attr_accessor plan_type: ("CLOUDFORMATION")
|
1248
|
+
attr_accessor provisioning_artifact_id: ::String
|
1249
|
+
SENSITIVE: []
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
class ProvisioningArtifact
|
1253
|
+
attr_accessor id: ::String
|
1254
|
+
attr_accessor name: ::String
|
1255
|
+
attr_accessor description: ::String
|
1256
|
+
attr_accessor created_time: ::Time
|
1257
|
+
attr_accessor guidance: ("DEFAULT" | "DEPRECATED")
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class ProvisioningArtifactDetail
|
1262
|
+
attr_accessor id: ::String
|
1263
|
+
attr_accessor name: ::String
|
1264
|
+
attr_accessor description: ::String
|
1265
|
+
attr_accessor type: ("CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL")
|
1266
|
+
attr_accessor created_time: ::Time
|
1267
|
+
attr_accessor active: bool
|
1268
|
+
attr_accessor guidance: ("DEFAULT" | "DEPRECATED")
|
1269
|
+
attr_accessor source_revision: ::String
|
1270
|
+
SENSITIVE: []
|
1271
|
+
end
|
1272
|
+
|
1273
|
+
class ProvisioningArtifactOutput
|
1274
|
+
attr_accessor key: ::String
|
1275
|
+
attr_accessor description: ::String
|
1276
|
+
SENSITIVE: []
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
class ProvisioningArtifactParameter
|
1280
|
+
attr_accessor parameter_key: ::String
|
1281
|
+
attr_accessor default_value: ::String
|
1282
|
+
attr_accessor parameter_type: ::String
|
1283
|
+
attr_accessor is_no_echo: bool
|
1284
|
+
attr_accessor description: ::String
|
1285
|
+
attr_accessor parameter_constraints: Types::ParameterConstraints
|
1286
|
+
SENSITIVE: []
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
class ProvisioningArtifactPreferences
|
1290
|
+
attr_accessor stack_set_accounts: ::Array[::String]
|
1291
|
+
attr_accessor stack_set_regions: ::Array[::String]
|
1292
|
+
SENSITIVE: []
|
1293
|
+
end
|
1294
|
+
|
1295
|
+
class ProvisioningArtifactProperties
|
1296
|
+
attr_accessor name: ::String
|
1297
|
+
attr_accessor description: ::String
|
1298
|
+
attr_accessor info: ::Hash[::String, ::String]
|
1299
|
+
attr_accessor type: ("CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL")
|
1300
|
+
attr_accessor disable_template_validation: bool
|
1301
|
+
SENSITIVE: []
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
class ProvisioningArtifactSummary
|
1305
|
+
attr_accessor id: ::String
|
1306
|
+
attr_accessor name: ::String
|
1307
|
+
attr_accessor description: ::String
|
1308
|
+
attr_accessor created_time: ::Time
|
1309
|
+
attr_accessor provisioning_artifact_metadata: ::Hash[::String, ::String]
|
1310
|
+
SENSITIVE: []
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
class ProvisioningArtifactView
|
1314
|
+
attr_accessor product_view_summary: Types::ProductViewSummary
|
1315
|
+
attr_accessor provisioning_artifact: Types::ProvisioningArtifact
|
1316
|
+
SENSITIVE: []
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
class ProvisioningParameter
|
1320
|
+
attr_accessor key: ::String
|
1321
|
+
attr_accessor value: ::String
|
1322
|
+
SENSITIVE: []
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
class ProvisioningPreferences
|
1326
|
+
attr_accessor stack_set_accounts: ::Array[::String]
|
1327
|
+
attr_accessor stack_set_regions: ::Array[::String]
|
1328
|
+
attr_accessor stack_set_failure_tolerance_count: ::Integer
|
1329
|
+
attr_accessor stack_set_failure_tolerance_percentage: ::Integer
|
1330
|
+
attr_accessor stack_set_max_concurrency_count: ::Integer
|
1331
|
+
attr_accessor stack_set_max_concurrency_percentage: ::Integer
|
1332
|
+
SENSITIVE: []
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
class RecordDetail
|
1336
|
+
attr_accessor record_id: ::String
|
1337
|
+
attr_accessor provisioned_product_name: ::String
|
1338
|
+
attr_accessor status: ("CREATED" | "IN_PROGRESS" | "IN_PROGRESS_IN_ERROR" | "SUCCEEDED" | "FAILED")
|
1339
|
+
attr_accessor created_time: ::Time
|
1340
|
+
attr_accessor updated_time: ::Time
|
1341
|
+
attr_accessor provisioned_product_type: ::String
|
1342
|
+
attr_accessor record_type: ::String
|
1343
|
+
attr_accessor provisioned_product_id: ::String
|
1344
|
+
attr_accessor product_id: ::String
|
1345
|
+
attr_accessor provisioning_artifact_id: ::String
|
1346
|
+
attr_accessor path_id: ::String
|
1347
|
+
attr_accessor record_errors: ::Array[Types::RecordError]
|
1348
|
+
attr_accessor record_tags: ::Array[Types::RecordTag]
|
1349
|
+
attr_accessor launch_role_arn: ::String
|
1350
|
+
SENSITIVE: []
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
class RecordError
|
1354
|
+
attr_accessor code: ::String
|
1355
|
+
attr_accessor description: ::String
|
1356
|
+
SENSITIVE: []
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
class RecordOutput
|
1360
|
+
attr_accessor output_key: ::String
|
1361
|
+
attr_accessor output_value: ::String
|
1362
|
+
attr_accessor description: ::String
|
1363
|
+
SENSITIVE: []
|
1364
|
+
end
|
1365
|
+
|
1366
|
+
class RecordTag
|
1367
|
+
attr_accessor key: ::String
|
1368
|
+
attr_accessor value: ::String
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class RejectPortfolioShareInput
|
1373
|
+
attr_accessor accept_language: ::String
|
1374
|
+
attr_accessor portfolio_id: ::String
|
1375
|
+
attr_accessor portfolio_share_type: ("IMPORTED" | "AWS_SERVICECATALOG" | "AWS_ORGANIZATIONS")
|
1376
|
+
SENSITIVE: []
|
1377
|
+
end
|
1378
|
+
|
1379
|
+
class RejectPortfolioShareOutput < Aws::EmptyStructure
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
class ResourceChange
|
1383
|
+
attr_accessor action: ("ADD" | "MODIFY" | "REMOVE")
|
1384
|
+
attr_accessor logical_resource_id: ::String
|
1385
|
+
attr_accessor physical_resource_id: ::String
|
1386
|
+
attr_accessor resource_type: ::String
|
1387
|
+
attr_accessor replacement: ("TRUE" | "FALSE" | "CONDITIONAL")
|
1388
|
+
attr_accessor scope: ::Array[("PROPERTIES" | "METADATA" | "CREATIONPOLICY" | "UPDATEPOLICY" | "DELETIONPOLICY" | "TAGS")]
|
1389
|
+
attr_accessor details: ::Array[Types::ResourceChangeDetail]
|
1390
|
+
SENSITIVE: []
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
class ResourceChangeDetail
|
1394
|
+
attr_accessor target: Types::ResourceTargetDefinition
|
1395
|
+
attr_accessor evaluation: ("STATIC" | "DYNAMIC")
|
1396
|
+
attr_accessor causing_entity: ::String
|
1397
|
+
SENSITIVE: []
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
class ResourceDetail
|
1401
|
+
attr_accessor id: ::String
|
1402
|
+
attr_accessor arn: ::String
|
1403
|
+
attr_accessor name: ::String
|
1404
|
+
attr_accessor description: ::String
|
1405
|
+
attr_accessor created_time: ::Time
|
1406
|
+
SENSITIVE: []
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
class ResourceInUseException < Aws::EmptyStructure
|
1410
|
+
end
|
1411
|
+
|
1412
|
+
class ResourceNotFoundException < Aws::EmptyStructure
|
1413
|
+
end
|
1414
|
+
|
1415
|
+
class ResourceTargetDefinition
|
1416
|
+
attr_accessor attribute: ("PROPERTIES" | "METADATA" | "CREATIONPOLICY" | "UPDATEPOLICY" | "DELETIONPOLICY" | "TAGS")
|
1417
|
+
attr_accessor name: ::String
|
1418
|
+
attr_accessor requires_recreation: ("NEVER" | "CONDITIONALLY" | "ALWAYS")
|
1419
|
+
SENSITIVE: []
|
1420
|
+
end
|
1421
|
+
|
1422
|
+
class ScanProvisionedProductsInput
|
1423
|
+
attr_accessor accept_language: ::String
|
1424
|
+
attr_accessor access_level_filter: Types::AccessLevelFilter
|
1425
|
+
attr_accessor page_size: ::Integer
|
1426
|
+
attr_accessor page_token: ::String
|
1427
|
+
SENSITIVE: []
|
1428
|
+
end
|
1429
|
+
|
1430
|
+
class ScanProvisionedProductsOutput
|
1431
|
+
attr_accessor provisioned_products: ::Array[Types::ProvisionedProductDetail]
|
1432
|
+
attr_accessor next_page_token: ::String
|
1433
|
+
SENSITIVE: []
|
1434
|
+
end
|
1435
|
+
|
1436
|
+
class SearchProductsAsAdminInput
|
1437
|
+
attr_accessor accept_language: ::String
|
1438
|
+
attr_accessor portfolio_id: ::String
|
1439
|
+
attr_accessor filters: ::Hash[("FullTextSearch" | "Owner" | "ProductType" | "SourceProductId"), ::Array[::String]]
|
1440
|
+
attr_accessor sort_by: ("Title" | "VersionCount" | "CreationDate")
|
1441
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
1442
|
+
attr_accessor page_token: ::String
|
1443
|
+
attr_accessor page_size: ::Integer
|
1444
|
+
attr_accessor product_source: ("ACCOUNT")
|
1445
|
+
SENSITIVE: []
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
class SearchProductsAsAdminOutput
|
1449
|
+
attr_accessor product_view_details: ::Array[Types::ProductViewDetail]
|
1450
|
+
attr_accessor next_page_token: ::String
|
1451
|
+
SENSITIVE: []
|
1452
|
+
end
|
1453
|
+
|
1454
|
+
class SearchProductsInput
|
1455
|
+
attr_accessor accept_language: ::String
|
1456
|
+
attr_accessor filters: ::Hash[("FullTextSearch" | "Owner" | "ProductType" | "SourceProductId"), ::Array[::String]]
|
1457
|
+
attr_accessor page_size: ::Integer
|
1458
|
+
attr_accessor sort_by: ("Title" | "VersionCount" | "CreationDate")
|
1459
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
1460
|
+
attr_accessor page_token: ::String
|
1461
|
+
SENSITIVE: []
|
1462
|
+
end
|
1463
|
+
|
1464
|
+
class SearchProductsOutput
|
1465
|
+
attr_accessor product_view_summaries: ::Array[Types::ProductViewSummary]
|
1466
|
+
attr_accessor product_view_aggregations: ::Hash[::String, ::Array[Types::ProductViewAggregationValue]]
|
1467
|
+
attr_accessor next_page_token: ::String
|
1468
|
+
SENSITIVE: []
|
1469
|
+
end
|
1470
|
+
|
1471
|
+
class SearchProvisionedProductsInput
|
1472
|
+
attr_accessor accept_language: ::String
|
1473
|
+
attr_accessor access_level_filter: Types::AccessLevelFilter
|
1474
|
+
attr_accessor filters: ::Hash[("SearchQuery"), ::Array[::String]]
|
1475
|
+
attr_accessor sort_by: ::String
|
1476
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
1477
|
+
attr_accessor page_size: ::Integer
|
1478
|
+
attr_accessor page_token: ::String
|
1479
|
+
SENSITIVE: []
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
class SearchProvisionedProductsOutput
|
1483
|
+
attr_accessor provisioned_products: ::Array[Types::ProvisionedProductAttribute]
|
1484
|
+
attr_accessor total_results_count: ::Integer
|
1485
|
+
attr_accessor next_page_token: ::String
|
1486
|
+
SENSITIVE: []
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
class ServiceActionAssociation
|
1490
|
+
attr_accessor service_action_id: ::String
|
1491
|
+
attr_accessor product_id: ::String
|
1492
|
+
attr_accessor provisioning_artifact_id: ::String
|
1493
|
+
SENSITIVE: []
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
class ServiceActionDetail
|
1497
|
+
attr_accessor service_action_summary: Types::ServiceActionSummary
|
1498
|
+
attr_accessor definition: ::Hash[("Name" | "Version" | "AssumeRole" | "Parameters"), ::String]
|
1499
|
+
SENSITIVE: []
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
class ServiceActionSummary
|
1503
|
+
attr_accessor id: ::String
|
1504
|
+
attr_accessor name: ::String
|
1505
|
+
attr_accessor description: ::String
|
1506
|
+
attr_accessor definition_type: ("SSM_AUTOMATION")
|
1507
|
+
SENSITIVE: []
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
class ShareDetails
|
1511
|
+
attr_accessor successful_shares: ::Array[::String]
|
1512
|
+
attr_accessor share_errors: ::Array[Types::ShareError]
|
1513
|
+
SENSITIVE: []
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
class ShareError
|
1517
|
+
attr_accessor accounts: ::Array[::String]
|
1518
|
+
attr_accessor message: ::String
|
1519
|
+
attr_accessor error: ::String
|
1520
|
+
SENSITIVE: []
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
class SourceConnection
|
1524
|
+
attr_accessor type: ("CODESTAR")
|
1525
|
+
attr_accessor connection_parameters: Types::SourceConnectionParameters
|
1526
|
+
SENSITIVE: []
|
1527
|
+
end
|
1528
|
+
|
1529
|
+
class SourceConnectionDetail
|
1530
|
+
attr_accessor type: ("CODESTAR")
|
1531
|
+
attr_accessor connection_parameters: Types::SourceConnectionParameters
|
1532
|
+
attr_accessor last_sync: Types::LastSync
|
1533
|
+
SENSITIVE: []
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
class SourceConnectionParameters
|
1537
|
+
attr_accessor code_star: Types::CodeStarParameters
|
1538
|
+
SENSITIVE: []
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
class StackInstance
|
1542
|
+
attr_accessor account: ::String
|
1543
|
+
attr_accessor region: ::String
|
1544
|
+
attr_accessor stack_instance_status: ("CURRENT" | "OUTDATED" | "INOPERABLE")
|
1545
|
+
SENSITIVE: []
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
class Tag
|
1549
|
+
attr_accessor key: ::String
|
1550
|
+
attr_accessor value: ::String
|
1551
|
+
SENSITIVE: []
|
1552
|
+
end
|
1553
|
+
|
1554
|
+
class TagOptionDetail
|
1555
|
+
attr_accessor key: ::String
|
1556
|
+
attr_accessor value: ::String
|
1557
|
+
attr_accessor active: bool
|
1558
|
+
attr_accessor id: ::String
|
1559
|
+
attr_accessor owner: ::String
|
1560
|
+
SENSITIVE: []
|
1561
|
+
end
|
1562
|
+
|
1563
|
+
class TagOptionNotMigratedException < Aws::EmptyStructure
|
1564
|
+
end
|
1565
|
+
|
1566
|
+
class TagOptionSummary
|
1567
|
+
attr_accessor key: ::String
|
1568
|
+
attr_accessor values: ::Array[::String]
|
1569
|
+
SENSITIVE: []
|
1570
|
+
end
|
1571
|
+
|
1572
|
+
class TerminateProvisionedProductInput
|
1573
|
+
attr_accessor provisioned_product_name: ::String
|
1574
|
+
attr_accessor provisioned_product_id: ::String
|
1575
|
+
attr_accessor terminate_token: ::String
|
1576
|
+
attr_accessor ignore_errors: bool
|
1577
|
+
attr_accessor accept_language: ::String
|
1578
|
+
attr_accessor retain_physical_resources: bool
|
1579
|
+
SENSITIVE: []
|
1580
|
+
end
|
1581
|
+
|
1582
|
+
class TerminateProvisionedProductOutput
|
1583
|
+
attr_accessor record_detail: Types::RecordDetail
|
1584
|
+
SENSITIVE: []
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
class UniqueTagResourceIdentifier
|
1588
|
+
attr_accessor key: ::String
|
1589
|
+
attr_accessor value: ::String
|
1590
|
+
SENSITIVE: []
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
class UpdateConstraintInput
|
1594
|
+
attr_accessor accept_language: ::String
|
1595
|
+
attr_accessor id: ::String
|
1596
|
+
attr_accessor description: ::String
|
1597
|
+
attr_accessor parameters: ::String
|
1598
|
+
SENSITIVE: []
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
class UpdateConstraintOutput
|
1602
|
+
attr_accessor constraint_detail: Types::ConstraintDetail
|
1603
|
+
attr_accessor constraint_parameters: ::String
|
1604
|
+
attr_accessor status: ("AVAILABLE" | "CREATING" | "FAILED")
|
1605
|
+
SENSITIVE: []
|
1606
|
+
end
|
1607
|
+
|
1608
|
+
class UpdatePortfolioInput
|
1609
|
+
attr_accessor accept_language: ::String
|
1610
|
+
attr_accessor id: ::String
|
1611
|
+
attr_accessor display_name: ::String
|
1612
|
+
attr_accessor description: ::String
|
1613
|
+
attr_accessor provider_name: ::String
|
1614
|
+
attr_accessor add_tags: ::Array[Types::Tag]
|
1615
|
+
attr_accessor remove_tags: ::Array[::String]
|
1616
|
+
SENSITIVE: []
|
1617
|
+
end
|
1618
|
+
|
1619
|
+
class UpdatePortfolioOutput
|
1620
|
+
attr_accessor portfolio_detail: Types::PortfolioDetail
|
1621
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1622
|
+
SENSITIVE: []
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
class UpdatePortfolioShareInput
|
1626
|
+
attr_accessor accept_language: ::String
|
1627
|
+
attr_accessor portfolio_id: ::String
|
1628
|
+
attr_accessor account_id: ::String
|
1629
|
+
attr_accessor organization_node: Types::OrganizationNode
|
1630
|
+
attr_accessor share_tag_options: bool
|
1631
|
+
attr_accessor share_principals: bool
|
1632
|
+
SENSITIVE: []
|
1633
|
+
end
|
1634
|
+
|
1635
|
+
class UpdatePortfolioShareOutput
|
1636
|
+
attr_accessor portfolio_share_token: ::String
|
1637
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "ERROR")
|
1638
|
+
SENSITIVE: []
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
class UpdateProductInput
|
1642
|
+
attr_accessor accept_language: ::String
|
1643
|
+
attr_accessor id: ::String
|
1644
|
+
attr_accessor name: ::String
|
1645
|
+
attr_accessor owner: ::String
|
1646
|
+
attr_accessor description: ::String
|
1647
|
+
attr_accessor distributor: ::String
|
1648
|
+
attr_accessor support_description: ::String
|
1649
|
+
attr_accessor support_email: ::String
|
1650
|
+
attr_accessor support_url: ::String
|
1651
|
+
attr_accessor add_tags: ::Array[Types::Tag]
|
1652
|
+
attr_accessor remove_tags: ::Array[::String]
|
1653
|
+
attr_accessor source_connection: Types::SourceConnection
|
1654
|
+
SENSITIVE: []
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
class UpdateProductOutput
|
1658
|
+
attr_accessor product_view_detail: Types::ProductViewDetail
|
1659
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1660
|
+
SENSITIVE: []
|
1661
|
+
end
|
1662
|
+
|
1663
|
+
class UpdateProvisionedProductInput
|
1664
|
+
attr_accessor accept_language: ::String
|
1665
|
+
attr_accessor provisioned_product_name: ::String
|
1666
|
+
attr_accessor provisioned_product_id: ::String
|
1667
|
+
attr_accessor product_id: ::String
|
1668
|
+
attr_accessor product_name: ::String
|
1669
|
+
attr_accessor provisioning_artifact_id: ::String
|
1670
|
+
attr_accessor provisioning_artifact_name: ::String
|
1671
|
+
attr_accessor path_id: ::String
|
1672
|
+
attr_accessor path_name: ::String
|
1673
|
+
attr_accessor provisioning_parameters: ::Array[Types::UpdateProvisioningParameter]
|
1674
|
+
attr_accessor provisioning_preferences: Types::UpdateProvisioningPreferences
|
1675
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1676
|
+
attr_accessor update_token: ::String
|
1677
|
+
SENSITIVE: []
|
1678
|
+
end
|
1679
|
+
|
1680
|
+
class UpdateProvisionedProductOutput
|
1681
|
+
attr_accessor record_detail: Types::RecordDetail
|
1682
|
+
SENSITIVE: []
|
1683
|
+
end
|
1684
|
+
|
1685
|
+
class UpdateProvisionedProductPropertiesInput
|
1686
|
+
attr_accessor accept_language: ::String
|
1687
|
+
attr_accessor provisioned_product_id: ::String
|
1688
|
+
attr_accessor provisioned_product_properties: ::Hash[("OWNER" | "LAUNCH_ROLE"), ::String]
|
1689
|
+
attr_accessor idempotency_token: ::String
|
1690
|
+
SENSITIVE: []
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
class UpdateProvisionedProductPropertiesOutput
|
1694
|
+
attr_accessor provisioned_product_id: ::String
|
1695
|
+
attr_accessor provisioned_product_properties: ::Hash[("OWNER" | "LAUNCH_ROLE"), ::String]
|
1696
|
+
attr_accessor record_id: ::String
|
1697
|
+
attr_accessor status: ("CREATED" | "IN_PROGRESS" | "IN_PROGRESS_IN_ERROR" | "SUCCEEDED" | "FAILED")
|
1698
|
+
SENSITIVE: []
|
1699
|
+
end
|
1700
|
+
|
1701
|
+
class UpdateProvisioningArtifactInput
|
1702
|
+
attr_accessor accept_language: ::String
|
1703
|
+
attr_accessor product_id: ::String
|
1704
|
+
attr_accessor provisioning_artifact_id: ::String
|
1705
|
+
attr_accessor name: ::String
|
1706
|
+
attr_accessor description: ::String
|
1707
|
+
attr_accessor active: bool
|
1708
|
+
attr_accessor guidance: ("DEFAULT" | "DEPRECATED")
|
1709
|
+
SENSITIVE: []
|
1710
|
+
end
|
1711
|
+
|
1712
|
+
class UpdateProvisioningArtifactOutput
|
1713
|
+
attr_accessor provisioning_artifact_detail: Types::ProvisioningArtifactDetail
|
1714
|
+
attr_accessor info: ::Hash[::String, ::String]
|
1715
|
+
attr_accessor status: ("AVAILABLE" | "CREATING" | "FAILED")
|
1716
|
+
SENSITIVE: []
|
1717
|
+
end
|
1718
|
+
|
1719
|
+
class UpdateProvisioningParameter
|
1720
|
+
attr_accessor key: ::String
|
1721
|
+
attr_accessor value: ::String
|
1722
|
+
attr_accessor use_previous_value: bool
|
1723
|
+
SENSITIVE: []
|
1724
|
+
end
|
1725
|
+
|
1726
|
+
class UpdateProvisioningPreferences
|
1727
|
+
attr_accessor stack_set_accounts: ::Array[::String]
|
1728
|
+
attr_accessor stack_set_regions: ::Array[::String]
|
1729
|
+
attr_accessor stack_set_failure_tolerance_count: ::Integer
|
1730
|
+
attr_accessor stack_set_failure_tolerance_percentage: ::Integer
|
1731
|
+
attr_accessor stack_set_max_concurrency_count: ::Integer
|
1732
|
+
attr_accessor stack_set_max_concurrency_percentage: ::Integer
|
1733
|
+
attr_accessor stack_set_operation_type: ("CREATE" | "UPDATE" | "DELETE")
|
1734
|
+
SENSITIVE: []
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
class UpdateServiceActionInput
|
1738
|
+
attr_accessor id: ::String
|
1739
|
+
attr_accessor name: ::String
|
1740
|
+
attr_accessor definition: ::Hash[("Name" | "Version" | "AssumeRole" | "Parameters"), ::String]
|
1741
|
+
attr_accessor description: ::String
|
1742
|
+
attr_accessor accept_language: ::String
|
1743
|
+
SENSITIVE: []
|
1744
|
+
end
|
1745
|
+
|
1746
|
+
class UpdateServiceActionOutput
|
1747
|
+
attr_accessor service_action_detail: Types::ServiceActionDetail
|
1748
|
+
SENSITIVE: []
|
1749
|
+
end
|
1750
|
+
|
1751
|
+
class UpdateTagOptionInput
|
1752
|
+
attr_accessor id: ::String
|
1753
|
+
attr_accessor value: ::String
|
1754
|
+
attr_accessor active: bool
|
1755
|
+
SENSITIVE: []
|
1756
|
+
end
|
1757
|
+
|
1758
|
+
class UpdateTagOptionOutput
|
1759
|
+
attr_accessor tag_option_detail: Types::TagOptionDetail
|
1760
|
+
SENSITIVE: []
|
1761
|
+
end
|
1762
|
+
|
1763
|
+
class UsageInstruction
|
1764
|
+
attr_accessor type: ::String
|
1765
|
+
attr_accessor value: ::String
|
1766
|
+
SENSITIVE: []
|
1767
|
+
end
|
1768
|
+
end
|
1769
|
+
end
|