aws-sdk-servicecatalog 1.44.0 → 1.49.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
  SHA256:
3
- metadata.gz: c67180a0777794ec88e13cf77eb59ea5053fa110988fa83bea3aebcd5b3d142d
4
- data.tar.gz: 74e37ef106b887e8a8e481837b8b7e17376ec47400dcf0aa611763b280756cd3
3
+ metadata.gz: 1209618eec6f5d9a75468df9feba4301fcc545b149f219f4777383f123bb87cd
4
+ data.tar.gz: 293928bc610a9230ff6e13bbbe2c2dd7628174540ec9f84977a8fcbeef525358
5
5
  SHA512:
6
- metadata.gz: 66a6274ffc92ebac0731cb82e177e4e6b295299662cca61f4c9d21e7d11634c7ee0c871266fbab4edcf36acf1be2c3b3c5e328c285971f7b12c3250d747bfe9d
7
- data.tar.gz: 45c6d02ac9b9239506cdd09060e578e26ca5a2b1cc2ada393e203d5d10e067e55abccfc269dea5c5845062899dc33817f9a44e35df3bbcbb85a966df61ae0fc8
6
+ metadata.gz: 8570808fcf175f50dc76f473bef9f5cd0a3ade6a31d7306cd7fc96a8eee10697d9eb91574f8220ebf66db5ae2bec6d7f1f6f79ed3b42a888724410fa9392f1f3
7
+ data.tar.gz: 17cf666520091744a272cb0d8e11cdb54d452207883cdf9c5cfcf10c8ff0e9453de3a1d552abf2a2e0c9da97005a26febcd6bafcdbd4d64a0b8806111e03df12
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-servicecatalog/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::ServiceCatalog
49
50
 
50
- GEM_VERSION = '1.44.0'
51
+ GEM_VERSION = '1.49.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::ServiceCatalog
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::ServiceCatalog
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -2170,8 +2185,19 @@ module Aws::ServiceCatalog
2170
2185
  #
2171
2186
  # * `zh` - Chinese
2172
2187
  #
2173
- # @option params [required, String] :id
2174
- # The provisioned product identifier.
2188
+ # @option params [String] :id
2189
+ # The provisioned product identifier. You must provide the name or ID,
2190
+ # but not both.
2191
+ #
2192
+ # If you do not provide a name or ID, or you provide both name and ID,
2193
+ # an `InvalidParametersException` will occur.
2194
+ #
2195
+ # @option params [String] :name
2196
+ # The name of the provisioned product. You must provide the name or ID,
2197
+ # but not both.
2198
+ #
2199
+ # If you do not provide a name or ID, or you provide both name and ID,
2200
+ # an `InvalidParametersException` will occur.
2175
2201
  #
2176
2202
  # @return [Types::DescribeProvisionedProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2177
2203
  #
@@ -2182,7 +2208,8 @@ module Aws::ServiceCatalog
2182
2208
  #
2183
2209
  # resp = client.describe_provisioned_product({
2184
2210
  # accept_language: "AcceptLanguage",
2185
- # id: "Id", # required
2211
+ # id: "Id",
2212
+ # name: "ProvisionedProductName",
2186
2213
  # })
2187
2214
  #
2188
2215
  # @example Response structure
@@ -2196,6 +2223,8 @@ module Aws::ServiceCatalog
2196
2223
  # resp.provisioned_product_detail.created_time #=> Time
2197
2224
  # resp.provisioned_product_detail.idempotency_token #=> String
2198
2225
  # resp.provisioned_product_detail.last_record_id #=> String
2226
+ # resp.provisioned_product_detail.last_provisioning_record_id #=> String
2227
+ # resp.provisioned_product_detail.last_successful_provisioning_record_id #=> String
2199
2228
  # resp.provisioned_product_detail.product_id #=> String
2200
2229
  # resp.provisioned_product_detail.provisioning_artifact_id #=> String
2201
2230
  # resp.cloud_watch_dashboards #=> Array
@@ -4348,6 +4377,8 @@ module Aws::ServiceCatalog
4348
4377
  # resp.provisioned_products[0].created_time #=> Time
4349
4378
  # resp.provisioned_products[0].idempotency_token #=> String
4350
4379
  # resp.provisioned_products[0].last_record_id #=> String
4380
+ # resp.provisioned_products[0].last_provisioning_record_id #=> String
4381
+ # resp.provisioned_products[0].last_successful_provisioning_record_id #=> String
4351
4382
  # resp.provisioned_products[0].product_id #=> String
4352
4383
  # resp.provisioned_products[0].provisioning_artifact_id #=> String
4353
4384
  # resp.next_page_token #=> String
@@ -4545,7 +4576,9 @@ module Aws::ServiceCatalog
4545
4576
  # When the key is `SearchQuery`, the searchable fields are `arn`,
4546
4577
  # `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
4547
4578
  # `physicalId`, `productId`, `provisioningArtifact`, `type`, `status`,
4548
- # `tags`, `userArn`, and `userArnSession`.
4579
+ # `tags`, `userArn`, `userArnSession`, `lastProvisioningRecordId`,
4580
+ # `lastSuccessfulProvisioningRecordId`, `productName`, and
4581
+ # `provisioningArtifactName`.
4549
4582
  #
4550
4583
  # Example: `"SearchQuery":["status:AVAILABLE"]`
4551
4584
  #
@@ -4600,12 +4633,16 @@ module Aws::ServiceCatalog
4600
4633
  # resp.provisioned_products[0].created_time #=> Time
4601
4634
  # resp.provisioned_products[0].idempotency_token #=> String
4602
4635
  # resp.provisioned_products[0].last_record_id #=> String
4636
+ # resp.provisioned_products[0].last_provisioning_record_id #=> String
4637
+ # resp.provisioned_products[0].last_successful_provisioning_record_id #=> String
4603
4638
  # resp.provisioned_products[0].tags #=> Array
4604
4639
  # resp.provisioned_products[0].tags[0].key #=> String
4605
4640
  # resp.provisioned_products[0].tags[0].value #=> String
4606
4641
  # resp.provisioned_products[0].physical_id #=> String
4607
4642
  # resp.provisioned_products[0].product_id #=> String
4643
+ # resp.provisioned_products[0].product_name #=> String
4608
4644
  # resp.provisioned_products[0].provisioning_artifact_id #=> String
4645
+ # resp.provisioned_products[0].provisioning_artifact_name #=> String
4609
4646
  # resp.provisioned_products[0].user_arn #=> String
4610
4647
  # resp.provisioned_products[0].user_arn_session #=> String
4611
4648
  # resp.total_results_count #=> Integer
@@ -5411,7 +5448,7 @@ module Aws::ServiceCatalog
5411
5448
  params: params,
5412
5449
  config: config)
5413
5450
  context[:gem_name] = 'aws-sdk-servicecatalog'
5414
- context[:gem_version] = '1.44.0'
5451
+ context[:gem_version] = '1.49.0'
5415
5452
  Seahorse::Client::Request.new(handlers, context)
5416
5453
  end
5417
5454
 
@@ -785,7 +785,8 @@ module Aws::ServiceCatalog
785
785
  DescribeProductViewOutput.struct_class = Types::DescribeProductViewOutput
786
786
 
787
787
  DescribeProvisionedProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
788
- DescribeProvisionedProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
788
+ DescribeProvisionedProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
789
+ DescribeProvisionedProductInput.add_member(:name, Shapes::ShapeRef.new(shape: ProvisionedProductName, location_name: "Name"))
789
790
  DescribeProvisionedProductInput.struct_class = Types::DescribeProvisionedProductInput
790
791
 
791
792
  DescribeProvisionedProductOutput.add_member(:provisioned_product_detail, Shapes::ShapeRef.new(shape: ProvisionedProductDetail, location_name: "ProvisionedProductDetail"))
@@ -1258,10 +1259,14 @@ module Aws::ServiceCatalog
1258
1259
  ProvisionedProductAttribute.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "CreatedTime"))
1259
1260
  ProvisionedProductAttribute.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "IdempotencyToken"))
1260
1261
  ProvisionedProductAttribute.add_member(:last_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastRecordId"))
1262
+ ProvisionedProductAttribute.add_member(:last_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastProvisioningRecordId"))
1263
+ ProvisionedProductAttribute.add_member(:last_successful_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastSuccessfulProvisioningRecordId"))
1261
1264
  ProvisionedProductAttribute.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
1262
1265
  ProvisionedProductAttribute.add_member(:physical_id, Shapes::ShapeRef.new(shape: PhysicalId, location_name: "PhysicalId"))
1263
1266
  ProvisionedProductAttribute.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
1267
+ ProvisionedProductAttribute.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
1264
1268
  ProvisionedProductAttribute.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
1269
+ ProvisionedProductAttribute.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
1265
1270
  ProvisionedProductAttribute.add_member(:user_arn, Shapes::ShapeRef.new(shape: UserArn, location_name: "UserArn"))
1266
1271
  ProvisionedProductAttribute.add_member(:user_arn_session, Shapes::ShapeRef.new(shape: UserArnSession, location_name: "UserArnSession"))
1267
1272
  ProvisionedProductAttribute.struct_class = Types::ProvisionedProductAttribute
@@ -1277,6 +1282,8 @@ module Aws::ServiceCatalog
1277
1282
  ProvisionedProductDetail.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "CreatedTime"))
1278
1283
  ProvisionedProductDetail.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "IdempotencyToken"))
1279
1284
  ProvisionedProductDetail.add_member(:last_record_id, Shapes::ShapeRef.new(shape: LastRequestId, location_name: "LastRecordId"))
1285
+ ProvisionedProductDetail.add_member(:last_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastProvisioningRecordId"))
1286
+ ProvisionedProductDetail.add_member(:last_successful_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastSuccessfulProvisioningRecordId"))
1280
1287
  ProvisionedProductDetail.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
1281
1288
  ProvisionedProductDetail.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
1282
1289
  ProvisionedProductDetail.struct_class = Types::ProvisionedProductDetail
@@ -2110,6 +2117,7 @@ module Aws::ServiceCatalog
2110
2117
  o.input = Shapes::ShapeRef.new(shape: DescribeProvisionedProductInput)
2111
2118
  o.output = Shapes::ShapeRef.new(shape: DescribeProvisionedProductOutput)
2112
2119
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2120
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
2113
2121
  end)
2114
2122
 
2115
2123
  api.add_operation(:describe_provisioned_product_plan, Seahorse::Model::Operation.new.tap do |o|
@@ -2113,12 +2113,19 @@ module Aws::ServiceCatalog
2113
2113
  include Aws::Structure
2114
2114
  end
2115
2115
 
2116
+ # DescribeProvisionedProductAPI input structure. AcceptLanguage -
2117
+ # \[Optional\] The language code for localization. Id - \[Optional\] The
2118
+ # provisioned product identifier. Name - \[Optional\] Another
2119
+ # provisioned product identifier. Customers must provide either Id or
2120
+ # Name.
2121
+ #
2116
2122
  # @note When making an API call, you may pass DescribeProvisionedProductInput
2117
2123
  # data as a hash:
2118
2124
  #
2119
2125
  # {
2120
2126
  # accept_language: "AcceptLanguage",
2121
- # id: "Id", # required
2127
+ # id: "Id",
2128
+ # name: "ProvisionedProductName",
2122
2129
  # }
2123
2130
  #
2124
2131
  # @!attribute [rw] accept_language
@@ -2132,14 +2139,27 @@ module Aws::ServiceCatalog
2132
2139
  # @return [String]
2133
2140
  #
2134
2141
  # @!attribute [rw] id
2135
- # The provisioned product identifier.
2142
+ # The provisioned product identifier. You must provide the name or ID,
2143
+ # but not both.
2144
+ #
2145
+ # If you do not provide a name or ID, or you provide both name and ID,
2146
+ # an `InvalidParametersException` will occur.
2147
+ # @return [String]
2148
+ #
2149
+ # @!attribute [rw] name
2150
+ # The name of the provisioned product. You must provide the name or
2151
+ # ID, but not both.
2152
+ #
2153
+ # If you do not provide a name or ID, or you provide both name and ID,
2154
+ # an `InvalidParametersException` will occur.
2136
2155
  # @return [String]
2137
2156
  #
2138
2157
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductInput AWS API Documentation
2139
2158
  #
2140
2159
  class DescribeProvisionedProductInput < Struct.new(
2141
2160
  :accept_language,
2142
- :id)
2161
+ :id,
2162
+ :name)
2143
2163
  SENSITIVE = []
2144
2164
  include Aws::Structure
2145
2165
  end
@@ -4758,6 +4778,32 @@ module Aws::ServiceCatalog
4758
4778
  # provisioned product.
4759
4779
  # @return [String]
4760
4780
  #
4781
+ # @!attribute [rw] last_provisioning_record_id
4782
+ # The record identifier of the last request performed on this
4783
+ # provisioned product of the following types:
4784
+ #
4785
+ # * ProvisionedProduct
4786
+ #
4787
+ # * UpdateProvisionedProduct
4788
+ #
4789
+ # * ExecuteProvisionedProductPlan
4790
+ #
4791
+ # * TerminateProvisionedProduct
4792
+ # @return [String]
4793
+ #
4794
+ # @!attribute [rw] last_successful_provisioning_record_id
4795
+ # The record identifier of the last successful request performed on
4796
+ # this provisioned product of the following types:
4797
+ #
4798
+ # * ProvisionedProduct
4799
+ #
4800
+ # * UpdateProvisionedProduct
4801
+ #
4802
+ # * ExecuteProvisionedProductPlan
4803
+ #
4804
+ # * TerminateProvisionedProduct
4805
+ # @return [String]
4806
+ #
4761
4807
  # @!attribute [rw] tags
4762
4808
  # One or more tags.
4763
4809
  # @return [Array<Types::Tag>]
@@ -4771,10 +4817,18 @@ module Aws::ServiceCatalog
4771
4817
  # The product identifier.
4772
4818
  # @return [String]
4773
4819
  #
4820
+ # @!attribute [rw] product_name
4821
+ # The name of the product.
4822
+ # @return [String]
4823
+ #
4774
4824
  # @!attribute [rw] provisioning_artifact_id
4775
4825
  # The identifier of the provisioning artifact.
4776
4826
  # @return [String]
4777
4827
  #
4828
+ # @!attribute [rw] provisioning_artifact_name
4829
+ # The name of the provisioning artifact.
4830
+ # @return [String]
4831
+ #
4778
4832
  # @!attribute [rw] user_arn
4779
4833
  # The Amazon Resource Name (ARN) of the IAM user.
4780
4834
  # @return [String]
@@ -4796,10 +4850,14 @@ module Aws::ServiceCatalog
4796
4850
  :created_time,
4797
4851
  :idempotency_token,
4798
4852
  :last_record_id,
4853
+ :last_provisioning_record_id,
4854
+ :last_successful_provisioning_record_id,
4799
4855
  :tags,
4800
4856
  :physical_id,
4801
4857
  :product_id,
4858
+ :product_name,
4802
4859
  :provisioning_artifact_id,
4860
+ :provisioning_artifact_name,
4803
4861
  :user_arn,
4804
4862
  :user_arn_session)
4805
4863
  SENSITIVE = []
@@ -4871,6 +4929,32 @@ module Aws::ServiceCatalog
4871
4929
  # provisioned product.
4872
4930
  # @return [String]
4873
4931
  #
4932
+ # @!attribute [rw] last_provisioning_record_id
4933
+ # The record identifier of the last request performed on this
4934
+ # provisioned product of the following types:
4935
+ #
4936
+ # * ProvisionedProduct
4937
+ #
4938
+ # * UpdateProvisionedProduct
4939
+ #
4940
+ # * ExecuteProvisionedProductPlan
4941
+ #
4942
+ # * TerminateProvisionedProduct
4943
+ # @return [String]
4944
+ #
4945
+ # @!attribute [rw] last_successful_provisioning_record_id
4946
+ # The record identifier of the last successful request performed on
4947
+ # this provisioned product of the following types:
4948
+ #
4949
+ # * ProvisionedProduct
4950
+ #
4951
+ # * UpdateProvisionedProduct
4952
+ #
4953
+ # * ExecuteProvisionedProductPlan
4954
+ #
4955
+ # * TerminateProvisionedProduct
4956
+ # @return [String]
4957
+ #
4874
4958
  # @!attribute [rw] product_id
4875
4959
  # The product identifier. For example, `prod-abcdzk7xy33qa`.
4876
4960
  # @return [String]
@@ -4892,6 +4976,8 @@ module Aws::ServiceCatalog
4892
4976
  :created_time,
4893
4977
  :idempotency_token,
4894
4978
  :last_record_id,
4979
+ :last_provisioning_record_id,
4980
+ :last_successful_provisioning_record_id,
4895
4981
  :product_id,
4896
4982
  :provisioning_artifact_id)
4897
4983
  SENSITIVE = []
@@ -6120,7 +6206,9 @@ module Aws::ServiceCatalog
6120
6206
  # When the key is `SearchQuery`, the searchable fields are `arn`,
6121
6207
  # `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
6122
6208
  # `physicalId`, `productId`, `provisioningArtifact`, `type`, `status`,
6123
- # `tags`, `userArn`, and `userArnSession`.
6209
+ # `tags`, `userArn`, `userArnSession`, `lastProvisioningRecordId`,
6210
+ # `lastSuccessfulProvisioningRecordId`, `productName`, and
6211
+ # `provisioningArtifactName`.
6124
6212
  #
6125
6213
  # Example: `"SearchQuery":["status:AVAILABLE"]`
6126
6214
  # @return [Hash<String,Array<String>>]
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.44.0
4
+ version: 1.49.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: 2020-07-30 00:00:00.000000000 Z
11
+ date: 2020-09-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.99.0
22
+ version: 3.109.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.99.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement