aws-sdk-marketplacecatalog 1.0.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-marketplacecatalog.rb +9 -4
- data/lib/aws-sdk-marketplacecatalog/client.rb +94 -17
- data/lib/aws-sdk-marketplacecatalog/client_api.rb +3 -0
- data/lib/aws-sdk-marketplacecatalog/errors.rb +32 -8
- data/lib/aws-sdk-marketplacecatalog/resource.rb +3 -0
- data/lib/aws-sdk-marketplacecatalog/types.rb +44 -8
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 244891b12c4e00588ace94a90e52df229600c346f832dada5f7038efc0c39544
|
4
|
+
data.tar.gz: 12e84061559a8e66706b323b399ff22eee18530404264c4e6c7be78358472d25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b4c47f9692d78a5d5f60388025e5335b0712dd3e5f42a6b99d226a99565d0a61b9d4c70f54301c7e9b9e6ffbf363a5f96d72dd9645bda2814afedeab03f3842
|
7
|
+
data.tar.gz: fd1c30ffe2d4a0897fe3e231e81b2a9ce55418dc4a392b578d0ec555d27a90e182952267ca02a7f22663b0951c4a344b9f404cd2f867fac15a16053594eaec8d
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-marketplacecatalog/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# marketplace_catalog = Aws::MarketplaceCatalog::Client.new
|
30
|
+
# resp = marketplace_catalog.cancel_change_set(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Marketplace Catalog Service
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Marketplace Catalog Service are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::MarketplaceCatalog::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Marketplace Catalog Service API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-marketplacecatalog/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::MarketplaceCatalog
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.5.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:marketplacecatalog)
|
31
34
|
|
32
35
|
module Aws::MarketplaceCatalog
|
36
|
+
# An API client for MarketplaceCatalog. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::MarketplaceCatalog::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::MarketplaceCatalog
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::MarketplaceCatalog
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::MarketplaceCatalog
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::MarketplaceCatalog
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::MarketplaceCatalog
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::MarketplaceCatalog
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::MarketplaceCatalog
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::MarketplaceCatalog
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::MarketplaceCatalog
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::MarketplaceCatalog
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -334,6 +392,7 @@ module Aws::MarketplaceCatalog
|
|
334
392
|
# resp.change_set[0].change_type #=> String
|
335
393
|
# resp.change_set[0].entity.type #=> String
|
336
394
|
# resp.change_set[0].entity.identifier #=> String
|
395
|
+
# resp.change_set[0].details #=> String
|
337
396
|
# resp.change_set[0].error_detail_list #=> Array
|
338
397
|
# resp.change_set[0].error_detail_list[0].error_code #=> String
|
339
398
|
# resp.change_set[0].error_detail_list[0].error_message #=> String
|
@@ -404,7 +463,7 @@ module Aws::MarketplaceCatalog
|
|
404
463
|
# An array of filter objects.
|
405
464
|
#
|
406
465
|
# @option params [Types::Sort] :sort
|
407
|
-
# An object that contains two attributes, `
|
466
|
+
# An object that contains two attributes, `SortBy` and `SortOrder`.
|
408
467
|
#
|
409
468
|
# @option params [Integer] :max_results
|
410
469
|
# The maximum number of results returned by a single call. This value
|
@@ -420,6 +479,8 @@ module Aws::MarketplaceCatalog
|
|
420
479
|
# * {Types::ListChangeSetsResponse#change_set_summary_list #change_set_summary_list} => Array<Types::ChangeSetSummaryListItem>
|
421
480
|
# * {Types::ListChangeSetsResponse#next_token #next_token} => String
|
422
481
|
#
|
482
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
483
|
+
#
|
423
484
|
# @example Request syntax with placeholder values
|
424
485
|
#
|
425
486
|
# resp = client.list_change_sets({
|
@@ -473,7 +534,7 @@ module Aws::MarketplaceCatalog
|
|
473
534
|
# attributes, `filterName` and `filterValues`.
|
474
535
|
#
|
475
536
|
# @option params [Types::Sort] :sort
|
476
|
-
# An object that contains two attributes, `
|
537
|
+
# An object that contains two attributes, `SortBy` and `SortOrder`.
|
477
538
|
#
|
478
539
|
# @option params [String] :next_token
|
479
540
|
# The value of the next token, if it exists. Null if there are no more
|
@@ -488,6 +549,8 @@ module Aws::MarketplaceCatalog
|
|
488
549
|
# * {Types::ListEntitiesResponse#entity_summary_list #entity_summary_list} => Array<Types::EntitySummary>
|
489
550
|
# * {Types::ListEntitiesResponse#next_token #next_token} => String
|
490
551
|
#
|
552
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
553
|
+
#
|
491
554
|
# @example Request syntax with placeholder values
|
492
555
|
#
|
493
556
|
# resp = client.list_entities({
|
@@ -527,7 +590,21 @@ module Aws::MarketplaceCatalog
|
|
527
590
|
req.send_request(options)
|
528
591
|
end
|
529
592
|
|
530
|
-
# This operation allows you to request changes
|
593
|
+
# This operation allows you to request changes for your entities. Within
|
594
|
+
# a single ChangeSet, you cannot start the same change type against the
|
595
|
+
# same entity multiple times. Additionally, when a ChangeSet is running,
|
596
|
+
# all the entities targeted by the different changes are locked until
|
597
|
+
# the ChangeSet has completed (either succeeded, cancelled, or failed).
|
598
|
+
# If you try to start a ChangeSet containing a change against an entity
|
599
|
+
# that is already locked, you will receive a `ResourceInUseException`.
|
600
|
+
#
|
601
|
+
# For example, you cannot start the ChangeSet described in the
|
602
|
+
# [example][1] below because it contains two changes to execute the same
|
603
|
+
# change type (`AddRevisions`) against the same entity (`entity-id@1)`.
|
604
|
+
#
|
605
|
+
#
|
606
|
+
#
|
607
|
+
# [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/API_StartChangeSet.html#API_StartChangeSet_Examples
|
531
608
|
#
|
532
609
|
# @option params [required, String] :catalog
|
533
610
|
# The catalog related to the request. Fixed value: `AWSMarketplace`
|
@@ -592,7 +669,7 @@ module Aws::MarketplaceCatalog
|
|
592
669
|
params: params,
|
593
670
|
config: config)
|
594
671
|
context[:gem_name] = 'aws-sdk-marketplacecatalog'
|
595
|
-
context[:gem_version] = '1.
|
672
|
+
context[:gem_version] = '1.5.0'
|
596
673
|
Seahorse::Client::Request.new(handlers, context)
|
597
674
|
end
|
598
675
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -96,6 +98,7 @@ module Aws::MarketplaceCatalog
|
|
96
98
|
|
97
99
|
ChangeSummary.add_member(:change_type, Shapes::ShapeRef.new(shape: ChangeType, location_name: "ChangeType"))
|
98
100
|
ChangeSummary.add_member(:entity, Shapes::ShapeRef.new(shape: Entity, location_name: "Entity"))
|
101
|
+
ChangeSummary.add_member(:details, Shapes::ShapeRef.new(shape: Json, location_name: "Details"))
|
99
102
|
ChangeSummary.add_member(:error_detail_list, Shapes::ShapeRef.new(shape: ErrorDetailList, location_name: "ErrorDetailList"))
|
100
103
|
ChangeSummary.struct_class = Types::ChangeSummary
|
101
104
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,36 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::MarketplaceCatalog
|
11
|
+
|
12
|
+
# When MarketplaceCatalog returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::MarketplaceCatalog::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all MarketplaceCatalog errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::MarketplaceCatalog::Errors::ServiceError
|
20
|
+
# # rescues all MarketplaceCatalog API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {AccessDeniedException}
|
31
|
+
# * {InternalServiceException}
|
32
|
+
# * {ResourceInUseException}
|
33
|
+
# * {ResourceNotFoundException}
|
34
|
+
# * {ResourceNotSupportedException}
|
35
|
+
# * {ServiceQuotaExceededException}
|
36
|
+
# * {ThrottlingException}
|
37
|
+
# * {ValidationException}
|
38
|
+
#
|
39
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
40
|
+
# if they are not defined above.
|
9
41
|
module Errors
|
10
42
|
|
11
43
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +55,6 @@ module Aws::MarketplaceCatalog
|
|
23
55
|
def message
|
24
56
|
@message || @data[:message]
|
25
57
|
end
|
26
|
-
|
27
58
|
end
|
28
59
|
|
29
60
|
class InternalServiceException < ServiceError
|
@@ -39,7 +70,6 @@ module Aws::MarketplaceCatalog
|
|
39
70
|
def message
|
40
71
|
@message || @data[:message]
|
41
72
|
end
|
42
|
-
|
43
73
|
end
|
44
74
|
|
45
75
|
class ResourceInUseException < ServiceError
|
@@ -55,7 +85,6 @@ module Aws::MarketplaceCatalog
|
|
55
85
|
def message
|
56
86
|
@message || @data[:message]
|
57
87
|
end
|
58
|
-
|
59
88
|
end
|
60
89
|
|
61
90
|
class ResourceNotFoundException < ServiceError
|
@@ -71,7 +100,6 @@ module Aws::MarketplaceCatalog
|
|
71
100
|
def message
|
72
101
|
@message || @data[:message]
|
73
102
|
end
|
74
|
-
|
75
103
|
end
|
76
104
|
|
77
105
|
class ResourceNotSupportedException < ServiceError
|
@@ -87,7 +115,6 @@ module Aws::MarketplaceCatalog
|
|
87
115
|
def message
|
88
116
|
@message || @data[:message]
|
89
117
|
end
|
90
|
-
|
91
118
|
end
|
92
119
|
|
93
120
|
class ServiceQuotaExceededException < ServiceError
|
@@ -103,7 +130,6 @@ module Aws::MarketplaceCatalog
|
|
103
130
|
def message
|
104
131
|
@message || @data[:message]
|
105
132
|
end
|
106
|
-
|
107
133
|
end
|
108
134
|
|
109
135
|
class ThrottlingException < ServiceError
|
@@ -119,7 +145,6 @@ module Aws::MarketplaceCatalog
|
|
119
145
|
def message
|
120
146
|
@message || @data[:message]
|
121
147
|
end
|
122
|
-
|
123
148
|
end
|
124
149
|
|
125
150
|
class ValidationException < ServiceError
|
@@ -135,7 +160,6 @@ module Aws::MarketplaceCatalog
|
|
135
160
|
def message
|
136
161
|
@message || @data[:message]
|
137
162
|
end
|
138
|
-
|
139
163
|
end
|
140
164
|
|
141
165
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::MarketplaceCatalog
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::MarketplaceCatalog
|
|
17
19
|
#
|
18
20
|
class AccessDeniedException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -43,6 +46,7 @@ module Aws::MarketplaceCatalog
|
|
43
46
|
class CancelChangeSetRequest < Struct.new(
|
44
47
|
:catalog,
|
45
48
|
:change_set_id)
|
49
|
+
SENSITIVE = []
|
46
50
|
include Aws::Structure
|
47
51
|
end
|
48
52
|
|
@@ -59,6 +63,7 @@ module Aws::MarketplaceCatalog
|
|
59
63
|
class CancelChangeSetResponse < Struct.new(
|
60
64
|
:change_set_id,
|
61
65
|
:change_set_arn)
|
66
|
+
SENSITIVE = []
|
62
67
|
include Aws::Structure
|
63
68
|
end
|
64
69
|
|
@@ -97,6 +102,7 @@ module Aws::MarketplaceCatalog
|
|
97
102
|
:change_type,
|
98
103
|
:entity,
|
99
104
|
:details)
|
105
|
+
SENSITIVE = []
|
100
106
|
include Aws::Structure
|
101
107
|
end
|
102
108
|
|
@@ -146,6 +152,7 @@ module Aws::MarketplaceCatalog
|
|
146
152
|
:end_time,
|
147
153
|
:status,
|
148
154
|
:entity_id_list)
|
155
|
+
SENSITIVE = []
|
149
156
|
include Aws::Structure
|
150
157
|
end
|
151
158
|
|
@@ -160,6 +167,11 @@ module Aws::MarketplaceCatalog
|
|
160
167
|
# The entity to be changed.
|
161
168
|
# @return [Types::Entity]
|
162
169
|
#
|
170
|
+
# @!attribute [rw] details
|
171
|
+
# This object contains details specific to the change type of the
|
172
|
+
# requested change.
|
173
|
+
# @return [String]
|
174
|
+
#
|
163
175
|
# @!attribute [rw] error_detail_list
|
164
176
|
# An array of `ErrorDetail` objects associated with the change.
|
165
177
|
# @return [Array<Types::ErrorDetail>]
|
@@ -169,7 +181,9 @@ module Aws::MarketplaceCatalog
|
|
169
181
|
class ChangeSummary < Struct.new(
|
170
182
|
:change_type,
|
171
183
|
:entity,
|
184
|
+
:details,
|
172
185
|
:error_detail_list)
|
186
|
+
SENSITIVE = []
|
173
187
|
include Aws::Structure
|
174
188
|
end
|
175
189
|
|
@@ -196,6 +210,7 @@ module Aws::MarketplaceCatalog
|
|
196
210
|
class DescribeChangeSetRequest < Struct.new(
|
197
211
|
:catalog,
|
198
212
|
:change_set_id)
|
213
|
+
SENSITIVE = []
|
199
214
|
include Aws::Structure
|
200
215
|
end
|
201
216
|
|
@@ -250,6 +265,7 @@ module Aws::MarketplaceCatalog
|
|
250
265
|
:status,
|
251
266
|
:failure_description,
|
252
267
|
:change_set)
|
268
|
+
SENSITIVE = []
|
253
269
|
include Aws::Structure
|
254
270
|
end
|
255
271
|
|
@@ -275,6 +291,7 @@ module Aws::MarketplaceCatalog
|
|
275
291
|
class DescribeEntityRequest < Struct.new(
|
276
292
|
:catalog,
|
277
293
|
:entity_id)
|
294
|
+
SENSITIVE = []
|
278
295
|
include Aws::Structure
|
279
296
|
end
|
280
297
|
|
@@ -309,6 +326,7 @@ module Aws::MarketplaceCatalog
|
|
309
326
|
:entity_arn,
|
310
327
|
:last_modified_date,
|
311
328
|
:details)
|
329
|
+
SENSITIVE = []
|
312
330
|
include Aws::Structure
|
313
331
|
end
|
314
332
|
|
@@ -337,6 +355,7 @@ module Aws::MarketplaceCatalog
|
|
337
355
|
class Entity < Struct.new(
|
338
356
|
:type,
|
339
357
|
:identifier)
|
358
|
+
SENSITIVE = []
|
340
359
|
include Aws::Structure
|
341
360
|
end
|
342
361
|
|
@@ -346,7 +365,7 @@ module Aws::MarketplaceCatalog
|
|
346
365
|
#
|
347
366
|
# @!attribute [rw] name
|
348
367
|
# The name for the entity. This value is not unique. It is defined by
|
349
|
-
# the
|
368
|
+
# the seller.
|
350
369
|
# @return [String]
|
351
370
|
#
|
352
371
|
# @!attribute [rw] entity_type
|
@@ -367,11 +386,11 @@ module Aws::MarketplaceCatalog
|
|
367
386
|
# @return [String]
|
368
387
|
#
|
369
388
|
# @!attribute [rw] visibility
|
370
|
-
# The visibility status of the entity to
|
371
|
-
#
|
389
|
+
# The visibility status of the entity to buyers. This value can be
|
390
|
+
# `Public` (everyone can view the entity), `Limited` (the entity is
|
372
391
|
# visible to limited accounts only), or `Restricted` (the entity was
|
373
|
-
# published and then unpublished and only existing
|
374
|
-
#
|
392
|
+
# published and then unpublished and only existing buyers can view
|
393
|
+
# it).
|
375
394
|
# @return [String]
|
376
395
|
#
|
377
396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntitySummary AWS API Documentation
|
@@ -383,6 +402,7 @@ module Aws::MarketplaceCatalog
|
|
383
402
|
:entity_arn,
|
384
403
|
:last_modified_date,
|
385
404
|
:visibility)
|
405
|
+
SENSITIVE = []
|
386
406
|
include Aws::Structure
|
387
407
|
end
|
388
408
|
|
@@ -401,6 +421,7 @@ module Aws::MarketplaceCatalog
|
|
401
421
|
class ErrorDetail < Struct.new(
|
402
422
|
:error_code,
|
403
423
|
:error_message)
|
424
|
+
SENSITIVE = []
|
404
425
|
include Aws::Structure
|
405
426
|
end
|
406
427
|
|
@@ -455,6 +476,7 @@ module Aws::MarketplaceCatalog
|
|
455
476
|
class Filter < Struct.new(
|
456
477
|
:name,
|
457
478
|
:value_list)
|
479
|
+
SENSITIVE = []
|
458
480
|
include Aws::Structure
|
459
481
|
end
|
460
482
|
|
@@ -467,6 +489,7 @@ module Aws::MarketplaceCatalog
|
|
467
489
|
#
|
468
490
|
class InternalServiceException < Struct.new(
|
469
491
|
:message)
|
492
|
+
SENSITIVE = []
|
470
493
|
include Aws::Structure
|
471
494
|
end
|
472
495
|
|
@@ -498,7 +521,7 @@ module Aws::MarketplaceCatalog
|
|
498
521
|
# @return [Array<Types::Filter>]
|
499
522
|
#
|
500
523
|
# @!attribute [rw] sort
|
501
|
-
# An object that contains two attributes, `
|
524
|
+
# An object that contains two attributes, `SortBy` and `SortOrder`.
|
502
525
|
# @return [Types::Sort]
|
503
526
|
#
|
504
527
|
# @!attribute [rw] max_results
|
@@ -520,6 +543,7 @@ module Aws::MarketplaceCatalog
|
|
520
543
|
:sort,
|
521
544
|
:max_results,
|
522
545
|
:next_token)
|
546
|
+
SENSITIVE = []
|
523
547
|
include Aws::Structure
|
524
548
|
end
|
525
549
|
|
@@ -537,6 +561,7 @@ module Aws::MarketplaceCatalog
|
|
537
561
|
class ListChangeSetsResponse < Struct.new(
|
538
562
|
:change_set_summary_list,
|
539
563
|
:next_token)
|
564
|
+
SENSITIVE = []
|
540
565
|
include Aws::Structure
|
541
566
|
end
|
542
567
|
|
@@ -574,7 +599,7 @@ module Aws::MarketplaceCatalog
|
|
574
599
|
# @return [Array<Types::Filter>]
|
575
600
|
#
|
576
601
|
# @!attribute [rw] sort
|
577
|
-
# An object that contains two attributes, `
|
602
|
+
# An object that contains two attributes, `SortBy` and `SortOrder`.
|
578
603
|
# @return [Types::Sort]
|
579
604
|
#
|
580
605
|
# @!attribute [rw] next_token
|
@@ -596,6 +621,7 @@ module Aws::MarketplaceCatalog
|
|
596
621
|
:sort,
|
597
622
|
:next_token,
|
598
623
|
:max_results)
|
624
|
+
SENSITIVE = []
|
599
625
|
include Aws::Structure
|
600
626
|
end
|
601
627
|
|
@@ -613,6 +639,7 @@ module Aws::MarketplaceCatalog
|
|
613
639
|
class ListEntitiesResponse < Struct.new(
|
614
640
|
:entity_summary_list,
|
615
641
|
:next_token)
|
642
|
+
SENSITIVE = []
|
616
643
|
include Aws::Structure
|
617
644
|
end
|
618
645
|
|
@@ -625,6 +652,7 @@ module Aws::MarketplaceCatalog
|
|
625
652
|
#
|
626
653
|
class ResourceInUseException < Struct.new(
|
627
654
|
:message)
|
655
|
+
SENSITIVE = []
|
628
656
|
include Aws::Structure
|
629
657
|
end
|
630
658
|
|
@@ -637,6 +665,7 @@ module Aws::MarketplaceCatalog
|
|
637
665
|
#
|
638
666
|
class ResourceNotFoundException < Struct.new(
|
639
667
|
:message)
|
668
|
+
SENSITIVE = []
|
640
669
|
include Aws::Structure
|
641
670
|
end
|
642
671
|
|
@@ -649,6 +678,7 @@ module Aws::MarketplaceCatalog
|
|
649
678
|
#
|
650
679
|
class ResourceNotSupportedException < Struct.new(
|
651
680
|
:message)
|
681
|
+
SENSITIVE = []
|
652
682
|
include Aws::Structure
|
653
683
|
end
|
654
684
|
|
@@ -661,10 +691,11 @@ module Aws::MarketplaceCatalog
|
|
661
691
|
#
|
662
692
|
class ServiceQuotaExceededException < Struct.new(
|
663
693
|
:message)
|
694
|
+
SENSITIVE = []
|
664
695
|
include Aws::Structure
|
665
696
|
end
|
666
697
|
|
667
|
-
# An object that contains two attributes, `
|
698
|
+
# An object that contains two attributes, `SortBy` and `SortOrder`.
|
668
699
|
#
|
669
700
|
# @note When making an API call, you may pass Sort
|
670
701
|
# data as a hash:
|
@@ -692,6 +723,7 @@ module Aws::MarketplaceCatalog
|
|
692
723
|
class Sort < Struct.new(
|
693
724
|
:sort_by,
|
694
725
|
:sort_order)
|
726
|
+
SENSITIVE = []
|
695
727
|
include Aws::Structure
|
696
728
|
end
|
697
729
|
|
@@ -738,6 +770,7 @@ module Aws::MarketplaceCatalog
|
|
738
770
|
:change_set,
|
739
771
|
:change_set_name,
|
740
772
|
:client_request_token)
|
773
|
+
SENSITIVE = []
|
741
774
|
include Aws::Structure
|
742
775
|
end
|
743
776
|
|
@@ -755,6 +788,7 @@ module Aws::MarketplaceCatalog
|
|
755
788
|
class StartChangeSetResponse < Struct.new(
|
756
789
|
:change_set_id,
|
757
790
|
:change_set_arn)
|
791
|
+
SENSITIVE = []
|
758
792
|
include Aws::Structure
|
759
793
|
end
|
760
794
|
|
@@ -767,6 +801,7 @@ module Aws::MarketplaceCatalog
|
|
767
801
|
#
|
768
802
|
class ThrottlingException < Struct.new(
|
769
803
|
:message)
|
804
|
+
SENSITIVE = []
|
770
805
|
include Aws::Structure
|
771
806
|
end
|
772
807
|
|
@@ -779,6 +814,7 @@ module Aws::MarketplaceCatalog
|
|
779
814
|
#
|
780
815
|
class ValidationException < Struct.new(
|
781
816
|
:message)
|
817
|
+
SENSITIVE = []
|
782
818
|
include Aws::Structure
|
783
819
|
end
|
784
820
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-marketplacecatalog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.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:
|
11
|
+
date: 2020-06-23 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.
|
22
|
+
version: 3.99.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.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS Marketplace Catalog
|