aws-sdk-servicecatalog 1.8.0 → 1.9.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.
@@ -168,6 +168,54 @@ module Aws::ServiceCatalog
168
168
  #
169
169
  class AssociateProductWithPortfolioOutput < Aws::EmptyStructure; end
170
170
 
171
+ # @note When making an API call, you may pass AssociateServiceActionWithProvisioningArtifactInput
172
+ # data as a hash:
173
+ #
174
+ # {
175
+ # product_id: "Id", # required
176
+ # provisioning_artifact_id: "Id", # required
177
+ # service_action_id: "Id", # required
178
+ # accept_language: "AcceptLanguage",
179
+ # }
180
+ #
181
+ # @!attribute [rw] product_id
182
+ # The product identifier. For example, `prod-abcdzk7xy33qa`.
183
+ # @return [String]
184
+ #
185
+ # @!attribute [rw] provisioning_artifact_id
186
+ # The identifier of the provisioning artifact. For example,
187
+ # `pa-4abcdjnxjj6ne`.
188
+ # @return [String]
189
+ #
190
+ # @!attribute [rw] service_action_id
191
+ # The self-service action identifier. For example,
192
+ # `act-fs7abcd89wxyz`.
193
+ # @return [String]
194
+ #
195
+ # @!attribute [rw] accept_language
196
+ # The language code.
197
+ #
198
+ # * `en` - English (default)
199
+ #
200
+ # * `jp` - Japanese
201
+ #
202
+ # * `zh` - Chinese
203
+ # @return [String]
204
+ #
205
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociateServiceActionWithProvisioningArtifactInput AWS API Documentation
206
+ #
207
+ class AssociateServiceActionWithProvisioningArtifactInput < Struct.new(
208
+ :product_id,
209
+ :provisioning_artifact_id,
210
+ :service_action_id,
211
+ :accept_language)
212
+ include Aws::Structure
213
+ end
214
+
215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociateServiceActionWithProvisioningArtifactOutput AWS API Documentation
216
+ #
217
+ class AssociateServiceActionWithProvisioningArtifactOutput < Aws::EmptyStructure; end
218
+
171
219
  # @note When making an API call, you may pass AssociateTagOptionWithResourceInput
172
220
  # data as a hash:
173
221
  #
@@ -196,6 +244,104 @@ module Aws::ServiceCatalog
196
244
  #
197
245
  class AssociateTagOptionWithResourceOutput < Aws::EmptyStructure; end
198
246
 
247
+ # @note When making an API call, you may pass BatchAssociateServiceActionWithProvisioningArtifactInput
248
+ # data as a hash:
249
+ #
250
+ # {
251
+ # service_action_associations: [ # required
252
+ # {
253
+ # service_action_id: "Id", # required
254
+ # product_id: "Id", # required
255
+ # provisioning_artifact_id: "Id", # required
256
+ # },
257
+ # ],
258
+ # accept_language: "AcceptLanguage",
259
+ # }
260
+ #
261
+ # @!attribute [rw] service_action_associations
262
+ # One or more associations, each consisting of the Action ID, the
263
+ # Product ID, and the Provisioning Artifact ID.
264
+ # @return [Array<Types::ServiceActionAssociation>]
265
+ #
266
+ # @!attribute [rw] accept_language
267
+ # The language code.
268
+ #
269
+ # * `en` - English (default)
270
+ #
271
+ # * `jp` - Japanese
272
+ #
273
+ # * `zh` - Chinese
274
+ # @return [String]
275
+ #
276
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/BatchAssociateServiceActionWithProvisioningArtifactInput AWS API Documentation
277
+ #
278
+ class BatchAssociateServiceActionWithProvisioningArtifactInput < Struct.new(
279
+ :service_action_associations,
280
+ :accept_language)
281
+ include Aws::Structure
282
+ end
283
+
284
+ # @!attribute [rw] failed_service_action_associations
285
+ # An object that contains a list of errors, along with information to
286
+ # help you identify the self-service action.
287
+ # @return [Array<Types::FailedServiceActionAssociation>]
288
+ #
289
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/BatchAssociateServiceActionWithProvisioningArtifactOutput AWS API Documentation
290
+ #
291
+ class BatchAssociateServiceActionWithProvisioningArtifactOutput < Struct.new(
292
+ :failed_service_action_associations)
293
+ include Aws::Structure
294
+ end
295
+
296
+ # @note When making an API call, you may pass BatchDisassociateServiceActionFromProvisioningArtifactInput
297
+ # data as a hash:
298
+ #
299
+ # {
300
+ # service_action_associations: [ # required
301
+ # {
302
+ # service_action_id: "Id", # required
303
+ # product_id: "Id", # required
304
+ # provisioning_artifact_id: "Id", # required
305
+ # },
306
+ # ],
307
+ # accept_language: "AcceptLanguage",
308
+ # }
309
+ #
310
+ # @!attribute [rw] service_action_associations
311
+ # One or more associations, each consisting of the Action ID, the
312
+ # Product ID, and the Provisioning Artifact ID.
313
+ # @return [Array<Types::ServiceActionAssociation>]
314
+ #
315
+ # @!attribute [rw] accept_language
316
+ # The language code.
317
+ #
318
+ # * `en` - English (default)
319
+ #
320
+ # * `jp` - Japanese
321
+ #
322
+ # * `zh` - Chinese
323
+ # @return [String]
324
+ #
325
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/BatchDisassociateServiceActionFromProvisioningArtifactInput AWS API Documentation
326
+ #
327
+ class BatchDisassociateServiceActionFromProvisioningArtifactInput < Struct.new(
328
+ :service_action_associations,
329
+ :accept_language)
330
+ include Aws::Structure
331
+ end
332
+
333
+ # @!attribute [rw] failed_service_action_associations
334
+ # An object that contains a list of errors, along with information to
335
+ # help you identify the self-service action.
336
+ # @return [Array<Types::FailedServiceActionAssociation>]
337
+ #
338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/BatchDisassociateServiceActionFromProvisioningArtifactOutput AWS API Documentation
339
+ #
340
+ class BatchDisassociateServiceActionFromProvisioningArtifactOutput < Struct.new(
341
+ :failed_service_action_associations)
342
+ include Aws::Structure
343
+ end
344
+
199
345
  # Information about a CloudWatch dashboard.
