aws-sdk-marketplacecatalog 1.39.0 → 1.41.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e5569d1939a50e76791c1cb96110871561f666e02bad71c993f6cb8d92686ac
4
- data.tar.gz: cd0bc89010a794345b99ed71d5ab7a0a4530d6d9b463747476be361391289a52
3
+ metadata.gz: 7d32b81583da5708399005fb0daaeafaa850d17b9ed84ddf0575b8ef07445bc3
4
+ data.tar.gz: 3de9294e0e89cc5a0b5b024f68701b64af3a9b25844f32006e2261ffbe422fcd
5
5
  SHA512:
6
- metadata.gz: eafe0817e091b71a38c56963f327f447498d1c4c93348bbd7ded6bb507dfc05bce653c59a7d8f1e245c8da7dd0d226753c54ecd8c989e56f2297f9e7421aadfa
7
- data.tar.gz: 50aeed74ee65f8293070967947bc6900a7e10545902e7035c760db006bdf76c7061d1619e2a7f11950849b074ce1007e8ca199d4e4846213a1efe1b9b9e7ca89
6
+ metadata.gz: 6841611c7081f380c76f6b355b9206540351a6974b948c5f6fadeff422d7b04b9880c54517aab89bc2eacf9685c72ad831879c7b590d8fe1eb84c5b57fd54c7e
7
+ data.tar.gz: bbc3c440c6c99cdabe3099cb83cfb7405ae28807630b644637e2bc2277f64f2a7f6355bcab2877e1fa7a62fbe059ca04be5ebfa3cd918d4cf7c44d584d750c42
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.40.0 (2024-02-13)
10
+ ------------------
11
+
12
+ * Feature - AWS Marketplace Catalog API now supports setting intent on requests
13
+
4
14
  1.39.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.41.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::MarketplaceCatalog
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::MarketplaceCatalog
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::MarketplaceCatalog
337
346
  # @option options [Aws::MarketplaceCatalog::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MarketplaceCatalog::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -388,7 +412,9 @@ module Aws::MarketplaceCatalog
388
412
 
389
413
  # @!group API Operations
390
414
 
391
- # Returns metadata and content for multiple entities.
415
+ # Returns metadata and content for multiple entities. This is the Batch
416
+ # version of the `DescribeEntity` API and uses the same IAM permission
417
+ # action as `DescribeEntity` API.
392
418
  #
393
419
  # @option params [required, Array<Types::EntityRequest>] :entity_request_list
394
420
  # List of entity IDs and the catalogs the entities are present in.
@@ -507,6 +533,7 @@ module Aws::MarketplaceCatalog
507
533
  # * {Types::DescribeChangeSetResponse#change_set_id #change_set_id} => String
508
534
  # * {Types::DescribeChangeSetResponse#change_set_arn #change_set_arn} => String
509
535
  # * {Types::DescribeChangeSetResponse#change_set_name #change_set_name} => String
536
+ # * {Types::DescribeChangeSetResponse#intent #intent} => String
510
537
  # * {Types::DescribeChangeSetResponse#start_time #start_time} => String
511
538
  # * {Types::DescribeChangeSetResponse#end_time #end_time} => String
512
539
  # * {Types::DescribeChangeSetResponse#status #status} => String
@@ -526,6 +553,7 @@ module Aws::MarketplaceCatalog
526
553
  # resp.change_set_id #=> String
527
554
  # resp.change_set_arn #=> String
528
555
  # resp.change_set_name #=> String
556
+ # resp.intent #=> String, one of "VALIDATE", "APPLY"
529
557
  # resp.start_time #=> String
530
558
  # resp.end_time #=> String
531
559
  # resp.status #=> String, one of "PREPARING", "APPLYING", "SUCCEEDED", "CANCELLED", "FAILED"
@@ -832,6 +860,9 @@ module Aws::MarketplaceCatalog
832
860
  # product_id: {
833
861
  # value_list: ["OfferProductIdString"],
834
862
  # },
863
+ # resale_authorization_id: {
864
+ # value_list: ["OfferResaleAuthorizationIdString"],
865
+ # },
835
866
  # release_date: {
836
867
  # date_range: {
837
868
  # after_value: "DateTimeISO8601",
@@ -952,7 +983,7 @@ module Aws::MarketplaceCatalog
952
983
  # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
953
984
  # },
954
985
  # offer_sort: {
955
- # sort_by: "EntityId", # accepts EntityId, Name, ProductId, ReleaseDate, AvailabilityEndDate, BuyerAccounts, State, Targeting, LastModifiedDate
986
+ # sort_by: "EntityId", # accepts EntityId, Name, ProductId, ResaleAuthorizationId, ReleaseDate, AvailabilityEndDate, BuyerAccounts, State, Targeting, LastModifiedDate
956
987
  # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
957
988
  # },
958
989
  # container_product_sort: {
@@ -985,6 +1016,7 @@ module Aws::MarketplaceCatalog
985
1016
  # resp.entity_summary_list[0].saa_s_product_summary.visibility #=> String, one of "Limited", "Public", "Restricted", "Draft"
986
1017
  # resp.entity_summary_list[0].offer_summary.name #=> String
987
1018
  # resp.entity_summary_list[0].offer_summary.product_id #=> String
1019
+ # resp.entity_summary_list[0].offer_summary.resale_authorization_id #=> String
988
1020
  # resp.entity_summary_list[0].offer_summary.release_date #=> String
989
1021
  # resp.entity_summary_list[0].offer_summary.availability_end_date #=> String
990
1022
  # resp.entity_summary_list[0].offer_summary.buyer_accounts #=> Array
@@ -1128,6 +1160,16 @@ module Aws::MarketplaceCatalog
1128
1160
  # A list of objects specifying each key name and value for the
1129
1161
  # `ChangeSetTags` property.
1130
1162
  #
1163
+ # @option params [String] :intent
1164
+ # The intent related to the request. The default is `APPLY`. To test
1165
+ # your request before applying changes to your entities, use `VALIDATE`.
1166
+ # This feature is currently available for adding versions to single-AMI
1167
+ # products. For more information, see [Add a new version][1].
1168
+ #
1169
+ #
1170
+ #
1171
+ # [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/ami-products.html#ami-add-version
1172
+ #
1131
1173
  # @return [Types::StartChangeSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1132
1174
  #
1133
1175
  # * {Types::StartChangeSetResponse#change_set_id #change_set_id} => String
@@ -1164,6 +1206,7 @@ module Aws::MarketplaceCatalog
1164
1206
  # value: "TagValue", # required
1165
1207
  # },
1166
1208
  # ],
1209
+ # intent: "VALIDATE", # accepts VALIDATE, APPLY
1167
1210
  # })
1168
1211
  #
1169
1212
  # @example Response structure
@@ -1265,7 +1308,7 @@ module Aws::MarketplaceCatalog
1265
1308
  params: params,
1266
1309
  config: config)
1267
1310
  context[:gem_name] = 'aws-sdk-marketplacecatalog'
1268
- context[:gem_version] = '1.39.0'
1311
+ context[:gem_version] = '1.41.0'
1269
1312
  Seahorse::Client::Request.new(handlers, context)
1270
1313
  end
1271
1314
 
@@ -110,6 +110,7 @@ module Aws::MarketplaceCatalog
110
110
  GetResourcePolicyRequest = Shapes::StructureShape.new(name: 'GetResourcePolicyRequest')
111
111
  GetResourcePolicyResponse = Shapes::StructureShape.new(name: 'GetResourcePolicyResponse')
112
112
  Identifier = Shapes::StringShape.new(name: 'Identifier')
