aws-sdk-servicecatalog 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd0f84a3ffcc47fafac0b551de7cc490b017c86c
4
- data.tar.gz: 68b13c5e52d9f9452e5b8689c27b5b295b553471
3
+ metadata.gz: dfd13c9e4dd78a559800bd464fc8d3cf76946c44
4
+ data.tar.gz: 32f7909aa1b30dbf6e5e2fc41449277762a3217e
5
5
  SHA512:
6
- metadata.gz: 313276b3f8a98fce11a4e0a5cb357f7d98c7b6995b01640bc4dac4c3b88bed969ed2a29cb8efe4bc72093a203e8899292796ae6fcb4bc6d716ec85de781a594f
7
- data.tar.gz: c1713158f2441544d3174a8c7cff92b0f44696e7574fcf5281296d127994cb694263e1da88ad88984424c8344fbc6c5473b36302f95465dbecdc6c40c6939ee2
6
+ metadata.gz: 5997d57254321c09d4965286b73a7a9105966ddb455073f48fdae32dc622404e9e59c212cab9c1a5aa24ee8fd4b896952f9f168226b31fc908a8f3aefed07461
7
+ data.tar.gz: 8248641a61aa29e891efa8d7ddd9753543298cad1b650df1f1f35ddc12e5abfed63000c72f7a2583341c506a0a23114a239c1448628b37baa8bfe61ab9eeb61d
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
42
42
  # @service
43
43
  module Aws::ServiceCatalog
44
44
 
45
- GEM_VERSION = '1.0.0'
45
+ GEM_VERSION = '1.1.0'
46
46
 
47
47
  end
@@ -158,16 +158,13 @@ module Aws::ServiceCatalog
158
158
  # Accepts an offer to share a portfolio.
159
159
  #
160
160
  # @option params [String] :accept_language
161
- # The language code to use for this operation. Supported language codes
162
- # are as follows:
161
+ # The language code.
163
162
  #
164
- # "en" (English)
163
+ # * `en` - English (default)
165
164
  #
166
- # "jp" (Japanese)
165
+ # * `jp` - Japanese
167
166
  #
168
- # "zh" (Chinese)
169
- #
170
- # If no code is specified, "en" is used as the default.
167
+ # * `zh` - Chinese
171
168
  #
172
169
  # @option params [required, String] :portfolio_id
173
170
  # The portfolio identifier.
@@ -193,16 +190,13 @@ module Aws::ServiceCatalog
193
190
  # Associates the specified principal ARN with the specified portfolio.
194
191
  #
195
192
  # @option params [String] :accept_language
196
- # The language code to use for this operation. Supported language codes
197
- # are as follows:
198
- #
199
- # "en" (English)
193
+ # The language code.
200
194
  #
201
- # "jp" (Japanese)
195
+ # * `en` - English (default)
202
196
  #
203
- # "zh" (Chinese)
197
+ # * `jp` - Japanese
204
198
  #
205
- # If no code is specified, "en" is used as the default.
199
+ # * `zh` - Chinese
206
200
  #
207
201
  # @option params [required, String] :portfolio_id
208
202
  # The portfolio identifier.
@@ -236,16 +230,13 @@ module Aws::ServiceCatalog
236
230
  # Associates a product with a portfolio.
237
231
  #
238
232
  # @option params [String] :accept_language
239
- # The language code to use for this operation. Supported language codes
240
- # are as follows:
233
+ # The language code.
241
234
  #
242
- # "en" (English)
235
+ # * `en` - English (default)
243
236
  #
244
- # "jp" (Japanese)
237
+ # * `jp` - Japanese
245
238
  #
246
- # "zh" (Chinese)
247
- #
248
- # If no code is specified, "en" is used as the default.
239
+ # * `zh` - Chinese
249
240
  #
250
241
  # @option params [required, String] :product_id
251
242
  # The product identifier.
@@ -302,6 +293,83 @@ module Aws::ServiceCatalog
302
293
  req.send_request(options)
303
294
  end
304
295
 
296
+ # Copies the specified source product to the specified target product or
297
+ # a new product.
298
+ #
299
+ # You can copy the product to the same account or another account. You
300
+ # can copy the product to the same region or another region.
301
+ #
302
+ # This operation is performed asynchronously. To track the progress of
303
+ # the operation, use DescribeCopyProductStatus.
304
+ #
305
+ # @option params [String] :accept_language
306
+ # The language code.
307
+ #
308
+ # * `en` - English (default)
309
+ #
310
+ # * `jp` - Japanese
311
+ #
312
+ # * `zh` - Chinese
313
+ #
314
+ # @option params [required, String] :source_product_arn
315
+ # The Amazon Resource Name (ARN) of the source product.
316
+ #
317
+ # @option params [String] :target_product_id
318
+ # The ID of the target product. By default, a new product is created.
319
+ #
320
+ # @option params [String] :target_product_name
321
+ # A name for the target product. The default is the name of the source
322
+ # product.
323
+ #
324
+ # @option params [Array<Hash>] :source_provisioning_artifact_identifiers
325
+ # The IDs of the product versions to copy. By default, all provisioning
326
+ # artifacts are copied.
327
+ #
328
+ # @option params [Array<String>] :copy_options
329
+ # The copy options. If the value is `CopyTags`, the tags from the source
330
+ # product are copied to the target product.
331
+ #
332
+ # @option params [required, String] :idempotency_token
333
+ # A token to disambiguate duplicate requests. You can use the same input
334
+ # in multiple requests, provided that you also specify a different
335
+ # idempotency token for each request.
336
+ #
337
+ # **A suitable default value is auto-generated.** You should normally
338
+ # not need to pass this option.**
339
+ #
340
+ # @return [Types::CopyProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
341
+ #
342
+ # * {Types::CopyProductOutput#copy_product_token #copy_product_token} => String
343
+ #
344
+ # @example Request syntax with placeholder values
345
+ #
346
+ # resp = client.copy_product({
347
+ # accept_language: "AcceptLanguage",
348
+ # source_product_arn: "ProductArn", # required
349
+ # target_product_id: "Id",
350
+ # target_product_name: "ProductViewName",
351
+ # source_provisioning_artifact_identifiers: [
352
+ # {
353
+ # "Id" => "ProvisioningArtifactPropertyValue",
354
+ # },
355
+ # ],
356
+ # copy_options: ["CopyTags"], # accepts CopyTags
357
+ # idempotency_token: "IdempotencyToken", # required
358
+ # })
359
+ #
360
+ # @example Response structure
361
+ #
362
+ # resp.copy_product_token #=> String
363
+ #
364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CopyProduct AWS API Documentation
365
+ #
366
+ # @overload copy_product(params = {})
367
+ # @param [Hash] params ({})
368
+ def copy_product(params = {}, options = {})
369
+ req = build_request(:copy_product, params)
370
+ req.send_request(options)
371
+ end
372
+
305
373
  # Creates a new constraint. For more information, see [Using