200
346
  #
201
347
  # @!attribute [rw] name
@@ -928,6 +1074,103 @@ module Aws::ServiceCatalog
928
1074
  include Aws::Structure
929
1075
  end
930
1076
 
1077
+ # @note When making an API call, you may pass CreateServiceActionInput
1078
+ # data as a hash:
1079
+ #
1080
+ # {
1081
+ # name: "ServiceActionName", # required
1082
+ # definition_type: "SSM_AUTOMATION", # required, accepts SSM_AUTOMATION
1083
+ # definition: { # required
1084
+ # "Name" => "ServiceActionDefinitionValue",
1085
+ # },
1086
+ # description: "ServiceActionDescription",
1087
+ # accept_language: "AcceptLanguage",
1088
+ # idempotency_token: "IdempotencyToken", # required
1089
+ # }
1090
+ #
1091
+ # @!attribute [rw] name
1092
+ # The self-service action name.
1093
+ # @return [String]
1094
+ #
1095
+ # @!attribute [rw] definition_type
1096
+ # The service action definition type. For example, `SSM_AUTOMATION`.
1097
+ # @return [String]
1098
+ #
1099
+ # @!attribute [rw] definition
1100
+ # The self-service action definition. Can be one of the following:
1101
+ #
1102
+ # Name
1103
+ #
1104
+ # : The name of the AWS Systems Manager Document. For example,
1105
+ # `AWS-RestartEC2Instance`.
1106
+ #
1107
+ # Version
1108
+ #
1109
+ # : The AWS Systems Manager automation document version. For example,
1110
+ # `"Version": "1"`
1111
+ #
1112
+ # AssumeRole
1113
+ #
1114
+ # : The Amazon Resource Name (ARN) of the role that performs the
1115
+ # self-service actions on your behalf. For example, `"AssumeRole":
1116
+ # "arn:aws:iam::12345678910:role/ActionRole"`.
1117
+ #
1118
+ # To reuse the provisioned product launch role, set to
1119
+ # `"AssumeRole": "LAUNCH_ROLE"`.
1120
+ #
1121
+ # Parameters
1122
+ #
1123
+ # : The list of parameters in JSON format.
1124
+ #
1125
+ # For example: `[\{"Name":"InstanceId","Type":"TARGET"\}]`.
1126
+ # @return [Hash<String,String>]
1127
+ #
1128
+ # @!attribute [rw] description
1129
+ # The self-service action description.
1130
+ # @return [String]
1131
+ #
1132
+ # @!attribute [rw] accept_language
1133
+ # The language code.
1134
+ #
1135
+ # * `en` - English (default)
1136
+ #
1137
+ # * `jp` - Japanese
1138
+ #
1139
+ # * `zh` - Chinese
1140
+ # @return [String]
1141
+ #
1142
+ # @!attribute [rw] idempotency_token
1143
+ # A unique identifier that you provide to ensure idempotency. If
1144
+ # multiple requests differ only by the idempotency token, the same
1145
+ # response is returned for each repeated request.
1146
+ #
1147
+ # **A suitable default value is auto-generated.** You should normally
1148
+ # not need to pass this option.
1149
+ # @return [String]
1150
+ #
1151
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateServiceActionInput AWS API Documentation
1152
+ #
1153
+ class CreateServiceActionInput < Struct.new(
1154
+ :name,
1155
+ :definition_type,
1156
+ :definition,
1157
+ :description,
1158
+ :accept_language,
1159
+ :idempotency_token)
1160
+ include Aws::Structure
1161
+ end
1162
+
1163
+ # @!attribute [rw] service_action_detail
1164
+ # An object containing information about the self-service action.
1165
+ # @return [Types::ServiceActionDetail]
1166
+ #
1167
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateServiceActionOutput AWS API Documentation
1168
+ #
1169
+ class CreateServiceActionOutput < Struct.new(
1170
+ :service_action_detail)
1171
+ include Aws::Structure
1172
+ end
1173
+
931
1174
  # @note When making an API call, you may pass CreateTagOptionInput
932
1175
  # data as a hash:
933
1176
  #
@@ -1187,6 +1430,41 @@ module Aws::ServiceCatalog
1187
1430
  #
1188
1431
  class DeleteProvisioningArtifactOutput < Aws::EmptyStructure; end
1189
1432
 
1433
+ # @note When making an API call, you may pass DeleteServiceActionInput
1434
+ # data as a hash:
1435
+ #
1436
+ # {
1437
+ # id: "Id", # required
1438
+ # accept_language: "AcceptLanguage",
1439
+ # }
1440
+ #
1441
+ # @!attribute [rw] id
1442
+ # The self-service action identifier. For example,
1443
+ # `act-fs7abcd89wxyz`.
1444
+ # @return [String]
1445
+ #
1446
+ # @!attribute [rw] accept_language
1447
+ # The language code.
1448
+ #
1449
+ # * `en` - English (default)
1450
+ #
1451
+ # * `jp` - Japanese
1452
+ #
1453
+ # * `zh` - Chinese
1454
+ # @return [String]
1455
+ #
1456
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteServiceActionInput AWS API Documentation
1457
+ #
1458
+ class DeleteServiceActionInput < Struct.new(
1459
+ :id,
1460
+ :accept_language)
1461
+ include Aws::Structure
1462
+ end
1463
+
1464
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteServiceActionOutput AWS API Documentation
1465
+ #
1466
+ class DeleteServiceActionOutput < Aws::EmptyStructure; end
1467
+
1190
1468
  # @note When making an API call, you may pass DeleteTagOptionInput
1191
1469
  # data as a hash:
1192
1470
  #
@@ -1829,6 +2107,47 @@ module Aws::ServiceCatalog
1829
2107
  include Aws::Structure
1830
2108
  end
1831
2109
 
2110
+ # @note When making an API call, you may pass DescribeServiceActionInput
2111
+ # data as a hash:
2112
+ #
2113
+ # {
2114
+ # id: "Id", # required
2115
+ # accept_language: "AcceptLanguage",
2116
+ # }
2117
+ #
2118
+ # @!attribute [rw] id
2119
+ # The self-service action identifier.
2120
+ # @return [String]
2121
+ #
2122
+ # @!attribute [rw] accept_language
2123
+ # The language code.
2124
+ #
2125
+ # * `en` - English (default)
2126
+ #
2127
+ # * `jp` - Japanese
2128
+ #
2129
+ # * `zh` - Chinese
2130
+ # @return [String]
2131
+ #
2132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionInput AWS API Documentation
2133
+ #
2134
+ class DescribeServiceActionInput < Struct.new(
2135
+ :id,
2136
+ :accept_language)
2137
+ include Aws::Structure
2138
+ end
2139
+
2140
+ # @!attribute [rw] service_action_detail
2141
+ # Detailed information about the self-service action.
2142
+ # @return [Types::ServiceActionDetail]
2143
+ #
2144
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionOutput AWS API Documentation
2145
+ #
2146
+ class DescribeServiceActionOutput < Struct.new(
2147
+ :service_action_detail)
2148
+ include Aws::Structure
2149
+ end
2150
+
1832
2151
  # @note When making an API call, you may pass DescribeTagOptionInput
1833
2152
  # data as a hash:
1834
2153
  #
@@ -1938,6 +2257,54 @@ module Aws::ServiceCatalog
1938
2257
  #
1939
2258
  class DisassociateProductFromPortfolioOutput < Aws::EmptyStructure; end
1940
2259
 