113
+ Intent = Shapes::StringShape.new(name: 'Intent')
113
114
  InternalServiceException = Shapes::StructureShape.new(name: 'InternalServiceException')
114
115
  Json = Shapes::StringShape.new(name: 'Json')
115
116
  JsonDocumentType = Shapes::DocumentShape.new(name: 'JsonDocumentType', document: true)
@@ -142,6 +143,9 @@ module Aws::MarketplaceCatalog
142
143
  OfferProductIdString = Shapes::StringShape.new(name: 'OfferProductIdString')
143
144
  OfferReleaseDateFilter = Shapes::StructureShape.new(name: 'OfferReleaseDateFilter')
144
145
  OfferReleaseDateFilterDateRange = Shapes::StructureShape.new(name: 'OfferReleaseDateFilterDateRange')
146
+ OfferResaleAuthorizationIdFilter = Shapes::StructureShape.new(name: 'OfferResaleAuthorizationIdFilter')
147
+ OfferResaleAuthorizationIdFilterValueList = Shapes::ListShape.new(name: 'OfferResaleAuthorizationIdFilterValueList')
148
+ OfferResaleAuthorizationIdString = Shapes::StringShape.new(name: 'OfferResaleAuthorizationIdString')
145
149
  OfferSort = Shapes::StructureShape.new(name: 'OfferSort')
146
150
  OfferSortBy = Shapes::StringShape.new(name: 'OfferSortBy')
147
151
  OfferStateFilter = Shapes::StructureShape.new(name: 'OfferStateFilter')
@@ -422,6 +426,7 @@ module Aws::MarketplaceCatalog
422
426
  DescribeChangeSetResponse.add_member(:change_set_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ChangeSetId"))
423
427
  DescribeChangeSetResponse.add_member(:change_set_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ChangeSetArn"))
424
428
  DescribeChangeSetResponse.add_member(:change_set_name, Shapes::ShapeRef.new(shape: ChangeSetName, location_name: "ChangeSetName"))
429
+ DescribeChangeSetResponse.add_member(:intent, Shapes::ShapeRef.new(shape: Intent, location_name: "Intent"))
425
430
  DescribeChangeSetResponse.add_member(:start_time, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "StartTime"))
426
431
  DescribeChangeSetResponse.add_member(:end_time, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "EndTime"))
427
432
  DescribeChangeSetResponse.add_member(:status, Shapes::ShapeRef.new(shape: ChangeStatus, location_name: "Status"))
@@ -587,6 +592,7 @@ module Aws::MarketplaceCatalog
587
592
  OfferFilters.add_member(:entity_id, Shapes::ShapeRef.new(shape: OfferEntityIdFilter, location_name: "EntityId"))
588
593
  OfferFilters.add_member(:name, Shapes::ShapeRef.new(shape: OfferNameFilter, location_name: "Name"))
589
594
  OfferFilters.add_member(:product_id, Shapes::ShapeRef.new(shape: OfferProductIdFilter, location_name: "ProductId"))
595
+ OfferFilters.add_member(:resale_authorization_id, Shapes::ShapeRef.new(shape: OfferResaleAuthorizationIdFilter, location_name: "ResaleAuthorizationId"))
590
596
  OfferFilters.add_member(:release_date, Shapes::ShapeRef.new(shape: OfferReleaseDateFilter, location_name: "ReleaseDate"))
591
597
  OfferFilters.add_member(:availability_end_date, Shapes::ShapeRef.new(shape: OfferAvailabilityEndDateFilter, location_name: "AvailabilityEndDate"))
592
598
  OfferFilters.add_member(:buyer_accounts, Shapes::ShapeRef.new(shape: OfferBuyerAccountsFilter, location_name: "BuyerAccounts"))
@@ -620,6 +626,11 @@ module Aws::MarketplaceCatalog
620
626
  OfferReleaseDateFilterDateRange.add_member(:before_value, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "BeforeValue"))
