aws-sdk-marketplacecatalog 1.36.0 → 1.38.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -25,6 +25,210 @@ module Aws::MarketplaceCatalog
25
25
  include Aws::Structure
26
26
  end
27
27
 
28
+ # Object that allows filtering on entity id of an AMI product.
29
+ #
30
+ # @!attribute [rw] value_list
31
+ # A string array of unique entity id values to be filtered on.
32
+ # @return [Array<String>]
33
+ #
34
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/AmiProductEntityIdFilter AWS API Documentation
35
+ #
36
+ class AmiProductEntityIdFilter < Struct.new(
37
+ :value_list)
38
+ SENSITIVE = []
39
+ include Aws::Structure
40
+ end
41
+
42
+ # Object containing all the filter fields for AMI products. Client can
43
+ # add a maximum of 8 filters in a single `ListEntities` request.
44
+ #
45
+ # @!attribute [rw] entity_id
46
+ # Unique identifier for the AMI product.
47
+ # @return [Types::AmiProductEntityIdFilter]
48
+ #
49
+ # @!attribute [rw] last_modified_date
50
+ # The last date on which the AMI product was modified.
51
+ # @return [Types::AmiProductLastModifiedDateFilter]
52
+ #
53
+ # @!attribute [rw] product_title
54
+ # The title of the AMI product.
55
+ # @return [Types::AmiProductTitleFilter]
56
+ #
57
+ # @!attribute [rw] visibility
58
+ # The visibility of the AMI product.
59
+ # @return [Types::AmiProductVisibilityFilter]
60
+ #
61
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/AmiProductFilters AWS API Documentation
62
+ #
63
+ class AmiProductFilters < Struct.new(
64
+ :entity_id,
65
+ :last_modified_date,
66
+ :product_title,
67
+ :visibility)
68
+ SENSITIVE = []
69
+ include Aws::Structure
70
+ end
71
+
72
+ # Object that allows filtering based on the last modified date of AMI
73
+ # products.
74
+ #
75
+ # @!attribute [rw] date_range
76
+ # Dates between which the AMI product was last modified.
77
+ # @return [Types::AmiProductLastModifiedDateFilterDateRange]
78
+ #
79
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/AmiProductLastModifiedDateFilter AWS API Documentation
80
+ #
81
+ class AmiProductLastModifiedDateFilter < Struct.new(
82
+ :date_range)
83
+ SENSITIVE = []
84
+ include Aws::Structure
85
+ end
86
+
87
+ # Object that contains date range of the last modified date to be
88
+ # filtered on. You can optionally provide a `BeforeValue` and/or
89
+ # `AfterValue`. Both are inclusive.
90
+ #
91
+ # @!attribute [rw] after_value
92
+ # Date after which the AMI product was last modified.
93
+ # @return [String]
94
+ #
95
+ # @!attribute [rw] before_value
96
+ # Date before which the AMI product was last modified.
97
+ # @return [String]
98
+ #
99
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/AmiProductLastModifiedDateFilterDateRange AWS API Documentation
100
+ #
101
+ class AmiProductLastModifiedDateFilterDateRange < Struct.new(
102
+ :after_value,
103
+ :before_value)
104
+ SENSITIVE = []
105
+ include Aws::Structure
106
+ end
107
+
108
+ # Objects that allows sorting on AMI products based on certain fields
109
+ # and sorting order.
110
+ #
111
+ # @!attribute [rw] sort_by
112
+ # Field to sort the AMI products by.
113
+ # @return [String]
114
+ #
115
+ # @!attribute [rw] sort_order
116
+ # The sorting order. Can be `ASCENDING` or `DESCENDING`. The default
117
+ # value is `DESCENDING`.
118
+ # @return [String]
119
+ #
120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/AmiProductSort AWS API Documentation
121
+ #
122
+ class AmiProductSort < Struct.new(
123
+ :sort_by,
124
+ :sort_order)
125
+ SENSITIVE = []
126
+ include Aws::Structure
127
+ end
128
+
129
+ # Object that contains summarized information about an AMI product.
130
+ #
131
+ # @!attribute [rw] product_title
132
+ # The title of the AMI product.
133
+ # @return [String]
134
+ #
135
+ # @!attribute [rw] visibility
136
+ # The lifecycle of the AMI product.
137
+ # @return [String]
138
+ #
139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/AmiProductSummary AWS API Documentation
140
+ #
141
+ class AmiProductSummary < Struct.new(
142
+ :product_title,
143
+ :visibility)
144
+ SENSITIVE = []
145
+ include Aws::Structure
146
+ end
147
+
148
+ # Object that allows filtering on product title.
149
+ #
150
+ # @!attribute [rw] value_list
151
+ # A string array of unique product title values to be filtered on.
152
+ # @return [Array<String>]
153
+ #
154
+ # @!attribute [rw] wild_card_value
155
+ # A string that will be the `wildCard` input for product tile filter.
156
+ # It matches the provided value as a substring in the actual value.
157
+ # @return [String]
158
+ #
159
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/AmiProductTitleFilter AWS API Documentation
160
+ #
161
+ class AmiProductTitleFilter < Struct.new(
162
+ :value_list,
163
+ :wild_card_value)
164
+ SENSITIVE = []
165
+ include Aws::Structure
166
+ end
167
+
168
+ # Object that allows filtering on the visibility of the product in the
169
+ # AWS Marketplace.
170
+ #
171
+ # @!attribute [rw] value_list
172
+ # A string array of unique visibility values to be filtered on.
173
+ # @return [Array<String>]
174
+ #
175
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/AmiProductVisibilityFilter AWS API Documentation
176
+ #
177
+ class AmiProductVisibilityFilter < Struct.new(
178
+ :value_list)
179
+ SENSITIVE = []
180
+ include Aws::Structure
181
+ end
182
+
183
+ # @!attribute [rw] entity_request_list
184
+ # List of entity IDs and the catalogs the entities are present in.
185
+ # @return [Array<Types::EntityRequest>]
186
+ #
187
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/BatchDescribeEntitiesRequest AWS API Documentation
188
+ #
189
+ class BatchDescribeEntitiesRequest < Struct.new(
190
+ :entity_request_list)
191
+ SENSITIVE = []
192
+ include Aws::Structure
193
+ end
194
+
195
+ # @!attribute [rw] entity_details
196
+ # Details about each entity.
197
+ # @return [Hash<String,Types::EntityDetail>]
198
+ #
199
+ # @!attribute [rw] errors
200
+ # A map of errors returned, with `EntityId` as the key and
201
+ # `errorDetail` as the value.
202
+ # @return [Hash<String,Types::BatchDescribeErrorDetail>]
203
+ #
204
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/BatchDescribeEntitiesResponse AWS API Documentation
205
+ #
206
+ class BatchDescribeEntitiesResponse < Struct.new(
207
+ :entity_details,
208
+ :errors)
209
+ SENSITIVE = []
210
+ include Aws::Structure
211
+ end
212
+
213
+ # An object that contains an error code and error message.
214
+ #
215
+ # @!attribute [rw] error_code
216
+ # The error code returned.
217
+ # @return [String]
218
+ #
219
+ # @!attribute [rw] error_message
220
+ # The error message returned.
221
+ # @return [String]
222
+ #
223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/BatchDescribeErrorDetail AWS API Documentation
224
+ #
225
+ class BatchDescribeErrorDetail < Struct.new(
226
+ :error_code,
227
+ :error_message)
228
+ SENSITIVE = []
229
+ include Aws::Structure
230
+ end
231
+
28
232
  # @!attribute [rw] catalog
29
233
  # Required. The catalog related to the request. Fixed value:
30
234
  # `AWSMarketplace`.
@@ -66,7 +270,7 @@ module Aws::MarketplaceCatalog
66
270
  # @!attribute [rw] change_type
67
271
  # Change types are single string values that describe your intention
68
272
  # for the change. Each change type is unique for each `EntityType`
69
- # provided in the change's scope. For more information on change
273
+ # provided in the change's scope. For more information about change
70
274
  # types available for single-AMI products, see [Working with
71
275
  # single-AMI products][1]. Also, for more information about change
72
276
  # types available for container-based products, see [Working with
@@ -223,151 +427,461 @@ module Aws::MarketplaceCatalog
223
427
  include Aws::Structure
224
428
  end
225
429
 
226
- # @!attribute [rw] resource_arn
227
- # The Amazon Resource Name (ARN) of the entity resource that is
228
- # associated with the resource policy.
229
- # @return [String]
430
+ # Object that allows filtering on entity id of a container product.
230
431
  #
231
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DeleteResourcePolicyRequest AWS API Documentation
432
+ # @!attribute [rw] value_list
433
+ # A string array of unique entity id values to be filtered on.
434
+ # @return [Array<String>]
232
435
  #
233
- class DeleteResourcePolicyRequest < Struct.new(
234
- :resource_arn)
436
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ContainerProductEntityIdFilter AWS API Documentation
437
+ #
438
+ class ContainerProductEntityIdFilter < Struct.new(
439
+ :value_list)
235
440
  SENSITIVE = []
236
441
  include Aws::Structure
237
442
  end
238
443
 
239
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DeleteResourcePolicyResponse AWS API Documentation
444
+ # Object containing all the filter fields for container products. Client
445
+ # can add a maximum of 8 filters in a single `ListEntities` request.
240
446
  #
241
- class DeleteResourcePolicyResponse < Aws::EmptyStructure; end
242
-
243
- # @!attribute [rw] catalog
244
- # Required. The catalog related to the request. Fixed value:
245
- # `AWSMarketplace`
246
- # @return [String]
447
+ # @!attribute [rw] entity_id
448
+ # Unique identifier for the container product.
449
+ # @return [Types::ContainerProductEntityIdFilter]
247
450
  #
248
- # @!attribute [rw] change_set_id
249
- # Required. The unique identifier for the `StartChangeSet` request
250
- # that you want to describe the details for.
251
- # @return [String]
451
+ # @!attribute [rw] last_modified_date
452
+ # The last date on which the container product was modified.
453
+ # @return [Types::ContainerProductLastModifiedDateFilter]
252
454
  #
253
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeChangeSetRequest AWS API Documentation
455
+ # @!attribute [rw] product_title
456
+ # The title of the container product.
457
+ # @return [Types::ContainerProductTitleFilter]
254
458
  #
255
- class DescribeChangeSetRequest < Struct.new(
256
- :catalog,
257
- :change_set_id)
459
+ # @!attribute [rw] visibility
460
+ # The visibility of the container product.
461
+ # @return [Types::ContainerProductVisibilityFilter]
462
+ #
463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ContainerProductFilters AWS API Documentation
464
+ #
465
+ class ContainerProductFilters < Struct.new(
466
+ :entity_id,
467
+ :last_modified_date,
468
+ :product_title,
469
+ :visibility)
258
470
  SENSITIVE = []
259
471
  include Aws::Structure
260
472
  end
261
473
 
262
- # @!attribute [rw] change_set_id
263
- # Required. The unique identifier for the change set referenced in
264
- # this request.
265
- # @return [String]
474
+ # Object that allows filtering based on the last modified date of
475
+ # container products.
266
476
  #
267
- # @!attribute [rw] change_set_arn
268
- # The ARN associated with the unique identifier for the change set
269
- # referenced in this request.
270
- # @return [String]
477
+ # @!attribute [rw] date_range
478
+ # Dates between which the container product was last modified.
479
+ # @return [Types::ContainerProductLastModifiedDateFilterDateRange]
271
480
  #
272
- # @!attribute [rw] change_set_name
273
- # The optional name provided in the `StartChangeSet` request. If you
274
- # do not provide a name, one is set by default.
275
- # @return [String]
481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ContainerProductLastModifiedDateFilter AWS API Documentation
276
482
  #
277
- # @!attribute [rw] start_time
278
- # The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the
279
- # request started.
280
- # @return [String]
483
+ class ContainerProductLastModifiedDateFilter < Struct.new(
484
+ :date_range)
485
+ SENSITIVE = []
486
+ include Aws::Structure
487
+ end
488
+
489
+ # Object that contains date range of the last modified date to be
490
+ # filtered on. You can optionally provide a `BeforeValue` and/or
491
+ # `AfterValue`. Both are inclusive.
281
492
  #
