aws-sdk-servicecatalog 1.30.0 → 1.31.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: 9f5f9538af3c7170b676673ed791a72e79480ee4
4
- data.tar.gz: 8fe22e23aec495ce229874f1b0135a0f939cdd12
3
+ metadata.gz: 581b1b6b41f1afd4f91abc13fc1c619f76728ad2
4
+ data.tar.gz: 4198adac1a0662db1b78be83387c2445ab990a76
5
5
  SHA512:
6
- metadata.gz: fdc56b2f9353ccbd07199d6a0e9f6f85588b3737666c1af42c0dcd38c6d8aca9ad13cc843254da53dafef21120bfca85787504775287eb29c2d2eede7b1ce76b
7
- data.tar.gz: 669ab96b7f84cc421822127451e0a1fcf147ab8d075910e8c8d2ac491d4400a44d1fb42c3d68c8b55186c58c38063182997cdcc257ab17c9c10f95ad7a51199f
6
+ metadata.gz: 51df3940cb7fdcb11b6f59b2a0ac3a4211c8d26cff5f4410ba7f8f4361fd5f4e4bc22534c9fd9a0c6e9dd787dcf92f6a876ace76d48241dd0180fc309121c986
7
+ data.tar.gz: 6249cf7c5fc0adbcc5ffb0a117947fb0f0004d45b2c227d049223d33a6efd0a2007d4915af3517d03c90cdb0afd7b4d7a0bc29cc07736c3ee966e65738683206
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
42
42
  # @service
43
43
  module Aws::ServiceCatalog
44
44
 
45
- GEM_VERSION = '1.30.0'
45
+ GEM_VERSION = '1.31.0'
46
46
 
47
47
  end
@@ -2434,6 +2434,41 @@ module Aws::ServiceCatalog
2434
2434
  req.send_request(options)
2435
2435
  end
2436
2436
 
2437
+ # @option params [required, String] :provisioned_product_id
2438
+ #
2439
+ # @option params [required, String] :service_action_id
2440
+ #
2441
+ # @option params [String] :accept_language
2442
+ #
2443
+ # @return [Types::DescribeServiceActionExecutionParametersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2444
+ #
2445
+ # * {Types::DescribeServiceActionExecutionParametersOutput#service_action_parameters #service_action_parameters} => Array<Types::ExecutionParameter>
2446
+ #
2447
+ # @example Request syntax with placeholder values
2448
+ #
2449
+ # resp = client.describe_service_action_execution_parameters({
2450
+ # provisioned_product_id: "Id", # required
2451
+ # service_action_id: "Id", # required
2452
+ # accept_language: "AcceptLanguage",
2453
+ # })
2454
+ #
2455
+ # @example Response structure
2456
+ #
2457
+ # resp.service_action_parameters #=> Array
2458
+ # resp.service_action_parameters[0].name #=> String
2459
+ # resp.service_action_parameters[0].type #=> String
2460
+ # resp.service_action_parameters[0].default_values #=> Array
2461
+ # resp.service_action_parameters[0].default_values[0] #=> String
2462
+ #
2463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionExecutionParameters AWS API Documentation
2464
+ #
2465
+ # @overload describe_service_action_execution_parameters(params = {})
2466
+ # @param [Hash] params ({})
2467
+ def describe_service_action_execution_parameters(params = {}, options = {})
2468
+ req = build_request(:describe_service_action_execution_parameters, params)
2469
+ req.send_request(options)
2470
+ end
2471
+
2437
2472
  # Gets information about the specified TagOption.
2438
2473
  #
2439
2474
  # @option params [required, String] :id
@@ -2759,6 +2794,8 @@ module Aws::ServiceCatalog
2759
2794
  #
2760
2795
  # * `zh` - Chinese
2761
2796
  #
2797
+ # @option params [Hash<String,Array>] :parameters
2798
+ #
2762
2799
  # @return [Types::ExecuteProvisionedProductServiceActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2763
2800
  #
2764
2801
  # * {Types::ExecuteProvisionedProductServiceActionOutput#record_detail #record_detail} => Types::RecordDetail
