aws-sdk-marketplacecatalog 1.38.0 → 1.40.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: 51884d1443c764ad52bd321c404603208c854d739376c01e44ccdc55eba11800
4
- data.tar.gz: 30a1aa3c44b627ddcc80fef9719cf891c54cf365ea1670f62e9275d06f17a8d1
3
+ metadata.gz: fad0901c352a525e1f92cc7698aecc029b9fda797467314b0b2f73b376c735c3
4
+ data.tar.gz: ef723e10ed83430a37d93a77ccc4d848fdb928698c05b0ccfb9893e5a4e12be2
5
5
  SHA512:
6
- metadata.gz: 15354c806c8b83e035944429dc0837ed3c4b7df0e0c3bcd5b31df248dcaa1a56ad680c156c99771054a0f6f4541ff9c40d30e7e4683a29e77d087f3f16f10771
7
- data.tar.gz: e999189a3757bb4eaf8835e4430ad1c80e9858e3d29da3a9db68e951536c013bc54d6d66acc75eb943786057524c0e4dccacb8ef7eb9e3972d468815287277fc
6
+ metadata.gz: 2b3dfbd8743a68ce37bd1bdfc0c48838a1c6290fbdba54a79377356b0f1911593e5dd87f342a5d322c3f3fb697114dcb9cd7ddd6e4632c605aec7d978be46374
7
+ data.tar.gz: 2bd5f95bc2670ca3bc91dc8af6108a53d2c5564ffc1f08beb69b39105d7843be3ebb2f5675ecc0e7f0a95aaf71bac824dd1c1dc1e2853e105c39d57ca02e0a28
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2024-02-13)
5
+ ------------------
6
+
7
+ * Feature - AWS Marketplace Catalog API now supports setting intent on requests
8
+
9
+ 1.39.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.38.0 (2023-12-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.40.0
@@ -388,7 +388,9 @@ module Aws::MarketplaceCatalog
388
388
 
389
389
  # @!group API Operations
390
390
 
391
- # Returns metadata and content for multiple entities.
391
+ # Returns metadata and content for multiple entities. This is the Batch
392
+ # version of the `DescribeEntity` API and uses the same IAM permission
393
+ # action as `DescribeEntity` API.
392
394
  #
393
395
  # @option params [required, Array<Types::EntityRequest>] :entity_request_list
394
396
  # List of entity IDs and the catalogs the entities are present in.
@@ -507,6 +509,7 @@ module Aws::MarketplaceCatalog
507
509
  # * {Types::DescribeChangeSetResponse#change_set_id #change_set_id} => String
508
510
  # * {Types::DescribeChangeSetResponse#change_set_arn #change_set_arn} => String
509
511
  # * {Types::DescribeChangeSetResponse#change_set_name #change_set_name} => String
512
+ # * {Types::DescribeChangeSetResponse#intent #intent} => String
510
513
  # * {Types::DescribeChangeSetResponse#start_time #start_time} => String
511
514
  # * {Types::DescribeChangeSetResponse#end_time #end_time} => String
512
515
  # * {Types::DescribeChangeSetResponse#status #status} => String
@@ -526,6 +529,7 @@ module Aws::MarketplaceCatalog
526
529
  # resp.change_set_id #=> String
527
530
  # resp.change_set_arn #=> String
528
531
  # resp.change_set_name #=> String
532
+ # resp.intent #=> String, one of "VALIDATE", "APPLY"
529
533
  # resp.start_time #=> String
530
534
  # resp.end_time #=> String
531
535
  # resp.status #=> String, one of "PREPARING", "APPLYING", "SUCCEEDED", "CANCELLED", "FAILED"
@@ -1128,6 +1132,16 @@ module Aws::MarketplaceCatalog
1128
1132
  # A list of objects specifying each key name and value for the
1129
1133
  # `ChangeSetTags` property.
1130
1134
  #
1135
+ # @option params [String] :intent
1136
+ # The intent related to the request. The default is `APPLY`. To test
1137
+ # your request before applying changes to your entities, use `VALIDATE`.
1138
+ # This feature is currently available for adding versions to single-AMI
1139
+ # products. For more information, see [Add a new version][1].
1140
+ #
1141
+ #
1142
+ #
1143
+ # [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/ami-products.html#ami-add-version
1144
+ #
1131
1145
  # @return [Types::StartChangeSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1132
1146
  #
1133
1147
  # * {Types::StartChangeSetResponse#change_set_id #change_set_id} => String
@@ -1164,6 +1178,7 @@ module Aws::MarketplaceCatalog
1164
1178
  # value: "TagValue", # required
1165
1179
  # },
1166
1180
  # ],
1181
+ # intent: "VALIDATE", # accepts VALIDATE, APPLY
1167
1182
  # })
1168
1183
  #
1169
1184
  # @example Response structure
@@ -1265,7 +1280,7 @@ module Aws::MarketplaceCatalog
1265
1280
  params: params,
1266
1281
  config: config)