282
- # @!attribute [rw] end_time
283
- # The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the
284
- # request transitioned to a terminal state. The change cannot
285
- # transition to a different state. Null if the request is not in a
286
- # terminal state.
493
+ # @!attribute [rw] after_value
494
+ # Date after which the container product was last modified.
287
495
  # @return [String]
288
496
  #
289
- # @!attribute [rw] status
290
- # The status of the change request.
497
+ # @!attribute [rw] before_value
498
+ # Date before which the container product was last modified.
291
499
  # @return [String]
292
500
  #
293
- # @!attribute [rw] failure_code
294
- # Returned if the change set is in `FAILED` status. Can be either
295
- # `CLIENT_ERROR`, which means that there are issues with the request
296
- # (see the `ErrorDetailList`), or `SERVER_FAULT`, which means that
297
- # there is a problem in the system, and you should retry your request.
298
- # @return [String]
501
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ContainerProductLastModifiedDateFilterDateRange AWS API Documentation
299
502
  #
300
- # @!attribute [rw] failure_description
301
- # Returned if there is a failure on the change set, but that failure
302
- # is not related to any of the changes in the request.
503
+ class ContainerProductLastModifiedDateFilterDateRange < Struct.new(
504
+ :after_value,
505
+ :before_value)
506
+ SENSITIVE = []
507
+ include Aws::Structure
508
+ end
509
+
510
+ # Objects that allows sorting on container products based on certain
511
+ # fields and sorting order.
512
+ #
513
+ # @!attribute [rw] sort_by
514
+ # Field to sort the container products by.
303
515
  # @return [String]
304
516
  #
305
- # @!attribute [rw] change_set
306
- # An array of `ChangeSummary` objects.
307
- # @return [Array<Types::ChangeSummary>]
517
+ # @!attribute [rw] sort_order
518
+ # The sorting order. Can be `ASCENDING` or `DESCENDING`. The default
519
+ # value is `DESCENDING`.
520
+ # @return [String]
308
521
  #
309
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeChangeSetResponse AWS API Documentation
522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ContainerProductSort AWS API Documentation
310
523
  #
311
- class DescribeChangeSetResponse < Struct.new(
312
- :change_set_id,
313
- :change_set_arn,
314
- :change_set_name,
315
- :start_time,
316
- :end_time,
317
- :status,
318
- :failure_code,
319
- :failure_description,
320
- :change_set)
524
+ class ContainerProductSort < Struct.new(
525
+ :sort_by,
526
+ :sort_order)
321
527
  SENSITIVE = []
322
528
  include Aws::Structure
323
529
  end
324
530
 
325
- # @!attribute [rw] catalog
326
- # Required. The catalog related to the request. Fixed value:
327
- # `AWSMarketplace`
531
+ # Object that contains summarized information about a container product.
532
+ #
533
+ # @!attribute [rw] product_title
534
+ # The title of the container product.
328
535
  # @return [String]
329
536
  #
330
- # @!attribute [rw] entity_id
331
- # Required. The unique ID of the entity to describe.
537
+ # @!attribute [rw] visibility
538
+ # The lifecycle of the product.
332
539
  # @return [String]
333
540
  #
334
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeEntityRequest AWS API Documentation
541
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ContainerProductSummary AWS API Documentation
335
542
  #
336
- class DescribeEntityRequest < Struct.new(
337
- :catalog,
338
- :entity_id)
543
+ class ContainerProductSummary < Struct.new(
544
+ :product_title,
545
+ :visibility)
339
546
  SENSITIVE = []
340
547
  include Aws::Structure
341
548
  end
342
549
 
343
- # @!attribute [rw] entity_type
344
- # The named type of the entity, in the format of `EntityType@Version`.
345
- # @return [String]
550
+ # Object that allows filtering on product title.
346
551
  #
347
- # @!attribute [rw] entity_identifier
348
- # The identifier of the entity, in the format of
349
- # `EntityId@RevisionId`.
350
- # @return [String]
552
+ # @!attribute [rw] value_list
553
+ # A string array of unique product title values to be filtered on.
554
+ # @return [Array<String>]
351
555
  #
352
- # @!attribute [rw] entity_arn
353
- # The ARN associated to the unique identifier for the entity
354
- # referenced in this request.
556
+ # @!attribute [rw] wild_card_value
557
+ # A string that will be the `wildCard` input for product tile filter.
558
+ # It matches the provided value as a substring in the actual value.
355
559
  # @return [String]
356
560
  #
357
- # @!attribute [rw] last_modified_date
358
- # The last modified date of the entity, in ISO 8601 format
359
- # (2018-02-27T13:45:22Z).
360
- # @return [String]
561
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ContainerProductTitleFilter AWS API Documentation
361
562
  #
362
- # @!attribute [rw] details
363
- # This stringified JSON object includes the details of the entity.
364
- # @return [String]
563
+ class ContainerProductTitleFilter < Struct.new(
564
+ :value_list,
565
+ :wild_card_value)
566
+ SENSITIVE = []
567
+ include Aws::Structure
568
+ end
569
+
570
+ # Object that allows filtering on the visibility of the product in the
571
+ # AWS Marketplace.
365
572
  #
366
- # @!attribute [rw] details_document
367
- # The JSON value of the details specific to the entity.
368
- # @return [Hash,Array,String,Numeric,Boolean]
573
+ # @!attribute [rw] value_list
574
+ # A string array of unique visibility values to be filtered on.
575
+ # @return [Array<String>]
369
576
  #
370
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeEntityResponse AWS API Documentation
577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ContainerProductVisibilityFilter AWS API Documentation
578
+ #
579
+ class ContainerProductVisibilityFilter < Struct.new(
580
+ :value_list)
581
+ SENSITIVE = []
582
+ include Aws::Structure
583
+ end
584
+
585
+ # Object that allows filtering on entity id of a data product.
586
+ #
587
+ # @!attribute [rw] value_list
588
+ # A string array of unique entity id values to be filtered on.
589
+ # @return [Array<String>]
590
+ #
591
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DataProductEntityIdFilter AWS API Documentation
592
+ #
593
+ class DataProductEntityIdFilter < Struct.new(
594
+ :value_list)
595
+ SENSITIVE = []
596
+ include Aws::Structure
597
+ end
598
+
599
+ # Object containing all the filter fields for data products. Client can
600
+ # add a maximum of 8 filters in a single `ListEntities` request.
601
+ #
602
+ # @!attribute [rw] entity_id
603
+ # Unique identifier for the data product.
604
+ # @return [Types::DataProductEntityIdFilter]
605
+ #
606
+ # @!attribute [rw] product_title
607
+ # The title of the data product.
608
+ # @return [Types::DataProductTitleFilter]
609
+ #
610
+ # @!attribute [rw] visibility
611
+ # The visibility of the data product.
612
+ # @return [Types::DataProductVisibilityFilter]
613
+ #
614
+ # @!attribute [rw] last_modified_date
615
+ # The last date on which the data product was modified.
616
+ # @return [Types::DataProductLastModifiedDateFilter]
617
+ #
618
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DataProductFilters AWS API Documentation
619
+ #
620
+ class DataProductFilters < Struct.new(
621
+ :entity_id,
622
+ :product_title,
623
+ :visibility,
624
+ :last_modified_date)
625
+ SENSITIVE = []
626
+ include Aws::Structure
627
+ end
628
+
629
+ # Object that allows filtering based on the last modified date of data
630
+ # products.
631
+ #
632
+ # @!attribute [rw] date_range
633
+ # Dates between which the data product was last modified.
634
+ # @return [Types::DataProductLastModifiedDateFilterDateRange]
635
+ #
636
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DataProductLastModifiedDateFilter AWS API Documentation
637
+ #
638
+ class DataProductLastModifiedDateFilter < Struct.new(
639
+ :date_range)
640
+ SENSITIVE = []
641
+ include Aws::Structure
642
+ end
643
+
644
+ # Object that contains date range of the last modified date to be
645
+ # filtered on. You can optionally provide a `BeforeValue` and/or
646
+ # `AfterValue`. Both are inclusive.
647
+ #
648
+ # @!attribute [rw] after_value
649
+ # Date after which the data product was last modified.
650
+ # @return [String]
651
+ #
652
+ # @!attribute [rw] before_value
653
+ # Date before which the data product was last modified.
654
+ # @return [String]
655
+ #
656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DataProductLastModifiedDateFilterDateRange AWS API Documentation
657
+ #
658
+ class DataProductLastModifiedDateFilterDateRange < Struct.new(
659
+ :after_value,
660
+ :before_value)
661
+ SENSITIVE = []
662
+ include Aws::Structure
663
+ end
664
+
665
+ # Objects that allows sorting on data products based on certain fields
666
+ # and sorting order.
667
+ #
668
+ # @!attribute [rw] sort_by
669
+ # Field to sort the data products by.
670
+ # @return [String]
671
+ #
672
+ # @!attribute [rw] sort_order
673
+ # The sorting order. Can be `ASCENDING` or `DESCENDING`. The default
674
+ # value is `DESCENDING`.
675
+ # @return [String]
676
+ #
677
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DataProductSort AWS API Documentation
678
+ #
679
+ class DataProductSort < Struct.new(
680
+ :sort_by,
681
+ :sort_order)
682
+ SENSITIVE = []
683
+ include Aws::Structure
684
+ end
685
+
686
+ # Object that contains summarized information about a data product.
687
+ #
688
+ # @!attribute [rw] product_title
689
+ # The title of the data product.
690
+ # @return [String]
691
+ #
692
+ # @!attribute [rw] visibility
693
+ # The lifecycle of the data product.
694
+ # @return [String]
695
+ #
696
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DataProductSummary AWS API Documentation
697
+ #
698
+ class DataProductSummary < Struct.new(
699
+ :product_title,
700
+ :visibility)
701
+ SENSITIVE = []
702
+ include Aws::Structure
703
+ end
704
+
705
+ # Object that allows filtering on product title.
706
+ #
707
+ # @!attribute [rw] value_list
708
+ # A string array of unique product title values to be filtered on.
709
+ # @return [Array<String>]
710
+ #
711
+ # @!attribute [rw] wild_card_value
712
+ # A string that will be the `wildCard` input for product tile filter.
713
+ # It matches the provided value as a substring in the actual value.
714
+ # @return [String]
715
+ #
716
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DataProductTitleFilter AWS API Documentation
717
+ #
718
+ class DataProductTitleFilter < Struct.new(
719
+ :value_list,
720
+ :wild_card_value)
721
+ SENSITIVE = []
722
+ include Aws::Structure
723
+ end
724
+
725
+ # Object that allows filtering on the visibility of the product in the
726
+ # AWS Marketplace.
727
+ #
728
+ # @!attribute [rw] value_list
729
+ # A string array of unique visibility values to be filtered on.
730
+ # @return [Array<String>]
731
+ #
732
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DataProductVisibilityFilter AWS API Documentation
733
+ #
734
+ class DataProductVisibilityFilter < Struct.new(
735
+ :value_list)
736
+ SENSITIVE = []
737
+ include Aws::Structure
738
+ end
739
+
740
+ # @!attribute [rw] resource_arn
741
+ # The Amazon Resource Name (ARN) of the entity resource that is
742
+ # associated with the resource policy.
743
+ # @return [String]
744
+ #
745
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DeleteResourcePolicyRequest AWS API Documentation
746
+ #
747
+ class DeleteResourcePolicyRequest < Struct.new(
748
+ :resource_arn)
749
+ SENSITIVE = []
750
+ include Aws::Structure
751
+ end
752
+
753
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DeleteResourcePolicyResponse AWS API Documentation
754
+ #
755
+ class DeleteResourcePolicyResponse < Aws::EmptyStructure; end
756
+
757
+ # @!attribute [rw] catalog
758
+ # Required. The catalog related to the request. Fixed value:
759
+ # `AWSMarketplace`
760
+ # @return [String]
761
+ #
762
+ # @!attribute [rw] change_set_id
763
+ # Required. The unique identifier for the `StartChangeSet` request
764
+ # that you want to describe the details for.
765
+ # @return [String]
766
+ #
767
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeChangeSetRequest AWS API Documentation
768
+ #
769
+ class DescribeChangeSetRequest < Struct.new(
770
+ :catalog,
771
+ :change_set_id)
772
+ SENSITIVE = []
773
+ include Aws::Structure
774
+ end
775
+
776
+ # @!attribute [rw] change_set_id
777
+ # Required. The unique identifier for the change set referenced in
778
+ # this request.
779
+ # @return [String]
780
+ #
781
+ # @!attribute [rw] change_set_arn
782
+ # The ARN associated with the unique identifier for the change set
783
+ # referenced in this request.
784
+ # @return [String]
785
+ #
786
+ # @!attribute [rw] change_set_name
787
+ # The optional name provided in the `StartChangeSet` request. If you
788
+ # do not provide a name, one is set by default.
789
+ # @return [String]
790
+ #
791
+ # @!attribute [rw] start_time
792
+ # The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the
793
+ # request started.
794
+ # @return [String]
795
+ #
796
+ # @!attribute [rw] end_time
797
+ # The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the
798
+ # request transitioned to a terminal state. The change cannot
799
+ # transition to a different state. Null if the request is not in a
800
+ # terminal state.
801
+ # @return [String]
802
+ #
803
+ # @!attribute [rw] status
804
+ # The status of the change request.
805
+ # @return [String]
806
+ #
807
+ # @!attribute [rw] failure_code
808
+ # Returned if the change set is in `FAILED` status. Can be either
809
+ # `CLIENT_ERROR`, which means that there are issues with the request
810
+ # (see the `ErrorDetailList`), or `SERVER_FAULT`, which means that
811
+ # there is a problem in the system, and you should retry your request.
812
+ # @return [String]
813
+ #
814
+ # @!attribute [rw] failure_description
815
+ # Returned if there is a failure on the change set, but that failure
816
+ # is not related to any of the changes in the request.
817
+ # @return [String]
818
+ #
819
+ # @!attribute [rw] change_set
820
+ # An array of `ChangeSummary` objects.
821
+ # @return [Array<Types::ChangeSummary>]
822
+ #
823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeChangeSetResponse AWS API Documentation
824
+ #
825
+ class DescribeChangeSetResponse < Struct.new(
826
+ :change_set_id,
827
+ :change_set_arn,
828
+ :change_set_name,
829
+ :start_time,
830
+ :end_time,
831
+ :status,
832
+ :failure_code,
833
+ :failure_description,
834
+ :change_set)
835
+ SENSITIVE = []
836
+ include Aws::Structure
837
+ end
838
+
839
+ # @!attribute [rw] catalog
840
+ # Required. The catalog related to the request. Fixed value:
841
+ # `AWSMarketplace`
842
+ # @return [String]
843
+ #
844
+ # @!attribute [rw] entity_id
845
+ # Required. The unique ID of the entity to describe.
846
+ # @return [String]
847
+ #
848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeEntityRequest AWS API Documentation
849
+ #
850
+ class DescribeEntityRequest < Struct.new(
851
+ :catalog,
852
+ :entity_id)
853
+ SENSITIVE = []
854
+ include Aws::Structure
855
+ end
856
+
857
+ # @!attribute [rw] entity_type
858
+ # The named type of the entity, in the format of `EntityType@Version`.
859
+ # @return [String]
860
+ #
861
+ # @!attribute [rw] entity_identifier
862
+ # The identifier of the entity, in the format of
863
+ # `EntityId@RevisionId`.
864
+ # @return [String]
865
+ #
866
+ # @!attribute [rw] entity_arn
867
+ # The ARN associated to the unique identifier for the entity
868
+ # referenced in this request.
869
+ # @return [String]
870
+ #
871
+ # @!attribute [rw] last_modified_date
872
+ # The last modified date of the entity, in ISO 8601 format
873
+ # (2018-02-27T13:45:22Z).
874
+ # @return [String]
875
+ #
876
+ # @!attribute [rw] details
877
+ # This stringified JSON object includes the details of the entity.
878
+ # @return [String]
879
+ #
880
+ # @!attribute [rw] details_document
881
+ # The JSON value of the details specific to the entity.
882
+ # @return [Hash,Array,String,Numeric,Boolean]
883
+ #
884
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeEntityResponse AWS API Documentation
371
885
  #