306
374
  # Constraints][1].
307
375
  #
@@ -310,16 +378,13 @@ module Aws::ServiceCatalog
310
378
  # [1]: http://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints.html
311
379
  #
312
380
  # @option params [String] :accept_language
313
- # The language code to use for this operation. Supported language codes
314
- # are as follows:
315
- #
316
- # "en" (English)
381
+ # The language code.
317
382
  #
318
- # "jp" (Japanese)
383
+ # * `en` - English (default)
319
384
  #
320
- # "zh" (Chinese)
385
+ # * `jp` - Japanese
321
386
  #
322
- # If no code is specified, "en" is used as the default.
387
+ # * `zh` - Chinese
323
388
  #
324
389
  # @option params [required, String] :portfolio_id
325
390
  # The portfolio identifier.
@@ -329,7 +394,7 @@ module Aws::ServiceCatalog
329
394
  #
330
395
  # @option params [required, String] :parameters
331
396
  # The constraint parameters. Expected values vary depending on which
332
- # **Type** is specified. For examples, see the bottom of this topic.
397
+ # **Type** is specified. For more information, see the Examples section.
333
398
  #
334
399
  # For Type `LAUNCH`, the `RoleArn` property is required.
335
400
  #
@@ -345,9 +410,9 @@ module Aws::ServiceCatalog
345
410
  # The text description of the constraint.
346
411
  #
347
412
  # @option params [required, String] :idempotency_token
348
- # A token to disambiguate duplicate requests. You can create multiple
349
- # resources using the same input in multiple requests, provided that you
350
- # also specify a different idempotency token for each request.
413
+ # A token to disambiguate duplicate requests. You can use the same input
414
+ # in multiple requests, provided that you also specify a different
415
+ # idempotency token for each request.
351
416
  #
352
417
  # **A suitable default value is auto-generated.** You should normally
353
418
  # not need to pass this option.**
@@ -391,16 +456,13 @@ module Aws::ServiceCatalog
391
456
  # Creates a new portfolio.
392
457
  #
393
458
  # @option params [String] :accept_language
394
- # The language code to use for this operation. Supported language codes
395
- # are as follows:
459
+ # The language code.
396
460
  #
397
- # "en" (English)
461
+ # * `en` - English (default)
398
462
  #
399
- # "jp" (Japanese)
463
+ # * `jp` - Japanese
400
464
  #
401
- # "zh" (Chinese)
402
- #
403
- # If no code is specified, "en" is used as the default.
465
+ # * `zh` - Chinese
404
466
  #
405
467
  # @option params [required, String] :display_name
406
468
  # The name to use for display purposes.
@@ -415,9 +477,9 @@ module Aws::ServiceCatalog
415
477
  # Tags to associate with the new portfolio.
416
478
  #
417
479
  # @option params [required, String] :idempotency_token
418
- # A token to disambiguate duplicate requests. You can create multiple
419
- # resources using the same input in multiple requests, provided that you
420
- # also specify a different idempotency token for each request.
480
+ # A token to disambiguate duplicate requests. You can use the same input
481
+ # in multiple requests, provided that you also specify a different
482
+ # idempotency token for each request.
421
483
  #
422
484
  # **A suitable default value is auto-generated.** You should normally
423
485
  # not need to pass this option.**
@@ -467,16 +529,13 @@ module Aws::ServiceCatalog
467
529
  # Creates a new portfolio share.
468
530
  #
469
531
  # @option params [String] :accept_language
470
- # The language code to use for this operation. Supported language codes
471
- # are as follows:
472
- #
473
- # "en" (English)
532
+ # The language code.
474
533
  #
475
- # "jp" (Japanese)
534
+ # * `en` - English (default)
476
535
  #
477
- # "zh" (Chinese)
536
+ # * `jp` - Japanese
478
537
  #
479
- # If no code is specified, "en" is used as the default.
538
+ # * `zh` - Chinese
480
539
  #
481
540
  # @option params [required, String] :portfolio_id
482
541
  # The portfolio identifier.
@@ -506,16 +565,13 @@ module Aws::ServiceCatalog
506
565
  # Creates a new product.
507
566
  #
508
567
  # @option params [String] :accept_language
509
- # The language code to use for this operation. Supported language codes
510
- # are as follows:
568
+ # The language code.
511
569
  #