1267
1282
  context[:gem_name] = 'aws-sdk-marketplacecatalog'
1268
- context[:gem_version] = '1.38.0'
1283
+ context[:gem_version] = '1.40.0'
1269
1284
  Seahorse::Client::Request.new(handlers, context)
1270
1285
  end
1271
1286
 
@@ -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)
@@ -422,6 +423,7 @@ module Aws::MarketplaceCatalog
422
423
  DescribeChangeSetResponse.add_member(:change_set_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ChangeSetId"))
423
424
  DescribeChangeSetResponse.add_member(:change_set_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ChangeSetArn"))
424
425
  DescribeChangeSetResponse.add_member(:change_set_name, Shapes::ShapeRef.new(shape: ChangeSetName, location_name: "ChangeSetName"))
426
+ DescribeChangeSetResponse.add_member(:intent, Shapes::ShapeRef.new(shape: Intent, location_name: "Intent"))
425
427
  DescribeChangeSetResponse.add_member(:start_time, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "StartTime"))
426
428
  DescribeChangeSetResponse.add_member(:end_time, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "EndTime"))
427
429
  DescribeChangeSetResponse.add_member(:status, Shapes::ShapeRef.new(shape: ChangeStatus, location_name: "Status"))
@@ -829,6 +831,7 @@ module Aws::MarketplaceCatalog
829
831
  StartChangeSetRequest.add_member(:change_set_name, Shapes::ShapeRef.new(shape: ChangeSetName, location_name: "ChangeSetName"))
830
832
  StartChangeSetRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
831
833
  StartChangeSetRequest.add_member(:change_set_tags, Shapes::ShapeRef.new(shape: TagList, location_name: "ChangeSetTags"))
834
+ StartChangeSetRequest.add_member(:intent, Shapes::ShapeRef.new(shape: Intent, location_name: "Intent"))
832
835
  StartChangeSetRequest.struct_class = Types::StartChangeSetRequest
833
836
 
834
837
  StartChangeSetResponse.add_member(:change_set_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ChangeSetId"))
@@ -14,6 +14,7 @@ module Aws::MarketplaceCatalog
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MarketplaceCatalog::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -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.
@@ -1865,7 +1876,9 @@ module Aws::MarketplaceCatalog
1865
1876
  include Aws::Structure
1866
1877
  end
1867
1878
 
1868
- # A filter for ResaleAuthorization entity.
1879
+ # Object containing all the filter fields for resale authorization
1880
+ # entity. Client can add only one wildcard filter and a maximum of 8
1881
+ # filters in a single `ListEntities` request.
1869
1882
  #
1870
1883
  # @!attribute [rw] entity_id
1871
1884
  # Allows filtering on the `EntityId` of a ResaleAuthorization.
@@ -2301,7 +2314,8 @@ module Aws::MarketplaceCatalog
2301
2314
  end
2302
2315
 
2303
2316
  # Object containing all the filter fields for SaaS products. Client can
2304
- # add a maximum of 8 filters in a single `ListEntities` request.
2317
+ # add only one wildcard filter and a maximum of 8 filters in a single
2318
+ # `ListEntities` request.
2305
2319
  #
2306
2320
  # @!attribute [rw] entity_id
2307
2321
  # Unique identifier for the SaaS product.
@@ -2504,6 +2518,18 @@ module Aws::MarketplaceCatalog
2504
2518
  # `ChangeSetTags` property.
2505
2519
  # @return [Array<Types::Tag>]
2506
2520
  #
2521
+ # @!attribute [rw] intent
2522
+ # The intent related to the request. The default is `APPLY`. To test
2523
+ # your request before applying changes to your entities, use
2524
+ # `VALIDATE`. This feature is currently available for adding versions
2525
+ # to single-AMI products. For more information, see [Add a new
2526
+ # version][1].
2527
+ #
2528
+ #
2529
+ #
2530
+ # [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/ami-products.html#ami-add-version
2531
+ # @return [String]
2532
+ #
2507
2533
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/StartChangeSetRequest AWS API Documentation
2508
2534
  #
2509
2535
  class StartChangeSetRequest < Struct.new(
@@ -2511,7 +2537,8 @@ module Aws::MarketplaceCatalog
2511
2537
  :change_set,
2512
2538
  :change_set_name,
2513
2539
  :client_request_token,
2514
- :change_set_tags)
2540
+ :change_set_tags,
2541
+ :intent)
2515
2542
  SENSITIVE = []
2516
2543
  include Aws::Structure
2517
2544
  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.38.0'
55
+ GEM_VERSION = '1.40.0'
56
56
 
57
57
  end