372
886
  class DescribeEntityResponse < Struct.new(
373
887
  :entity_type,
@@ -400,25 +914,81 @@ module Aws::MarketplaceCatalog
400
914
  include Aws::Structure
401
915
  end
402
916
 
403
- # This object is a container for common summary information about the
404
- # entity. The summary doesn't contain the whole entity structure, but
405
- # it does contain information common across all entities.
406
- #
407
- # @!attribute [rw] name
408
- # The name for the entity. This value is not unique. It is defined by
409
- # the seller.
410
- # @return [String]
917
+ # An object that contains metadata and details about the entity.
411
918
  #
412
919
  # @!attribute [rw] entity_type
413
- # The type of the entity.
920
+ # The entity type of the entity, in the format of
921
+ # `EntityType@Version`.
414
922
  # @return [String]
415
923
  #
416
- # @!attribute [rw] entity_id
417
- # The unique identifier for the entity.
924
+ # @!attribute [rw] entity_arn
925
+ # The Amazon Resource Name (ARN) of the entity.
418
926
  # @return [String]
419
927
  #
420
- # @!attribute [rw] entity_arn
421
- # The ARN associated with the unique identifier for the entity.
928
+ # @!attribute [rw] entity_identifier
929
+ # The ID of the entity, in the format of `EntityId@RevisionId`.
930
+ # @return [String]
931
+ #
932
+ # @!attribute [rw] last_modified_date
933
+ # The last time the entity was modified.
934
+ # @return [String]
935
+ #
936
+ # @!attribute [rw] details_document
937
+ # An object that contains all the details of the entity.
938
+ # @return [Hash,Array,String,Numeric,Boolean]
939
+ #
940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntityDetail AWS API Documentation
941
+ #
942
+ class EntityDetail < Struct.new(
943
+ :entity_type,
944
+ :entity_arn,
945
+ :entity_identifier,
946
+ :last_modified_date,
947
+ :details_document)
948
+ SENSITIVE = []
949
+ include Aws::Structure
950
+ end
951
+
952
+ # An object that contains entity ID and the catalog in which the entity
953
+ # is present.
954
+ #
955
+ # @!attribute [rw] catalog
956
+ # The name of the catalog the entity is present in. The only value at
957
+ # this time is `AWSMarketplace`.
958
+ # @return [String]
959
+ #
960
+ # @!attribute [rw] entity_id
961
+ # The ID of the entity.
962
+ # @return [String]
963
+ #
964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntityRequest AWS API Documentation
965
+ #
966
+ class EntityRequest < Struct.new(
967
+ :catalog,
968
+ :entity_id)
969
+ SENSITIVE = []
970
+ include Aws::Structure
971
+ end
972
+
973
+ # This object is a container for common summary information about the
974
+ # entity. The summary doesn't contain the whole entity structure, but
975
+ # it does contain information common across all entities.
976
+ #
977
+ # @!attribute [rw] name
978
+ # The name for the entity. This value is not unique. It is defined by
979
+ # the seller.
980
+ # @return [String]
981
+ #
982
+ # @!attribute [rw] entity_type
983
+ # The type of the entity.
984
+ # @return [String]
985
+ #
986
+ # @!attribute [rw] entity_id
987
+ # The unique identifier for the entity.
988
+ # @return [String]
989
+ #
990
+ # @!attribute [rw] entity_arn
991
+ # The ARN associated with the unique identifier for the entity.
422
992
  # @return [String]
423
993
  #
424
994
  # @!attribute [rw] last_modified_date
@@ -434,6 +1004,32 @@ module Aws::MarketplaceCatalog
434
1004
  # it).
435
1005
  # @return [String]
436
1006
  #
1007
+ # @!attribute [rw] ami_product_summary
1008
+ # An object that contains summary information about the AMI product.
1009
+ # @return [Types::AmiProductSummary]
1010
+ #
1011
+ # @!attribute [rw] container_product_summary
1012
+ # An object that contains summary information about the container
1013
+ # product.
1014
+ # @return [Types::ContainerProductSummary]
1015
+ #
1016
+ # @!attribute [rw] data_product_summary
1017
+ # An object that contains summary information about the data product.
1018
+ # @return [Types::DataProductSummary]
1019
+ #
1020
+ # @!attribute [rw] saa_s_product_summary
1021
+ # An object that contains summary information about the SaaS product.
1022
+ # @return [Types::SaaSProductSummary]
1023
+ #
1024
+ # @!attribute [rw] offer_summary
1025
+ # An object that contains summary information about the offer.
1026
+ # @return [Types::OfferSummary]
1027
+ #
1028
+ # @!attribute [rw] resale_authorization_summary
1029
+ # An object that contains summary information about the Resale
1030
+ # Authorization.
1031
+ # @return [Types::ResaleAuthorizationSummary]
1032
+ #
437
1033
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntitySummary AWS API Documentation
438
1034
  #
439
1035
  class EntitySummary < Struct.new(
@@ -442,328 +1038,1405 @@ module Aws::MarketplaceCatalog
442
1038
  :entity_id,
443
1039
  :entity_arn,
444
1040
  :last_modified_date,
445
- :visibility)
1041
+ :visibility,
1042
+ :ami_product_summary,
1043
+ :container_product_summary,
1044
+ :data_product_summary,
1045
+ :saa_s_product_summary,
1046
+ :offer_summary,
1047
+ :resale_authorization_summary)
1048
+ SENSITIVE = []
1049
+ include Aws::Structure
1050
+ end
1051
+
1052
+ # Object containing all the filter fields per entity type.
1053
+ #
1054
+ # @note EntityTypeFilters is a union - when making an API calls you must set exactly one of the members.
1055
+ #
1056
+ # @!attribute [rw] data_product_filters
1057
+ # A filter for data products.
1058
+ # @return [Types::DataProductFilters]
1059
+ #
1060
+ # @!attribute [rw] saa_s_product_filters
1061
+ # A filter for SaaS products.
1062
+ # @return [Types::SaaSProductFilters]
1063
+ #
1064
+ # @!attribute [rw] ami_product_filters
1065
+ # A filter for AMI products.
1066
+ # @return [Types::AmiProductFilters]
1067
+ #
1068
+ # @!attribute [rw] offer_filters
1069
+ # A filter for offers.
1070
+ # @return [Types::OfferFilters]
1071
+ #
1072
+ # @!attribute [rw] container_product_filters
1073
+ # A filter for container products.
1074
+ # @return [Types::ContainerProductFilters]
1075
+ #
1076
+ # @!attribute [rw] resale_authorization_filters
1077
+ # A filter for Resale Authorizations.
1078
+ # @return [Types::ResaleAuthorizationFilters]
1079
+ #
1080
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntityTypeFilters AWS API Documentation
1081
+ #
1082
+ class EntityTypeFilters < Struct.new(
1083
+ :data_product_filters,
1084
+ :saa_s_product_filters,
1085
+ :ami_product_filters,
1086
+ :offer_filters,
1087
+ :container_product_filters,
1088
+ :resale_authorization_filters,
1089
+ :unknown)
1090
+ SENSITIVE = []
1091
+ include Aws::Structure
1092
+ include Aws::Structure::Union
1093
+
1094
+ class DataProductFilters < EntityTypeFilters; end
1095
+ class SaaSProductFilters < EntityTypeFilters; end
1096
+ class AmiProductFilters < EntityTypeFilters; end
1097
+ class OfferFilters < EntityTypeFilters; end
1098
+ class ContainerProductFilters < EntityTypeFilters; end
1099
+ class ResaleAuthorizationFilters < EntityTypeFilters; end
1100
+ class Unknown < EntityTypeFilters; end
1101
+ end
1102
+
1103
+ # Object containing all the sort fields per entity type.
1104
+ #
1105
+ # @note EntityTypeSort is a union - when making an API calls you must set exactly one of the members.
1106
+ #
1107
+ # @!attribute [rw] data_product_sort
1108
+ # A sort for data products.
1109
+ # @return [Types::DataProductSort]
1110
+ #
1111
+ # @!attribute [rw] saa_s_product_sort
1112
+ # A sort for SaaS products.
1113
+ # @return [Types::SaaSProductSort]
1114
+ #
1115
+ # @!attribute [rw] ami_product_sort
1116
+ # A sort for AMI products.
1117
+ # @return [Types::AmiProductSort]
1118
+ #
1119
+ # @!attribute [rw] offer_sort
1120
+ # A sort for offers.
1121
+ # @return [Types::OfferSort]
1122
+ #
1123
+ # @!attribute [rw] container_product_sort
1124
+ # A sort for container products.
1125
+ # @return [Types::ContainerProductSort]
1126
+ #
1127
+ # @!attribute [rw] resale_authorization_sort
1128
+ # A sort for Resale Authorizations.
1129
+ # @return [Types::ResaleAuthorizationSort]
1130
+ #
1131
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntityTypeSort AWS API Documentation
1132
+ #
1133
+ class EntityTypeSort < Struct.new(
1134
+ :data_product_sort,
1135
+ :saa_s_product_sort,
1136
+ :ami_product_sort,
1137
+ :offer_sort,
1138
+ :container_product_sort,
1139
+ :resale_authorization_sort,
1140
+ :unknown)
1141
+ SENSITIVE = []
1142
+ include Aws::Structure
1143
+ include Aws::Structure::Union
1144
+
1145
+ class DataProductSort < EntityTypeSort; end
1146
+ class SaaSProductSort < EntityTypeSort; end
1147
+ class AmiProductSort < EntityTypeSort; end
1148
+ class OfferSort < EntityTypeSort; end
1149
+ class ContainerProductSort < EntityTypeSort; end
1150
+ class ResaleAuthorizationSort < EntityTypeSort; end
1151
+ class Unknown < EntityTypeSort; end
1152
+ end
1153
+
1154
+ # Details about the error.
1155
+ #
1156
+ # @!attribute [rw] error_code
1157
+ # The error code that identifies the type of error.
1158
+ # @return [String]
1159
+ #
1160
+ # @!attribute [rw] error_message
1161
+ # The message for the error.
1162
+ # @return [String]
1163
+ #
1164
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ErrorDetail AWS API Documentation
1165
+ #
1166
+ class ErrorDetail < Struct.new(
1167
+ :error_code,
1168
+ :error_message)
1169
+ SENSITIVE = []
1170
+ include Aws::Structure
1171
+ end
1172
+
1173
+ # A filter object, used to optionally filter results from calls to the
1174
+ # `ListEntities` and `ListChangeSets` actions.
1175
+ #
1176
+ # @!attribute [rw] name
1177
+ # For `ListEntities`, the supported value for this is an `EntityId`.
1178
+ #
1179
+ # For `ListChangeSets`, the supported values are as follows:
1180
+ # @return [String]
1181
+ #
1182
+ # @!attribute [rw] value_list
1183
+ # `ListEntities` - This is a list of unique `EntityId`s.
1184
+ #
1185
+ # `ListChangeSets` - The supported filter names and associated
1186
+ # `ValueList`s is as follows:
1187
+ #
1188
+ # * `ChangeSetName` - The supported `ValueList` is a list of
1189
+ # non-unique `ChangeSetName`s. These are defined when you call the
1190
+ # `StartChangeSet` action.
1191
+ #
1192
+ # * `Status` - The supported `ValueList` is a list of statuses for all
1193
+ # change set requests.
1194
+ #
1195
+ # * `EntityId` - The supported `ValueList` is a list of unique
1196
+ # `EntityId`s.
1197
+ #
1198
+ # * `BeforeStartTime` - The supported `ValueList` is a list of all
1199
+ # change sets that started before the filter value.
1200
+ #
1201
+ # * `AfterStartTime` - The supported `ValueList` is a list of all
1202
+ # change sets that started after the filter value.
1203
+ #
1204
+ # * `BeforeEndTime` - The supported `ValueList` is a list of all
1205
+ # change sets that ended before the filter value.
1206
+ #
1207
+ # * `AfterEndTime` - The supported `ValueList` is a list of all change
1208
+ # sets that ended after the filter value.
1209
+ # @return [Array<String>]
1210
+ #
1211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/Filter AWS API Documentation
1212
+ #
1213
+ class Filter < Struct.new(
1214
+ :name,
1215
+ :value_list)
1216
+ SENSITIVE = []
1217
+ include Aws::Structure
1218
+ end
1219
+
1220
+ # @!attribute [rw] resource_arn
1221
+ # The Amazon Resource Name (ARN) of the entity resource that is
1222
+ # associated with the resource policy.
1223
+ # @return [String]
1224
+ #
1225
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/GetResourcePolicyRequest AWS API Documentation
1226
+ #
1227
+ class GetResourcePolicyRequest < Struct.new(
1228
+ :resource_arn)
1229
+ SENSITIVE = []
1230
+ include Aws::Structure
1231
+ end
1232
+
1233
+ # @!attribute [rw] policy
1234
+ # The policy document to set; formatted in JSON.
1235
+ # @return [String]
1236
+ #
1237
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/GetResourcePolicyResponse AWS API Documentation
1238
+ #
1239
+ class GetResourcePolicyResponse < Struct.new(
1240
+ :policy)
1241
+ SENSITIVE = []
1242
+ include Aws::Structure
1243
+ end
1244
+
1245
+ # There was an internal service exception.
1246
+ #
1247
+ # HTTP status code: 500
1248
+ #
1249
+ # @!attribute [rw] message
1250
+ # @return [String]
1251
+ #
1252
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/InternalServiceException AWS API Documentation
1253
+ #
1254
+ class InternalServiceException < Struct.new(
1255
+ :message)
1256
+ SENSITIVE = []
1257
+ include Aws::Structure
1258
+ end
1259
+
1260
+ # @!attribute [rw] catalog
1261
+ # The catalog related to the request. Fixed value: `AWSMarketplace`
1262
+ # @return [String]
1263
+ #
1264
+ # @!attribute [rw] filter_list
1265
+ # An array of filter objects.
1266
+ # @return [Array<Types::Filter>]
1267
+ #
1268
+ # @!attribute [rw] sort
1269
+ # An object that contains two attributes, `SortBy` and `SortOrder`.
1270
+ # @return [Types::Sort]
1271
+ #
1272
+ # @!attribute [rw] max_results
1273
+ # The maximum number of results returned by a single call. This value
1274
+ # must be provided in the next call to retrieve the next set of
1275
+ # results. By default, this value is 20.
1276
+ # @return [Integer]
1277
+ #
1278
+ # @!attribute [rw] next_token
1279
+ # The token value retrieved from a previous call to access the next
1280
+ # page of results.
1281
+ # @return [String]
1282
+ #
1283
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListChangeSetsRequest AWS API Documentation
1284
+ #
1285
+ class ListChangeSetsRequest < Struct.new(
1286
+ :catalog,
1287
+ :filter_list,
1288
+ :sort,
1289
+ :max_results,
1290
+ :next_token)
1291
+ SENSITIVE = []
1292
+ include Aws::Structure
1293
+ end
1294
+
1295
+ # @!attribute [rw] change_set_summary_list
1296
+ # Array of `ChangeSetSummaryListItem` objects.
1297
+ # @return [Array<Types::ChangeSetSummaryListItem>]
1298
+ #
1299
+ # @!attribute [rw] next_token
1300
+ # The value of the next token, if it exists. Null if there are no more
1301
+ # results.
1302
+ # @return [String]
1303
+ #
1304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListChangeSetsResponse AWS API Documentation
1305
+ #
1306
+ class ListChangeSetsResponse < Struct.new(
1307
+ :change_set_summary_list,
1308
+ :next_token)
1309
+ SENSITIVE = []
1310
+ include Aws::Structure
1311
+ end
1312
+
1313
+ # @!attribute [rw] catalog
1314
+ # The catalog related to the request. Fixed value: `AWSMarketplace`
1315
+ # @return [String]
1316
+ #
1317
+ # @!attribute [rw] entity_type
1318
+ # The type of entities to retrieve. Valid values are: `AmiProduct`,
1319
+ # `ContainerProduct`, `DataProduct`, `SaaSProduct`,
1320
+ # `ProcurementPolicy`, `Experience`, `Audience`, `BrandingSettings`,
1321
+ # `Offer`, `Seller`, `ResaleAuthorization`.
1322
+ # @return [String]
1323
+ #
1324
+ # @!attribute [rw] filter_list
1325
+ # An array of filter objects. Each filter object contains two
1326
+ # attributes, `filterName` and `filterValues`.
1327
+ # @return [Array<Types::Filter>]
1328
+ #
1329
+ # @!attribute [rw] sort
1330
+ # An object that contains two attributes, `SortBy` and `SortOrder`.
1331
+ # @return [Types::Sort]
1332
+ #
1333
+ # @!attribute [rw] next_token
1334
+ # The value of the next token, if it exists. Null if there are no more
1335
+ # results.
1336
+ # @return [String]
1337
+ #
1338
+ # @!attribute [rw] max_results
1339
+ # Specifies the upper limit of the elements on a single page. If a
1340
+ # value isn't provided, the default value is 20.
1341
+ # @return [Integer]
1342
+ #
1343
+ # @!attribute [rw] ownership_type
1344
+ # Filters the returned set of entities based on their owner. The
1345
+ # default is `SELF`. To list entities shared with you through AWS
1346
+ # Resource Access Manager (AWS RAM), set to `SHARED`. Entities shared
1347
+ # through the AWS Marketplace Catalog API `PutResourcePolicy`
1348
+ # operation can't be discovered through the `SHARED` parameter.
1349
+ # @return [String]
1350
+ #
1351
+ # @!attribute [rw] entity_type_filters
1352
+ # A Union object containing filter shapes for all `EntityType`s. Each
1353
+ # `EntityTypeFilter` shape will have filters applicable for that
1354
+ # `EntityType` that can be used to search or filter entities.
1355
+ # @return [Types::EntityTypeFilters]
1356
+ #
1357
+ # @!attribute [rw] entity_type_sort
1358
+ # A Union object containing `Sort` shapes for all `EntityType`s. Each
1359
+ # `EntityTypeSort` shape will have `SortBy` and `SortOrder` applicable
1360
+ # for fields on that `EntityType`. This can be used to sort the
1361
+ # results of the filter query.
1362
+ # @return [Types::EntityTypeSort]
1363
+ #
1364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListEntitiesRequest AWS API Documentation
1365
+ #
1366
+ class ListEntitiesRequest < Struct.new(
1367
+ :catalog,
1368
+ :entity_type,
1369
+ :filter_list,
1370
+ :sort,
1371
+ :next_token,
1372
+ :max_results,
1373
+ :ownership_type,
1374
+ :entity_type_filters,
1375
+ :entity_type_sort)
1376
+ SENSITIVE = []
1377
+ include Aws::Structure
1378
+ end
1379
+
1380
+ # @!attribute [rw] entity_summary_list
1381
+ # Array of `EntitySummary` objects.
1382
+ # @return [Array<Types::EntitySummary>]
1383
+ #
1384
+ # @!attribute [rw] next_token
1385
+ # The value of the next token if it exists. Null if there is no more
1386
+ # result.
1387
+ # @return [String]
1388
+ #
1389
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListEntitiesResponse AWS API Documentation
1390
+ #
1391
+ class ListEntitiesResponse < Struct.new(
1392
+ :entity_summary_list,
1393
+ :next_token)
1394
+ SENSITIVE = []
1395
+ include Aws::Structure
1396
+ end
1397
+
1398
+ # @!attribute [rw] resource_arn
1399
+ # Required. The Amazon Resource Name (ARN) associated with the
1400
+ # resource you want to list tags on.
1401
+ # @return [String]
1402
+ #
1403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListTagsForResourceRequest AWS API Documentation
1404
+ #
1405
+ class ListTagsForResourceRequest < Struct.new(
1406
+ :resource_arn)
1407
+ SENSITIVE = []
1408
+ include Aws::Structure
1409
+ end
1410
+
1411
+ # @!attribute [rw] resource_arn
1412
+ # Required. The ARN associated with the resource you want to list tags
1413
+ # on.
1414
+ # @return [String]
1415
+ #
1416
+ # @!attribute [rw] tags
1417
+ # Required. A list of objects specifying each key name and value.
1418
+ # Number of objects allowed: 1-50.
1419
+ # @return [Array<Types::Tag>]
1420
+ #
1421
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListTagsForResourceResponse AWS API Documentation
1422
+ #
1423
+ class ListTagsForResourceResponse < Struct.new(
1424
+ :resource_arn,
1425
+ :tags)
1426
+ SENSITIVE = []
1427
+ include Aws::Structure
1428
+ end
1429
+
1430
+ # Allows filtering on the `AvailabilityEndDate` of an offer.
1431
+ #
1432
+ # @!attribute [rw] date_range
1433
+ # Allows filtering on the `AvailabilityEndDate` of an offer with date
1434
+ # range as input.
1435
+ # @return [Types::OfferAvailabilityEndDateFilterDateRange]
1436
+ #
1437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferAvailabilityEndDateFilter AWS API Documentation
1438
+ #
1439
+ class OfferAvailabilityEndDateFilter < Struct.new(
1440
+ :date_range)
1441
+ SENSITIVE = []
1442
+ include Aws::Structure
1443
+ end
1444
+
1445
+ # Allows filtering on the `AvailabilityEndDate` of an offer with date
1446
+ # range as input.
1447
+ #
1448
+ # @!attribute [rw] after_value
1449
+ # Allows filtering on the `AvailabilityEndDate` of an offer after a
1450
+ # date.
1451
+ # @return [String]
1452
+ #
1453
+ # @!attribute [rw] before_value
1454
+ # Allows filtering on the `AvailabilityEndDate` of an offer before a
1455
+ # date.
1456
+ # @return [String]
1457
+ #
1458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferAvailabilityEndDateFilterDateRange AWS API Documentation
1459
+ #
1460
+ class OfferAvailabilityEndDateFilterDateRange < Struct.new(
1461
+ :after_value,
1462
+ :before_value)
1463
+ SENSITIVE = []
1464
+ include Aws::Structure
1465
+ end
1466
+
1467
+ # Allows filtering on the `BuyerAccounts` of an offer.
1468
+ #
1469
+ # @!attribute [rw] wild_card_value
1470
+ # Allows filtering on the `BuyerAccounts` of an offer with wild card
1471
+ # input.
1472
+ # @return [String]
1473
+ #
1474
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferBuyerAccountsFilter AWS API Documentation
1475
+ #
1476
+ class OfferBuyerAccountsFilter < Struct.new(
1477
+ :wild_card_value)
1478
+ SENSITIVE = []
1479
+ include Aws::Structure
1480
+ end
1481
+
1482
+ # Allows filtering on the entity id of an offer.
1483
+ #
1484
+ # @!attribute [rw] value_list
1485
+ # Allows filtering on entity id of an offer with list input.
1486
+ # @return [Array<String>]
1487
+ #
1488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferEntityIdFilter AWS API Documentation
1489
+ #
1490
+ class OfferEntityIdFilter < Struct.new(
1491
+ :value_list)
1492
+ SENSITIVE = []
1493
+ include Aws::Structure
1494
+ end
1495
+
1496
+ # A filter for offers entity.
1497
+ #
1498
+ # @!attribute [rw] entity_id
1499
+ # Allows filtering on `EntityId` of an offer.
1500
+ # @return [Types::OfferEntityIdFilter]
1501
+ #
1502
+ # @!attribute [rw] name
1503
+ # Allows filtering on the `Name` of an offer.
1504
+ # @return [Types::OfferNameFilter]
1505
+ #
1506
+ # @!attribute [rw] product_id
1507
+ # Allows filtering on the `ProductId` of an offer.
1508
+ # @return [Types::OfferProductIdFilter]
1509
+ #
1510
+ # @!attribute [rw] release_date
1511
+ # Allows filtering on the `ReleaseDate` of an offer.
1512
+ # @return [Types::OfferReleaseDateFilter]
1513
+ #
1514
+ # @!attribute [rw] availability_end_date
1515
+ # Allows filtering on the `AvailabilityEndDate` of an offer.
1516
+ # @return [Types::OfferAvailabilityEndDateFilter]
1517
+ #
1518
+ # @!attribute [rw] buyer_accounts
1519
+ # Allows filtering on the `BuyerAccounts` of an offer.
1520
+ # @return [Types::OfferBuyerAccountsFilter]
1521
+ #
1522
+ # @!attribute [rw] state
1523
+ # Allows filtering on the `State` of an offer.
1524
+ # @return [Types::OfferStateFilter]
1525
+ #
1526
+ # @!attribute [rw] targeting
1527
+ # Allows filtering on the `Targeting` of an offer.
1528
+ # @return [Types::OfferTargetingFilter]
1529
+ #
1530
+ # @!attribute [rw] last_modified_date
1531
+ # Allows filtering on the `LastModifiedDate` of an offer.
1532
+ # @return [Types::OfferLastModifiedDateFilter]
1533
+ #
1534
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferFilters AWS API Documentation
1535
+ #
1536
+ class OfferFilters < Struct.new(
1537
+ :entity_id,
1538
+ :name,
1539
+ :product_id,
1540
+ :release_date,
1541
+ :availability_end_date,
1542
+ :buyer_accounts,
1543
+ :state,
1544
+ :targeting,
1545
+ :last_modified_date)
1546
+ SENSITIVE = []
1547
+ include Aws::Structure
1548
+ end
1549
+
1550
+ # Allows filtering on the `LastModifiedDate` of an offer.
1551
+ #
1552
+ # @!attribute [rw] date_range
1553
+ # Allows filtering on the `LastModifiedDate` of an offer with date
1554
+ # range as input.
1555
+ # @return [Types::OfferLastModifiedDateFilterDateRange]
1556
+ #
1557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferLastModifiedDateFilter AWS API Documentation
1558
+ #
1559
+ class OfferLastModifiedDateFilter < Struct.new(
1560
+ :date_range)
1561
+ SENSITIVE = []
1562
+ include Aws::Structure
1563
+ end
1564
+
1565
+ # Allows filtering on the `LastModifiedDate` of an offer with date range
1566
+ # as input.
1567
+ #
1568
+ # @!attribute [rw] after_value
1569
+ # Allows filtering on the `LastModifiedDate` of an offer after a date.
1570
+ # @return [String]
1571
+ #
1572
+ # @!attribute [rw] before_value
1573
+ # Allows filtering on the `LastModifiedDate` of an offer before a
1574
+ # date.
1575
+ # @return [String]
1576
+ #
1577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferLastModifiedDateFilterDateRange AWS API Documentation
1578
+ #
1579
+ class OfferLastModifiedDateFilterDateRange < Struct.new(
1580
+ :after_value,
1581
+ :before_value)
1582
+ SENSITIVE = []
1583
+ include Aws::Structure
1584
+ end
1585
+
1586
+ # Allows filtering on the `Name` of an offer.
1587
+ #
1588
+ # @!attribute [rw] value_list
1589
+ # Allows filtering on the `Name` of an offer with list input.
1590
+ # @return [Array<String>]
1591
+ #
1592
+ # @!attribute [rw] wild_card_value
1593
+ # Allows filtering on the `Name` of an offer with wild card input.
1594
+ # @return [String]
1595
+ #
1596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferNameFilter AWS API Documentation
1597
+ #
1598
+ class OfferNameFilter < Struct.new(
1599
+ :value_list,
1600
+ :wild_card_value)
1601
+ SENSITIVE = []
1602
+ include Aws::Structure
1603
+ end
1604
+
1605
+ # Allows filtering on the `ProductId` of an offer.
1606
+ #
1607
+ # @!attribute [rw] value_list
1608
+ # Allows filtering on the `ProductId` of an offer with list input.
1609
+ # @return [Array<String>]
1610
+ #
1611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferProductIdFilter AWS API Documentation
1612
+ #
1613
+ class OfferProductIdFilter < Struct.new(
1614
+ :value_list)
1615
+ SENSITIVE = []
1616
+ include Aws::Structure
1617
+ end
1618
+
1619
+ # Allows filtering on the `ReleaseDate` of an offer.
1620
+ #
1621
+ # @!attribute [rw] date_range
1622
+ # Allows filtering on the `ReleaseDate` of an offer with date range as
1623
+ # input.
1624
+ # @return [Types::OfferReleaseDateFilterDateRange]
1625
+ #
1626
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferReleaseDateFilter AWS API Documentation
1627
+ #
1628
+ class OfferReleaseDateFilter < Struct.new(
1629
+ :date_range)
1630
+ SENSITIVE = []
1631
+ include Aws::Structure
1632
+ end
1633
+
1634
+ # Allows filtering on the `ReleaseDate` of an offer with date range as
1635
+ # input.
1636
+ #
1637
+ # @!attribute [rw] after_value
1638
+ # Allows filtering on the `ReleaseDate` of offers after a date.
1639
+ # @return [String]
1640
+ #
1641
+ # @!attribute [rw] before_value
1642
+ # Allows filtering on the `ReleaseDate` of offers before a date.
1643
+ # @return [String]
1644
+ #
1645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferReleaseDateFilterDateRange AWS API Documentation
1646
+ #
1647
+ class OfferReleaseDateFilterDateRange < Struct.new(
1648
+ :after_value,
1649
+ :before_value)
1650
+ SENSITIVE = []
1651
+ include Aws::Structure
1652
+ end
1653
+
1654
+ # Allows to sort offers.
1655
+ #
1656
+ # @!attribute [rw] sort_by
1657
+ # Allows to sort offers.
1658
+ # @return [String]
1659
+ #
1660
+ # @!attribute [rw] sort_order
1661
+ # Allows to sort offers.
1662
+ # @return [String]
1663
+ #
1664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSort AWS API Documentation
1665
+ #
1666
+ class OfferSort < Struct.new(
1667
+ :sort_by,
1668
+ :sort_order)
1669
+ SENSITIVE = []
1670
+ include Aws::Structure
1671
+ end
1672
+
1673
+ # Allows filtering on the `State` of an offer.
1674
+ #
1675
+ # @!attribute [rw] value_list
1676
+ # Allows filtering on the `State` of an offer with list input.
1677
+ # @return [Array<String>]
1678
+ #
1679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferStateFilter AWS API Documentation
1680
+ #
1681
+ class OfferStateFilter < Struct.new(
1682
+ :value_list)
1683
+ SENSITIVE = []
1684
+ include Aws::Structure
1685
+ end
1686
+
1687
+ # Summarized information about an offer.
1688
+ #
1689
+ # @!attribute [rw] name
1690
+ # The name of the offer.
1691
+ # @return [String]
1692
+ #
1693
+ # @!attribute [rw] product_id
1694
+ # The product ID of the offer.
1695
+ # @return [String]
1696
+ #
1697
+ # @!attribute [rw] release_date
1698
+ # The release date of the offer.
1699
+ # @return [String]
1700
+ #
1701
+ # @!attribute [rw] availability_end_date
1702
+ # The availability end date of the offer.
1703
+ # @return [String]
1704
+ #
1705
+ # @!attribute [rw] buyer_accounts
1706
+ # The buyer accounts in the offer.
1707
+ # @return [Array<String>]
1708
+ #
1709
+ # @!attribute [rw] state
1710
+ # The status of the offer.
1711
+ # @return [String]
1712
+ #
1713
+ # @!attribute [rw] targeting
1714
+ # The targeting in the offer.
1715
+ # @return [Array<String>]
1716
+ #
1717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSummary AWS API Documentation
1718
+ #
1719
+ class OfferSummary < Struct.new(
1720
+ :name,
1721
+ :product_id,
1722
+ :release_date,
1723
+ :availability_end_date,
1724
+ :buyer_accounts,
1725
+ :state,
1726
+ :targeting)
1727
+ SENSITIVE = []
1728
+ include Aws::Structure
1729
+ end
1730
+
1731
+ # Allows filtering on the `Targeting` of an offer.
1732
+ #
1733
+ # @!attribute [rw] value_list
1734
+ # Allows filtering on the `Targeting` of an offer with list input.
1735
+ # @return [Array<String>]
1736
+ #
1737
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferTargetingFilter AWS API Documentation
1738
+ #
1739
+ class OfferTargetingFilter < Struct.new(
1740
+ :value_list)
1741
+ SENSITIVE = []
1742
+ include Aws::Structure
1743
+ end
1744
+
1745
+ # @!attribute [rw] resource_arn
1746
+ # The Amazon Resource Name (ARN) of the entity resource you want to
1747
+ # associate with a resource policy.
1748
+ # @return [String]
1749
+ #
1750
+ # @!attribute [rw] policy
1751
+ # The policy document to set; formatted in JSON.
1752
+ # @return [String]
1753
+ #
1754
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/PutResourcePolicyRequest AWS API Documentation
1755
+ #
1756
+ class PutResourcePolicyRequest < Struct.new(
1757
+ :resource_arn,
1758
+ :policy)
1759
+ SENSITIVE = []
1760
+ include Aws::Structure
1761
+ end
1762
+
1763
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/PutResourcePolicyResponse AWS API Documentation
1764
+ #
1765
+ class PutResourcePolicyResponse < Aws::EmptyStructure; end
1766
+
1767
+ # Allows filtering on `AvailabilityEndDate` of a ResaleAuthorization.
1768
+ #
1769
+ # @!attribute [rw] date_range
1770
+ # Allows filtering on `AvailabilityEndDate` of a ResaleAuthorization
1771
+ # with date range as input
1772
+ # @return [Types::ResaleAuthorizationAvailabilityEndDateFilterDateRange]
1773
+ #
1774
+ # @!attribute [rw] value_list
1775
+ # Allows filtering on `AvailabilityEndDate` of a ResaleAuthorization
1776
+ # with date value as input.
1777
+ # @return [Array<String>]
1778
+ #
1779
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationAvailabilityEndDateFilter AWS API Documentation
1780
+ #
1781
+ class ResaleAuthorizationAvailabilityEndDateFilter < Struct.new(
1782
+ :date_range,
1783
+ :value_list)
1784
+ SENSITIVE = []
1785
+ include Aws::Structure
1786
+ end
1787
+
1788
+ # Allows filtering on `AvailabilityEndDate` of a ResaleAuthorization
1789
+ # with date range as input.
1790
+ #
1791
+ # @!attribute [rw] after_value
1792
+ # Allows filtering on `AvailabilityEndDate` of a ResaleAuthorization
1793
+ # after a date.
1794
+ # @return [String]
1795
+ #
1796
+ # @!attribute [rw] before_value
1797
+ # Allows filtering on `AvailabilityEndDate` of a ResaleAuthorization
1798
+ # before a date.
1799
+ # @return [String]
1800
+ #
1801
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationAvailabilityEndDateFilterDateRange AWS API Documentation
1802
+ #
1803
+ class ResaleAuthorizationAvailabilityEndDateFilterDateRange < Struct.new(
1804
+ :after_value,
1805
+ :before_value)
1806
+ SENSITIVE = []
1807
+ include Aws::Structure
1808
+ end
1809
+
1810
+ # Allows filtering on `CreatedDate` of a ResaleAuthorization.
1811
+ #
1812
+ # @!attribute [rw] date_range
1813
+ # Allows filtering on `CreatedDate` of a ResaleAuthorization with date
1814
+ # range as input.
1815
+ # @return [Types::ResaleAuthorizationCreatedDateFilterDateRange]
1816
+ #
1817
+ # @!attribute [rw] value_list
1818
+ # Allows filtering on `CreatedDate` of a ResaleAuthorization with date
1819
+ # value as input.
1820
+ # @return [Array<String>]
1821
+ #
1822
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationCreatedDateFilter AWS API Documentation
1823
+ #
1824
+ class ResaleAuthorizationCreatedDateFilter < Struct.new(
1825
+ :date_range,
1826
+ :value_list)
1827
+ SENSITIVE = []
1828
+ include Aws::Structure
1829
+ end
1830
+
1831
+ # Allows filtering on `CreatedDate` of a ResaleAuthorization with date
1832
+ # range as input.
1833
+ #
1834
+ # @!attribute [rw] after_value
1835
+ # Allows filtering on `CreatedDate` of a ResaleAuthorization after a
1836
+ # date.
1837
+ # @return [String]
1838
+ #
1839
+ # @!attribute [rw] before_value
1840
+ # Allows filtering on `CreatedDate` of a ResaleAuthorization before a
1841
+ # date.
1842
+ # @return [String]
1843
+ #
1844
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationCreatedDateFilterDateRange AWS API Documentation
1845
+ #
1846
+ class ResaleAuthorizationCreatedDateFilterDateRange < Struct.new(
1847
+ :after_value,
1848
+ :before_value)
1849
+ SENSITIVE = []
1850
+ include Aws::Structure
1851
+ end
1852
+
1853
+ # Allows filtering on `EntityId` of a ResaleAuthorization.
1854
+ #
1855
+ # @!attribute [rw] value_list
1856
+ # Allows filtering on `EntityId` of a ResaleAuthorization with list
1857
+ # input.
1858
+ # @return [Array<String>]
1859
+ #
1860
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationEntityIdFilter AWS API Documentation
1861
+ #
1862
+ class ResaleAuthorizationEntityIdFilter < Struct.new(
1863
+ :value_list)
1864
+ SENSITIVE = []
1865
+ include Aws::Structure
1866
+ end
1867
+
1868
+ # A filter for ResaleAuthorization entity.
1869
+ #
1870
+ # @!attribute [rw] entity_id
1871
+ # Allows filtering on the `EntityId` of a ResaleAuthorization.
1872
+ # @return [Types::ResaleAuthorizationEntityIdFilter]
1873
+ #
1874
+ # @!attribute [rw] name
1875
+ # Allows filtering on the `Name` of a ResaleAuthorization.
1876
+ # @return [Types::ResaleAuthorizationNameFilter]
1877
+ #
1878
+ # @!attribute [rw] product_id
1879
+ # Allows filtering on the `ProductId` of a ResaleAuthorization.
1880
+ # @return [Types::ResaleAuthorizationProductIdFilter]
1881
+ #
1882
+ # @!attribute [rw] created_date
1883
+ # Allows filtering on the `CreatedDate` of a ResaleAuthorization.
1884
+ # @return [Types::ResaleAuthorizationCreatedDateFilter]
1885
+ #
1886
+ # @!attribute [rw] availability_end_date
1887
+ # Allows filtering on the `AvailabilityEndDate` of a
1888
+ # ResaleAuthorization.
1889
+ # @return [Types::ResaleAuthorizationAvailabilityEndDateFilter]
1890
+ #
1891
+ # @!attribute [rw] manufacturer_account_id
1892
+ # Allows filtering on the `ManufacturerAccountId` of a
1893
+ # ResaleAuthorization.
1894
+ # @return [Types::ResaleAuthorizationManufacturerAccountIdFilter]
1895
+ #
1896
+ # @!attribute [rw] product_name
1897
+ # Allows filtering on the `ProductName` of a ResaleAuthorization.
1898
+ # @return [Types::ResaleAuthorizationProductNameFilter]
1899
+ #
1900
+ # @!attribute [rw] manufacturer_legal_name
1901
+ # Allows filtering on the `ManufacturerLegalName` of a
1902
+ # ResaleAuthorization.
1903
+ # @return [Types::ResaleAuthorizationManufacturerLegalNameFilter]
1904
+ #
1905
+ # @!attribute [rw] reseller_account_id
1906
+ # Allows filtering on the `ResellerAccountID` of a
1907
+ # ResaleAuthorization.
1908
+ # @return [Types::ResaleAuthorizationResellerAccountIDFilter]
1909
+ #
1910
+ # @!attribute [rw] reseller_legal_name
1911
+ # Allows filtering on the `ResellerLegalName` of a
1912
+ # ResaleAuthorization.
1913
+ # @return [Types::ResaleAuthorizationResellerLegalNameFilter]
1914
+ #
1915
+ # @!attribute [rw] status
1916
+ # Allows filtering on the `Status` of a ResaleAuthorization.
1917
+ # @return [Types::ResaleAuthorizationStatusFilter]
1918
+ #
1919
+ # @!attribute [rw] offer_extended_status
1920
+ # Allows filtering on the `OfferExtendedStatus` of a
1921
+ # ResaleAuthorization.
1922
+ # @return [Types::ResaleAuthorizationOfferExtendedStatusFilter]
1923
+ #
1924
+ # @!attribute [rw] last_modified_date
1925
+ # Allows filtering on the `LastModifiedDate` of a ResaleAuthorization.
1926
+ # @return [Types::ResaleAuthorizationLastModifiedDateFilter]
1927
+ #
1928
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationFilters AWS API Documentation
1929
+ #
1930
+ class ResaleAuthorizationFilters < Struct.new(
1931
+ :entity_id,
1932
+ :name,
1933
+ :product_id,
1934
+ :created_date,
1935
+ :availability_end_date,
1936
+ :manufacturer_account_id,
1937
+ :product_name,
1938
+ :manufacturer_legal_name,
1939
+ :reseller_account_id,
1940
+ :reseller_legal_name,
1941
+ :status,
1942
+ :offer_extended_status,
1943
+ :last_modified_date)
1944
+ SENSITIVE = []
1945
+ include Aws::Structure
1946
+ end
1947
+
1948
+ # Allows filtering on the `LastModifiedDate` of a ResaleAuthorization.
1949
+ #
1950
+ # @!attribute [rw] date_range
1951
+ # Allows filtering on the `LastModifiedDate` of a ResaleAuthorization
1952
+ # with date range as input.
1953
+ # @return [Types::ResaleAuthorizationLastModifiedDateFilterDateRange]
1954
+ #
1955
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationLastModifiedDateFilter AWS API Documentation
1956
+ #
1957
+ class ResaleAuthorizationLastModifiedDateFilter < Struct.new(
1958
+ :date_range)
1959
+ SENSITIVE = []
1960
+ include Aws::Structure
1961
+ end
1962
+
1963
+ # Allows filtering on the `LastModifiedDate` of a ResaleAuthorization
1964
+ # with date range as input.
1965
+ #
1966
+ # @!attribute [rw] after_value
1967
+ # Allows filtering on the `LastModifiedDate` of a ResaleAuthorization
1968
+ # after a date.
1969
+ # @return [String]
1970
+ #
1971
+ # @!attribute [rw] before_value
1972
+ # Allows filtering on the `LastModifiedDate` of a ResaleAuthorization
1973
+ # before a date.
1974
+ # @return [String]
1975
+ #
1976
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationLastModifiedDateFilterDateRange AWS API Documentation
1977
+ #
1978
+ class ResaleAuthorizationLastModifiedDateFilterDateRange < Struct.new(
1979
+ :after_value,
1980
+ :before_value)
1981
+ SENSITIVE = []
1982
+ include Aws::Structure
1983
+ end
1984
+
1985
+ # Allows filtering on the `ManufacturerAccountId` of a
1986
+ # ResaleAuthorization.
1987
+ #
1988
+ # @!attribute [rw] value_list
1989
+ # Allows filtering on the `ManufacturerAccountId` of a
1990
+ # ResaleAuthorization with list input.
1991
+ # @return [Array<String>]
1992
+ #
1993
+ # @!attribute [rw] wild_card_value
1994
+ # Allows filtering on the `ManufacturerAccountId` of a
1995
+ # ResaleAuthorization with wild card input.
1996
+ # @return [String]
1997
+ #
1998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationManufacturerAccountIdFilter AWS API Documentation
1999
+ #
2000
+ class ResaleAuthorizationManufacturerAccountIdFilter < Struct.new(
2001
+ :value_list,
2002
+ :wild_card_value)
2003
+ SENSITIVE = []
2004
+ include Aws::Structure
2005
+ end
2006
+
2007
+ # Allows filtering on the `ManufacturerLegalName` of a
2008
+ # ResaleAuthorization.
2009
+ #
2010
+ # @!attribute [rw] value_list
2011
+ # Allows filtering on the `ManufacturerLegalName` of a
2012
+ # ResaleAuthorization with list input.
2013
+ # @return [Array<String>]
2014
+ #
2015
+ # @!attribute [rw] wild_card_value
2016
+ # Allows filtering on the `ManufacturerLegalName` of a
2017
+ # ResaleAuthorization with wild card input.
2018
+ # @return [String]
2019
+ #
2020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationManufacturerLegalNameFilter AWS API Documentation
2021
+ #
2022
+ class ResaleAuthorizationManufacturerLegalNameFilter < Struct.new(
2023
+ :value_list,
2024
+ :wild_card_value)
2025
+ SENSITIVE = []
2026
+ include Aws::Structure
2027
+ end
2028
+
2029
+ # Allows filtering on the `Name` of a ResaleAuthorization.
2030
+ #
2031
+ # @!attribute [rw] value_list
2032
+ # Allows filtering on the `Name` of a ResaleAuthorization with list
2033
+ # input.
2034
+ # @return [Array<String>]
2035
+ #
2036
+ # @!attribute [rw] wild_card_value
2037
+ # Allows filtering on the `Name` of a ResaleAuthorization with wild
2038
+ # card input.
2039
+ # @return [String]
2040
+ #
2041
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationNameFilter AWS API Documentation
2042
+ #
2043
+ class ResaleAuthorizationNameFilter < Struct.new(
2044
+ :value_list,
2045
+ :wild_card_value)
2046
+ SENSITIVE = []
2047
+ include Aws::Structure
2048
+ end
2049
+
2050
+ # Allows filtering on the `OfferExtendedStatus` of a
2051
+ # ResaleAuthorization.
2052
+ #
2053
+ # @!attribute [rw] value_list
2054
+ # Allows filtering on the `OfferExtendedStatus` of a
2055
+ # ResaleAuthorization with list input.
2056
+ # @return [Array<String>]
2057
+ #
2058
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationOfferExtendedStatusFilter AWS API Documentation
2059
+ #
2060
+ class ResaleAuthorizationOfferExtendedStatusFilter < Struct.new(
2061
+ :value_list)
2062
+ SENSITIVE = []
2063
+ include Aws::Structure
2064
+ end
2065
+
2066
+ # Allows filtering on the `ProductId` of a ResaleAuthorization.
2067
+ #
2068
+ # @!attribute [rw] value_list
2069
+ # Allows filtering on the `ProductId` of a ResaleAuthorization with
2070
+ # list input.
2071
+ # @return [Array<String>]
2072
+ #
2073
+ # @!attribute [rw] wild_card_value
2074
+ # Allows filtering on the `ProductId` of a ResaleAuthorization with
2075
+ # wild card input.
2076
+ # @return [String]
2077
+ #
2078
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationProductIdFilter AWS API Documentation
2079
+ #
2080
+ class ResaleAuthorizationProductIdFilter < Struct.new(
2081
+ :value_list,
2082
+ :wild_card_value)
2083
+ SENSITIVE = []
2084
+ include Aws::Structure
2085
+ end
2086
+
2087
+ # Allows filtering on the `ProductName` of a ResaleAuthorization.
2088
+ #
2089
+ # @!attribute [rw] value_list
2090
+ # Allows filtering on the `ProductName` of a ResaleAuthorization with
2091
+ # list input.
2092
+ # @return [Array<String>]
2093
+ #
2094
+ # @!attribute [rw] wild_card_value
2095
+ # Allows filtering on the `ProductName` of a ResaleAuthorization with
2096
+ # wild card input.
2097
+ # @return [String]
2098
+ #
2099
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationProductNameFilter AWS API Documentation
2100
+ #
2101
+ class ResaleAuthorizationProductNameFilter < Struct.new(
2102
+ :value_list,
2103
+ :wild_card_value)
2104
+ SENSITIVE = []
2105
+ include Aws::Structure
2106
+ end
2107
+
2108
+ # Allows filtering on the `ResellerAccountID` of a ResaleAuthorization.
2109
+ #
2110
+ # @!attribute [rw] value_list
2111
+ # Allows filtering on the `ResellerAccountID` of a ResaleAuthorization
2112
+ # with list input.
2113
+ # @return [Array<String>]
2114
+ #
2115
+ # @!attribute [rw] wild_card_value
2116
+ # Allows filtering on the `ResellerAccountID` of a ResaleAuthorization
2117
+ # with wild card input.
2118
+ # @return [String]
2119
+ #
2120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationResellerAccountIDFilter AWS API Documentation
2121
+ #
2122
+ class ResaleAuthorizationResellerAccountIDFilter < Struct.new(
2123
+ :value_list,
2124
+ :wild_card_value)
2125
+ SENSITIVE = []
2126
+ include Aws::Structure
2127
+ end
2128
+
2129
+ # Allows filtering on the ResellerLegalName of a ResaleAuthorization.
2130
+ #
2131
+ # @!attribute [rw] value_list
2132
+ # Allows filtering on the ResellerLegalNameProductName of a
2133
+ # ResaleAuthorization with list input.
2134
+ # @return [Array<String>]
2135
+ #
2136
+ # @!attribute [rw] wild_card_value
2137
+ # Allows filtering on the ResellerLegalName of a ResaleAuthorization
2138
+ # with wild card input.
2139
+ # @return [String]
2140
+ #
2141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationResellerLegalNameFilter AWS API Documentation
2142
+ #
2143
+ class ResaleAuthorizationResellerLegalNameFilter < Struct.new(
2144
+ :value_list,
2145
+ :wild_card_value)
2146
+ SENSITIVE = []
2147
+ include Aws::Structure
2148
+ end
2149
+
2150
+ # Allows to sort ResaleAuthorization.
2151
+ #
2152
+ # @!attribute [rw] sort_by
2153
+ # Allows to sort ResaleAuthorization.
2154
+ # @return [String]
2155
+ #
2156
+ # @!attribute [rw] sort_order
2157
+ # Allows to sort ResaleAuthorization.
2158
+ # @return [String]
2159
+ #
2160
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationSort AWS API Documentation
2161
+ #
2162
+ class ResaleAuthorizationSort < Struct.new(
2163
+ :sort_by,
2164
+ :sort_order)
446
2165
  SENSITIVE = []
