aws-sdk-servicecatalog 1.47.0 → 1.48.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: 6e22ab901a736c9a37f01a0f7543daf6af8fec838bb00c9b75b027ca859e9e3c
4
- data.tar.gz: 498c14b7853b3d1e00bc4703e632d0fe488f046e8fc9db7416cf442d9b267758
3
+ metadata.gz: fb5597c2fb45eb4a3c71de02de7b340278dd755eb5596d6936c1cc43f84f11e7
4
+ data.tar.gz: d73cf5643548534e63127d7cda9c566d8c83c561f621c3e25b37d9121a872f38
5
5
  SHA512:
6
- metadata.gz: d0ba31622a729faf7d354b2ea5a8610652e17f7911dc743dc9dd39e12e4fb7260639e6767080beee9646620ce02c3bb48f7fe875e2a7a9ea5652e5688fe56cdf
7
- data.tar.gz: d7193a015f95fb2edb38a9083cc8778592974817e35d6632a2dd7d807834fd9db72635425b6ed027b6659d759f65e08d6a8cf52e64c9582713b7b081c998e221
6
+ metadata.gz: 1dd22d313b88ee4692f8624c27df43b581a13a2183425baba42deb6054ced672b7a3957f7ad97b39859f7336c8bdcd676b9bad47d320b7171c41b00a1b7d3bca
7
+ data.tar.gz: a3bc3f116592c0c93202a11f60329bbfbb9a7af5914585e4c56baea731a7c2c5b52936d5a41b2def29ead52beb93a8c0f2f01a080fcae85b492a549ad1df587a
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
48
48
  # @!group service
49
49
  module Aws::ServiceCatalog
50
50
 
51
- GEM_VERSION = '1.47.0'
51
+ GEM_VERSION = '1.48.0'
52
52
 
53
53
  end
@@ -2185,8 +2185,19 @@ module Aws::ServiceCatalog
2185
2185
  #
2186
2186
  # * `zh` - Chinese
2187
2187
  #
2188
- # @option params [required, String] :id
2189
- # 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.
2190
2201
  #
2191
2202
  # @return [Types::DescribeProvisionedProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2192
2203
  #
@@ -2197,7 +2208,8 @@ module Aws::ServiceCatalog
2197
2208
  #
2198
2209
  # resp = client.describe_provisioned_product({
2199
2210
  # accept_language: "AcceptLanguage",
2200
- # id: "Id", # required
2211
+ # id: "Id",
2212
+ # name: "ProvisionedProductName",
2201
2213
  # })
2202
2214
  #
2203
2215
  # @example Response structure
@@ -5436,7 +5448,7 @@ module Aws::ServiceCatalog
5436
5448
  params: params,
5437
5449
  config: config)
5438
5450
  context[:gem_name] = 'aws-sdk-servicecatalog'
5439
- context[:gem_version] = '1.47.0'
5451
+ context[:gem_version] = '1.48.0'
5440
5452
  Seahorse::Client::Request.new(handlers, context)
5441
5453
  end
5442
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"))
@@ -2116,6 +2117,7 @@ module Aws::ServiceCatalog
2116
2117
  o.input = Shapes::ShapeRef.new(shape: DescribeProvisionedProductInput)
2117
2118
  o.output = Shapes::ShapeRef.new(shape: DescribeProvisionedProductOutput)
2118
2119
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2120
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
2119
2121
  end)
2120
2122
 
2121
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
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.47.0
4
+ version: 1.48.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-09-15 00:00:00.000000000 Z
11
+ date: 2020-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core