512
- # "en" (English)
570
+ # * `en` - English (default)
513
571
  #
514
- # "jp" (Japanese)
572
+ # * `jp` - Japanese
515
573
  #
516
- # "zh" (Chinese)
517
- #
518
- # If no code is specified, "en" is used as the default.
574
+ # * `zh` - Chinese
519
575
  #
520
576
  # @option params [required, String] :name
521
577
  # The name of the product.
@@ -548,9 +604,9 @@ module Aws::ServiceCatalog
548
604
  # Parameters for the provisioning artifact.
549
605
  #
550
606
  # @option params [required, String] :idempotency_token
551
- # A token to disambiguate duplicate requests. You can create multiple
552
- # resources using the same input in multiple requests, provided that you
553
- # also specify a different idempotency token for each request.
607
+ # A token to disambiguate duplicate requests. You can use the same input
608
+ # in multiple requests, provided that you also specify a different
609
+ # idempotency token for each request.
554
610
  #
555
611
  # **A suitable default value is auto-generated.** You should normally
556
612
  # not need to pass this option.**
@@ -627,19 +683,14 @@ module Aws::ServiceCatalog
627
683
  # Create a new provisioning artifact for the specified product. This
628
684
  # operation does not work with a product that has been shared with you.
629
685
  #
630
- # See the bottom of this topic for an example JSON request.
631
- #
632
686
  # @option params [String] :accept_language
633
- # The language code to use for this operation. Supported language codes
634
- # are as follows:
635
- #
636
- # "en" (English)
687
+ # The language code.
637
688
  #
638
- # "jp" (Japanese)
689
+ # * `en` - English (default)
639
690
  #
640
- # "zh" (Chinese)
691
+ # * `jp` - Japanese
641
692
  #
642
- # If no code is specified, "en" is used as the default.
693
+ # * `zh` - Chinese
643
694
  #
644
695
  # @option params [required, String] :product_id
645
696
  # The product identifier.
@@ -648,9 +699,9 @@ module Aws::ServiceCatalog
648
699
  # The parameters to use when creating the new provisioning artifact.
649
700
  #
650
701
  # @option params [required, String] :idempotency_token
651
- # A token to disambiguate duplicate requests. You can create multiple
652
- # resources using the same input in multiple requests, provided that you
653
- # also specify a different idempotency token for each request.
702
+ # A token to disambiguate duplicate requests. You can use the same input
703
+ # in multiple requests, provided that you also specify a different
704
+ # idempotency token for each request.
654
705
  #
655
706
  # **A suitable default value is auto-generated.** You should normally
656
707
  # not need to pass this option.**
@@ -735,16 +786,13 @@ module Aws::ServiceCatalog
735
786
  # Deletes the specified constraint.
736
787
  #
737
788
  # @option params [String] :accept_language
738
- # The language code to use for this operation. Supported language codes
739
- # are as follows:
789
+ # The language code.
740
790
  #
741
- # "en" (English)
791
+ # * `en` - English (default)
742
792
  #
743
- # "jp" (Japanese)
793
+ # * `jp` - Japanese
744
794
  #
745
- # "zh" (Chinese)
746
- #
747
- # If no code is specified, "en" is used as the default.
795
+ # * `zh` - Chinese
748
796
  #
749
797
  # @option params [required, String] :id
750
798
  # The identifier of the constraint to delete.
@@ -772,16 +820,13 @@ module Aws::ServiceCatalog
772
820
  # constraints, or shared accounts associated with it.
773
821
  #
774
822
  # @option params [String] :accept_language
775
- # The language code to use for this operation. Supported language codes
776
- # are as follows:
777
- #
778
- # "en" (English)
823
+ # The language code.
779
824
  #
780
- # "jp" (Japanese)
825
+ # * `en` - English (default)
781
826
  #
782
- # "zh" (Chinese)
827
+ # * `jp` - Japanese
783
828
  #
784
- # If no code is specified, "en" is used as the default.
829
+ # * `zh` - Chinese
785
830
  #
786
831
  # @option params [required, String] :id
787
832
  # The identifier of the portfolio for the delete request.
@@ -807,16 +852,13 @@ module Aws::ServiceCatalog
807
852
  # Deletes the specified portfolio share.
808
853
  #
809
854
  # @option params [String] :accept_language
810
- # The language code to use for this operation. Supported language codes
811
- # are as follows:
812
- #
813
- # "en" (English)
855
+ # The language code.
814
856
  #
815
- # "jp" (Japanese)
857
+ # * `en` - English (default)
816
858
  #
817
- # "zh" (Chinese)
859
+ # * `jp` - Japanese
818
860
  #
819
- # If no code is specified, "en" is used as the default.
861
+ # * `zh` - Chinese
820
862
  #
821
863
  # @option params [required, String] :portfolio_id
822
864
  # The portfolio identifier.
@@ -848,16 +890,13 @@ module Aws::ServiceCatalog
848
890
  # portfolio.
849
891
  #
850
892
  # @option params [String] :accept_language
851
- # The language code to use for this operation. Supported language codes
852
- # are as follows:
893
+ # The language code.
853
894
  #
854
- # "en" (English)
895
+ # * `en` - English (default)
855
896
  #
856
- # "jp" (Japanese)
897
+ # * `jp` - Japanese
857
898
  #
858
- # "zh" (Chinese)
859
- #
860
- # If no code is specified, "en" is used as the default.
899
+ # * `zh` - Chinese
861
900
  #
862
901
  # @option params [required, String] :id
863
902
  # The identifier of the product for the delete request.
@@ -887,16 +926,13 @@ module Aws::ServiceCatalog
887
926
  # artifact).
888
927
  #