447
2166
  include Aws::Structure
448
2167
  end
449
2168
 
450
- # Details about the error.
2169
+ # Allows filtering on the `Status` of a ResaleAuthorization.
451
2170
  #
452
- # @!attribute [rw] error_code
453
- # The error code that identifies the type of error.
454
- # @return [String]
455
- #
456
- # @!attribute [rw] error_message
457
- # The message for the error.
458
- # @return [String]
2171
+ # @!attribute [rw] value_list
2172
+ # Allows filtering on the `Status` of a ResaleAuthorization with list
2173
+ # input.
2174
+ # @return [Array<String>]
459
2175
  #
460
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ErrorDetail AWS API Documentation
2176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationStatusFilter AWS API Documentation
461
2177
  #
462
- class ErrorDetail < Struct.new(
463
- :error_code,
464
- :error_message)
2178
+ class ResaleAuthorizationStatusFilter < Struct.new(
2179
+ :value_list)
465
2180
  SENSITIVE = []
466
2181
  include Aws::Structure
467
2182
  end
468
2183
 
469
- # A filter object, used to optionally filter results from calls to the
470
- # `ListEntities` and `ListChangeSets` actions.
2184
+ # Summarized information about a Resale Authorization.
471
2185
  #
472
2186
  # @!attribute [rw] name
473
- # For `ListEntities`, the supported value for this is an `EntityId`.
2187
+ # The name of the ResaleAuthorization.
2188
+ # @return [String]
474
2189
  #
475
- # For `ListChangeSets`, the supported values are as follows:
2190
+ # @!attribute [rw] product_id
2191
+ # The product ID of the ResaleAuthorization.
476
2192
  # @return [String]
477
2193
  #
478
- # @!attribute [rw] value_list
479
- # `ListEntities` - This is a list of unique `EntityId`s.
2194
+ # @!attribute [rw] product_name
2195
+ # The product name of the ResaleAuthorization.
2196
+ # @return [String]
480
2197
  #
481
- # `ListChangeSets` - The supported filter names and associated
482
- # `ValueList`s is as follows:
2198
+ # @!attribute [rw] manufacturer_account_id
2199
+ # The manufacturer account ID of the ResaleAuthorization.
2200
+ # @return [String]
483
2201
  #
484
- # * `ChangeSetName` - The supported `ValueList` is a list of
485
- # non-unique `ChangeSetName`s. These are defined when you call the
486
- # `StartChangeSet` action.
2202
+ # @!attribute [rw] manufacturer_legal_name
2203
+ # The manufacturer legal name of the ResaleAuthorization.
2204
+ # @return [String]
487
2205
  #
488
- # * `Status` - The supported `ValueList` is a list of statuses for all
489
- # change set requests.
2206
+ # @!attribute [rw] reseller_account_id
2207
+ # The reseller account ID of the ResaleAuthorization.
2208
+ # @return [String]
490
2209
  #
491
- # * `EntityId` - The supported `ValueList` is a list of unique
492
- # `EntityId`s.
2210
+ # @!attribute [rw] reseller_legal_name
2211
+ # The reseller legal name of the ResaleAuthorization
2212
+ # @return [String]
493
2213
  #
494
- # * `BeforeStartTime` - The supported `ValueList` is a list of all
495
- # change sets that started before the filter value.
2214
+ # @!attribute [rw] status
2215
+ # The status of the ResaleAuthorization.
2216
+ # @return [String]
496
2217
  #
497
- # * `AfterStartTime` - The supported `ValueList` is a list of all
498
- # change sets that started after the filter value.
2218
+ # @!attribute [rw] offer_extended_status
2219
+ # The offer extended status of the ResaleAuthorization
2220
+ # @return [String]
499
2221
  #
500
- # * `BeforeEndTime` - The supported `ValueList` is a list of all
501
- # change sets that ended before the filter value.
2222
+ # @!attribute [rw] created_date
2223
+ # The created date of the ResaleAuthorization.
2224
+ # @return [String]
502
2225
  #
503
- # * `AfterEndTime` - The supported `ValueList` is a list of all change
504
- # sets that ended after the filter value.
505
- # @return [Array<String>]
2226
+ # @!attribute [rw] availability_end_date
2227
+ # The availability end date of the ResaleAuthorization.
2228
+ # @return [String]
506
2229
  #
507
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/Filter AWS API Documentation
2230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResaleAuthorizationSummary AWS API Documentation
508
2231
  #
509
- class Filter < Struct.new(
2232
+ class ResaleAuthorizationSummary < Struct.new(
510
2233
  :name,
511
- :value_list)
2234
+ :product_id,
2235
+ :product_name,
2236
+ :manufacturer_account_id,
2237
+ :manufacturer_legal_name,
2238
+ :reseller_account_id,
2239
+ :reseller_legal_name,
2240
+ :status,
2241
+ :offer_extended_status,
2242
+ :created_date,
2243
+ :availability_end_date)
512
2244
  SENSITIVE = []
513
2245
  include Aws::Structure
514
2246
  end
515
2247
 
516
- # @!attribute [rw] resource_arn
517
- # The Amazon Resource Name (ARN) of the entity resource that is
518
- # associated with the resource policy.
519
- # @return [String]
520
- #
521
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/GetResourcePolicyRequest AWS API Documentation
2248
+ # The resource is currently in use.
522
2249
  #
523
- class GetResourcePolicyRequest < Struct.new(
524
- :resource_arn)
525
- SENSITIVE = []
526
- include Aws::Structure
527
- end
528
-
529
- # @!attribute [rw] policy
530
- # The policy document to set; formatted in JSON.
2250
+ # @!attribute [rw] message
531
2251
  # @return [String]
532
2252
  #
533
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/GetResourcePolicyResponse AWS API Documentation
2253
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResourceInUseException AWS API Documentation
534
2254
  #
535
- class GetResourcePolicyResponse < Struct.new(
536
- :policy)
2255
+ class ResourceInUseException < Struct.new(
2256
+ :message)
537
2257
  SENSITIVE = []
538
2258
  include Aws::Structure
539
2259
  end
540
2260
 
541
- # There was an internal service exception.
2261
+ # The specified resource wasn't found.
542
2262
  #
543
- # HTTP status code: 500
2263
+ # HTTP status code: 404
544
2264
  #
545
2265
  # @!attribute [rw] message
546
2266
  # @return [String]
547
2267
  #
548
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/InternalServiceException AWS API Documentation
2268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResourceNotFoundException AWS API Documentation
549
2269
  #
