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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb5597c2fb45eb4a3c71de02de7b340278dd755eb5596d6936c1cc43f84f11e7
|
4
|
+
data.tar.gz: d73cf5643548534e63127d7cda9c566d8c83c561f621c3e25b37d9121a872f38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1dd22d313b88ee4692f8624c27df43b581a13a2183425baba42deb6054ced672b7a3957f7ad97b39859f7336c8bdcd676b9bad47d320b7171c41b00a1b7d3bca
|
7
|
+
data.tar.gz: a3bc3f116592c0c93202a11f60329bbfbb9a7af5914585e4c56baea731a7c2c5b52936d5a41b2def29ead52beb93a8c0f2f01a080fcae85b492a549ad1df587a
|
@@ -2185,8 +2185,19 @@ module Aws::ServiceCatalog
|
|
2185
2185
|
#
|
2186
2186
|
# * `zh` - Chinese
|
2187
2187
|
#
|
2188
|
-
# @option params [
|
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",
|
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.
|
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,
|
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",
|
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.
|
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-
|
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
|