889
928
  # @option params [String] :accept_language
890
- # The language code to use for this operation. Supported language codes
891
- # are as follows:
892
- #
893
- # "en" (English)
929
+ # The language code.
894
930
  #
895
- # "jp" (Japanese)
931
+ # * `en` - English (default)
896
932
  #
897
- # "zh" (Chinese)
933
+ # * `jp` - Japanese
898
934
  #
899
- # If no code is specified, "en" is used as the default.
935
+ # * `zh` - Chinese
900
936
  #
901
937
  # @option params [required, String] :product_id
902
938
  # The product identifier.
@@ -927,16 +963,13 @@ module Aws::ServiceCatalog
927
963
  # Retrieves detailed information for a specified constraint.
928
964
  #
929
965
  # @option params [String] :accept_language
930
- # The language code to use for this operation. Supported language codes
931
- # are as follows:
932
- #
933
- # "en" (English)
966
+ # The language code.
934
967
  #
935
- # "jp" (Japanese)
968
+ # * `en` - English (default)
936
969
  #
937
- # "zh" (Chinese)
970
+ # * `jp` - Japanese
938
971
  #
939
- # If no code is specified, "en" is used as the default.
972
+ # * `zh` - Chinese
940
973
  #
941
974
  # @option params [required, String] :id
942
975
  # The identifier of the constraint.
@@ -972,20 +1005,60 @@ module Aws::ServiceCatalog
972
1005
  req.send_request(options)
973
1006
  end
974
1007
 
1008
+ # Describes the status of the specified copy product operation.
1009
+ #
1010
+ # @option params [String] :accept_language
1011
+ # The language code.
1012
+ #
1013
+ # * `en` - English (default)
1014
+ #
1015
+ # * `jp` - Japanese
1016
+ #
1017
+ # * `zh` - Chinese
1018
+ #
1019
+ # @option params [required, String] :copy_product_token
1020
+ # The token returned from the call to `CopyProduct` that initiated the
1021
+ # operation.
1022
+ #
1023
+ # @return [Types::DescribeCopyProductStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1024
+ #
1025
+ # * {Types::DescribeCopyProductStatusOutput#copy_product_status #copy_product_status} => String
1026
+ # * {Types::DescribeCopyProductStatusOutput#target_product_id #target_product_id} => String
1027
+ # * {Types::DescribeCopyProductStatusOutput#status_detail #status_detail} => String
1028
+ #
1029
+ # @example Request syntax with placeholder values
1030
+ #
1031
+ # resp = client.describe_copy_product_status({
1032
+ # accept_language: "AcceptLanguage",
1033
+ # copy_product_token: "Id", # required
1034
+ # })
1035
+ #
1036
+ # @example Response structure
1037
+ #
1038
+ # resp.copy_product_status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
1039
+ # resp.target_product_id #=> String
1040
+ # resp.status_detail #=> String
1041
+ #
1042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeCopyProductStatus AWS API Documentation
1043
+ #
1044
+ # @overload describe_copy_product_status(params = {})
1045
+ # @param [Hash] params ({})
1046
+ def describe_copy_product_status(params = {}, options = {})
1047
+ req = build_request(:describe_copy_product_status, params)
1048
+ req.send_request(options)
1049
+ end
1050
+
975
1051
  # Retrieves detailed information and any tags associated with the
976
1052
  # specified portfolio.
977
1053
  #
978
1054
  # @option params [String] :accept_language
979
- # The language code to use for this operation. Supported language codes
980
- # are as follows:
981
- #
982
- # "en" (English)
1055
+ # The language code.
983
1056
  #
984
- # "jp" (Japanese)
1057
+ # * `en` - English (default)
985
1058
  #
986
- # "zh" (Chinese)
1059
+ # * `jp` - Japanese
987
1060
  #
988
- # If no code is specified, "en" is used as the default.
1061
+ # * `zh` - Chinese
989
1062
  #
990
1063
  # @option params [required, String] :id
991
1064
  # The identifier of the portfolio for which to retrieve information.
@@ -1035,16 +1108,13 @@ module Aws::ServiceCatalog
1035
1108
  # that it takes as input `ProductId` instead of `ProductViewId`.
1036
1109
  #
1037
1110
  # @option params [String] :accept_language
1038
- # The language code to use for this operation. Supported language codes
1039
- # are as follows:
1111
+ # The language code.
1040
1112
  #
1041
- # "en" (English)
1113
+ # * `en` - English (default)
1042
1114
  #
1043
- # "jp" (Japanese)
1115
+ # * `jp` - Japanese
1044
1116
  #
1045
- # "zh" (Chinese)
1046
- #
1047
- # If no code is specified, "en" is used as the default.
1117
+ # * `zh` - Chinese
1048
1118
  #
1049
1119
  # @option params [required, String] :id
1050
1120
  # The `ProductId` of the product to describe.
@@ -1093,16 +1163,13 @@ module Aws::ServiceCatalog
1093
1163
  # administrator access.
1094
1164
  #
1095
1165
  # @option params [String] :accept_language
1096
- # The language code to use for this operation. Supported language codes
1097
- # are as follows:
1098
- #
1099
- # "en" (English)
1166
+ # The language code.
1100
1167
  #
1101
- # "jp" (Japanese)
1168
+ # * `en` - English (default)
1102
1169
  #
1103
- # "zh" (Chinese)
1170
+ # * `jp` - Japanese
1104
1171
  #
1105
- # If no code is specified, "en" is used as the default.
1172
+ # * `zh` - Chinese
1106
1173
  #
1107
1174
  # @option params [required, String] :id
1108
1175
  # The identifier of the product for which to retrieve information.