2260
+ # @note When making an API call, you may pass DisassociateServiceActionFromProvisioningArtifactInput
2261
+ # data as a hash:
2262
+ #
2263
+ # {
2264
+ # product_id: "Id", # required
2265
+ # provisioning_artifact_id: "Id", # required
2266
+ # service_action_id: "Id", # required
2267
+ # accept_language: "AcceptLanguage",
2268
+ # }
2269
+ #
2270
+ # @!attribute [rw] product_id
2271
+ # The product identifier. For example, `prod-abcdzk7xy33qa`.
2272
+ # @return [String]
2273
+ #
2274
+ # @!attribute [rw] provisioning_artifact_id
2275
+ # The identifier of the provisioning artifact. For example,
2276
+ # `pa-4abcdjnxjj6ne`.
2277
+ # @return [String]
2278
+ #
2279
+ # @!attribute [rw] service_action_id
2280
+ # The self-service action identifier. For example,
2281
+ # `act-fs7abcd89wxyz`.
2282
+ # @return [String]
2283
+ #
2284
+ # @!attribute [rw] accept_language
2285
+ # The language code.
2286
+ #
2287
+ # * `en` - English (default)
2288
+ #
2289
+ # * `jp` - Japanese
2290
+ #
2291
+ # * `zh` - Chinese
2292
+ # @return [String]
2293
+ #
2294
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociateServiceActionFromProvisioningArtifactInput AWS API Documentation
2295
+ #
2296
+ class DisassociateServiceActionFromProvisioningArtifactInput < Struct.new(
2297
+ :product_id,
2298
+ :provisioning_artifact_id,
2299
+ :service_action_id,
2300
+ :accept_language)
2301
+ include Aws::Structure
2302
+ end
2303
+
2304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociateServiceActionFromProvisioningArtifactOutput AWS API Documentation
2305
+ #
2306
+ class DisassociateServiceActionFromProvisioningArtifactOutput < Aws::EmptyStructure; end
2307
+
1941
2308
  # @note When making an API call, you may pass DisassociateTagOptionFromResourceInput
1942
2309
  # data as a hash:
1943
2310
  #
@@ -2018,6 +2385,101 @@ module Aws::ServiceCatalog
2018
2385
  include Aws::Structure
2019
2386
  end
2020
2387
 
2388
+ # @note When making an API call, you may pass ExecuteProvisionedProductServiceActionInput
2389
+ # data as a hash:
2390
+ #
2391
+ # {
2392
+ # provisioned_product_id: "Id", # required
2393
+ # service_action_id: "Id", # required
2394
+ # execute_token: "IdempotencyToken", # required
2395
+ # accept_language: "AcceptLanguage",
2396
+ # }
2397
+ #
2398
+ # @!attribute [rw] provisioned_product_id
2399
+ # The identifier of the provisioned product.
2400
+ # @return [String]
2401
+ #
2402
+ # @!attribute [rw] service_action_id
2403
+ # The self-service action identifier. For example,
2404
+ # `act-fs7abcd89wxyz`.
2405
+ # @return [String]
2406
+ #
2407
+ # @!attribute [rw] execute_token
2408
+ # An idempotency token that uniquely identifies the execute request.
2409
+ #
2410
+ # **A suitable default value is auto-generated.** You should normally
2411
+ # not need to pass this option.
2412
+ # @return [String]
2413
+ #
2414
+ # @!attribute [rw] accept_language
2415
+ # The language code.
2416
+ #
2417
+ # * `en` - English (default)
2418
+ #
2419
+ # * `jp` - Japanese
2420
+ #
2421
+ # * `zh` - Chinese
2422
+ # @return [String]
2423
+ #
2424
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductServiceActionInput AWS API Documentation
2425
+ #
2426
+ class ExecuteProvisionedProductServiceActionInput < Struct.new(
2427
+ :provisioned_product_id,
2428
+ :service_action_id,
2429
+ :execute_token,
2430
+ :accept_language)
2431
+ include Aws::Structure
2432
+ end
2433
+
2434
+ # @!attribute [rw] record_detail
2435
+ # An object containing detailed information about the result of
2436
+ # provisioning the product.
2437
+ # @return [Types::RecordDetail]
2438
+ #
2439
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductServiceActionOutput AWS API Documentation
2440
+ #
2441
+ class ExecuteProvisionedProductServiceActionOutput < Struct.new(
2442
+ :record_detail)
2443
+ include Aws::Structure
2444
+ end
2445
+
2446
+ # An object containing information about the error, along with
2447
+ # identifying information about the self-service action and its
2448
+ # associations.
2449
+ #
2450
+ # @!attribute [rw] service_action_id
2451
+ # The self-service action identifier. For example,
2452
+ # `act-fs7abcd89wxyz`.
2453
+ # @return [String]
2454
+ #
2455
+ # @!attribute [rw] product_id
2456
+ # The product identifier. For example, `prod-abcdzk7xy33qa`.
2457
+ # @return [String]
2458
+ #
2459
+ # @!attribute [rw] provisioning_artifact_id
2460
+ # The identifier of the provisioning artifact. For example,
2461
+ # `pa-4abcdjnxjj6ne`.
2462
+ # @return [String]
2463
+ #
2464
+ # @!attribute [rw] error_code
2465
+ # The error code. Valid values are listed below.
2466
+ # @return [String]
2467
+ #
2468
+ # @!attribute [rw] error_message
2469
+ # A text description of the error.
2470
+ # @return [String]
2471
+ #
2472
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/FailedServiceActionAssociation AWS API Documentation
2473
+ #
2474
+ class FailedServiceActionAssociation < Struct.new(
2475
+ :service_action_id,
2476
+ :product_id,
2477
+ :provisioning_artifact_id,
2478
+ :error_code,
2479
+ :error_message)
2480
+ include Aws::Structure
2481
+ end
2482
+
2021
2483
  # Summary information about a product path for a user.