@@ -2770,6 +2807,9 @@ module Aws::ServiceCatalog
2770
2807
  # service_action_id: "Id", # required
2771
2808
  # execute_token: "IdempotencyToken", # required
2772
2809
  # accept_language: "AcceptLanguage",
2810
+ # parameters: {
2811
+ # "ExecutionParameterKey" => ["ExecutionParameterValue"],
2812
+ # },
2773
2813
  # })
2774
2814
  #
2775
2815
  # @example Response structure
@@ -5069,7 +5109,7 @@ module Aws::ServiceCatalog
5069
5109
  params: params,
5070
5110
  config: config)
5071
5111
  context[:gem_name] = 'aws-sdk-servicecatalog'
5072
- context[:gem_version] = '1.30.0'
5112
+ context[:gem_version] = '1.31.0'
5073
5113
  Seahorse::Client::Request.new(handlers, context)
5074
5114
  end
5075
5115
 
@@ -118,6 +118,8 @@ module Aws::ServiceCatalog
118
118
  DescribeProvisioningParametersOutput = Shapes::StructureShape.new(name: 'DescribeProvisioningParametersOutput')
119
119
  DescribeRecordInput = Shapes::StructureShape.new(name: 'DescribeRecordInput')
120
120
  DescribeRecordOutput = Shapes::StructureShape.new(name: 'DescribeRecordOutput')
121
+ DescribeServiceActionExecutionParametersInput = Shapes::StructureShape.new(name: 'DescribeServiceActionExecutionParametersInput')
122
+ DescribeServiceActionExecutionParametersOutput = Shapes::StructureShape.new(name: 'DescribeServiceActionExecutionParametersOutput')
121
123
  DescribeServiceActionInput = Shapes::StructureShape.new(name: 'DescribeServiceActionInput')
122
124
  DescribeServiceActionOutput = Shapes::StructureShape.new(name: 'DescribeServiceActionOutput')
123
125
  DescribeTagOptionInput = Shapes::StructureShape.new(name: 'DescribeTagOptionInput')
@@ -147,6 +149,13 @@ module Aws::ServiceCatalog
147
149
  ExecuteProvisionedProductPlanOutput = Shapes::StructureShape.new(name: 'ExecuteProvisionedProductPlanOutput')
148
150
  ExecuteProvisionedProductServiceActionInput = Shapes::StructureShape.new(name: 'ExecuteProvisionedProductServiceActionInput')
149
151
  ExecuteProvisionedProductServiceActionOutput = Shapes::StructureShape.new(name: 'ExecuteProvisionedProductServiceActionOutput')
152
+ ExecutionParameter = Shapes::StructureShape.new(name: 'ExecutionParameter')
153
+ ExecutionParameterKey = Shapes::StringShape.new(name: 'ExecutionParameterKey')
154
+ ExecutionParameterMap = Shapes::MapShape.new(name: 'ExecutionParameterMap')
155
+ ExecutionParameterType = Shapes::StringShape.new(name: 'ExecutionParameterType')
156
+ ExecutionParameterValue = Shapes::StringShape.new(name: 'ExecutionParameterValue')
157
+ ExecutionParameterValueList = Shapes::ListShape.new(name: 'ExecutionParameterValueList')
158
+ ExecutionParameters = Shapes::ListShape.new(name: 'ExecutionParameters')
150
159
  FailedServiceActionAssociation = Shapes::StructureShape.new(name: 'FailedServiceActionAssociation')
151
160
  FailedServiceActionAssociations = Shapes::ListShape.new(name: 'FailedServiceActionAssociations')
152
161
  GetAWSOrganizationsAccessStatusInput = Shapes::StructureShape.new(name: 'GetAWSOrganizationsAccessStatusInput')
@@ -816,6 +825,14 @@ module Aws::ServiceCatalog
816
825
  DescribeRecordOutput.add_member(:next_page_token, Shapes::ShapeRef.new(shape: PageToken, location_name: "NextPageToken"))
817
826
  DescribeRecordOutput.struct_class = Types::DescribeRecordOutput
818
827
 