@@ -1168,16 +1235,13 @@ module Aws::ServiceCatalog
1168
1235
  # that it takes as input `ProductViewId` instead of `ProductId`.
1169
1236
  #
1170
1237
  # @option params [String] :accept_language
1171
- # The language code to use for this operation. Supported language codes
1172
- # are as follows:
1173
- #
1174
- # "en" (English)
1238
+ # The language code.
1175
1239
  #
1176
- # "jp" (Japanese)
1240
+ # * `en` - English (default)
1177
1241
  #
1178
- # "zh" (Chinese)
1242
+ # * `jp` - Japanese
1179
1243
  #
1180
- # If no code is specified, "en" is used as the default.
1244
+ # * `zh` - Chinese
1181
1245
  #
1182
1246
  # @option params [required, String] :id
1183
1247
  # The `ProductViewId` of the product to describe.
@@ -1225,16 +1289,13 @@ module Aws::ServiceCatalog
1225
1289
  # Retrieve detailed information about the provisioned product.
1226
1290
  #
1227
1291
  # @option params [String] :accept_language
1228
- # The language code to use for this operation. Supported language codes
1229
- # are as follows:
1292
+ # The language code.
1230
1293
  #
1231
- # "en" (English)
1294
+ # * `en` - English (default)
1232
1295
  #
1233
- # "jp" (Japanese)
1296
+ # * `jp` - Japanese
1234
1297
  #
1235
- # "zh" (Chinese)
1236
- #
1237
- # If no code is specified, "en" is used as the default.
1298
+ # * `zh` - Chinese
1238
1299
  #
1239
1300
  # @option params [required, String] :id
1240
1301
  # The provisioned product identifier.
@@ -1275,16 +1336,13 @@ module Aws::ServiceCatalog
1275
1336
  # artifact.
1276
1337
  #
1277
1338
  # @option params [String] :accept_language
1278
- # The language code to use for this operation. Supported language codes
1279
- # are as follows:
1280
- #
1281
- # "en" (English)
1339
+ # The language code.
1282
1340
  #
1283
- # "jp" (Japanese)
1341
+ # * `en` - English (default)
1284
1342
  #
1285
- # "zh" (Chinese)
1343
+ # * `jp` - Japanese
1286
1344
  #
1287
- # If no code is specified, "en" is used as the default.
1345
+ # * `zh` - Chinese
1288
1346
  #
1289
1347
  # @option params [required, String] :provisioning_artifact_id
1290
1348
  # The identifier of the provisioning artifact. This is sometimes
@@ -1348,16 +1406,13 @@ module Aws::ServiceCatalog
1348
1406
  # "`sc-tagoption-conflict-portfolioId-productId`".
1349
1407
  #
1350
1408
  # @option params [String] :accept_language
1351
- # The language code to use for this operation. Supported language codes
1352
- # are as follows:
1409
+ # The language code.
1353
1410
  #
1354
- # "en" (English)
1411
+ # * `en` - English (default)
1355
1412
  #
1356
- # "jp" (Japanese)
1413
+ # * `jp` - Japanese
1357
1414
  #
1358
- # "zh" (Chinese)
1359
- #
1360
- # If no code is specified, "en" is used as the default.
1415
+ # * `zh` - Chinese
1361
1416
  #
1362
1417
  # @option params [required, String] :product_id
1363
1418
  # The product identifier.
@@ -1423,16 +1478,13 @@ module Aws::ServiceCatalog
1423
1478
  # UpdateProvisionedProduct).
1424
1479
  #
1425
1480
  # @option params [String] :accept_language
1426
- # The language code to use for this operation. Supported language codes
1427
- # are as follows:
1428
- #
1429
- # "en" (English)
1481
+ # The language code.
1430
1482
  #
1431
- # "jp" (Japanese)
1483
+ # * `en` - English (default)
1432
1484
  #
1433
- # "zh" (Chinese)
1485
+ # * `jp` - Japanese
1434
1486
  #
1435
- # If no code is specified, "en" is used as the default.
1487
+ # * `zh` - Chinese
1436
1488
  #
1437
1489
  # @option params [required, String] :id
1438
1490
  # The record identifier of the ProvisionedProduct object for which to
@@ -1532,16 +1584,13 @@ module Aws::ServiceCatalog
1532
1584
  # portfolio.
1533
1585
  #
1534
1586
  # @option params [String] :accept_language
1535
- # The language code to use for this operation. Supported language codes
1536
- # are as follows:
1587
+ # The language code.
1537
1588
  #
1538
- # "en" (English)
1589
+ # * `en` - English (default)
1539
1590
  #
1540
- # "jp" (Japanese)
1591
+ # * `jp` - Japanese
1541
1592
  #
1542
- # "zh" (Chinese)
1543
- #
1544
- # If no code is specified, "en" is used as the default.
1593
+ # * `zh` - Chinese
1545
1594
  #
1546
1595
  # @option params [required, String] :portfolio_id
1547
1596
  # The portfolio identifier.
@@ -1571,16 +1620,13 @@ module Aws::ServiceCatalog
1571
1620
  # Disassociates the specified product from the specified portfolio.
1572
1621
  #
1573
1622
  # @option params [String] :accept_language
1574
- # The language code to use for this operation. Supported language codes
1575
- # are as follows:
1576
- #
1577
- # "en" (English)
1623
+ # The language code.
1578
1624
  #
1579
- # "jp" (Japanese)
1625
+ # * `en` - English (default)
1580
1626
  #
1581
- # "zh" (Chinese)
1627
+ # * `jp` - Japanese
1582
1628
  #
1583
- # If no code is specified, "en" is used as the default.
1629
+ # * `zh` - Chinese
1584
1630
  #
