aws-sdk-marketplacecatalog 1.1.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-marketplacecatalog.rb +4 -2
- data/lib/aws-sdk-marketplacecatalog/client.rb +72 -31
- data/lib/aws-sdk-marketplacecatalog/client_api.rb +3 -0
- data/lib/aws-sdk-marketplacecatalog/errors.rb +2 -0
- data/lib/aws-sdk-marketplacecatalog/resource.rb +3 -7
- 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: 638dac6c550f9005f8275dea0c463e4678bc07d7422ebae941a1392d6cd63b8c
|
4
|
+
data.tar.gz: 846f1b74606c15f1ea6e6826399193058c53cc32fb19f72d45e3af999e5c8686
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1506dcc8e465b939bf54a53c4fdc0953fb626d02d60ee7c63d102b6467947b2110193c185fc07758568f4b74b79506dba0bc23377de39079b9584da89fcd3bde
|
7
|
+
data.tar.gz: 912d742de0d6ae2ea57adf9c52fd650af9413eb27625d8283acd86fd36f21dff4ef3315dd8c11b4cdfb44bc02f3278966f2155635ece530fdcb1cdb588b498ad
|
@@ -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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-marketplacecatalog/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::MarketplaceCatalog
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.6.0'
|
49
51
|
|
50
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,6 +26,7 @@ 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
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:marketplacecatalog)
|
|
32
35
|
module Aws::MarketplaceCatalog
|
33
36
|
# An API client for MarketplaceCatalog. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::MarketplaceCatalog::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::MarketplaceCatalog
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::MarketplaceCatalog
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
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
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,15 +116,15 @@ module Aws::MarketplaceCatalog
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# 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.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::MarketplaceCatalog
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::MarketplaceCatalog
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -229,15 +248,19 @@ module Aws::MarketplaceCatalog
|
|
229
248
|
#
|
230
249
|
# @option options [String] :retry_mode ("legacy")
|
231
250
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
251
|
+
#
|
252
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
253
|
+
# no retry mode is provided.
|
254
|
+
#
|
255
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
256
|
+
# This includes support for retry quotas, which limit the number of
|
257
|
+
# unsuccessful retries a client can make.
|
258
|
+
#
|
259
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
260
|
+
# functionality of `standard` mode along with automatic client side
|
261
|
+
# throttling. This is a provisional mode that may change behavior
|
262
|
+
# in the future.
|
263
|
+
#
|
241
264
|
#
|
242
265
|
# @option options [String] :secret_access_key
|
243
266
|
#
|
@@ -265,8 +288,7 @@ module Aws::MarketplaceCatalog
|
|
265
288
|
#
|
266
289
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
290
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
291
|
+
# safely be set per-request on the session.
|
270
292
|
#
|
271
293
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
294
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +300,7 @@ module Aws::MarketplaceCatalog
|
|
278
300
|
# request body. This option has no effect unless the request has
|
279
301
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
302
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
303
|
+
# request on the session.
|
282
304
|
#
|
283
305
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
306
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -385,6 +407,7 @@ module Aws::MarketplaceCatalog
|
|
385
407
|
# resp.change_set[0].change_type #=> String
|
386
408
|
# resp.change_set[0].entity.type #=> String
|
387
409
|
# resp.change_set[0].entity.identifier #=> String
|
410
|
+
# resp.change_set[0].details #=> String
|
388
411
|
# resp.change_set[0].error_detail_list #=> Array
|
389
412
|
# resp.change_set[0].error_detail_list[0].error_code #=> String
|
390
413
|
# resp.change_set[0].error_detail_list[0].error_message #=> String
|
@@ -455,7 +478,7 @@ module Aws::MarketplaceCatalog
|
|
455
478
|
# An array of filter objects.
|
456
479
|
#
|
457
480
|
# @option params [Types::Sort] :sort
|
458
|
-
# An object that contains two attributes, `
|
481
|
+
# An object that contains two attributes, `SortBy` and `SortOrder`.
|
459
482
|
#
|
460
483
|
# @option params [Integer] :max_results
|
461
484
|
# The maximum number of results returned by a single call. This value
|
@@ -471,6 +494,8 @@ module Aws::MarketplaceCatalog
|
|
471
494
|
# * {Types::ListChangeSetsResponse#change_set_summary_list #change_set_summary_list} => Array<Types::ChangeSetSummaryListItem>
|
472
495
|
# * {Types::ListChangeSetsResponse#next_token #next_token} => String
|
473
496
|
#
|
497
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
498
|
+
#
|
474
499
|
# @example Request syntax with placeholder values
|
475
500
|
#
|
476
501
|
# resp = client.list_change_sets({
|
@@ -524,7 +549,7 @@ module Aws::MarketplaceCatalog
|
|
524
549
|
# attributes, `filterName` and `filterValues`.
|
525
550
|
#
|
526
551
|
# @option params [Types::Sort] :sort
|
527
|
-
# An object that contains two attributes, `
|
552
|
+
# An object that contains two attributes, `SortBy` and `SortOrder`.
|
528
553
|
#
|
529
554
|
# @option params [String] :next_token
|
530
555
|
# The value of the next token, if it exists. Null if there are no more
|
@@ -539,6 +564,8 @@ module Aws::MarketplaceCatalog
|
|
539
564
|
# * {Types::ListEntitiesResponse#entity_summary_list #entity_summary_list} => Array<Types::EntitySummary>
|
540
565
|
# * {Types::ListEntitiesResponse#next_token #next_token} => String
|
541
566
|
#
|
567
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
568
|
+
#
|
542
569
|
# @example Request syntax with placeholder values
|
543
570
|
#
|
544
571
|
# resp = client.list_entities({
|
@@ -578,7 +605,21 @@ module Aws::MarketplaceCatalog
|
|
578
605
|
req.send_request(options)
|
579
606
|
end
|
580
607
|
|
581
|
-
# This operation allows you to request changes
|
608
|
+
# This operation allows you to request changes for your entities. Within
|
609
|
+
# a single ChangeSet, you cannot start the same change type against the
|
610
|
+
# same entity multiple times. Additionally, when a ChangeSet is running,
|
611
|
+
# all the entities targeted by the different changes are locked until
|
612
|
+
# the ChangeSet has completed (either succeeded, cancelled, or failed).
|
613
|
+
# If you try to start a ChangeSet containing a change against an entity
|
614
|
+
# that is already locked, you will receive a `ResourceInUseException`.
|
615
|
+
#
|
616
|
+
# For example, you cannot start the ChangeSet described in the
|
617
|
+
# [example][1] below because it contains two changes to execute the same
|
618
|
+
# change type (`AddRevisions`) against the same entity (`entity-id@1)`.
|
619
|
+
#
|
620
|
+
#
|
621
|
+
#
|
622
|
+
# [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/API_StartChangeSet.html#API_StartChangeSet_Examples
|
582
623
|
#
|
583
624
|
# @option params [required, String] :catalog
|
584
625
|
# The catalog related to the request. Fixed value: `AWSMarketplace`
|
@@ -643,7 +684,7 @@ module Aws::MarketplaceCatalog
|
|
643
684
|
params: params,
|
644
685
|
config: config)
|
645
686
|
context[:gem_name] = 'aws-sdk-marketplacecatalog'
|
646
|
-
context[:gem_version] = '1.
|
687
|
+
context[:gem_version] = '1.6.0'
|
647
688
|
Seahorse::Client::Request.new(handlers, context)
|
648
689
|
end
|
649
690
|
|
@@ -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,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::MarketplaceCatalog
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::MarketplaceCatalog::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::MarketplaceCatalog::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::MarketplaceCatalog::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
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.6.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-
|
11
|
+
date: 2020-08-25 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
|