828
+ DescribeServiceActionExecutionParametersInput.add_member(:provisioned_product_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProvisionedProductId"))
829
+ DescribeServiceActionExecutionParametersInput.add_member(:service_action_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ServiceActionId"))
830
+ DescribeServiceActionExecutionParametersInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
831
+ DescribeServiceActionExecutionParametersInput.struct_class = Types::DescribeServiceActionExecutionParametersInput
832
+
833
+ DescribeServiceActionExecutionParametersOutput.add_member(:service_action_parameters, Shapes::ShapeRef.new(shape: ExecutionParameters, location_name: "ServiceActionParameters"))
834
+ DescribeServiceActionExecutionParametersOutput.struct_class = Types::DescribeServiceActionExecutionParametersOutput
835
+
819
836
  DescribeServiceActionInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
820
837
  DescribeServiceActionInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
821
838
  DescribeServiceActionInput.struct_class = Types::DescribeServiceActionInput
@@ -883,11 +900,24 @@ module Aws::ServiceCatalog
883
900
  ExecuteProvisionedProductServiceActionInput.add_member(:service_action_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ServiceActionId"))
884
901
  ExecuteProvisionedProductServiceActionInput.add_member(:execute_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ExecuteToken", metadata: {"idempotencyToken"=>true}))
885
902
  ExecuteProvisionedProductServiceActionInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
903
+ ExecuteProvisionedProductServiceActionInput.add_member(:parameters, Shapes::ShapeRef.new(shape: ExecutionParameterMap, location_name: "Parameters"))
886
904
  ExecuteProvisionedProductServiceActionInput.struct_class = Types::ExecuteProvisionedProductServiceActionInput
887
905
 
888
906
  ExecuteProvisionedProductServiceActionOutput.add_member(:record_detail, Shapes::ShapeRef.new(shape: RecordDetail, location_name: "RecordDetail"))
889
907
  ExecuteProvisionedProductServiceActionOutput.struct_class = Types::ExecuteProvisionedProductServiceActionOutput
890
908
 
909
+ ExecutionParameter.add_member(:name, Shapes::ShapeRef.new(shape: ExecutionParameterKey, location_name: "Name"))
910
+ ExecutionParameter.add_member(:type, Shapes::ShapeRef.new(shape: ExecutionParameterType, location_name: "Type"))
911
+ ExecutionParameter.add_member(:default_values, Shapes::ShapeRef.new(shape: ExecutionParameterValueList, location_name: "DefaultValues"))
912
+ ExecutionParameter.struct_class = Types::ExecutionParameter
913
+
914
+ ExecutionParameterMap.key = Shapes::ShapeRef.new(shape: ExecutionParameterKey)
915
+ ExecutionParameterMap.value = Shapes::ShapeRef.new(shape: ExecutionParameterValueList)
916
+
917
+ ExecutionParameterValueList.member = Shapes::ShapeRef.new(shape: ExecutionParameterValue)
918
+
919
+ ExecutionParameters.member = Shapes::ShapeRef.new(shape: ExecutionParameter)
920
+
891
921
  FailedServiceActionAssociation.add_member(:service_action_id, Shapes::ShapeRef.new(shape: Id, location_name: "ServiceActionId"))
892
922
  FailedServiceActionAssociation.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
893
923
  FailedServiceActionAssociation.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
@@ -2072,6 +2102,16 @@ module Aws::ServiceCatalog
2072
2102
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2073
2103
  end)
2074
2104
 
2105
+ api.add_operation(:describe_service_action_execution_parameters, Seahorse::Model::Operation.new.tap do |o|
2106
+ o.name = "DescribeServiceActionExecutionParameters"
2107
+ o.http_method = "POST"
2108
+ o.http_request_uri = "/"
2109
+ o.input = Shapes::ShapeRef.new(shape: DescribeServiceActionExecutionParametersInput)
2110
+ o.output = Shapes::ShapeRef.new(shape: DescribeServiceActionExecutionParametersOutput)
2111
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
2112
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2113
+ end)
2114
+
2075
2115
  api.add_operation(:describe_tag_option, Seahorse::Model::Operation.new.tap do |o|
2076
2116
  o.name = "DescribeTagOption"
2077
2117
  o.http_method = "POST"
@@ -2323,6 +2323,43 @@ module Aws::ServiceCatalog
2323
2323
  include Aws::Structure
2324
2324
  end
2325
2325
 
2326
+ # @note When making an API call, you may pass DescribeServiceActionExecutionParametersInput
2327
+ # data as a hash:
2328
+ #
2329
+ # {
2330
+ # provisioned_product_id: "Id", # required
2331
+ # service_action_id: "Id", # required
2332
+ # accept_language: "AcceptLanguage",
2333
+ # }
2334
+ #
2335
+ # @!attribute [rw] provisioned_product_id
2336
+ # @return [String]
2337
+ #
2338
+ # @!attribute [rw] service_action_id
2339
+ # @return [String]
2340
+ #
2341
+ # @!attribute [rw] accept_language
2342
+ # @return [String]
2343
+ #
2344
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionExecutionParametersInput AWS API Documentation
2345
+ #
2346
+ class DescribeServiceActionExecutionParametersInput < Struct.new(
2347
+ :provisioned_product_id,
2348
+ :service_action_id,
2349
+ :accept_language)
2350
+ include Aws::Structure
2351
+ end
2352
+
2353
+ # @!attribute [rw] service_action_parameters
2354
+ # @return [Array<Types::ExecutionParameter>]
2355
+ #
2356
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionExecutionParametersOutput AWS API Documentation
2357
+ #
2358
+ class DescribeServiceActionExecutionParametersOutput < Struct.new(
2359
+ :service_action_parameters)
2360
+ include Aws::Structure
2361
+ end
2362
+
2326
2363
  # @note When making an API call, you may pass DescribeServiceActionInput
2327
2364
  # data as a hash:
2328
2365
  #
@@ -2658,6 +2695,9 @@ module Aws::ServiceCatalog
2658
2695
  # service_action_id: "Id", # required
2659
2696
  # execute_token: "IdempotencyToken", # required
2660
2697
  # accept_language: "AcceptLanguage",
2698
+ # parameters: {
2699
+ # "ExecutionParameterKey" => ["ExecutionParameterValue"],
2700
+ # },
2661
2701
  # }
2662
2702
  #
2663
2703
  # @!attribute [rw] provisioned_product_id
@@ -2686,13 +2726,17 @@ module Aws::ServiceCatalog
2686
2726
  # * `zh` - Chinese
2687
2727
  # @return [String]
2688
2728
  #
2729
+ # @!attribute [rw] parameters
2730
+ # @return [Hash<String,Array<String>>]
2731
+ #
2689
2732
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductServiceActionInput AWS API Documentation
2690
2733
  #
2691
2734
  class ExecuteProvisionedProductServiceActionInput < Struct.new(
2692
2735
  :provisioned_product_id,
2693
2736
  :service_action_id,
2694
2737
  :execute_token,
2695
- :accept_language)
2738
+ :accept_language,
2739
+ :parameters)
2696
2740
  include Aws::Structure
2697
2741
  end
2698
2742
 
@@ -2708,6 +2752,24 @@ module Aws::ServiceCatalog
2708
2752
  include Aws::Structure
2709
2753
  end
2710
2754
 
2755
+ # @!attribute [rw] name
2756
+ # @return [String]
2757
+ #
2758
+ # @!attribute [rw] type
2759
+ # @return [String]
2760
+ #
2761
+ # @!attribute [rw] default_values
2762
+ # @return [Array<String>]
2763
+ #
2764
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecutionParameter AWS API Documentation
2765
+ #
2766
+ class ExecutionParameter < Struct.new(
2767
+ :name,
2768
+ :type,
2769
+ :default_values)
2770
+ include Aws::Structure
2771
+ end
2772
+
2711
2773
  # An object containing information about the error, along with
2712
2774
  # identifying information about the self-service action and its
2713
2775
  # associations.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-servicecatalog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-01 00:00:00.000000000 Z
11
+ date: 2019-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core