2022
2484
  #
2023
2485
  # @!attribute [rw] id
@@ -2458,32 +2920,88 @@ module Aws::ServiceCatalog
2458
2920
  include Aws::Structure
2459
2921
  end
2460
2922
 
2461
- # @note When making an API call, you may pass ListProvisionedProductPlansInput
2923
+ # @note When making an API call, you may pass ListProvisionedProductPlansInput
2924
+ # data as a hash:
2925
+ #
2926
+ # {
2927
+ # accept_language: "AcceptLanguage",
2928
+ # provision_product_id: "Id",
2929
+ # page_size: 1,
2930
+ # page_token: "PageToken",
2931
+ # access_level_filter: {
2932
+ # key: "Account", # accepts Account, Role, User
2933
+ # value: "AccessLevelFilterValue",
2934
+ # },
2935
+ # }
2936
+ #
2937
+ # @!attribute [rw] accept_language
2938
+ # The language code.
2939
+ #
2940
+ # * `en` - English (default)
2941
+ #
2942
+ # * `jp` - Japanese
2943
+ #
2944
+ # * `zh` - Chinese
2945
+ # @return [String]
2946
+ #
2947
+ # @!attribute [rw] provision_product_id
2948
+ # The product identifier.
2949
+ # @return [String]
2950
+ #
2951
+ # @!attribute [rw] page_size
2952
+ # The maximum number of items to return with this call.
2953
+ # @return [Integer]
2954
+ #
2955
+ # @!attribute [rw] page_token
2956
+ # The page token for the next set of results. To retrieve the first
2957
+ # set of results, use null.
2958
+ # @return [String]
2959
+ #
2960
+ # @!attribute [rw] access_level_filter
2961
+ # The access level to use to obtain results. The default is `User`.
2962
+ # @return [Types::AccessLevelFilter]
2963
+ #
2964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisionedProductPlansInput AWS API Documentation
2965
+ #
2966
+ class ListProvisionedProductPlansInput < Struct.new(
2967
+ :accept_language,
2968
+ :provision_product_id,
2969
+ :page_size,
2970
+ :page_token,
2971
+ :access_level_filter)
2972
+ include Aws::Structure
2973
+ end
2974
+
2975
+ # @!attribute [rw] provisioned_product_plans
2976
+ # Information about the plans.
2977
+ # @return [Array<Types::ProvisionedProductPlanSummary>]
2978
+ #
2979
+ # @!attribute [rw] next_page_token
2980
+ # The page token to use to retrieve the next set of results. If there
2981
+ # are no additional results, this value is null.
2982
+ # @return [String]
2983
+ #
2984
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisionedProductPlansOutput AWS API Documentation
2985
+ #
2986
+ class ListProvisionedProductPlansOutput < Struct.new(
2987
+ :provisioned_product_plans,
2988
+ :next_page_token)
2989
+ include Aws::Structure
2990
+ end
2991
+
2992
+ # @note When making an API call, you may pass ListProvisioningArtifactsForServiceActionInput
2462
2993
  # data as a hash:
2463
2994
  #
2464
2995
  # {
2465
- # accept_language: "AcceptLanguage",
2466
- # provision_product_id: "Id",
2996
+ # service_action_id: "Id", # required
2467
2997
  # page_size: 1,
2468
2998
  # page_token: "PageToken",
2469
- # access_level_filter: {
2470
- # key: "Account", # accepts Account, Role, User
2471
- # value: "AccessLevelFilterValue",
2472
- # },
2999
+ # accept_language: "AcceptLanguage",
2473
3000
  # }
2474
3001
  #
2475
- # @!attribute [rw] accept_language
2476
- # The language code.
2477
- #
2478
- # * `en` - English (default)
2479
- #
2480
- # * `jp` - Japanese
2481
- #
2482
- # * `zh` - Chinese
2483
- # @return [String]
2484
- #
2485
- # @!attribute [rw] provision_product_id
2486
- # The product identifier.
3002
+ # @!attribute [rw] service_action_id
3003
+ # The self-service action identifier. For example,
3004
+ # `act-fs7abcd89wxyz`.
2487
3005
  # @return [String]
2488
3006
  #
2489
3007
  # @!attribute [rw] page_size
@@ -2495,34 +3013,40 @@ module Aws::ServiceCatalog
2495
3013
  # set of results, use null.
2496
3014
  # @return [String]
2497
3015
  #
2498
- # @!attribute [rw] access_level_filter
2499
- # The access level to use to obtain results. The default is `User`.
2500
- # @return [Types::AccessLevelFilter]
3016
+ # @!attribute [rw] accept_language
3017
+ # The language code.
2501
3018
  #
2502
- # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisionedProductPlansInput AWS API Documentation
3019
+ # * `en` - English (default)
2503
3020
  #
2504
- class ListProvisionedProductPlansInput < Struct.new(
2505
- :accept_language,
2506
- :provision_product_id,
3021
+ # * `jp` - Japanese
3022
+ #
3023
+ # * `zh` - Chinese
3024
+ # @return [String]
3025
+ #
3026
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisioningArtifactsForServiceActionInput AWS API Documentation
3027
+ #
3028
+ class ListProvisioningArtifactsForServiceActionInput < Struct.new(
3029
+ :service_action_id,
2507
3030
  :page_size,
2508
3031
  :page_token,
2509
- :access_level_filter)
3032
+ :accept_language)
2510
3033
  include Aws::Structure
2511
3034
  end
2512
3035
 
2513
- # @!attribute [rw] provisioned_product_plans
2514
- # Information about the plans.
2515
- # @return [Array<Types::ProvisionedProductPlanSummary>]
3036
+ # @!attribute [rw] provisioning_artifact_views
3037
+ # An array of objects with information about product views and
3038
+ # provisioning artifacts.
3039
+ # @return [Array<Types::ProvisioningArtifactView>]
2516
3040
  #
2517
3041
  # @!attribute [rw] next_page_token
2518
3042
  # The page token to use to retrieve the next set of results. If there
2519
3043
  # are no additional results, this value is null.
2520
3044
  # @return [String]
2521
3045
  #
2522
- # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisionedProductPlansOutput AWS API Documentation
3046
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisioningArtifactsForServiceActionOutput AWS API Documentation
2523
3047
  #
2524
- class ListProvisionedProductPlansOutput < Struct.new(
2525
- :provisioned_product_plans,
3048
+ class ListProvisioningArtifactsForServiceActionOutput < Struct.new(
3049
+ :provisioning_artifact_views,
2526
3050
  :next_page_token)
2527
3051
  include Aws::Structure
2528
3052
  end
@@ -2736,6 +3260,129 @@ module Aws::ServiceCatalog
2736
3260
  include Aws::Structure
2737
3261
  end
2738
3262
 
3263
+ # @note When making an API call, you may pass ListServiceActionsForProvisioningArtifactInput
3264
+ # data as a hash:
3265
+ #
3266
+ # {
3267
+ # product_id: "Id", # required
3268
+ # provisioning_artifact_id: "Id", # required
3269
+ # page_size: 1,
3270
+ # page_token: "PageToken",
3271
+ # accept_language: "AcceptLanguage",
3272
+ # }
3273
+ #
3274
+ # @!attribute [rw] product_id
3275
+ # The product identifier. For example, `prod-abcdzk7xy33qa`.
3276
+ # @return [String]
3277
+ #
3278
+ # @!attribute [rw] provisioning_artifact_id
3279
+ # The identifier of the provisioning artifact. For example,
3280
+ # `pa-4abcdjnxjj6ne`.
3281
+ # @return [String]
3282
+ #
3283
+ # @!attribute [rw] page_size
3284
+ # The maximum number of items to return with this call.
3285
+ # @return [Integer]
3286
+ #
3287
+ # @!attribute [rw] page_token
3288
+ # The page token for the next set of results. To retrieve the first
3289
+ # set of results, use null.
3290
+ # @return [String]
3291
+ #
3292
+ # @!attribute [rw] accept_language
3293
+ # The language code.
3294
+ #
3295
+ # * `en` - English (default)
3296
+ #
3297
+ # * `jp` - Japanese
3298
+ #
3299
+ # * `zh` - Chinese
3300
+ # @return [String]
3301
+ #
3302
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListServiceActionsForProvisioningArtifactInput AWS API Documentation
3303
+ #
3304
+ class ListServiceActionsForProvisioningArtifactInput < Struct.new(
3305
+ :product_id,
3306
+ :provisioning_artifact_id,
3307
+ :page_size,
3308
+ :page_token,
3309
+ :accept_language)
3310
+ include Aws::Structure
3311
+ end
3312
+
3313
+ # @!attribute [rw] service_action_summaries
3314
+ # An object containing information about the self-service actions
3315
+ # associated with the provisioning artifact.
3316
+ # @return [Array<Types::ServiceActionSummary>]
3317
+ #
3318
+ # @!attribute [rw] next_page_token
3319
+ # The page token to use to retrieve the next set of results. If there
3320
+ # are no additional results, this value is null.
3321
+ # @return [String]
3322
+ #
3323
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListServiceActionsForProvisioningArtifactOutput AWS API Documentation
3324
+ #
3325
+ class ListServiceActionsForProvisioningArtifactOutput < Struct.new(
3326
+ :service_action_summaries,
3327
+ :next_page_token)
3328
+ include Aws::Structure
3329
+ end
3330
+
3331
+ # @note When making an API call, you may pass ListServiceActionsInput
3332
+ # data as a hash:
3333
+ #
3334
+ # {
3335
+ # accept_language: "AcceptLanguage",
3336
+ # page_size: 1,
3337
+ # page_token: "PageToken",
3338
+ # }
3339
+ #
3340
+ # @!attribute [rw] accept_language
3341
+ # The language code.
3342
+ #
3343
+ # * `en` - English (default)
3344
+ #
3345
+ # * `jp` - Japanese
3346
+ #
3347
+ # * `zh` - Chinese
3348
+ # @return [String]
3349
+ #
3350
+ # @!attribute [rw] page_size
3351
+ # The maximum number of items to return with this call.
3352
+ # @return [Integer]
3353
+ #
3354
+ # @!attribute [rw] page_token
3355
+ # The page token for the next set of results. To retrieve the first
3356
+ # set of results, use null.
3357
+ # @return [String]
3358
+ #
3359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListServiceActionsInput AWS API Documentation
3360
+ #
3361
+ class ListServiceActionsInput < Struct.new(
3362
+ :accept_language,
3363
+ :page_size,
3364
+ :page_token)
3365
+ include Aws::Structure
3366
+ end
3367
+
3368
+ # @!attribute [rw] service_action_summaries
3369
+ # An object containing information about the service actions
3370
+ # associated with the provisioning artifact.
3371
+ # @return [Array<Types::ServiceActionSummary>]
3372
+ #
3373
+ # @!attribute [rw] next_page_token
3374
+ # The page token to use to retrieve the next set of results. If there
3375
+ # are no additional results, this value is null.
3376
+ # @return [String]
3377
+ #
3378
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListServiceActionsOutput AWS API Documentation
3379
+ #
3380
+ class ListServiceActionsOutput < Struct.new(
3381
+ :service_action_summaries,
3382
+ :next_page_token)
3383
+ include Aws::Structure
3384
+ end
3385
+
2739
3386
  # Filters to use when listing TagOptions.
2740
3387
  #
2741
3388
  # @note When making an API call, you may pass ListTagOptionsFilters
@@ -3281,6 +3928,15 @@ module Aws::ServiceCatalog
3281
3928
  # provisioned product.
3282
3929
  # @return [String]
3283
3930
  #
3931
+ # @!attribute [rw] product_id
3932
+ # The product identifier. For example, `prod-abcdzk7xy33qa`.
3933
+ # @return [String]
3934
+ #
3935
+ # @!attribute [rw] provisioning_artifact_id
3936
+ # The identifier of the provisioning artifact. For example,
3937
+ # `pa-4abcdjnxjj6ne`.
3938
+ # @return [String]
3939
+ #
3284
3940
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisionedProductDetail AWS API Documentation
3285
3941
  #
3286
3942
  class ProvisionedProductDetail < Struct.new(
@@ -3292,7 +3948,9 @@ module Aws::ServiceCatalog
3292
3948
  :status_message,
3293
3949
  :created_time,
3294
3950
  :idempotency_token,
3295
- :last_record_id)
3951
+ :last_record_id,
3952
+ :product_id,
3953
+ :provisioning_artifact_id)
3296
3954
  include Aws::Structure
3297
3955
  end
3298
3956
 
@@ -3623,6 +4281,26 @@ module Aws::ServiceCatalog
3623
4281
  include Aws::Structure
3624
4282
  end
3625
4283
 
4284
+ # An object that contains summary information about a product view and a
4285
+ # provisioning artifact.
4286
+ #
4287
+ # @!attribute [rw] product_view_summary
4288
+ # Summary information about a product view.
4289
+ # @return [Types::ProductViewSummary]
4290
+ #
4291
+ # @!attribute [rw] provisioning_artifact
4292
+ # Information about a provisioning artifact. A provisioning artifact
4293
+ # is also known as a product version.
4294
+ # @return [Types::ProvisioningArtifact]
4295
+ #
4296
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactView AWS API Documentation
4297
+ #
4298
+ class ProvisioningArtifactView < Struct.new(
4299
+ :product_view_summary,
4300
+ :provisioning_artifact)
4301
+ include Aws::Structure
4302
+ end
4303
+
3626
4304
  # Information about a parameter used to provision a product.
3627
4305
  #
3628
4306
  # @note When making an API call, you may pass ProvisioningParameter
@@ -4298,6 +4976,89 @@ module Aws::ServiceCatalog
4298
4976
  include Aws::Structure
4299
4977
  end
4300
4978
 
4979
+ # A self-service action association consisting of the Action ID, the
4980
+ # Product ID, and the Provisioning Artifact ID.
4981
+ #
4982
+ # @note When making an API call, you may pass ServiceActionAssociation
4983
+ # data as a hash:
4984
+ #
4985
+ # {
4986
+ # service_action_id: "Id", # required
4987
+ # product_id: "Id", # required
4988
+ # provisioning_artifact_id: "Id", # required
4989
+ # }
4990
+ #
4991
+ # @!attribute [rw] service_action_id
4992
+ # The self-service action identifier. For example,
4993
+ # `act-fs7abcd89wxyz`.
4994
+ # @return [String]
4995
+ #
4996
+ # @!attribute [rw] product_id
4997
+ # The product identifier. For example, `prod-abcdzk7xy33qa`.
4998
+ # @return [String]
4999
+ #
5000
+ # @!attribute [rw] provisioning_artifact_id
5001
+ # The identifier of the provisioning artifact. For example,
5002
+ # `pa-4abcdjnxjj6ne`.
5003
+ # @return [String]
5004
+ #
5005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ServiceActionAssociation AWS API Documentation
5006
+ #
5007
+ class ServiceActionAssociation < Struct.new(
5008
+ :service_action_id,
5009
+ :product_id,
5010
+ :provisioning_artifact_id)
5011
+ include Aws::Structure
5012
+ end
5013
+
5014
+ # An object containing detailed information about the self-service
5015
+ # action.
5016
+ #
5017
+ # @!attribute [rw] service_action_summary
5018
+ # Summary information about the self-service action.
5019
+ # @return [Types::ServiceActionSummary]
5020
+ #
5021
+ # @!attribute [rw] definition
5022
+ # A map that defines the self-service action.
5023
+ # @return [Hash<String,String>]
5024
+ #
5025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ServiceActionDetail AWS API Documentation
5026
+ #
5027
+ class ServiceActionDetail < Struct.new(
5028
+ :service_action_summary,
5029
+ :definition)
5030
+ include Aws::Structure
5031
+ end
5032
+
5033
+ # Detailed information about the self-service action.
5034
+ #
5035
+ # @!attribute [rw] id
5036
+ # The self-service action identifier.
5037
+ # @return [String]
5038
+ #
5039
+ # @!attribute [rw] name
5040
+ # The self-service action name.
5041
+ # @return [String]
5042
+ #
5043
+ # @!attribute [rw] description
5044
+ # The self-service action description.
5045
+ # @return [String]
5046
+ #
5047
+ # @!attribute [rw] definition_type
5048
+ # The self-service action definition type. For example,
5049
+ # `SSM_AUTOMATION`.
5050
+ # @return [String]
5051
+ #
5052
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ServiceActionSummary AWS API Documentation
5053
+ #
5054
+ class ServiceActionSummary < Struct.new(
5055
+ :id,
5056
+ :name,
5057
+ :description,
5058
+ :definition_type)
5059
+ include Aws::Structure
5060
+ end
5061
+
4301
5062
  # Information about a tag. A tag is a key-value pair. Tags are
4302
5063
  # propagated to the resources created when provisioning a product.
4303
5064
  #
@@ -4882,6 +5643,67 @@ module Aws::ServiceCatalog
4882
5643
  include Aws::Structure
4883
5644
  end
4884
5645
 
5646
+ # @note When making an API call, you may pass UpdateServiceActionInput
5647
+ # data as a hash:
5648
+ #
5649
+ # {
5650
+ # id: "Id", # required
5651
+ # name: "ServiceActionName",
5652
+ # definition: {
5653
+ # "Name" => "ServiceActionDefinitionValue",
5654
+ # },
5655
+ # description: "ServiceActionDescription",
5656
+ # accept_language: "AcceptLanguage",
5657
+ # }
5658
+ #
5659
+ # @!attribute [rw] id
5660
+ # The self-service action identifier.
5661
+ # @return [String]
5662
+ #
5663
+ # @!attribute [rw] name
5664
+ # The self-service action name.
5665
+ # @return [String]
5666
+ #
5667
+ # @!attribute [rw] definition
5668
+ # A map that defines the self-service action.
5669
+ # @return [Hash<String,String>]
5670
+ #
5671
+ # @!attribute [rw] description
5672
+ # The self-service action description.
5673
+ # @return [String]
5674
+ #
5675
+ # @!attribute [rw] accept_language
5676
+ # The language code.
5677
+ #
5678
+ # * `en` - English (default)
5679
+ #
5680
+ # * `jp` - Japanese
5681
+ #
5682
+ # * `zh` - Chinese
5683
+ # @return [String]
5684
+ #
5685
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateServiceActionInput AWS API Documentation
5686
+ #
5687
+ class UpdateServiceActionInput < Struct.new(
5688
+ :id,
5689
+ :name,
5690
+ :definition,
5691
+ :description,
5692
+ :accept_language)
5693
+ include Aws::Structure
5694
+ end
5695
+
5696
+ # @!attribute [rw] service_action_detail
5697
+ # Detailed information about the self-service action.
5698
+ # @return [Types::ServiceActionDetail]
5699
+ #
5700
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateServiceActionOutput AWS API Documentation
5701
+ #
5702
+ class UpdateServiceActionOutput < Struct.new(
5703
+ :service_action_detail)
5704
+ include Aws::Structure
5705
+ end
5706
+
4885
5707
  # @note When making an API call, you may pass UpdateTagOptionInput
4886
5708
  # data as a hash:
4887
5709
  #