aws-sdk-servicecatalog 1.0.0.rc6 → 1.0.0.rc7
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 +1 -1
- data/lib/aws-sdk-servicecatalog/client.rb +295 -5
- data/lib/aws-sdk-servicecatalog/client_api.rb +217 -0
- data/lib/aws-sdk-servicecatalog/types.rb +411 -13
- metadata +4 -4
@@ -177,6 +177,34 @@ module Aws::ServiceCatalog
|
|
177
177
|
#
|
178
178
|
class AssociateProductWithPortfolioOutput < Aws::EmptyStructure; end
|
179
179
|
|
180
|
+
# @note When making an API call, you may pass AssociateTagOptionWithResourceInput
|
181
|
+
# data as a hash:
|
182
|
+
#
|
183
|
+
# {
|
184
|
+
# resource_id: "ResourceId", # required
|
185
|
+
# tag_option_id: "TagOptionId", # required
|
186
|
+
# }
|
187
|
+
#
|
188
|
+
# @!attribute [rw] resource_id
|
189
|
+
# The resource identifier.
|
190
|
+
# @return [String]
|
191
|
+
#
|
192
|
+
# @!attribute [rw] tag_option_id
|
193
|
+
# The TagOption identifier.
|
194
|
+
# @return [String]
|
195
|
+
#
|
196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociateTagOptionWithResourceInput AWS API Documentation
|
197
|
+
#
|
198
|
+
class AssociateTagOptionWithResourceInput < Struct.new(
|
199
|
+
:resource_id,
|
200
|
+
:tag_option_id)
|
201
|
+
include Aws::Structure
|
202
|
+
end
|
203
|
+
|
204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociateTagOptionWithResourceOutput AWS API Documentation
|
205
|
+
#
|
206
|
+
class AssociateTagOptionWithResourceOutput < Aws::EmptyStructure; end
|
207
|
+
|
180
208
|
# Detailed constraint information.
|
181
209
|
#
|
182
210
|
# @!attribute [rw] constraint_id
|
@@ -658,6 +686,41 @@ module Aws::ServiceCatalog
|
|
658
686
|
include Aws::Structure
|
659
687
|
end
|
660
688
|
|
689
|
+
# @note When making an API call, you may pass CreateTagOptionInput
|
690
|
+
# data as a hash:
|
691
|
+
#
|
692
|
+
# {
|
693
|
+
# key: "TagOptionKey", # required
|
694
|
+
# value: "TagOptionValue", # required
|
695
|
+
# }
|
696
|
+
#
|
697
|
+
# @!attribute [rw] key
|
698
|
+
# The TagOption key.
|
699
|
+
# @return [String]
|
700
|
+
#
|
701
|
+
# @!attribute [rw] value
|
702
|
+
# The TagOption value.
|
703
|
+
# @return [String]
|
704
|
+
#
|
705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateTagOptionInput AWS API Documentation
|
706
|
+
#
|
707
|
+
class CreateTagOptionInput < Struct.new(
|
708
|
+
:key,
|
709
|
+
:value)
|
710
|
+
include Aws::Structure
|
711
|
+
end
|
712
|
+
|
713
|
+
# @!attribute [rw] tag_option_detail
|
714
|
+
# The resulting detailed TagOption information.
|
715
|
+
# @return [Types::TagOptionDetail]
|
716
|
+
#
|
717
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateTagOptionOutput AWS API Documentation
|
718
|
+
#
|
719
|
+
class CreateTagOptionOutput < Struct.new(
|
720
|
+
:tag_option_detail)
|
721
|
+
include Aws::Structure
|
722
|
+
end
|
723
|
+
|
661
724
|
# @note When making an API call, you may pass DeleteConstraintInput
|
662
725
|
# data as a hash:
|
663
726
|
#
|
@@ -951,11 +1014,16 @@ module Aws::ServiceCatalog
|
|
951
1014
|
# Tags associated with the portfolio.
|
952
1015
|
# @return [Array<Types::Tag>]
|
953
1016
|
#
|
1017
|
+
# @!attribute [rw] tag_options
|
1018
|
+
# TagOptions associated with the portfolio.
|
1019
|
+
# @return [Array<Types::TagOptionDetail>]
|
1020
|
+
#
|
954
1021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribePortfolioOutput AWS API Documentation
|
955
1022
|
#
|
956
1023
|
class DescribePortfolioOutput < Struct.new(
|
957
1024
|
:portfolio_detail,
|
958
|
-
:tags
|
1025
|
+
:tags,
|
1026
|
+
:tag_options)
|
959
1027
|
include Aws::Structure
|
960
1028
|
end
|
961
1029
|
|
@@ -1004,12 +1072,17 @@ module Aws::ServiceCatalog
|
|
1004
1072
|
# Tags associated with the product.
|
1005
1073
|
# @return [Array<Types::Tag>]
|
1006
1074
|
#
|
1075
|
+
# @!attribute [rw] tag_options
|
1076
|
+
# List of TagOptions associated with the product.
|
1077
|
+
# @return [Array<Types::TagOptionDetail>]
|
1078
|
+
#
|
1007
1079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductAsAdminOutput AWS API Documentation
|
1008
1080
|
#
|
1009
1081
|
class DescribeProductAsAdminOutput < Struct.new(
|
1010
1082
|
:product_view_detail,
|
1011
1083
|
:provisioning_artifact_summaries,
|
1012
|
-
:tags
|
1084
|
+
:tags,
|
1085
|
+
:tag_options)
|
1013
1086
|
include Aws::Structure
|
1014
1087
|
end
|
1015
1088
|
|
@@ -1192,8 +1265,7 @@ module Aws::ServiceCatalog
|
|
1192
1265
|
# @return [String]
|
1193
1266
|
#
|
1194
1267
|
# @!attribute [rw] verbose
|
1195
|
-
#
|
1196
|
-
# is returned.
|
1268
|
+
# Enable a verbose level of details for the provisioning artifact.
|
1197
1269
|
# @return [Boolean]
|
1198
1270
|
#
|
1199
1271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningArtifactInput AWS API Documentation
|
@@ -1292,12 +1364,18 @@ module Aws::ServiceCatalog
|
|
1292
1364
|
# CloudFormation template.
|
1293
1365
|
# @return [Array<Types::UsageInstruction>]
|
1294
1366
|
#
|
1367
|
+
# @!attribute [rw] tag_options
|
1368
|
+
# List of TagOptions associated with the provisioned provisioning
|
1369
|
+
# parameters.
|
1370
|
+
# @return [Array<Types::TagOptionSummary>]
|
1371
|
+
#
|
1295
1372
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParametersOutput AWS API Documentation
|
1296
1373
|
#
|
1297
1374
|
class DescribeProvisioningParametersOutput < Struct.new(
|
1298
1375
|
:provisioning_artifact_parameters,
|
1299
1376
|
:constraint_summaries,
|
1300
|
-
:usage_instructions
|
1377
|
+
:usage_instructions,
|
1378
|
+
:tag_options)
|
1301
1379
|
include Aws::Structure
|
1302
1380
|
end
|
1303
1381
|
|
@@ -1376,6 +1454,35 @@ module Aws::ServiceCatalog
|
|
1376
1454
|
include Aws::Structure
|
1377
1455
|
end
|
1378
1456
|
|
1457
|
+
# @note When making an API call, you may pass DescribeTagOptionInput
|
1458
|
+
# data as a hash:
|
1459
|
+
#
|
1460
|
+
# {
|
1461
|
+
# id: "TagOptionId", # required
|
1462
|
+
# }
|
1463
|
+
#
|
1464
|
+
# @!attribute [rw] id
|
1465
|
+
# The identifier of the TagOption.
|
1466
|
+
# @return [String]
|
1467
|
+
#
|
1468
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeTagOptionInput AWS API Documentation
|
1469
|
+
#
|
1470
|
+
class DescribeTagOptionInput < Struct.new(
|
1471
|
+
:id)
|
1472
|
+
include Aws::Structure
|
1473
|
+
end
|
1474
|
+
|
1475
|
+
# @!attribute [rw] tag_option_detail
|
1476
|
+
# The resulting detailed TagOption information.
|
1477
|
+
# @return [Types::TagOptionDetail]
|
1478
|
+
#
|
1479
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeTagOptionOutput AWS API Documentation
|
1480
|
+
#
|
1481
|
+
class DescribeTagOptionOutput < Struct.new(
|
1482
|
+
:tag_option_detail)
|
1483
|
+
include Aws::Structure
|
1484
|
+
end
|
1485
|
+
|
1379
1486
|
# @note When making an API call, you may pass DisassociatePrincipalFromPortfolioInput
|
1380
1487
|
# data as a hash:
|
1381
1488
|
#
|
@@ -1462,6 +1569,34 @@ module Aws::ServiceCatalog
|
|
1462
1569
|
#
|
1463
1570
|
class DisassociateProductFromPortfolioOutput < Aws::EmptyStructure; end
|
1464
1571
|
|
1572
|
+
# @note When making an API call, you may pass DisassociateTagOptionFromResourceInput
|
1573
|
+
# data as a hash:
|
1574
|
+
#
|
1575
|
+
# {
|
1576
|
+
# resource_id: "ResourceId", # required
|
1577
|
+
# tag_option_id: "TagOptionId", # required
|
1578
|
+
# }
|
1579
|
+
#
|
1580
|
+
# @!attribute [rw] resource_id
|
1581
|
+
# Identifier of the resource from which to disassociate the TagOption.
|
1582
|
+
# @return [String]
|
1583
|
+
#
|
1584
|
+
# @!attribute [rw] tag_option_id
|
1585
|
+
# Identifier of the TagOption to disassociate from the resource.
|
1586
|
+
# @return [String]
|
1587
|
+
#
|
1588
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociateTagOptionFromResourceInput AWS API Documentation
|
1589
|
+
#
|
1590
|
+
class DisassociateTagOptionFromResourceInput < Struct.new(
|
1591
|
+
:resource_id,
|
1592
|
+
:tag_option_id)
|
1593
|
+
include Aws::Structure
|
1594
|
+
end
|
1595
|
+
|
1596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociateTagOptionFromResourceOutput AWS API Documentation
|
1597
|
+
#
|
1598
|
+
class DisassociateTagOptionFromResourceOutput < Aws::EmptyStructure; end
|
1599
|
+
|
1465
1600
|
# Summary information about a path for a user to have access to a
|
1466
1601
|
# specified product.
|
1467
1602
|
#
|
@@ -1646,8 +1781,8 @@ module Aws::ServiceCatalog
|
|
1646
1781
|
# @return [String]
|
1647
1782
|
#
|
1648
1783
|
# @!attribute [rw] product_id
|
1649
|
-
# The product identifier
|
1650
|
-
#
|
1784
|
+
# The product identifier. Identifies the product for which to retrieve
|
1785
|
+
# `LaunchPathSummaries` information.
|
1651
1786
|
# @return [String]
|
1652
1787
|
#
|
1653
1788
|
# @!attribute [rw] page_size
|
@@ -2084,6 +2219,149 @@ module Aws::ServiceCatalog
|
|
2084
2219
|
include Aws::Structure
|
2085
2220
|
end
|
2086
2221
|
|
2222
|
+
# @note When making an API call, you may pass ListResourcesForTagOptionInput
|
2223
|
+
# data as a hash:
|
2224
|
+
#
|
2225
|
+
# {
|
2226
|
+
# tag_option_id: "TagOptionId", # required
|
2227
|
+
# resource_type: "ResourceType",
|
2228
|
+
# page_size: 1,
|
2229
|
+
# page_token: "PageToken",
|
2230
|
+
# }
|
2231
|
+
#
|
2232
|
+
# @!attribute [rw] tag_option_id
|
2233
|
+
# Identifier of the TagOption.
|
2234
|
+
# @return [String]
|
2235
|
+
#
|
2236
|
+
# @!attribute [rw] resource_type
|
2237
|
+
# Resource type.
|
2238
|
+
# @return [String]
|
2239
|
+
#
|
2240
|
+
# @!attribute [rw] page_size
|
2241
|
+
# The maximum number of items to return in the results. If more
|
2242
|
+
# results exist than fit in the specified `PageSize`, the value of
|
2243
|
+
# `NextPageToken` in the response is non-null.
|
2244
|
+
# @return [Integer]
|
2245
|
+
#
|
2246
|
+
# @!attribute [rw] page_token
|
2247
|
+
# The page token of the first page retrieved. If null, this retrieves
|
2248
|
+
# the first page of size `PageSize`.
|
2249
|
+
# @return [String]
|
2250
|
+
#
|
2251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListResourcesForTagOptionInput AWS API Documentation
|
2252
|
+
#
|
2253
|
+
class ListResourcesForTagOptionInput < Struct.new(
|
2254
|
+
:tag_option_id,
|
2255
|
+
:resource_type,
|
2256
|
+
:page_size,
|
2257
|
+
:page_token)
|
2258
|
+
include Aws::Structure
|
2259
|
+
end
|
2260
|
+
|
2261
|
+
# @!attribute [rw] resource_details
|
2262
|
+
# The resulting detailed resource information.
|
2263
|
+
# @return [Array<Types::ResourceDetail>]
|
2264
|
+
#
|
2265
|
+
# @!attribute [rw] page_token
|
2266
|
+
# The page token of the first page retrieved. If null, this retrieves
|
2267
|
+
# the first page of size `PageSize`.
|
2268
|
+
# @return [String]
|
2269
|
+
#
|
2270
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListResourcesForTagOptionOutput AWS API Documentation
|
2271
|
+
#
|
2272
|
+
class ListResourcesForTagOptionOutput < Struct.new(
|
2273
|
+
:resource_details,
|
2274
|
+
:page_token)
|
2275
|
+
include Aws::Structure
|
2276
|
+
end
|
2277
|
+
|
2278
|
+
# The ListTagOptions filters.
|
2279
|
+
#
|
2280
|
+
# @note When making an API call, you may pass ListTagOptionsFilters
|
2281
|
+
# data as a hash:
|
2282
|
+
#
|
2283
|
+
# {
|
2284
|
+
# key: "TagOptionKey",
|
2285
|
+
# value: "TagOptionValue",
|
2286
|
+
# active: false,
|
2287
|
+
# }
|
2288
|
+
#
|
2289
|
+
# @!attribute [rw] key
|
2290
|
+
# The ListTagOptionsFilters key.
|
2291
|
+
# @return [String]
|
2292
|
+
#
|
2293
|
+
# @!attribute [rw] value
|
2294
|
+
# The ListTagOptionsFilters value.
|
2295
|
+
# @return [String]
|
2296
|
+
#
|
2297
|
+
# @!attribute [rw] active
|
2298
|
+
# The ListTagOptionsFilters active state.
|
2299
|
+
# @return [Boolean]
|
2300
|
+
#
|
2301
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListTagOptionsFilters AWS API Documentation
|
2302
|
+
#
|
2303
|
+
class ListTagOptionsFilters < Struct.new(
|
2304
|
+
:key,
|
2305
|
+
:value,
|
2306
|
+
:active)
|
2307
|
+
include Aws::Structure
|
2308
|
+
end
|
2309
|
+
|
2310
|
+
# @note When making an API call, you may pass ListTagOptionsInput
|
2311
|
+
# data as a hash:
|
2312
|
+
#
|
2313
|
+
# {
|
2314
|
+
# filters: {
|
2315
|
+
# key: "TagOptionKey",
|
2316
|
+
# value: "TagOptionValue",
|
2317
|
+
# active: false,
|
2318
|
+
# },
|
2319
|
+
# page_size: 1,
|
2320
|
+
# page_token: "PageToken",
|
2321
|
+
# }
|
2322
|
+
#
|
2323
|
+
# @!attribute [rw] filters
|
2324
|
+
# The list of filters with which to limit search results. If no search
|
2325
|
+
# filters are specified, the output is all TagOptions.
|
2326
|
+
# @return [Types::ListTagOptionsFilters]
|
2327
|
+
#
|
2328
|
+
# @!attribute [rw] page_size
|
2329
|
+
# The maximum number of items to return in the results. If more
|
2330
|
+
# results exist than fit in the specified `PageSize`, the value of
|
2331
|
+
# `NextPageToken` in the response is non-null.
|
2332
|
+
# @return [Integer]
|
2333
|
+
#
|
2334
|
+
# @!attribute [rw] page_token
|
2335
|
+
# The page token of the first page retrieved. If null, this retrieves
|
2336
|
+
# the first page of size `PageSize`.
|
2337
|
+
# @return [String]
|
2338
|
+
#
|
2339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListTagOptionsInput AWS API Documentation
|
2340
|
+
#
|
2341
|
+
class ListTagOptionsInput < Struct.new(
|
2342
|
+
:filters,
|
2343
|
+
:page_size,
|
2344
|
+
:page_token)
|
2345
|
+
include Aws::Structure
|
2346
|
+
end
|
2347
|
+
|
2348
|
+
# @!attribute [rw] tag_option_details
|
2349
|
+
# The resulting detailed TagOption information.
|
2350
|
+
# @return [Array<Types::TagOptionDetail>]
|
2351
|
+
#
|
2352
|
+
# @!attribute [rw] page_token
|
2353
|
+
# The page token of the first page retrieved. If null, this retrieves
|
2354
|
+
# the first page of size `PageSize`.
|
2355
|
+
# @return [String]
|
2356
|
+
#
|
2357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListTagOptionsOutput AWS API Documentation
|
2358
|
+
#
|
2359
|
+
class ListTagOptionsOutput < Struct.new(
|
2360
|
+
:tag_option_details,
|
2361
|
+
:page_token)
|
2362
|
+
include Aws::Structure
|
2363
|
+
end
|
2364
|
+
|
2087
2365
|
# The constraints that the administrator has put on the parameter.
|
2088
2366
|
#
|
2089
2367
|
# @!attribute [rw] allowed_values
|
@@ -2622,18 +2900,18 @@ module Aws::ServiceCatalog
|
|
2622
2900
|
include Aws::Structure
|
2623
2901
|
end
|
2624
2902
|
|
2625
|
-
#
|
2903
|
+
# Stores summary information about a provisioning artifact.
|
2626
2904
|
#
|
2627
2905
|
# @!attribute [rw] id
|
2628
|
-
# The provisioning artifact
|
2906
|
+
# The identifier of the provisioning artifact.
|
2629
2907
|
# @return [String]
|
2630
2908
|
#
|
2631
2909
|
# @!attribute [rw] name
|
2632
|
-
# The provisioning artifact
|
2910
|
+
# The name of the provisioning artifact.
|
2633
2911
|
# @return [String]
|
2634
2912
|
#
|
2635
2913
|
# @!attribute [rw] description
|
2636
|
-
# The provisioning artifact
|
2914
|
+
# The description of the provisioning artifact.
|
2637
2915
|
# @return [String]
|
2638
2916
|
#
|
2639
2917
|
# @!attribute [rw] created_time
|
@@ -2703,7 +2981,7 @@ module Aws::ServiceCatalog
|
|
2703
2981
|
#
|
2704
2982
|
# `IN_PROGRESS_IN_ERROR` - The provisioned product is under change but
|
2705
2983
|
# the requested operation failed and some remediation is occurring.
|
2706
|
-
# For example, a
|
2984
|
+
# For example, a rollback.
|
2707
2985
|
#
|
2708
2986
|
# `SUCCEEDED` - The requested operation has successfully completed.
|
2709
2987
|
#
|
@@ -2870,6 +3148,39 @@ module Aws::ServiceCatalog
|
|
2870
3148
|
#
|
2871
3149
|
class RejectPortfolioShareOutput < Aws::EmptyStructure; end
|
2872
3150
|
|
3151
|
+
# Detailed resource information.
|
3152
|
+
#
|
3153
|
+
# @!attribute [rw] id
|
3154
|
+
# Identifier of the resource.
|
3155
|
+
# @return [String]
|
3156
|
+
#
|
3157
|
+
# @!attribute [rw] arn
|
3158
|
+
# ARN of the resource.
|
3159
|
+
# @return [String]
|
3160
|
+
#
|
3161
|
+
# @!attribute [rw] name
|
3162
|
+
# Name of the resource.
|
3163
|
+
# @return [String]
|
3164
|
+
#
|
3165
|
+
# @!attribute [rw] description
|
3166
|
+
# Description of the resource.
|
3167
|
+
# @return [String]
|
3168
|
+
#
|
3169
|
+
# @!attribute [rw] created_time
|
3170
|
+
# Creation time of the resource.
|
3171
|
+
# @return [Time]
|
3172
|
+
#
|
3173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ResourceDetail AWS API Documentation
|
3174
|
+
#
|
3175
|
+
class ResourceDetail < Struct.new(
|
3176
|
+
:id,
|
3177
|
+
:arn,
|
3178
|
+
:name,
|
3179
|
+
:description,
|
3180
|
+
:created_time)
|
3181
|
+
include Aws::Structure
|
3182
|
+
end
|
3183
|
+
|
2873
3184
|
# @note When making an API call, you may pass ScanProvisionedProductsInput
|
2874
3185
|
# data as a hash:
|
2875
3186
|
#
|
@@ -3122,7 +3433,7 @@ module Aws::ServiceCatalog
|
|
3122
3433
|
include Aws::Structure
|
3123
3434
|
end
|
3124
3435
|
|
3125
|
-
# Key
|
3436
|
+
# Key-value pairs to associate with this provisioning. These tags are
|
3126
3437
|
# entirely discretionary and are propagated to the resources created in
|
3127
3438
|
# the provisioning.
|
3128
3439
|
#
|
@@ -3151,6 +3462,52 @@ module Aws::ServiceCatalog
|
|
3151
3462
|
include Aws::Structure
|
3152
3463
|
end
|
3153
3464
|
|
3465
|
+
# The TagOption details.
|
3466
|
+
#
|
3467
|
+
# @!attribute [rw] key
|
3468
|
+
# The TagOptionDetail key.
|
3469
|
+
# @return [String]
|
3470
|
+
#
|
3471
|
+
# @!attribute [rw] value
|
3472
|
+
# The TagOptionDetail value.
|
3473
|
+
# @return [String]
|
3474
|
+
#
|
3475
|
+
# @!attribute [rw] active
|
3476
|
+
# The TagOptionDetail active state.
|
3477
|
+
# @return [Boolean]
|
3478
|
+
#
|
3479
|
+
# @!attribute [rw] id
|
3480
|
+
# The TagOptionDetail identifier.
|
3481
|
+
# @return [String]
|
3482
|
+
#
|
3483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/TagOptionDetail AWS API Documentation
|
3484
|
+
#
|
3485
|
+
class TagOptionDetail < Struct.new(
|
3486
|
+
:key,
|
3487
|
+
:value,
|
3488
|
+
:active,
|
3489
|
+
:id)
|
3490
|
+
include Aws::Structure
|
3491
|
+
end
|
3492
|
+
|
3493
|
+
# The TagOption summary key-value pair.
|
3494
|
+
#
|
3495
|
+
# @!attribute [rw] key
|
3496
|
+
# The TagOptionSummary key.
|
3497
|
+
# @return [String]
|
3498
|
+
#
|
3499
|
+
# @!attribute [rw] values
|
3500
|
+
# The TagOptionSummary value.
|
3501
|
+
# @return [Array<String>]
|
3502
|
+
#
|
3503
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/TagOptionSummary AWS API Documentation
|
3504
|
+
#
|
3505
|
+
class TagOptionSummary < Struct.new(
|
3506
|
+
:key,
|
3507
|
+
:values)
|
3508
|
+
include Aws::Structure
|
3509
|
+
end
|
3510
|
+
|
3154
3511
|
# @note When making an API call, you may pass TerminateProvisionedProductInput
|
3155
3512
|
# data as a hash:
|
3156
3513
|
#
|
@@ -3698,6 +4055,47 @@ module Aws::ServiceCatalog
|
|
3698
4055
|
include Aws::Structure
|
3699
4056
|
end
|
3700
4057
|
|
4058
|
+
# @note When making an API call, you may pass UpdateTagOptionInput
|
4059
|
+
# data as a hash:
|
4060
|
+
#
|
4061
|
+
# {
|
4062
|
+
# id: "TagOptionId", # required
|
4063
|
+
# value: "TagOptionValue",
|
4064
|
+
# active: false,
|
4065
|
+
# }
|
4066
|
+
#
|
4067
|
+
# @!attribute [rw] id
|
4068
|
+
# The identifier of the constraint to update.
|
4069
|
+
# @return [String]
|
4070
|
+
#
|
4071
|
+
# @!attribute [rw] value
|
4072
|
+
# The updated value.
|
4073
|
+
# @return [String]
|
4074
|
+
#
|
4075
|
+
# @!attribute [rw] active
|
4076
|
+
# The updated active state.
|
4077
|
+
# @return [Boolean]
|
4078
|
+
#
|
4079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateTagOptionInput AWS API Documentation
|
4080
|
+
#
|
4081
|
+
class UpdateTagOptionInput < Struct.new(
|
4082
|
+
:id,
|
4083
|
+
:value,
|
4084
|
+
:active)
|
4085
|
+
include Aws::Structure
|
4086
|
+
end
|
4087
|
+
|
4088
|
+
# @!attribute [rw] tag_option_detail
|
4089
|
+
# The resulting detailed TagOption information.
|
4090
|
+
# @return [Types::TagOptionDetail]
|
4091
|
+
#
|
4092
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateTagOptionOutput AWS API Documentation
|
4093
|
+
#
|
4094
|
+
class UpdateTagOptionOutput < Struct.new(
|
4095
|
+
:tag_option_detail)
|
4096
|
+
include Aws::Structure
|
4097
|
+
end
|
4098
|
+
|
3701
4099
|
# Additional information provided by the administrator.
|
3702
4100
|
#
|
3703
4101
|
# @!attribute [rw] type
|