1585
1631
  # @option params [required, String] :product_id
1586
1632
  # The product identifier.
@@ -1637,16 +1683,13 @@ module Aws::ServiceCatalog
1637
1683
  # account.
1638
1684
  #
1639
1685
  # @option params [String] :accept_language
1640
- # The language code to use for this operation. Supported language codes
1641
- # are as follows:
1642
- #
1643
- # "en" (English)
1686
+ # The language code.
1644
1687
  #
1645
- # "jp" (Japanese)
1688
+ # * `en` - English (default)
1646
1689
  #
1647
- # "zh" (Chinese)
1690
+ # * `jp` - Japanese
1648
1691
  #
1649
- # If no code is specified, "en" is used as the default.
1692
+ # * `zh` - Chinese
1650
1693
  #
1651
1694
  # @option params [String] :page_token
1652
1695
  # The page token of the first page retrieved. If null, this retrieves
@@ -1694,16 +1737,13 @@ module Aws::ServiceCatalog
1694
1737
  # and product.
1695
1738
  #
1696
1739
  # @option params [String] :accept_language
1697
- # The language code to use for this operation. Supported language codes
1698
- # are as follows:
1740
+ # The language code.
1699
1741
  #
1700
- # "en" (English)
1742
+ # * `en` - English (default)
1701
1743
  #
1702
- # "jp" (Japanese)
1744
+ # * `jp` - Japanese
1703
1745
  #
1704
- # "zh" (Chinese)
1705
- #
1706
- # If no code is specified, "en" is used as the default.
1746
+ # * `zh` - Chinese
1707
1747
  #
1708
1748
  # @option params [required, String] :portfolio_id
1709
1749
  # The portfolio identifier.
@@ -1759,16 +1799,13 @@ module Aws::ServiceCatalog
1759
1799
  # put on the product.
1760
1800
  #
1761
1801
  # @option params [String] :accept_language
1762
- # The language code to use for this operation. Supported language codes
1763
- # are as follows:
1764
- #
1765
- # "en" (English)
1802
+ # The language code.
1766
1803
  #
1767
- # "jp" (Japanese)
1804
+ # * `en` - English (default)
1768
1805
  #
1769
- # "zh" (Chinese)
1806
+ # * `jp` - Japanese
1770
1807
  #
1771
- # If no code is specified, "en" is used as the default.
1808
+ # * `zh` - Chinese
1772
1809
  #
1773
1810
  # @option params [required, String] :product_id
1774
1811
  # The product identifier. Identifies the product for which to retrieve
@@ -1823,16 +1860,13 @@ module Aws::ServiceCatalog
1823
1860
  # specified portfolio.
1824
1861
  #
1825
1862
  # @option params [String] :accept_language
1826
- # The language code to use for this operation. Supported language codes
1827
- # are as follows:
1828
- #
1829
- # "en" (English)
1863
+ # The language code.
1830
1864
  #
1831
- # "jp" (Japanese)
1865
+ # * `en` - English (default)
1832
1866
  #
1833
- # "zh" (Chinese)
1867
+ # * `jp` - Japanese
1834
1868
  #
1835
- # If no code is specified, "en" is used as the default.
1869
+ # * `zh` - Chinese
1836
1870
  #
1837
1871
  # @option params [required, String] :portfolio_id
1838
1872
  # The portfolio identifier.
@@ -1867,16 +1901,13 @@ module Aws::ServiceCatalog
1867
1901
  # Lists all portfolios in the catalog.
1868
1902
  #
1869
1903
  # @option params [String] :accept_language
1870
- # The language code to use for this operation. Supported language codes
1871
- # are as follows:
1904
+ # The language code.
1872
1905
  #
1873
- # "en" (English)
1906
+ # * `en` - English (default)
1874
1907
  #
1875
- # "jp" (Japanese)
1908
+ # * `jp` - Japanese
1876
1909
  #
1877
- # "zh" (Chinese)
1878
- #
1879
- # If no code is specified, "en" is used as the default.
1910
+ # * `zh` - Chinese
1880
1911
  #
1881
1912
  # @option params [String] :page_token
1882
1913
  # The page token of the first page retrieved. If null, this retrieves
@@ -1923,16 +1954,13 @@ module Aws::ServiceCatalog
1923
1954
  # Lists all portfolios that the specified product is associated with.
1924
1955
  #
1925
1956
  # @option params [String] :accept_language
1926
- # The language code to use for this operation. Supported language codes
1927
- # are as follows:
1928
- #
1929
- # "en" (English)
1957
+ # The language code.
1930
1958
  #
1931
- # "jp" (Japanese)
1959
+ # * `en` - English (default)
1932
1960
  #
1933
- # "zh" (Chinese)
1961
+ # * `jp` - Japanese
1934
1962
  #
1935
- # If no code is specified, "en" is used as the default.
1963
+ # * `zh` - Chinese
1936
1964
  #
1937
1965
  # @option params [required, String] :product_id
1938
1966
  # The product identifier.
@@ -1983,16 +2011,13 @@ module Aws::ServiceCatalog
1983
2011
  # Lists all principal ARNs associated with the specified portfolio.
1984
2012
  #
1985
2013
  # @option params [String] :accept_language
1986
- # The language code to use for this operation. Supported language codes
1987
- # are as follows:
1988
- #
1989
- # "en" (English)
2014
+ # The language code.
1990
2015
  #
1991
- # "jp" (Japanese)
2016
+ # * `en` - English (default)
1992
2017
  #
1993
- # "zh" (Chinese)
2018
+ # * `jp` - Japanese
1994
2019
  #
1995
- # If no code is specified, "en" is used as the default.
2020
+ # * `zh` - Chinese
1996
2021
  #
1997
2022
  # @option params [required, String] :portfolio_id
1998
2023
  # The portfolio identifier.
@@ -2040,16 +2065,13 @@ module Aws::ServiceCatalog
2040
2065
  # product.
2041
2066
  #
2042
2067
  # @option params [String] :accept_language
2043
- # The language code to use for this operation. Supported language codes
2044
- # are as follows:
2068
+ # The language code.
2045
2069
  #
2046
- # "en" (English)
2070
+ # * `en` - English (default)
2047
2071
  #
2048
- # "jp" (Japanese)
2072
+ # * `jp` - Japanese
2049
2073
  #
2050
- # "zh" (Chinese)
2051
- #
2052
- # If no code is specified, "en" is used as the default.
2074
+ # * `zh` - Chinese
2053
2075
  #
2054
2076
  # @option params [required, String] :product_id
2055
2077
  # The product identifier.
@@ -2089,16 +2111,13 @@ module Aws::ServiceCatalog
2089
2111
  # RecordDetails objects that are filtered as specified.
2090
2112
  #
2091
2113
  # @option params [String] :accept_language
2092
- # The language code to use for this operation. Supported language codes
2093
- # are as follows:
2094
- #
2095
- # "en" (English)
2114
+ # The language code.
2096
2115
  #
2097
- # "jp" (Japanese)
2116
+ # * `en` - English (default)
2098
2117
  #
2099
- # "zh" (Chinese)
2118
+ # * `jp` - Japanese
2100
2119
  #
2101
- # If no code is specified, "en" is used as the default.
2120
+ # * `zh` - Chinese
2102
2121
  #
2103
2122
  # @option params [Types::AccessLevelFilter] :access_level_filter
2104
2123
  # The access level for obtaining results. If left unspecified, `User`
@@ -2284,16 +2303,13 @@ module Aws::ServiceCatalog
2284
2303
  # in conflict. For more information, see DescribeProvisioningParameters.
2285
2304
  #
2286
2305
  # @option params [String] :accept_language
2287
- # The language code to use for this operation. Supported language codes
2288
- # are as follows:
2306
+ # The language code.
2289
2307
  #
2290
- # "en" (English)
2308
+ # * `en` - English (default)
2291
2309
  #
2292
- # "jp" (Japanese)
2310
+ # * `jp` - Japanese
2293
2311
  #
2294
- # "zh" (Chinese)
2295
- #
2296
- # If no code is specified, "en" is used as the default.
2312
+ # * `zh` - Chinese
2297
2313
  #
2298
2314
  # @option params [required, String] :product_id
2299
2315
  # The product identifier.
@@ -2390,16 +2406,13 @@ module Aws::ServiceCatalog
2390
2406
  # Rejects an offer to share a portfolio.
2391
2407
  #
2392
2408
  # @option params [String] :accept_language
2393
- # The language code to use for this operation. Supported language codes
2394
- # are as follows:
2395
- #
2396
- # "en" (English)
2409
+ # The language code.
2397
2410
  #
2398
- # "jp" (Japanese)
2411
+ # * `en` - English (default)
2399
2412
  #
2400
- # "zh" (Chinese)
2413
+ # * `jp` - Japanese
2401
2414
  #
2402
- # If no code is specified, "en" is used as the default.
2415
+ # * `zh` - Chinese
2403
2416
  #
2404
2417
  # @option params [required, String] :portfolio_id
2405
2418
  # The portfolio identifier.
@@ -2426,16 +2439,13 @@ module Aws::ServiceCatalog
2426
2439
  # are currently available (not terminated).
2427
2440
  #
2428
2441
  # @option params [String] :accept_language
2429
- # The language code to use for this operation. Supported language codes
2430
- # are as follows:
2442
+ # The language code.
2431
2443
  #
2432
- # "en" (English)
2444
+ # * `en` - English (default)
2433
2445
  #
2434
- # "jp" (Japanese)
2446
+ # * `jp` - Japanese
2435
2447
  #
2436
- # "zh" (Chinese)
2437
- #
2438
- # If no code is specified, "en" is used as the default.
2448
+ # * `zh` - Chinese
2439
2449
  #
2440
2450
  # @option params [Types::AccessLevelFilter] :access_level_filter
2441
2451
  # The access level for obtaining results. If left unspecified, `User`
@@ -2497,16 +2507,13 @@ module Aws::ServiceCatalog
2497
2507
  # operations, such as DescribeProductView.
2498
2508
  #
2499
2509
  # @option params [String] :accept_language
2500
- # The language code to use for this operation. Supported language codes
2501
- # are as follows:
2502
- #
2503
- # "en" (English)
2510
+ # The language code.
2504
2511
  #
2505
- # "jp" (Japanese)
2512
+ # * `en` - English (default)
2506
2513
  #
2507
- # "zh" (Chinese)
2514
+ # * `jp` - Japanese
2508
2515
  #
2509
- # If no code is specified, "en" is used as the default.
2516
+ # * `zh` - Chinese
2510
2517
  #
2511
2518
  # @option params [Hash<String,Array>] :filters
2512
2519
  # The list of filters with which to limit search results. If no search
@@ -2584,16 +2591,13 @@ module Aws::ServiceCatalog
2584
2591
  # associated with the specified portfolio.
2585
2592
  #
2586
2593
  # @option params [String] :accept_language
2587
- # The language code to use for this operation. Supported language codes
2588
- # are as follows:
2589
- #
2590
- # "en" (English)
2594
+ # The language code.
2591
2595
  #
2592
- # "jp" (Japanese)
2596
+ # * `en` - English (default)
2593
2597
  #
2594
- # "zh" (Chinese)
2598
+ # * `jp` - Japanese
2595
2599
  #
2596
- # If no code is specified, "en" is used as the default.
2600
+ # * `zh` - Chinese
2597
2601
  #
2598
2602
  # @option params [String] :portfolio_id
2599
2603
  # The portfolio identifier.
@@ -2706,16 +2710,13 @@ module Aws::ServiceCatalog
2706
2710
  # resources.
2707
2711
  #
2708
2712
  # @option params [String] :accept_language
2709
- # The language code to use for this operation. Supported language codes
2710
- # are as follows:
2713
+ # The language code.
2711
2714
  #
2712
- # "en" (English)
2715
+ # * `en` - English (default)
2713
2716
  #
2714
- # "jp" (Japanese)
2717
+ # * `jp` - Japanese
2715
2718
  #
2716
- # "zh" (Chinese)
2717
- #
2718
- # If no code is specified, "en" is used as the default.
2719
+ # * `zh` - Chinese
2719
2720
  #
2720
2721
  # @return [Types::TerminateProvisionedProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2721
2722
  #
@@ -2763,16 +2764,13 @@ module Aws::ServiceCatalog
2763
2764
  # Updates an existing constraint.
2764
2765
  #
2765
2766
  # @option params [String] :accept_language
2766
- # The language code to use for this operation. Supported language codes
2767
- # are as follows:
2768
- #
2769
- # "en" (English)
2767
+ # The language code.
2770
2768
  #
2771
- # "jp" (Japanese)
2769
+ # * `en` - English (default)
2772
2770
  #
2773
- # "zh" (Chinese)
2771
+ # * `jp` - Japanese
2774
2772
  #
2775
- # If no code is specified, "en" is used as the default.
2773
+ # * `zh` - Chinese
2776
2774
  #
2777
2775
  # @option params [required, String] :id
2778
2776
  # The identifier of the constraint to update.
@@ -2816,16 +2814,13 @@ module Aws::ServiceCatalog
2816
2814
  # work with a product that has been shared with you.
2817
2815
  #
2818
2816
  # @option params [String] :accept_language
2819
- # The language code to use for this operation. Supported language codes
2820
- # are as follows:
2821
- #
2822
- # "en" (English)
2817
+ # The language code.
2823
2818
  #
2824
- # "jp" (Japanese)
2819
+ # * `en` - English (default)
2825
2820
  #
2826
- # "zh" (Chinese)
2821
+ # * `jp` - Japanese
2827
2822
  #
2828
- # If no code is specified, "en" is used as the default.
2823
+ # * `zh` - Chinese
2829
2824
  #
2830
2825
  # @option params [required, String] :id
2831
2826
  # The identifier of the portfolio for the update request.
@@ -2893,16 +2888,13 @@ module Aws::ServiceCatalog
2893
2888
  # Updates an existing product.
2894
2889
  #
2895
2890
  # @option params [String] :accept_language
2896
- # The language code to use for this operation. Supported language codes
2897
- # are as follows:
2891
+ # The language code.
2898
2892
  #
2899
- # "en" (English)
2893
+ # * `en` - English (default)
2900
2894
  #
2901
- # "jp" (Japanese)
2895
+ # * `jp` - Japanese
2902
2896
  #
2903
- # "zh" (Chinese)
2904
- #
2905
- # If no code is specified, "en" is used as the default.
2897
+ # * `zh` - Chinese
2906
2898
  #
2907
2899
  # @option params [required, String] :id
2908
2900
  # The identifier of the product for the update request.
@@ -3001,16 +2993,13 @@ module Aws::ServiceCatalog
3001
2993
  # operation.
3002
2994
  #
3003
2995
  # @option params [String] :accept_language
3004
- # The language code to use for this operation. Supported language codes
3005
- # are as follows:
3006
- #
3007
- # "en" (English)
2996
+ # The language code.
3008
2997
  #
3009
- # "jp" (Japanese)
2998
+ # * `en` - English (default)
3010
2999
  #
3011
- # "zh" (Chinese)
3000
+ # * `jp` - Japanese
3012
3001
  #
3013
- # If no code is specified, "en" is used as the default.
3002
+ # * `zh` - Chinese
3014
3003
  #
3015
3004
  # @option params [String] :provisioned_product_name
3016
3005
  # The updated name of the ProvisionedProduct object. Specify either
@@ -3101,16 +3090,13 @@ module Aws::ServiceCatalog
3101
3090
  # product that has been shared with you.
3102
3091
  #
3103
3092
  # @option params [String] :accept_language
3104
- # The language code to use for this operation. Supported language codes
3105
- # are as follows:
3106
- #
3107
- # "en" (English)
3093
+ # The language code.
3108
3094
  #
3109
- # "jp" (Japanese)
3095
+ # * `en` - English (default)
3110
3096
  #
3111
- # "zh" (Chinese)
3097
+ # * `jp` - Japanese
3112
3098
  #
3113
- # If no code is specified, "en" is used as the default.
3099
+ # * `zh` - Chinese
3114
3100
  #
3115
3101
  # @option params [required, String] :product_id
3116
3102
  # The product identifier.
@@ -3213,7 +3199,7 @@ module Aws::ServiceCatalog
3213
3199
  params: params,
3214
3200
  config: config)
3215
3201
  context[:gem_name] = 'aws-sdk-servicecatalog'
3216
- context[:gem_version] = '1.0.0'
3202
+ context[:gem_version] = '1.1.0'
3217
3203
  Seahorse::Client::Request.new(handlers, context)
3218
3204
  end
3219
3205