550
- class InternalServiceException < Struct.new(
2270
+ class ResourceNotFoundException < Struct.new(
551
2271
  :message)
552
2272
  SENSITIVE = []
553
2273
  include Aws::Structure
554
2274
  end
555
2275
 
556
- # @!attribute [rw] catalog
557
- # The catalog related to the request. Fixed value: `AWSMarketplace`
558
- # @return [String]
559
- #
560
- # @!attribute [rw] filter_list
561
- # An array of filter objects.
562
- # @return [Array<Types::Filter>]
563
- #
564
- # @!attribute [rw] sort
565
- # An object that contains two attributes, `SortBy` and `SortOrder`.
566
- # @return [Types::Sort]
567
- #
568
- # @!attribute [rw] max_results
569
- # The maximum number of results returned by a single call. This value
570
- # must be provided in the next call to retrieve the next set of
571
- # results. By default, this value is 20.
572
- # @return [Integer]
2276
+ # Currently, the specified resource is not supported.
573
2277
  #
574
- # @!attribute [rw] next_token
575
- # The token value retrieved from a previous call to access the next
576
- # page of results.
2278
+ # @!attribute [rw] message
577
2279
  # @return [String]
578
2280
  #
579
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListChangeSetsRequest AWS API Documentation
2281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResourceNotSupportedException AWS API Documentation
580
2282
  #
581
- class ListChangeSetsRequest < Struct.new(
582
- :catalog,
583
- :filter_list,
584
- :sort,
585
- :max_results,
586
- :next_token)
2283
+ class ResourceNotSupportedException < Struct.new(
2284
+ :message)
587
2285
  SENSITIVE = []
588
2286
  include Aws::Structure
589
2287
  end
590
2288
 
591
- # @!attribute [rw] change_set_summary_list
592
- # Array of `ChangeSetSummaryListItem` objects.
593
- # @return [Array<Types::ChangeSetSummaryListItem>]
2289
+ # Object that allows filtering on entity id of a SaaS product.
594
2290
  #
595
- # @!attribute [rw] next_token
596
- # The value of the next token, if it exists. Null if there are no more
597
- # results.
598
- # @return [String]
2291
+ # @!attribute [rw] value_list
2292
+ # A string array of unique entity id values to be filtered on.
2293
+ # @return [Array<String>]
599
2294
  #
600
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListChangeSetsResponse AWS API Documentation
2295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/SaaSProductEntityIdFilter AWS API Documentation
601
2296
  #
602
- class ListChangeSetsResponse < Struct.new(
603
- :change_set_summary_list,
604
- :next_token)
2297
+ class SaaSProductEntityIdFilter < Struct.new(
2298
+ :value_list)
605
2299
  SENSITIVE = []
606
2300
  include Aws::Structure
607
2301
  end
608
2302
 
609
- # @!attribute [rw] catalog
610
- # The catalog related to the request. Fixed value: `AWSMarketplace`
611
- # @return [String]
612
- #
613
- # @!attribute [rw] entity_type
614
- # The type of entities to retrieve.
615
- # @return [String]
616
- #
617
- # @!attribute [rw] filter_list
618
- # An array of filter objects. Each filter object contains two
619
- # attributes, `filterName` and `filterValues`.
620
- # @return [Array<Types::Filter>]
2303
+ # Object containing all the filter fields for SaaS products. Client can
2304
+ # add a maximum of 8 filters in a single `ListEntities` request.
621
2305
  #
622
- # @!attribute [rw] sort
623
- # An object that contains two attributes, `SortBy` and `SortOrder`.
624
- # @return [Types::Sort]
2306
+ # @!attribute [rw] entity_id
2307
+ # Unique identifier for the SaaS product.
2308
+ # @return [Types::SaaSProductEntityIdFilter]
625
2309
  #
626
- # @!attribute [rw] next_token
627
- # The value of the next token, if it exists. Null if there are no more
628
- # results.
629
- # @return [String]
2310
+ # @!attribute [rw] product_title
2311
+ # The title of the SaaS product.
2312
+ # @return [Types::SaaSProductTitleFilter]
630
2313
  #
631
- # @!attribute [rw] max_results
632
- # Specifies the upper limit of the elements on a single page. If a
633
- # value isn't provided, the default value is 20.
634
- # @return [Integer]
2314
+ # @!attribute [rw] visibility
2315
+ # The visibility of the SaaS product.
2316
+ # @return [Types::SaaSProductVisibilityFilter]
635
2317
  #
636
- # @!attribute [rw] ownership_type
637
- # Filters the returned set of entities based on their owner. The
638
- # default is `SELF`. To list entities shared with you through AWS
639
- # Resource Access Manager (AWS RAM), set to `SHARED`. Entities shared
640
- # through the AWS Marketplace Catalog API `PutResourcePolicy`
641
- # operation can't be discovered through the `SHARED` parameter.
642
- # @return [String]
2318
+ # @!attribute [rw] last_modified_date
2319
+ # The last date on which the SaaS product was modified.
2320
+ # @return [Types::SaaSProductLastModifiedDateFilter]
643
2321
  #
644
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListEntitiesRequest AWS API Documentation
2322
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/SaaSProductFilters AWS API Documentation
645
2323
  #
646
- class ListEntitiesRequest < Struct.new(
647
- :catalog,
648
- :entity_type,
649
- :filter_list,
650
- :sort,
651
- :next_token,
652
- :max_results,
653
- :ownership_type)
2324
+ class SaaSProductFilters < Struct.new(
2325
+ :entity_id,
2326
+ :product_title,
2327
+ :visibility,
2328
+ :last_modified_date)
654
2329
  SENSITIVE = []
655
2330
  include Aws::Structure
656
2331
  end
657
2332
 
658
- # @!attribute [rw] entity_summary_list
659
- # Array of `EntitySummary` object.
660
- # @return [Array<Types::EntitySummary>]
2333
+ # Object that allows filtering based on the last modified date of SaaS
2334
+ # products
661
2335
  #
662
- # @!attribute [rw] next_token
663
- # The value of the next token if it exists. Null if there is no more
664
- # result.
665
- # @return [String]
2336
+ # @!attribute [rw] date_range
2337
+ # Dates between which the SaaS product was last modified.
2338
+ # @return [Types::SaaSProductLastModifiedDateFilterDateRange]
666
2339
  #
667
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListEntitiesResponse AWS API Documentation
2340
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/SaaSProductLastModifiedDateFilter AWS API Documentation
668
2341
  #
669
- class ListEntitiesResponse < Struct.new(
670
- :entity_summary_list,
671
- :next_token)
2342
+ class SaaSProductLastModifiedDateFilter < Struct.new(
2343
+ :date_range)
672
2344
  SENSITIVE = []
673
2345
  include Aws::Structure
674
2346
  end
675
2347
 
676
- # @!attribute [rw] resource_arn
677
- # Required. The Amazon Resource Name (ARN) associated with the
678
- # resource you want to list tags on.
679
- # @return [String]
2348
+ # Object that contains date range of the last modified date to be
2349
+ # filtered on. You can optionally provide a `BeforeValue` and/or
2350
+ # `AfterValue`. Both are inclusive.
680
2351
  #
681
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListTagsForResourceRequest AWS API Documentation
682
- #
683
- class ListTagsForResourceRequest < Struct.new(
684
- :resource_arn)
685
- SENSITIVE = []
686
- include Aws::Structure
687
- end
688
-
689
- # @!attribute [rw] resource_arn
690
- # Required. The ARN associated with the resource you want to list tags
691
- # on.
2352
+ # @!attribute [rw] after_value
2353
+ # Date after which the SaaS product was last modified.
692
2354
  # @return [String]
693
2355
  #
694
- # @!attribute [rw] tags
695
- # Required. A list of objects specifying each key name and value.
696
- # Number of objects allowed: 1-50.
697
- # @return [Array<Types::Tag>]
2356
+ # @!attribute [rw] before_value
2357
+ # Date before which the SaaS product was last modified.
2358
+ # @return [String]
698
2359
  #
699
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListTagsForResourceResponse AWS API Documentation
2360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/SaaSProductLastModifiedDateFilterDateRange AWS API Documentation
700
2361
  #
701
- class ListTagsForResourceResponse < Struct.new(
702
- :resource_arn,
703
- :tags)
2362
+ class SaaSProductLastModifiedDateFilterDateRange < Struct.new(
2363
+ :after_value,
2364
+ :before_value)
704
2365
  SENSITIVE = []
705
2366
  include Aws::Structure
706
2367
  end
707
2368
 
708
- # @!attribute [rw] resource_arn
709
- # The Amazon Resource Name (ARN) of the entity resource you want to
710
- # associate with a resource policy.
2369
+ # Objects that allows sorting on SaaS products based on certain fields
2370
+ # and sorting order.
2371
+ #
2372
+ # @!attribute [rw] sort_by
2373
+ # Field to sort the SaaS products by.
711
2374
  # @return [String]
712
2375
  #
713
- # @!attribute [rw] policy
714
- # The policy document to set; formatted in JSON.
2376
+ # @!attribute [rw] sort_order
2377
+ # The sorting order. Can be `ASCENDING` or `DESCENDING`. The default
2378
+ # value is `DESCENDING`.
715
2379
  # @return [String]
716
2380
  #
717
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/PutResourcePolicyRequest AWS API Documentation
2381
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/SaaSProductSort AWS API Documentation
718
2382
  #
719
- class PutResourcePolicyRequest < Struct.new(
720
- :resource_arn,
721
- :policy)
2383
+ class SaaSProductSort < Struct.new(
2384
+ :sort_by,
2385
+ :sort_order)
722
2386
  SENSITIVE = []
723
2387
  include Aws::Structure
724
2388
  end
725
2389
 
726
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/PutResourcePolicyResponse AWS API Documentation
2390
+ # Object that contains summarized information about a SaaS product.
727
2391
  #
728
- class PutResourcePolicyResponse < Aws::EmptyStructure; end
729
-
730
- # The resource is currently in use.
2392
+ # @!attribute [rw] product_title
2393
+ # The title of the SaaS product.
2394
+ # @return [String]
731
2395
  #
732
- # @!attribute [rw] message
2396
+ # @!attribute [rw] visibility
2397
+ # The lifecycle of the SaaS product.
733
2398
  # @return [String]
734
2399
  #
735
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResourceInUseException AWS API Documentation
2400
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/SaaSProductSummary AWS API Documentation
736
2401
  #
737
- class ResourceInUseException < Struct.new(
738
- :message)
2402
+ class SaaSProductSummary < Struct.new(
2403
+ :product_title,
2404
+ :visibility)
739
2405
  SENSITIVE = []
740
2406
  include Aws::Structure
741
2407
  end
742
2408
 
743
- # The specified resource wasn't found.
2409
+ # Object that allows filtering on product title.
744
2410
  #
745
- # HTTP status code: 404
2411
+ # @!attribute [rw] value_list
2412
+ # A string array of unique product title values to be filtered on.
2413
+ # @return [Array<String>]
746
2414
  #
747
- # @!attribute [rw] message
2415
+ # @!attribute [rw] wild_card_value
2416
+ # A string that will be the `wildCard` input for product tile filter.
2417
+ # It matches the provided value as a substring in the actual value.
748
2418
  # @return [String]
749
2419
  #
750
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResourceNotFoundException AWS API Documentation
2420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/SaaSProductTitleFilter AWS API Documentation
751
2421
  #
752
- class ResourceNotFoundException < Struct.new(
753
- :message)
2422
+ class SaaSProductTitleFilter < Struct.new(
2423
+ :value_list,
2424
+ :wild_card_value)
754
2425
  SENSITIVE = []
755
2426
  include Aws::Structure
756
2427
  end
757
2428
 
758
- # Currently, the specified resource is not supported.
2429
+ # Object that allows filtering on the visibility of the product in the
2430
+ # AWS Marketplace.
759
2431
  #
760
- # @!attribute [rw] message
761
- # @return [String]
2432
+ # @!attribute [rw] value_list
2433
+ # A string array of unique visibility values to be filtered on.
2434
+ # @return [Array<String>]
762
2435
  #
763
- # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ResourceNotSupportedException AWS API Documentation
2436
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/SaaSProductVisibilityFilter AWS API Documentation
764
2437
  #
765
- class ResourceNotSupportedException < Struct.new(
766
- :message)
2438
+ class SaaSProductVisibilityFilter < Struct.new(
2439
+ :value_list)
767
2440
  SENSITIVE = []
768
2441
  include Aws::Structure
769
2442
  end