aws-sdk-marketplacecatalog 1.37.0 → 1.39.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-marketplacecatalog/client.rb +46 -5
- data/lib/aws-sdk-marketplacecatalog/client_api.rb +53 -0
- data/lib/aws-sdk-marketplacecatalog/endpoints.rb +14 -0
- data/lib/aws-sdk-marketplacecatalog/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-marketplacecatalog/types.rb +108 -3
- data/lib/aws-sdk-marketplacecatalog.rb +2 -2
- data/sig/client.rbs +489 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +777 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,489 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module MarketplaceCatalog
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _BatchDescribeEntitiesResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDescribeEntitiesResponse]
|
77
|
+
def entity_details: () -> ::Hash[::String, Types::EntityDetail]
|
78
|
+
def errors: () -> ::Hash[::String, Types::BatchDescribeErrorDetail]
|
79
|
+
end
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#batch_describe_entities-instance_method
|
81
|
+
def batch_describe_entities: (
|
82
|
+
entity_request_list: Array[
|
83
|
+
{
|
84
|
+
catalog: ::String,
|
85
|
+
entity_id: ::String
|
86
|
+
},
|
87
|
+
]
|
88
|
+
) -> _BatchDescribeEntitiesResponseSuccess
|
89
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDescribeEntitiesResponseSuccess
|
90
|
+
|
91
|
+
interface _CancelChangeSetResponseSuccess
|
92
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelChangeSetResponse]
|
93
|
+
def change_set_id: () -> ::String
|
94
|
+
def change_set_arn: () -> ::String
|
95
|
+
end
|
96
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#cancel_change_set-instance_method
|
97
|
+
def cancel_change_set: (
|
98
|
+
catalog: ::String,
|
99
|
+
change_set_id: ::String
|
100
|
+
) -> _CancelChangeSetResponseSuccess
|
101
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelChangeSetResponseSuccess
|
102
|
+
|
103
|
+
interface _DeleteResourcePolicyResponseSuccess
|
104
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
|
105
|
+
end
|
106
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#delete_resource_policy-instance_method
|
107
|
+
def delete_resource_policy: (
|
108
|
+
resource_arn: ::String
|
109
|
+
) -> _DeleteResourcePolicyResponseSuccess
|
110
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourcePolicyResponseSuccess
|
111
|
+
|
112
|
+
interface _DescribeChangeSetResponseSuccess
|
113
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChangeSetResponse]
|
114
|
+
def change_set_id: () -> ::String
|
115
|
+
def change_set_arn: () -> ::String
|
116
|
+
def change_set_name: () -> ::String
|
117
|
+
def start_time: () -> ::String
|
118
|
+
def end_time: () -> ::String
|
119
|
+
def status: () -> ("PREPARING" | "APPLYING" | "SUCCEEDED" | "CANCELLED" | "FAILED")
|
120
|
+
def failure_code: () -> ("CLIENT_ERROR" | "SERVER_FAULT")
|
121
|
+
def failure_description: () -> ::String
|
122
|
+
def change_set: () -> ::Array[Types::ChangeSummary]
|
123
|
+
end
|
124
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#describe_change_set-instance_method
|
125
|
+
def describe_change_set: (
|
126
|
+
catalog: ::String,
|
127
|
+
change_set_id: ::String
|
128
|
+
) -> _DescribeChangeSetResponseSuccess
|
129
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetResponseSuccess
|
130
|
+
|
131
|
+
interface _DescribeEntityResponseSuccess
|
132
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEntityResponse]
|
133
|
+
def entity_type: () -> ::String
|
134
|
+
def entity_identifier: () -> ::String
|
135
|
+
def entity_arn: () -> ::String
|
136
|
+
def last_modified_date: () -> ::String
|
137
|
+
def details: () -> ::String
|
138
|
+
def details_document: () -> untyped
|
139
|
+
end
|
140
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#describe_entity-instance_method
|
141
|
+
def describe_entity: (
|
142
|
+
catalog: ::String,
|
143
|
+
entity_id: ::String
|
144
|
+
) -> _DescribeEntityResponseSuccess
|
145
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEntityResponseSuccess
|
146
|
+
|
147
|
+
interface _GetResourcePolicyResponseSuccess
|
148
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
|
149
|
+
def policy: () -> ::String
|
150
|
+
end
|
151
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#get_resource_policy-instance_method
|
152
|
+
def get_resource_policy: (
|
153
|
+
resource_arn: ::String
|
154
|
+
) -> _GetResourcePolicyResponseSuccess
|
155
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
|
156
|
+
|
157
|
+
interface _ListChangeSetsResponseSuccess
|
158
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListChangeSetsResponse]
|
159
|
+
def change_set_summary_list: () -> ::Array[Types::ChangeSetSummaryListItem]
|
160
|
+
def next_token: () -> ::String
|
161
|
+
end
|
162
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#list_change_sets-instance_method
|
163
|
+
def list_change_sets: (
|
164
|
+
catalog: ::String,
|
165
|
+
?filter_list: Array[
|
166
|
+
{
|
167
|
+
name: ::String?,
|
168
|
+
value_list: Array[::String]?
|
169
|
+
},
|
170
|
+
],
|
171
|
+
?sort: {
|
172
|
+
sort_by: ::String?,
|
173
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
174
|
+
},
|
175
|
+
?max_results: ::Integer,
|
176
|
+
?next_token: ::String
|
177
|
+
) -> _ListChangeSetsResponseSuccess
|
178
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChangeSetsResponseSuccess
|
179
|
+
|
180
|
+
interface _ListEntitiesResponseSuccess
|
181
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEntitiesResponse]
|
182
|
+
def entity_summary_list: () -> ::Array[Types::EntitySummary]
|
183
|
+
def next_token: () -> ::String
|
184
|
+
end
|
185
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#list_entities-instance_method
|
186
|
+
def list_entities: (
|
187
|
+
catalog: ::String,
|
188
|
+
entity_type: ::String,
|
189
|
+
?filter_list: Array[
|
190
|
+
{
|
191
|
+
name: ::String?,
|
192
|
+
value_list: Array[::String]?
|
193
|
+
},
|
194
|
+
],
|
195
|
+
?sort: {
|
196
|
+
sort_by: ::String?,
|
197
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
198
|
+
},
|
199
|
+
?next_token: ::String,
|
200
|
+
?max_results: ::Integer,
|
201
|
+
?ownership_type: ("SELF" | "SHARED"),
|
202
|
+
?entity_type_filters: {
|
203
|
+
data_product_filters: {
|
204
|
+
entity_id: {
|
205
|
+
value_list: Array[::String]?
|
206
|
+
}?,
|
207
|
+
product_title: {
|
208
|
+
value_list: Array[::String]?,
|
209
|
+
wild_card_value: ::String?
|
210
|
+
}?,
|
211
|
+
visibility: {
|
212
|
+
value_list: Array[("Limited" | "Public" | "Restricted" | "Unavailable" | "Draft")]?
|
213
|
+
}?,
|
214
|
+
last_modified_date: {
|
215
|
+
date_range: {
|
216
|
+
after_value: ::String?,
|
217
|
+
before_value: ::String?
|
218
|
+
}?
|
219
|
+
}?
|
220
|
+
}?,
|
221
|
+
saa_s_product_filters: {
|
222
|
+
entity_id: {
|
223
|
+
value_list: Array[::String]?
|
224
|
+
}?,
|
225
|
+
product_title: {
|
226
|
+
value_list: Array[::String]?,
|
227
|
+
wild_card_value: ::String?
|
228
|
+
}?,
|
229
|
+
visibility: {
|
230
|
+
value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
|
231
|
+
}?,
|
232
|
+
last_modified_date: {
|
233
|
+
date_range: {
|
234
|
+
after_value: ::String?,
|
235
|
+
before_value: ::String?
|
236
|
+
}?
|
237
|
+
}?
|
238
|
+
}?,
|
239
|
+
ami_product_filters: {
|
240
|
+
entity_id: {
|
241
|
+
value_list: Array[::String]?
|
242
|
+
}?,
|
243
|
+
last_modified_date: {
|
244
|
+
date_range: {
|
245
|
+
after_value: ::String?,
|
246
|
+
before_value: ::String?
|
247
|
+
}?
|
248
|
+
}?,
|
249
|
+
product_title: {
|
250
|
+
value_list: Array[::String]?,
|
251
|
+
wild_card_value: ::String?
|
252
|
+
}?,
|
253
|
+
visibility: {
|
254
|
+
value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
|
255
|
+
}?
|
256
|
+
}?,
|
257
|
+
offer_filters: {
|
258
|
+
entity_id: {
|
259
|
+
value_list: Array[::String]?
|
260
|
+
}?,
|
261
|
+
name: {
|
262
|
+
value_list: Array[::String]?,
|
263
|
+
wild_card_value: ::String?
|
264
|
+
}?,
|
265
|
+
product_id: {
|
266
|
+
value_list: Array[::String]?
|
267
|
+
}?,
|
268
|
+
release_date: {
|
269
|
+
date_range: {
|
270
|
+
after_value: ::String?,
|
271
|
+
before_value: ::String?
|
272
|
+
}?
|
273
|
+
}?,
|
274
|
+
availability_end_date: {
|
275
|
+
date_range: {
|
276
|
+
after_value: ::String?,
|
277
|
+
before_value: ::String?
|
278
|
+
}?
|
279
|
+
}?,
|
280
|
+
buyer_accounts: {
|
281
|
+
wild_card_value: ::String?
|
282
|
+
}?,
|
283
|
+
state: {
|
284
|
+
value_list: Array[("Draft" | "Released")]?
|
285
|
+
}?,
|
286
|
+
targeting: {
|
287
|
+
value_list: Array[("BuyerAccounts" | "ParticipatingPrograms" | "CountryCodes" | "None")]?
|
288
|
+
}?,
|
289
|
+
last_modified_date: {
|
290
|
+
date_range: {
|
291
|
+
after_value: ::String?,
|
292
|
+
before_value: ::String?
|
293
|
+
}?
|
294
|
+
}?
|
295
|
+
}?,
|
296
|
+
container_product_filters: {
|
297
|
+
entity_id: {
|
298
|
+
value_list: Array[::String]?
|
299
|
+
}?,
|
300
|
+
last_modified_date: {
|
301
|
+
date_range: {
|
302
|
+
after_value: ::String?,
|
303
|
+
before_value: ::String?
|
304
|
+
}?
|
305
|
+
}?,
|
306
|
+
product_title: {
|
307
|
+
value_list: Array[::String]?,
|
308
|
+
wild_card_value: ::String?
|
309
|
+
}?,
|
310
|
+
visibility: {
|
311
|
+
value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
|
312
|
+
}?
|
313
|
+
}?,
|
314
|
+
resale_authorization_filters: {
|
315
|
+
entity_id: {
|
316
|
+
value_list: Array[::String]?
|
317
|
+
}?,
|
318
|
+
name: {
|
319
|
+
value_list: Array[::String]?,
|
320
|
+
wild_card_value: ::String?
|
321
|
+
}?,
|
322
|
+
product_id: {
|
323
|
+
value_list: Array[::String]?,
|
324
|
+
wild_card_value: ::String?
|
325
|
+
}?,
|
326
|
+
created_date: {
|
327
|
+
date_range: {
|
328
|
+
after_value: ::String?,
|
329
|
+
before_value: ::String?
|
330
|
+
}?,
|
331
|
+
value_list: Array[::String]?
|
332
|
+
}?,
|
333
|
+
availability_end_date: {
|
334
|
+
date_range: {
|
335
|
+
after_value: ::String?,
|
336
|
+
before_value: ::String?
|
337
|
+
}?,
|
338
|
+
value_list: Array[::String]?
|
339
|
+
}?,
|
340
|
+
manufacturer_account_id: {
|
341
|
+
value_list: Array[::String]?,
|
342
|
+
wild_card_value: ::String?
|
343
|
+
}?,
|
344
|
+
product_name: {
|
345
|
+
value_list: Array[::String]?,
|
346
|
+
wild_card_value: ::String?
|
347
|
+
}?,
|
348
|
+
manufacturer_legal_name: {
|
349
|
+
value_list: Array[::String]?,
|
350
|
+
wild_card_value: ::String?
|
351
|
+
}?,
|
352
|
+
reseller_account_id: {
|
353
|
+
value_list: Array[::String]?,
|
354
|
+
wild_card_value: ::String?
|
355
|
+
}?,
|
356
|
+
reseller_legal_name: {
|
357
|
+
value_list: Array[::String]?,
|
358
|
+
wild_card_value: ::String?
|
359
|
+
}?,
|
360
|
+
status: {
|
361
|
+
value_list: Array[("Draft" | "Active" | "Restricted")]?
|
362
|
+
}?,
|
363
|
+
offer_extended_status: {
|
364
|
+
value_list: Array[::String]?
|
365
|
+
}?,
|
366
|
+
last_modified_date: {
|
367
|
+
date_range: {
|
368
|
+
after_value: ::String?,
|
369
|
+
before_value: ::String?
|
370
|
+
}?
|
371
|
+
}?
|
372
|
+
}?
|
373
|
+
},
|
374
|
+
?entity_type_sort: {
|
375
|
+
data_product_sort: {
|
376
|
+
sort_by: ("EntityId" | "ProductTitle" | "Visibility" | "LastModifiedDate")?,
|
377
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
378
|
+
}?,
|
379
|
+
saa_s_product_sort: {
|
380
|
+
sort_by: ("EntityId" | "ProductTitle" | "Visibility" | "LastModifiedDate")?,
|
381
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
382
|
+
}?,
|
383
|
+
ami_product_sort: {
|
384
|
+
sort_by: ("EntityId" | "LastModifiedDate" | "ProductTitle" | "Visibility")?,
|
385
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
386
|
+
}?,
|
387
|
+
offer_sort: {
|
388
|
+
sort_by: ("EntityId" | "Name" | "ProductId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate")?,
|
389
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
390
|
+
}?,
|
391
|
+
container_product_sort: {
|
392
|
+
sort_by: ("EntityId" | "LastModifiedDate" | "ProductTitle" | "Visibility")?,
|
393
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
394
|
+
}?,
|
395
|
+
resale_authorization_sort: {
|
396
|
+
sort_by: ("EntityId" | "Name" | "ProductId" | "ProductName" | "ManufacturerAccountId" | "ManufacturerLegalName" | "ResellerAccountID" | "ResellerLegalName" | "Status" | "OfferExtendedStatus" | "CreatedDate" | "AvailabilityEndDate" | "LastModifiedDate")?,
|
397
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
398
|
+
}?
|
399
|
+
}
|
400
|
+
) -> _ListEntitiesResponseSuccess
|
401
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitiesResponseSuccess
|
402
|
+
|
403
|
+
interface _ListTagsForResourceResponseSuccess
|
404
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
405
|
+
def resource_arn: () -> ::String
|
406
|
+
def tags: () -> ::Array[Types::Tag]
|
407
|
+
end
|
408
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#list_tags_for_resource-instance_method
|
409
|
+
def list_tags_for_resource: (
|
410
|
+
resource_arn: ::String
|
411
|
+
) -> _ListTagsForResourceResponseSuccess
|
412
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
413
|
+
|
414
|
+
interface _PutResourcePolicyResponseSuccess
|
415
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
|
416
|
+
end
|
417
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#put_resource_policy-instance_method
|
418
|
+
def put_resource_policy: (
|
419
|
+
resource_arn: ::String,
|
420
|
+
policy: ::String
|
421
|
+
) -> _PutResourcePolicyResponseSuccess
|
422
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
|
423
|
+
|
424
|
+
interface _StartChangeSetResponseSuccess
|
425
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartChangeSetResponse]
|
426
|
+
def change_set_id: () -> ::String
|
427
|
+
def change_set_arn: () -> ::String
|
428
|
+
end
|
429
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#start_change_set-instance_method
|
430
|
+
def start_change_set: (
|
431
|
+
catalog: ::String,
|
432
|
+
change_set: Array[
|
433
|
+
{
|
434
|
+
change_type: ::String,
|
435
|
+
entity: {
|
436
|
+
type: ::String,
|
437
|
+
identifier: ::String?
|
438
|
+
},
|
439
|
+
entity_tags: Array[
|
440
|
+
{
|
441
|
+
key: ::String,
|
442
|
+
value: ::String
|
443
|
+
},
|
444
|
+
]?,
|
445
|
+
details: ::String?,
|
446
|
+
details_document: {
|
447
|
+
}?,
|
448
|
+
change_name: ::String?
|
449
|
+
},
|
450
|
+
],
|
451
|
+
?change_set_name: ::String,
|
452
|
+
?client_request_token: ::String,
|
453
|
+
?change_set_tags: Array[
|
454
|
+
{
|
455
|
+
key: ::String,
|
456
|
+
value: ::String
|
457
|
+
},
|
458
|
+
]
|
459
|
+
) -> _StartChangeSetResponseSuccess
|
460
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChangeSetResponseSuccess
|
461
|
+
|
462
|
+
interface _TagResourceResponseSuccess
|
463
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
464
|
+
end
|
465
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#tag_resource-instance_method
|
466
|
+
def tag_resource: (
|
467
|
+
resource_arn: ::String,
|
468
|
+
tags: Array[
|
469
|
+
{
|
470
|
+
key: ::String,
|
471
|
+
value: ::String
|
472
|
+
},
|
473
|
+
]
|
474
|
+
) -> _TagResourceResponseSuccess
|
475
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
476
|
+
|
477
|
+
interface _UntagResourceResponseSuccess
|
478
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
479
|
+
end
|
480
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#untag_resource-instance_method
|
481
|
+
def untag_resource: (
|
482
|
+
resource_arn: ::String,
|
483
|
+
tag_keys: Array[::String]
|
484
|
+
) -> _UntagResourceResponseSuccess
|
485
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
486
|
+
end
|
487
|
+
end
|
488
|
+
end
|
489
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module MarketplaceCatalog
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class InternalServiceException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class ResourceInUseException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ResourceNotSupportedException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module MarketplaceCatalog
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|