621
627
  OfferReleaseDateFilterDateRange.struct_class = Types::OfferReleaseDateFilterDateRange
622
628
 
629
+ OfferResaleAuthorizationIdFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: OfferResaleAuthorizationIdFilterValueList, location_name: "ValueList"))
630
+ OfferResaleAuthorizationIdFilter.struct_class = Types::OfferResaleAuthorizationIdFilter
631
+
632
+ OfferResaleAuthorizationIdFilterValueList.member = Shapes::ShapeRef.new(shape: OfferResaleAuthorizationIdString)
633
+
623
634
  OfferSort.add_member(:sort_by, Shapes::ShapeRef.new(shape: OfferSortBy, location_name: "SortBy"))
624
635
  OfferSort.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
625
636
  OfferSort.struct_class = Types::OfferSort
@@ -631,6 +642,7 @@ module Aws::MarketplaceCatalog
631
642
 
632
643
  OfferSummary.add_member(:name, Shapes::ShapeRef.new(shape: OfferNameString, location_name: "Name"))
633
644
  OfferSummary.add_member(:product_id, Shapes::ShapeRef.new(shape: OfferProductIdString, location_name: "ProductId"))
645
+ OfferSummary.add_member(:resale_authorization_id, Shapes::ShapeRef.new(shape: OfferResaleAuthorizationIdString, location_name: "ResaleAuthorizationId"))
634
646
  OfferSummary.add_member(:release_date, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "ReleaseDate"))
635
647
  OfferSummary.add_member(:availability_end_date, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "AvailabilityEndDate"))
636
648
  OfferSummary.add_member(:buyer_accounts, Shapes::ShapeRef.new(shape: OfferBuyerAccountsList, location_name: "BuyerAccounts"))
@@ -829,6 +841,7 @@ module Aws::MarketplaceCatalog
829
841
  StartChangeSetRequest.add_member(:change_set_name, Shapes::ShapeRef.new(shape: ChangeSetName, location_name: "ChangeSetName"))
830
842
  StartChangeSetRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
831
843
  StartChangeSetRequest.add_member(:change_set_tags, Shapes::ShapeRef.new(shape: TagList, location_name: "ChangeSetTags"))
844
+ StartChangeSetRequest.add_member(:intent, Shapes::ShapeRef.new(shape: Intent, location_name: "Intent"))
832
845
  StartChangeSetRequest.struct_class = Types::StartChangeSetRequest
833
846
 
834
847
  StartChangeSetResponse.add_member(:change_set_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ChangeSetId"))
@@ -40,7 +40,8 @@ module Aws::MarketplaceCatalog
40
40
  end
41
41
 
42
42
  # Object containing all the filter fields for AMI products. Client can
43
- # add a maximum of 8 filters in a single `ListEntities` request.
43
+ # add only one wildcard filter and a maximum of 8 filters in a single
44
+ # `ListEntities` request.
44
45
  #
45
46
  # @!attribute [rw] entity_id
46
47
  # Unique identifier for the AMI product.
@@ -442,7 +443,8 @@ module Aws::MarketplaceCatalog
442
443
  end
443
444
 
444
445
  # Object containing all the filter fields for container products. Client
445
- # can add a maximum of 8 filters in a single `ListEntities` request.
446
+ # can add only one wildcard filter and a maximum of 8 filters in a
447
+ # single `ListEntities` request.
446
448
  #
447
449
  # @!attribute [rw] entity_id
448
450
  # Unique identifier for the container product.
@@ -597,7 +599,8 @@ module Aws::MarketplaceCatalog
597
599
  end
598
600
 
599
601
  # Object containing all the filter fields for data products. Client can
600
- # add a maximum of 8 filters in a single `ListEntities` request.
602
+ # add only one wildcard filter and a maximum of 8 filters in a single
603
+ # `ListEntities` request.
601
604
  #
602
605
  # @!attribute [rw] entity_id
603
606
  # Unique identifier for the data product.
@@ -788,6 +791,11 @@ module Aws::MarketplaceCatalog
788
791
  # do not provide a name, one is set by default.
789
792
  # @return [String]
790
793
  #
794
+ # @!attribute [rw] intent
795
+ # The optional intent provided in the `StartChangeSet` request. If you
796
+ # do not provide an intent, `APPLY` is set by default.
797
+ # @return [String]
798
+ #
791
799
  # @!attribute [rw] start_time
792
800
  # The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the
793
801
  # request started.
@@ -826,6 +834,7 @@ module Aws::MarketplaceCatalog
826
834
  :change_set_id,
827
835
  :change_set_arn,
828
836
  :change_set_name,
837
+ :intent,
829
838
  :start_time,
830
839
  :end_time,
831
840
  :status,
@@ -1493,7 +1502,9 @@ module Aws::MarketplaceCatalog
1493
1502
  include Aws::Structure
1494
1503
  end
1495
1504
 
1496
- # A filter for offers entity.
1505
+ # Object containing all the filter fields for offers entity. Client can
1506
+ # add only one wildcard filter and a maximum of 8 filters in a single
1507
+ # `ListEntities` request.
1497
1508
  #
1498
1509
  # @!attribute [rw] entity_id
1499
1510
  # Allows filtering on `EntityId` of an offer.
@@ -1507,6 +1518,15 @@ module Aws::MarketplaceCatalog
1507
1518
  # Allows filtering on the `ProductId` of an offer.
1508
1519
  # @return [Types::OfferProductIdFilter]
1509
1520
  #
1521
+ # @!attribute [rw] resale_authorization_id
1522
+ # Allows filtering on the `ResaleAuthorizationId` of an offer.
1523
+ #
1524
+ # <note markdown="1"> Not all offers have a `ResaleAuthorizationId`. The response will
1525
+ # only include offers for which you have permissions.
1526
+ #
1527
+ # </note>
1528
+ # @return [Types::OfferResaleAuthorizationIdFilter]
1529
+ #
1510
1530
  # @!attribute [rw] release_date
1511
1531
  # Allows filtering on the `ReleaseDate` of an offer.
1512
1532
  # @return [Types::OfferReleaseDateFilter]
@@ -1537,6 +1557,7 @@ module Aws::MarketplaceCatalog
1537
1557
  :entity_id,
1538
1558
  :name,
1539
1559
  :product_id,
1560
+ :resale_authorization_id,
1540
1561
  :release_date,
1541
1562
  :availability_end_date,
1542
1563
  :buyer_accounts,
@@ -1651,6 +1672,26 @@ module Aws::MarketplaceCatalog
1651
1672
  include Aws::Structure
1652
1673
  end
1653
1674
 
1675
+ # Allows filtering on the `ResaleAuthorizationId` of an offer.
1676
+ #
1677
+ # <note markdown="1"> Not all offers have a `ResaleAuthorizationId`. The response will only
1678
+ # include offers for which you have permissions.
1679
+ #
1680
+ # </note>
1681
+ #
1682
+ # @!attribute [rw] value_list
1683
+ # Allows filtering on the `ResaleAuthorizationId` of an offer with
1684
+ # list input.
1685
+ # @return [Array<String>]
1686
+ #
1687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferResaleAuthorizationIdFilter AWS API Documentation
1688
+ #
1689
+ class OfferResaleAuthorizationIdFilter < Struct.new(
1690
+ :value_list)
1691
+ SENSITIVE = []
1692
+ include Aws::Structure
1693
+ end
1694
+
1654
1695
  # Allows to sort offers.
1655
1696
  #
1656
1697
  # @!attribute [rw] sort_by
@@ -1694,6 +1735,10 @@ module Aws::MarketplaceCatalog
1694
1735
  # The product ID of the offer.
1695
1736
  # @return [String]
1696
1737
  #
1738
+ # @!attribute [rw] resale_authorization_id
1739
+ # The ResaleAuthorizationId of the offer.
1740
+ # @return [String]
1741
+ #
1697
1742
  # @!attribute [rw] release_date
1698
1743
  # The release date of the offer.
1699
1744
  # @return [String]
@@ -1719,6 +1764,7 @@ module Aws::MarketplaceCatalog
1719
1764
  class OfferSummary < Struct.new(
1720
1765
  :name,
1721
1766
  :product_id,
1767
+ :resale_authorization_id,
1722
1768
  :release_date,
1723
1769
  :availability_end_date,
1724
1770
  :buyer_accounts,
@@ -1865,7 +1911,9 @@ module Aws::MarketplaceCatalog
1865
1911
  include Aws::Structure
1866
1912
  end
1867
1913
 
1868
- # A filter for ResaleAuthorization entity.
1914
+ # Object containing all the filter fields for resale authorization
1915
+ # entity. Client can add only one wildcard filter and a maximum of 8
1916
+ # filters in a single `ListEntities` request.
1869
1917
  #
1870
1918
  # @!attribute [rw] entity_id
1871
1919
  # Allows filtering on the `EntityId` of a ResaleAuthorization.
@@ -2301,7 +2349,8 @@ module Aws::MarketplaceCatalog
2301
2349
  end
2302
2350
 
2303
2351
  # Object containing all the filter fields for SaaS products. Client can
2304
- # add a maximum of 8 filters in a single `ListEntities` request.
2352
+ # add only one wildcard filter and a maximum of 8 filters in a single
2353
+ # `ListEntities` request.
2305
2354
  #
2306
2355
  # @!attribute [rw] entity_id
2307
2356
  # Unique identifier for the SaaS product.
@@ -2504,6 +2553,18 @@ module Aws::MarketplaceCatalog
2504
2553
  # `ChangeSetTags` property.
2505
2554
  # @return [Array<Types::Tag>]
2506
2555
  #
2556
+ # @!attribute [rw] intent
2557
+ # The intent related to the request. The default is `APPLY`. To test
2558
+ # your request before applying changes to your entities, use
2559
+ # `VALIDATE`. This feature is currently available for adding versions
2560
+ # to single-AMI products. For more information, see [Add a new
2561
+ # version][1].
2562
+ #
2563
+ #
2564
+ #
2565
+ # [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/ami-products.html#ami-add-version
2566
+ # @return [String]
2567
+ #
2507
2568
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/StartChangeSetRequest AWS API Documentation
2508
2569
  #
2509
2570
  class StartChangeSetRequest < Struct.new(
@@ -2511,7 +2572,8 @@ module Aws::MarketplaceCatalog
2511
2572
  :change_set,
2512
2573
  :change_set_name,
2513
2574
  :client_request_token,
2514
- :change_set_tags)
2575
+ :change_set_tags,
2576
+ :intent)
2515
2577
  SENSITIVE = []
2516
2578
  include Aws::Structure
2517
2579
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-marketplacecatalog/customizations'
52
52
  # @!group service
53
53
  module Aws::MarketplaceCatalog
54
54
 
55
- GEM_VERSION = '1.39.0'
55
+ GEM_VERSION = '1.41.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -114,6 +114,7 @@ module Aws
114
114
  def change_set_id: () -> ::String
115
115
  def change_set_arn: () -> ::String
116
116
  def change_set_name: () -> ::String
117
+ def intent: () -> ("VALIDATE" | "APPLY")
117
118
  def start_time: () -> ::String
118
119
  def end_time: () -> ::String
119
120
  def status: () -> ("PREPARING" | "APPLYING" | "SUCCEEDED" | "CANCELLED" | "FAILED")
@@ -265,6 +266,9 @@ module Aws
265
266
  product_id: {
266
267
  value_list: Array[::String]?
267
268
  }?,
269
+ resale_authorization_id: {
270
+ value_list: Array[::String]?
271
+ }?,
268
272
  release_date: {
269
273
  date_range: {
270
274
  after_value: ::String?,
@@ -385,7 +389,7 @@ module Aws
385
389
  sort_order: ("ASCENDING" | "DESCENDING")?
386
390
  }?,
387
391
  offer_sort: {
388
- sort_by: ("EntityId" | "Name" | "ProductId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate")?,
392
+ sort_by: ("EntityId" | "Name" | "ProductId" | "ResaleAuthorizationId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate")?,
389
393
  sort_order: ("ASCENDING" | "DESCENDING")?
390
394
  }?,
391
395
  container_product_sort: {
@@ -455,7 +459,8 @@ module Aws
455
459
  key: ::String,
456
460
  value: ::String
457
461
  },
458
- ]
462
+ ],
463
+ ?intent: ("VALIDATE" | "APPLY")
459
464
  ) -> _StartChangeSetResponseSuccess
460
465
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChangeSetResponseSuccess
461
466
 
data/sig/types.rbs CHANGED
@@ -233,6 +233,7 @@ module Aws::MarketplaceCatalog
233
233
  attr_accessor change_set_id: ::String
234
234
  attr_accessor change_set_arn: ::String
235
235
  attr_accessor change_set_name: ::String
236
+ attr_accessor intent: ("VALIDATE" | "APPLY")
236
237
  attr_accessor start_time: ::String
237
238
  attr_accessor end_time: ::String
238
239
  attr_accessor status: ("PREPARING" | "APPLYING" | "SUCCEEDED" | "CANCELLED" | "FAILED")
@@ -444,6 +445,7 @@ module Aws::MarketplaceCatalog
444
445
  attr_accessor entity_id: Types::OfferEntityIdFilter
445
446
  attr_accessor name: Types::OfferNameFilter
446
447
  attr_accessor product_id: Types::OfferProductIdFilter
448
+ attr_accessor resale_authorization_id: Types::OfferResaleAuthorizationIdFilter
447
449
  attr_accessor release_date: Types::OfferReleaseDateFilter
448
450
  attr_accessor availability_end_date: Types::OfferAvailabilityEndDateFilter
449
451
  attr_accessor buyer_accounts: Types::OfferBuyerAccountsFilter
@@ -486,8 +488,13 @@ module Aws::MarketplaceCatalog
486
488
  SENSITIVE: []
487
489
  end
488
490
 
491
+ class OfferResaleAuthorizationIdFilter
492
+ attr_accessor value_list: ::Array[::String]
493
+ SENSITIVE: []
494
+ end
495
+
489
496
  class OfferSort
490
- attr_accessor sort_by: ("EntityId" | "Name" | "ProductId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate")
497
+ attr_accessor sort_by: ("EntityId" | "Name" | "ProductId" | "ResaleAuthorizationId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate")
491
498
  attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
492
499
  SENSITIVE: []
493
500
  end
@@ -500,6 +507,7 @@ module Aws::MarketplaceCatalog
500
507
  class OfferSummary
501
508
  attr_accessor name: ::String
502
509
  attr_accessor product_id: ::String
510
+ attr_accessor resale_authorization_id: ::String
503
511
  attr_accessor release_date: ::String
504
512
  attr_accessor availability_end_date: ::String
505
513
  attr_accessor buyer_accounts: ::Array[::String]
@@ -731,6 +739,7 @@ module Aws::MarketplaceCatalog
731
739
  attr_accessor change_set_name: ::String
732
740
  attr_accessor client_request_token: ::String
733
741
  attr_accessor change_set_tags: ::Array[Types::Tag]
742
+ attr_accessor intent: ("VALIDATE" | "APPLY")
734
743
  SENSITIVE: []
735
744
  end
736
745
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-marketplacecatalog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.39.0
4
+ version: 1.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement