aws-sdk-marketplacecatalog 1.70.0 → 1.71.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-marketplacecatalog/client.rb +47 -4
- data/lib/aws-sdk-marketplacecatalog/client_api.rb +100 -0
- data/lib/aws-sdk-marketplacecatalog/types.rb +287 -4
- data/lib/aws-sdk-marketplacecatalog.rb +1 -1
- data/sig/client.rbs +37 -1
- data/sig/types.rbs +88 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc343c63dab83f673491d739667980598c145b5137056fe97f3e5a27bf5c452e
|
|
4
|
+
data.tar.gz: b19db89efade57cf42913029cf0b692b9e6a559ee406bbc78e1ac24d681eaa38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f10bb12cdce8ed9371bad02022e4cb3c37c952ad65b54ddbd465de716be3cdd06289a26f36c59340799b840d505fda18cba50824ecd4c0ba6045e318e2068946
|
|
7
|
+
data.tar.gz: 5c05949988aa9bf5e840f71591326ccf95953037b9344890c0f939199e3ddd86b1159808387279680f1f34ca4ffdebb411fa8e3662796a0017fa64463fa4a78e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.71.0 (2025-12-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release introduces offer set entity in AWS Marketplace Catalog API to enable multi-product transaction. Offer set enables sellers to group multiple private offers into a single-click purchase experience, simplifying procurement for customers purchasing multi-product solutions.
|
|
8
|
+
|
|
4
9
|
1.70.0 (2025-11-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.71.0
|
|
@@ -797,8 +797,8 @@ module Aws::MarketplaceCatalog
|
|
|
797
797
|
# @option params [required, String] :entity_type
|
|
798
798
|
# The type of entities to retrieve. Valid values are: `AmiProduct`,
|
|
799
799
|
# `ContainerProduct`, `DataProduct`, `SaaSProduct`, `ProcurementPolicy`,
|
|
800
|
-
# `Experience`, `Audience`, `BrandingSettings`, `Offer`, `
|
|
801
|
-
# `ResaleAuthorization`.
|
|
800
|
+
# `Experience`, `Audience`, `BrandingSettings`, `Offer`, `OfferSet`,
|
|
801
|
+
# `Seller`, `ResaleAuthorization`, `Solution`.
|
|
802
802
|
#
|
|
803
803
|
# @option params [Array<Types::Filter>] :filter_list
|
|
804
804
|
# An array of filter objects. Each filter object contains two
|
|
@@ -954,6 +954,9 @@ module Aws::MarketplaceCatalog
|
|
|
954
954
|
# before_value: "DateTimeISO8601",
|
|
955
955
|
# },
|
|
956
956
|
# },
|
|
957
|
+
# offer_set_id: {
|
|
958
|
+
# value_list: ["OfferSetIdString"],
|
|
959
|
+
# },
|
|
957
960
|
# },
|
|
958
961
|
# container_product_filters: {
|
|
959
962
|
# entity_id: {
|
|
@@ -1050,6 +1053,35 @@ module Aws::MarketplaceCatalog
|
|
|
1050
1053
|
# value_list: ["Limited"], # accepts Limited, Public, Restricted, Draft
|
|
1051
1054
|
# },
|
|
1052
1055
|
# },
|
|
1056
|
+
# offer_set_filters: {
|
|
1057
|
+
# entity_id: {
|
|
1058
|
+
# value_list: ["OfferSetEntityIdString"],
|
|
1059
|
+
# },
|
|
1060
|
+
# name: {
|
|
1061
|
+
# value_list: ["OfferSetNameString"],
|
|
1062
|
+
# },
|
|
1063
|
+
# state: {
|
|
1064
|
+
# value_list: ["Draft"], # accepts Draft, Released
|
|
1065
|
+
# },
|
|
1066
|
+
# release_date: {
|
|
1067
|
+
# date_range: {
|
|
1068
|
+
# after_value: "DateTimeISO8601",
|
|
1069
|
+
# before_value: "DateTimeISO8601",
|
|
1070
|
+
# },
|
|
1071
|
+
# },
|
|
1072
|
+
# associated_offer_ids: {
|
|
1073
|
+
# value_list: ["OfferSetAssociatedOfferIdsString"],
|
|
1074
|
+
# },
|
|
1075
|
+
# solution_id: {
|
|
1076
|
+
# value_list: ["OfferSetSolutionIdString"],
|
|
1077
|
+
# },
|
|
1078
|
+
# last_modified_date: {
|
|
1079
|
+
# date_range: {
|
|
1080
|
+
# after_value: "DateTimeISO8601",
|
|
1081
|
+
# before_value: "DateTimeISO8601",
|
|
1082
|
+
# },
|
|
1083
|
+
# },
|
|
1084
|
+
# },
|
|
1053
1085
|
# },
|
|
1054
1086
|
# entity_type_sort: {
|
|
1055
1087
|
# data_product_sort: {
|
|
@@ -1065,7 +1097,7 @@ module Aws::MarketplaceCatalog
|
|
|
1065
1097
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
1066
1098
|
# },
|
|
1067
1099
|
# offer_sort: {
|
|
1068
|
-
# sort_by: "EntityId", # accepts EntityId, Name, ProductId, ResaleAuthorizationId, ReleaseDate, AvailabilityEndDate, BuyerAccounts, State, Targeting, LastModifiedDate
|
|
1100
|
+
# sort_by: "EntityId", # accepts EntityId, Name, ProductId, ResaleAuthorizationId, ReleaseDate, AvailabilityEndDate, BuyerAccounts, State, Targeting, LastModifiedDate, OfferSetId
|
|
1069
1101
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
1070
1102
|
# },
|
|
1071
1103
|
# container_product_sort: {
|
|
@@ -1080,6 +1112,10 @@ module Aws::MarketplaceCatalog
|
|
|
1080
1112
|
# sort_by: "EntityId", # accepts EntityId, LastModifiedDate, ProductTitle, Visibility
|
|
1081
1113
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
1082
1114
|
# },
|
|
1115
|
+
# offer_set_sort: {
|
|
1116
|
+
# sort_by: "Name", # accepts Name, State, ReleaseDate, SolutionId, EntityId, LastModifiedDate
|
|
1117
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
1118
|
+
# },
|
|
1083
1119
|
# },
|
|
1084
1120
|
# })
|
|
1085
1121
|
#
|
|
@@ -1110,6 +1146,7 @@ module Aws::MarketplaceCatalog
|
|
|
1110
1146
|
# resp.entity_summary_list[0].offer_summary.state #=> String, one of "Draft", "Released"
|
|
1111
1147
|
# resp.entity_summary_list[0].offer_summary.targeting #=> Array
|
|
1112
1148
|
# resp.entity_summary_list[0].offer_summary.targeting[0] #=> String, one of "BuyerAccounts", "ParticipatingPrograms", "CountryCodes", "None"
|
|
1149
|
+
# resp.entity_summary_list[0].offer_summary.offer_set_id #=> String
|
|
1113
1150
|
# resp.entity_summary_list[0].resale_authorization_summary.name #=> String
|
|
1114
1151
|
# resp.entity_summary_list[0].resale_authorization_summary.product_id #=> String
|
|
1115
1152
|
# resp.entity_summary_list[0].resale_authorization_summary.product_name #=> String
|
|
@@ -1123,6 +1160,12 @@ module Aws::MarketplaceCatalog
|
|
|
1123
1160
|
# resp.entity_summary_list[0].resale_authorization_summary.availability_end_date #=> String
|
|
1124
1161
|
# resp.entity_summary_list[0].machine_learning_product_summary.product_title #=> String
|
|
1125
1162
|
# resp.entity_summary_list[0].machine_learning_product_summary.visibility #=> String, one of "Limited", "Public", "Restricted", "Draft"
|
|
1163
|
+
# resp.entity_summary_list[0].offer_set_summary.name #=> String
|
|
1164
|
+
# resp.entity_summary_list[0].offer_set_summary.state #=> String, one of "Draft", "Released"
|
|
1165
|
+
# resp.entity_summary_list[0].offer_set_summary.release_date #=> String
|
|
1166
|
+
# resp.entity_summary_list[0].offer_set_summary.associated_offer_ids #=> Array
|
|
1167
|
+
# resp.entity_summary_list[0].offer_set_summary.associated_offer_ids[0] #=> String
|
|
1168
|
+
# resp.entity_summary_list[0].offer_set_summary.solution_id #=> String
|
|
1126
1169
|
# resp.next_token #=> String
|
|
1127
1170
|
#
|
|
1128
1171
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListEntities AWS API Documentation
|
|
@@ -1406,7 +1449,7 @@ module Aws::MarketplaceCatalog
|
|
|
1406
1449
|
tracer: tracer
|
|
1407
1450
|
)
|
|
1408
1451
|
context[:gem_name] = 'aws-sdk-marketplacecatalog'
|
|
1409
|
-
context[:gem_version] = '1.
|
|
1452
|
+
context[:gem_version] = '1.71.0'
|
|
1410
1453
|
Seahorse::Client::Request.new(handlers, context)
|
|
1411
1454
|
end
|
|
1412
1455
|
|
|
@@ -162,6 +162,33 @@ module Aws::MarketplaceCatalog
|
|
|
162
162
|
OfferResaleAuthorizationIdFilter = Shapes::StructureShape.new(name: 'OfferResaleAuthorizationIdFilter')
|
|
163
163
|
OfferResaleAuthorizationIdFilterValueList = Shapes::ListShape.new(name: 'OfferResaleAuthorizationIdFilterValueList')
|
|
164
164
|
OfferResaleAuthorizationIdString = Shapes::StringShape.new(name: 'OfferResaleAuthorizationIdString')
|
|
165
|
+
OfferSetAssociatedOfferIdsFilter = Shapes::StructureShape.new(name: 'OfferSetAssociatedOfferIdsFilter')
|
|
166
|
+
OfferSetAssociatedOfferIdsFilterValueList = Shapes::ListShape.new(name: 'OfferSetAssociatedOfferIdsFilterValueList')
|
|
167
|
+
OfferSetAssociatedOfferIdsList = Shapes::ListShape.new(name: 'OfferSetAssociatedOfferIdsList')
|
|
168
|
+
OfferSetAssociatedOfferIdsString = Shapes::StringShape.new(name: 'OfferSetAssociatedOfferIdsString')
|
|
169
|
+
OfferSetEntityIdFilter = Shapes::StructureShape.new(name: 'OfferSetEntityIdFilter')
|
|
170
|
+
OfferSetEntityIdFilterValueList = Shapes::ListShape.new(name: 'OfferSetEntityIdFilterValueList')
|
|
171
|
+
OfferSetEntityIdString = Shapes::StringShape.new(name: 'OfferSetEntityIdString')
|
|
172
|
+
OfferSetFilters = Shapes::StructureShape.new(name: 'OfferSetFilters')
|
|
173
|
+
OfferSetIdFilter = Shapes::StructureShape.new(name: 'OfferSetIdFilter')
|
|
174
|
+
OfferSetIdFilterValueList = Shapes::ListShape.new(name: 'OfferSetIdFilterValueList')
|
|
175
|
+
OfferSetIdString = Shapes::StringShape.new(name: 'OfferSetIdString')
|
|
176
|
+
OfferSetLastModifiedDateFilter = Shapes::StructureShape.new(name: 'OfferSetLastModifiedDateFilter')
|
|
177
|
+
OfferSetLastModifiedDateFilterDateRange = Shapes::StructureShape.new(name: 'OfferSetLastModifiedDateFilterDateRange')
|
|
178
|
+
OfferSetNameFilter = Shapes::StructureShape.new(name: 'OfferSetNameFilter')
|
|
179
|
+
OfferSetNameFilterValueList = Shapes::ListShape.new(name: 'OfferSetNameFilterValueList')
|
|
180
|
+
OfferSetNameString = Shapes::StringShape.new(name: 'OfferSetNameString')
|
|
181
|
+
OfferSetReleaseDateFilter = Shapes::StructureShape.new(name: 'OfferSetReleaseDateFilter')
|
|
182
|
+
OfferSetReleaseDateFilterDateRange = Shapes::StructureShape.new(name: 'OfferSetReleaseDateFilterDateRange')
|
|
183
|
+
OfferSetSolutionIdFilter = Shapes::StructureShape.new(name: 'OfferSetSolutionIdFilter')
|
|
184
|
+
OfferSetSolutionIdFilterValueList = Shapes::ListShape.new(name: 'OfferSetSolutionIdFilterValueList')
|
|
185
|
+
OfferSetSolutionIdString = Shapes::StringShape.new(name: 'OfferSetSolutionIdString')
|
|
186
|
+
OfferSetSort = Shapes::StructureShape.new(name: 'OfferSetSort')
|
|
187
|
+
OfferSetSortBy = Shapes::StringShape.new(name: 'OfferSetSortBy')
|
|
188
|
+
OfferSetStateFilter = Shapes::StructureShape.new(name: 'OfferSetStateFilter')
|
|
189
|
+
OfferSetStateFilterValueList = Shapes::ListShape.new(name: 'OfferSetStateFilterValueList')
|
|
190
|
+
OfferSetStateString = Shapes::StringShape.new(name: 'OfferSetStateString')
|
|
191
|
+
OfferSetSummary = Shapes::StructureShape.new(name: 'OfferSetSummary')
|
|
165
192
|
OfferSort = Shapes::StructureShape.new(name: 'OfferSort')
|
|
166
193
|
OfferSortBy = Shapes::StringShape.new(name: 'OfferSortBy')
|
|
167
194
|
OfferStateFilter = Shapes::StructureShape.new(name: 'OfferStateFilter')
|
|
@@ -496,6 +523,7 @@ module Aws::MarketplaceCatalog
|
|
|
496
523
|
EntitySummary.add_member(:offer_summary, Shapes::ShapeRef.new(shape: OfferSummary, location_name: "OfferSummary"))
|
|
497
524
|
EntitySummary.add_member(:resale_authorization_summary, Shapes::ShapeRef.new(shape: ResaleAuthorizationSummary, location_name: "ResaleAuthorizationSummary"))
|
|
498
525
|
EntitySummary.add_member(:machine_learning_product_summary, Shapes::ShapeRef.new(shape: MachineLearningProductSummary, location_name: "MachineLearningProductSummary"))
|
|
526
|
+
EntitySummary.add_member(:offer_set_summary, Shapes::ShapeRef.new(shape: OfferSetSummary, location_name: "OfferSetSummary"))
|
|
499
527
|
EntitySummary.struct_class = Types::EntitySummary
|
|
500
528
|
|
|
501
529
|
EntitySummaryList.member = Shapes::ShapeRef.new(shape: EntitySummary)
|
|
@@ -507,6 +535,7 @@ module Aws::MarketplaceCatalog
|
|
|
507
535
|
EntityTypeFilters.add_member(:container_product_filters, Shapes::ShapeRef.new(shape: ContainerProductFilters, location_name: "ContainerProductFilters"))
|
|
508
536
|
EntityTypeFilters.add_member(:resale_authorization_filters, Shapes::ShapeRef.new(shape: ResaleAuthorizationFilters, location_name: "ResaleAuthorizationFilters"))
|
|
509
537
|
EntityTypeFilters.add_member(:machine_learning_product_filters, Shapes::ShapeRef.new(shape: MachineLearningProductFilters, location_name: "MachineLearningProductFilters"))
|
|
538
|
+
EntityTypeFilters.add_member(:offer_set_filters, Shapes::ShapeRef.new(shape: OfferSetFilters, location_name: "OfferSetFilters"))
|
|
510
539
|
EntityTypeFilters.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
511
540
|
EntityTypeFilters.add_member_subclass(:data_product_filters, Types::EntityTypeFilters::DataProductFilters)
|
|
512
541
|
EntityTypeFilters.add_member_subclass(:saa_s_product_filters, Types::EntityTypeFilters::SaaSProductFilters)
|
|
@@ -515,6 +544,7 @@ module Aws::MarketplaceCatalog
|
|
|
515
544
|
EntityTypeFilters.add_member_subclass(:container_product_filters, Types::EntityTypeFilters::ContainerProductFilters)
|
|
516
545
|
EntityTypeFilters.add_member_subclass(:resale_authorization_filters, Types::EntityTypeFilters::ResaleAuthorizationFilters)
|
|
517
546
|
EntityTypeFilters.add_member_subclass(:machine_learning_product_filters, Types::EntityTypeFilters::MachineLearningProductFilters)
|
|
547
|
+
EntityTypeFilters.add_member_subclass(:offer_set_filters, Types::EntityTypeFilters::OfferSetFilters)
|
|
518
548
|
EntityTypeFilters.add_member_subclass(:unknown, Types::EntityTypeFilters::Unknown)
|
|
519
549
|
EntityTypeFilters.struct_class = Types::EntityTypeFilters
|
|
520
550
|
|
|
@@ -525,6 +555,7 @@ module Aws::MarketplaceCatalog
|
|
|
525
555
|
EntityTypeSort.add_member(:container_product_sort, Shapes::ShapeRef.new(shape: ContainerProductSort, location_name: "ContainerProductSort"))
|
|
526
556
|
EntityTypeSort.add_member(:resale_authorization_sort, Shapes::ShapeRef.new(shape: ResaleAuthorizationSort, location_name: "ResaleAuthorizationSort"))
|
|
527
557
|
EntityTypeSort.add_member(:machine_learning_product_sort, Shapes::ShapeRef.new(shape: MachineLearningProductSort, location_name: "MachineLearningProductSort"))
|
|
558
|
+
EntityTypeSort.add_member(:offer_set_sort, Shapes::ShapeRef.new(shape: OfferSetSort, location_name: "OfferSetSort"))
|
|
528
559
|
EntityTypeSort.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
529
560
|
EntityTypeSort.add_member_subclass(:data_product_sort, Types::EntityTypeSort::DataProductSort)
|
|
530
561
|
EntityTypeSort.add_member_subclass(:saa_s_product_sort, Types::EntityTypeSort::SaaSProductSort)
|
|
@@ -533,6 +564,7 @@ module Aws::MarketplaceCatalog
|
|
|
533
564
|
EntityTypeSort.add_member_subclass(:container_product_sort, Types::EntityTypeSort::ContainerProductSort)
|
|
534
565
|
EntityTypeSort.add_member_subclass(:resale_authorization_sort, Types::EntityTypeSort::ResaleAuthorizationSort)
|
|
535
566
|
EntityTypeSort.add_member_subclass(:machine_learning_product_sort, Types::EntityTypeSort::MachineLearningProductSort)
|
|
567
|
+
EntityTypeSort.add_member_subclass(:offer_set_sort, Types::EntityTypeSort::OfferSetSort)
|
|
536
568
|
EntityTypeSort.add_member_subclass(:unknown, Types::EntityTypeSort::Unknown)
|
|
537
569
|
EntityTypeSort.struct_class = Types::EntityTypeSort
|
|
538
570
|
|
|
@@ -657,6 +689,7 @@ module Aws::MarketplaceCatalog
|
|
|
657
689
|
OfferFilters.add_member(:state, Shapes::ShapeRef.new(shape: OfferStateFilter, location_name: "State"))
|
|
658
690
|
OfferFilters.add_member(:targeting, Shapes::ShapeRef.new(shape: OfferTargetingFilter, location_name: "Targeting"))
|
|
659
691
|
OfferFilters.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: OfferLastModifiedDateFilter, location_name: "LastModifiedDate"))
|
|
692
|
+
OfferFilters.add_member(:offer_set_id, Shapes::ShapeRef.new(shape: OfferSetIdFilter, location_name: "OfferSetId"))
|
|
660
693
|
OfferFilters.struct_class = Types::OfferFilters
|
|
661
694
|
|
|
662
695
|
OfferLastModifiedDateFilter.add_member(:date_range, Shapes::ShapeRef.new(shape: OfferLastModifiedDateFilterDateRange, location_name: "DateRange"))
|
|
@@ -689,6 +722,72 @@ module Aws::MarketplaceCatalog
|
|
|
689
722
|
|
|
690
723
|
OfferResaleAuthorizationIdFilterValueList.member = Shapes::ShapeRef.new(shape: OfferResaleAuthorizationIdString)
|
|
691
724
|
|
|
725
|
+
OfferSetAssociatedOfferIdsFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: OfferSetAssociatedOfferIdsFilterValueList, location_name: "ValueList"))
|
|
726
|
+
OfferSetAssociatedOfferIdsFilter.struct_class = Types::OfferSetAssociatedOfferIdsFilter
|
|
727
|
+
|
|
728
|
+
OfferSetAssociatedOfferIdsFilterValueList.member = Shapes::ShapeRef.new(shape: OfferSetAssociatedOfferIdsString)
|
|
729
|
+
|
|
730
|
+
OfferSetAssociatedOfferIdsList.member = Shapes::ShapeRef.new(shape: OfferSetAssociatedOfferIdsString)
|
|
731
|
+
|
|
732
|
+
OfferSetEntityIdFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: OfferSetEntityIdFilterValueList, location_name: "ValueList"))
|
|
733
|
+
OfferSetEntityIdFilter.struct_class = Types::OfferSetEntityIdFilter
|
|
734
|
+
|
|
735
|
+
OfferSetEntityIdFilterValueList.member = Shapes::ShapeRef.new(shape: OfferSetEntityIdString)
|
|
736
|
+
|
|
737
|
+
OfferSetFilters.add_member(:entity_id, Shapes::ShapeRef.new(shape: OfferSetEntityIdFilter, location_name: "EntityId"))
|
|
738
|
+
OfferSetFilters.add_member(:name, Shapes::ShapeRef.new(shape: OfferSetNameFilter, location_name: "Name"))
|
|
739
|
+
OfferSetFilters.add_member(:state, Shapes::ShapeRef.new(shape: OfferSetStateFilter, location_name: "State"))
|
|
740
|
+
OfferSetFilters.add_member(:release_date, Shapes::ShapeRef.new(shape: OfferSetReleaseDateFilter, location_name: "ReleaseDate"))
|
|
741
|
+
OfferSetFilters.add_member(:associated_offer_ids, Shapes::ShapeRef.new(shape: OfferSetAssociatedOfferIdsFilter, location_name: "AssociatedOfferIds"))
|
|
742
|
+
OfferSetFilters.add_member(:solution_id, Shapes::ShapeRef.new(shape: OfferSetSolutionIdFilter, location_name: "SolutionId"))
|
|
743
|
+
OfferSetFilters.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: OfferSetLastModifiedDateFilter, location_name: "LastModifiedDate"))
|
|
744
|
+
OfferSetFilters.struct_class = Types::OfferSetFilters
|
|
745
|
+
|
|
746
|
+
OfferSetIdFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: OfferSetIdFilterValueList, location_name: "ValueList"))
|
|
747
|
+
OfferSetIdFilter.struct_class = Types::OfferSetIdFilter
|
|
748
|
+
|
|
749
|
+
OfferSetIdFilterValueList.member = Shapes::ShapeRef.new(shape: OfferSetIdString)
|
|
750
|
+
|
|
751
|
+
OfferSetLastModifiedDateFilter.add_member(:date_range, Shapes::ShapeRef.new(shape: OfferSetLastModifiedDateFilterDateRange, location_name: "DateRange"))
|
|
752
|
+
OfferSetLastModifiedDateFilter.struct_class = Types::OfferSetLastModifiedDateFilter
|
|
753
|
+
|
|
754
|
+
OfferSetLastModifiedDateFilterDateRange.add_member(:after_value, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "AfterValue"))
|
|
755
|
+
OfferSetLastModifiedDateFilterDateRange.add_member(:before_value, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "BeforeValue"))
|
|
756
|
+
OfferSetLastModifiedDateFilterDateRange.struct_class = Types::OfferSetLastModifiedDateFilterDateRange
|
|
757
|
+
|
|
758
|
+
OfferSetNameFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: OfferSetNameFilterValueList, location_name: "ValueList"))
|
|
759
|
+
OfferSetNameFilter.struct_class = Types::OfferSetNameFilter
|
|
760
|
+
|
|
761
|
+
OfferSetNameFilterValueList.member = Shapes::ShapeRef.new(shape: OfferSetNameString)
|
|
762
|
+
|
|
763
|
+
OfferSetReleaseDateFilter.add_member(:date_range, Shapes::ShapeRef.new(shape: OfferSetReleaseDateFilterDateRange, location_name: "DateRange"))
|
|
764
|
+
OfferSetReleaseDateFilter.struct_class = Types::OfferSetReleaseDateFilter
|
|
765
|
+
|
|
766
|
+
OfferSetReleaseDateFilterDateRange.add_member(:after_value, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "AfterValue"))
|
|
767
|
+
OfferSetReleaseDateFilterDateRange.add_member(:before_value, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "BeforeValue"))
|
|
768
|
+
OfferSetReleaseDateFilterDateRange.struct_class = Types::OfferSetReleaseDateFilterDateRange
|
|
769
|
+
|
|
770
|
+
OfferSetSolutionIdFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: OfferSetSolutionIdFilterValueList, location_name: "ValueList"))
|
|
771
|
+
OfferSetSolutionIdFilter.struct_class = Types::OfferSetSolutionIdFilter
|
|
772
|
+
|
|
773
|
+
OfferSetSolutionIdFilterValueList.member = Shapes::ShapeRef.new(shape: OfferSetSolutionIdString)
|
|
774
|
+
|
|
775
|
+
OfferSetSort.add_member(:sort_by, Shapes::ShapeRef.new(shape: OfferSetSortBy, location_name: "SortBy"))
|
|
776
|
+
OfferSetSort.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
|
777
|
+
OfferSetSort.struct_class = Types::OfferSetSort
|
|
778
|
+
|
|
779
|
+
OfferSetStateFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: OfferSetStateFilterValueList, location_name: "ValueList"))
|
|
780
|
+
OfferSetStateFilter.struct_class = Types::OfferSetStateFilter
|
|
781
|
+
|
|
782
|
+
OfferSetStateFilterValueList.member = Shapes::ShapeRef.new(shape: OfferSetStateString)
|
|
783
|
+
|
|
784
|
+
OfferSetSummary.add_member(:name, Shapes::ShapeRef.new(shape: OfferSetNameString, location_name: "Name"))
|
|
785
|
+
OfferSetSummary.add_member(:state, Shapes::ShapeRef.new(shape: OfferSetStateString, location_name: "State"))
|
|
786
|
+
OfferSetSummary.add_member(:release_date, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "ReleaseDate"))
|
|
787
|
+
OfferSetSummary.add_member(:associated_offer_ids, Shapes::ShapeRef.new(shape: OfferSetAssociatedOfferIdsList, location_name: "AssociatedOfferIds"))
|
|
788
|
+
OfferSetSummary.add_member(:solution_id, Shapes::ShapeRef.new(shape: OfferSetSolutionIdString, location_name: "SolutionId"))
|
|
789
|
+
OfferSetSummary.struct_class = Types::OfferSetSummary
|
|
790
|
+
|
|
692
791
|
OfferSort.add_member(:sort_by, Shapes::ShapeRef.new(shape: OfferSortBy, location_name: "SortBy"))
|
|
693
792
|
OfferSort.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
|
694
793
|
OfferSort.struct_class = Types::OfferSort
|
|
@@ -706,6 +805,7 @@ module Aws::MarketplaceCatalog
|
|
|
706
805
|
OfferSummary.add_member(:buyer_accounts, Shapes::ShapeRef.new(shape: OfferBuyerAccountsList, location_name: "BuyerAccounts"))
|
|
707
806
|
OfferSummary.add_member(:state, Shapes::ShapeRef.new(shape: OfferStateString, location_name: "State"))
|
|
708
807
|
OfferSummary.add_member(:targeting, Shapes::ShapeRef.new(shape: OfferTargetingList, location_name: "Targeting"))
|
|
808
|
+
OfferSummary.add_member(:offer_set_id, Shapes::ShapeRef.new(shape: OfferSetIdString, location_name: "OfferSetId"))
|
|
709
809
|
OfferSummary.struct_class = Types::OfferSummary
|
|
710
810
|
|
|
711
811
|
OfferTargetingFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: OfferTargetingFilterValueList, location_name: "ValueList"))
|
|
@@ -1067,6 +1067,10 @@ module Aws::MarketplaceCatalog
|
|
|
1067
1067
|
# A summary of a machine learning product.
|
|
1068
1068
|
# @return [Types::MachineLearningProductSummary]
|
|
1069
1069
|
#
|
|
1070
|
+
# @!attribute [rw] offer_set_summary
|
|
1071
|
+
# An object that contains summary information about the offer set.
|
|
1072
|
+
# @return [Types::OfferSetSummary]
|
|
1073
|
+
#
|
|
1070
1074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntitySummary AWS API Documentation
|
|
1071
1075
|
#
|
|
1072
1076
|
class EntitySummary < Struct.new(
|
|
@@ -1082,7 +1086,8 @@ module Aws::MarketplaceCatalog
|
|
|
1082
1086
|
:saa_s_product_summary,
|
|
1083
1087
|
:offer_summary,
|
|
1084
1088
|
:resale_authorization_summary,
|
|
1085
|
-
:machine_learning_product_summary
|
|
1089
|
+
:machine_learning_product_summary,
|
|
1090
|
+
:offer_set_summary)
|
|
1086
1091
|
SENSITIVE = []
|
|
1087
1092
|
include Aws::Structure
|
|
1088
1093
|
end
|
|
@@ -1121,6 +1126,10 @@ module Aws::MarketplaceCatalog
|
|
|
1121
1126
|
# `astModifiedDate`, `ProductTitle`, and `Visibility`.
|
|
1122
1127
|
# @return [Types::MachineLearningProductFilters]
|
|
1123
1128
|
#
|
|
1129
|
+
# @!attribute [rw] offer_set_filters
|
|
1130
|
+
# A filter for offer sets.
|
|
1131
|
+
# @return [Types::OfferSetFilters]
|
|
1132
|
+
#
|
|
1124
1133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntityTypeFilters AWS API Documentation
|
|
1125
1134
|
#
|
|
1126
1135
|
class EntityTypeFilters < Struct.new(
|
|
@@ -1131,6 +1140,7 @@ module Aws::MarketplaceCatalog
|
|
|
1131
1140
|
:container_product_filters,
|
|
1132
1141
|
:resale_authorization_filters,
|
|
1133
1142
|
:machine_learning_product_filters,
|
|
1143
|
+
:offer_set_filters,
|
|
1134
1144
|
:unknown)
|
|
1135
1145
|
SENSITIVE = []
|
|
1136
1146
|
include Aws::Structure
|
|
@@ -1143,6 +1153,7 @@ module Aws::MarketplaceCatalog
|
|
|
1143
1153
|
class ContainerProductFilters < EntityTypeFilters; end
|
|
1144
1154
|
class ResaleAuthorizationFilters < EntityTypeFilters; end
|
|
1145
1155
|
class MachineLearningProductFilters < EntityTypeFilters; end
|
|
1156
|
+
class OfferSetFilters < EntityTypeFilters; end
|
|
1146
1157
|
class Unknown < EntityTypeFilters; end
|
|
1147
1158
|
end
|
|
1148
1159
|
|
|
@@ -1178,6 +1189,10 @@ module Aws::MarketplaceCatalog
|
|
|
1178
1189
|
# The sort options for machine learning products.
|
|
1179
1190
|
# @return [Types::MachineLearningProductSort]
|
|
1180
1191
|
#
|
|
1192
|
+
# @!attribute [rw] offer_set_sort
|
|
1193
|
+
# A sort for offer sets.
|
|
1194
|
+
# @return [Types::OfferSetSort]
|
|
1195
|
+
#
|
|
1181
1196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntityTypeSort AWS API Documentation
|
|
1182
1197
|
#
|
|
1183
1198
|
class EntityTypeSort < Struct.new(
|
|
@@ -1188,6 +1203,7 @@ module Aws::MarketplaceCatalog
|
|
|
1188
1203
|
:container_product_sort,
|
|
1189
1204
|
:resale_authorization_sort,
|
|
1190
1205
|
:machine_learning_product_sort,
|
|
1206
|
+
:offer_set_sort,
|
|
1191
1207
|
:unknown)
|
|
1192
1208
|
SENSITIVE = []
|
|
1193
1209
|
include Aws::Structure
|
|
@@ -1200,6 +1216,7 @@ module Aws::MarketplaceCatalog
|
|
|
1200
1216
|
class ContainerProductSort < EntityTypeSort; end
|
|
1201
1217
|
class ResaleAuthorizationSort < EntityTypeSort; end
|
|
1202
1218
|
class MachineLearningProductSort < EntityTypeSort; end
|
|
1219
|
+
class OfferSetSort < EntityTypeSort; end
|
|
1203
1220
|
class Unknown < EntityTypeSort; end
|
|
1204
1221
|
end
|
|
1205
1222
|
|
|
@@ -1370,7 +1387,7 @@ module Aws::MarketplaceCatalog
|
|
|
1370
1387
|
# The type of entities to retrieve. Valid values are: `AmiProduct`,
|
|
1371
1388
|
# `ContainerProduct`, `DataProduct`, `SaaSProduct`,
|
|
1372
1389
|
# `ProcurementPolicy`, `Experience`, `Audience`, `BrandingSettings`,
|
|
1373
|
-
# `Offer`, `Seller`, `ResaleAuthorization`.
|
|
1390
|
+
# `Offer`, `OfferSet`, `Seller`, `ResaleAuthorization`, `Solution`.
|
|
1374
1391
|
# @return [String]
|
|
1375
1392
|
#
|
|
1376
1393
|
# @!attribute [rw] filter_list
|
|
@@ -1760,6 +1777,10 @@ module Aws::MarketplaceCatalog
|
|
|
1760
1777
|
# Allows filtering on the `LastModifiedDate` of an offer.
|
|
1761
1778
|
# @return [Types::OfferLastModifiedDateFilter]
|
|
1762
1779
|
#
|
|
1780
|
+
# @!attribute [rw] offer_set_id
|
|
1781
|
+
# Allows filtering on the `OfferSetId` of an offer.
|
|
1782
|
+
# @return [Types::OfferSetIdFilter]
|
|
1783
|
+
#
|
|
1763
1784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferFilters AWS API Documentation
|
|
1764
1785
|
#
|
|
1765
1786
|
class OfferFilters < Struct.new(
|
|
@@ -1772,7 +1793,8 @@ module Aws::MarketplaceCatalog
|
|
|
1772
1793
|
:buyer_accounts,
|
|
1773
1794
|
:state,
|
|
1774
1795
|
:targeting,
|
|
1775
|
-
:last_modified_date
|
|
1796
|
+
:last_modified_date,
|
|
1797
|
+
:offer_set_id)
|
|
1776
1798
|
SENSITIVE = []
|
|
1777
1799
|
include Aws::Structure
|
|
1778
1800
|
end
|
|
@@ -1901,6 +1923,262 @@ module Aws::MarketplaceCatalog
|
|
|
1901
1923
|
include Aws::Structure
|
|
1902
1924
|
end
|
|
1903
1925
|
|
|
1926
|
+
# Allows filtering on the `AssociatedOfferIds` of an offer set.
|
|
1927
|
+
#
|
|
1928
|
+
# @!attribute [rw] value_list
|
|
1929
|
+
# Allows filtering on the `AssociatedOfferIds` of an offer set with
|
|
1930
|
+
# list input.
|
|
1931
|
+
# @return [Array<String>]
|
|
1932
|
+
#
|
|
1933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetAssociatedOfferIdsFilter AWS API Documentation
|
|
1934
|
+
#
|
|
1935
|
+
class OfferSetAssociatedOfferIdsFilter < Struct.new(
|
|
1936
|
+
:value_list)
|
|
1937
|
+
SENSITIVE = []
|
|
1938
|
+
include Aws::Structure
|
|
1939
|
+
end
|
|
1940
|
+
|
|
1941
|
+
# Allows filtering on the entity id of an offer set.
|
|
1942
|
+
#
|
|
1943
|
+
# @!attribute [rw] value_list
|
|
1944
|
+
# Allows filtering on entity id of an offer set with list input.
|
|
1945
|
+
# @return [Array<String>]
|
|
1946
|
+
#
|
|
1947
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetEntityIdFilter AWS API Documentation
|
|
1948
|
+
#
|
|
1949
|
+
class OfferSetEntityIdFilter < Struct.new(
|
|
1950
|
+
:value_list)
|
|
1951
|
+
SENSITIVE = []
|
|
1952
|
+
include Aws::Structure
|
|
1953
|
+
end
|
|
1954
|
+
|
|
1955
|
+
# Object containing all the filter fields for offer sets entity. Client
|
|
1956
|
+
# can add a maximum of 8 filters in a single `ListEntities` request.
|
|
1957
|
+
#
|
|
1958
|
+
# @!attribute [rw] entity_id
|
|
1959
|
+
# Allows filtering on `EntityId` of an offer set.
|
|
1960
|
+
# @return [Types::OfferSetEntityIdFilter]
|
|
1961
|
+
#
|
|
1962
|
+
# @!attribute [rw] name
|
|
1963
|
+
# Allows filtering on the `Name` of an offer set.
|
|
1964
|
+
# @return [Types::OfferSetNameFilter]
|
|
1965
|
+
#
|
|
1966
|
+
# @!attribute [rw] state
|
|
1967
|
+
# Allows filtering on the `State` of an offer set.
|
|
1968
|
+
# @return [Types::OfferSetStateFilter]
|
|
1969
|
+
#
|
|
1970
|
+
# @!attribute [rw] release_date
|
|
1971
|
+
# Allows filtering on the `ReleaseDate` of an offer set.
|
|
1972
|
+
# @return [Types::OfferSetReleaseDateFilter]
|
|
1973
|
+
#
|
|
1974
|
+
# @!attribute [rw] associated_offer_ids
|
|
1975
|
+
# Allows filtering on the `AssociatedOfferIds` of an offer set.
|
|
1976
|
+
# @return [Types::OfferSetAssociatedOfferIdsFilter]
|
|
1977
|
+
#
|
|
1978
|
+
# @!attribute [rw] solution_id
|
|
1979
|
+
# Allows filtering on the `SolutionId` of an offer set.
|
|
1980
|
+
# @return [Types::OfferSetSolutionIdFilter]
|
|
1981
|
+
#
|
|
1982
|
+
# @!attribute [rw] last_modified_date
|
|
1983
|
+
# Allows filtering on the `LastModifiedDate` of an offer set.
|
|
1984
|
+
# @return [Types::OfferSetLastModifiedDateFilter]
|
|
1985
|
+
#
|
|
1986
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetFilters AWS API Documentation
|
|
1987
|
+
#
|
|
1988
|
+
class OfferSetFilters < Struct.new(
|
|
1989
|
+
:entity_id,
|
|
1990
|
+
:name,
|
|
1991
|
+
:state,
|
|
1992
|
+
:release_date,
|
|
1993
|
+
:associated_offer_ids,
|
|
1994
|
+
:solution_id,
|
|
1995
|
+
:last_modified_date)
|
|
1996
|
+
SENSITIVE = []
|
|
1997
|
+
include Aws::Structure
|
|
1998
|
+
end
|
|
1999
|
+
|
|
2000
|
+
# Allows filtering on the `OfferSetId` of an offer.
|
|
2001
|
+
#
|
|
2002
|
+
# @!attribute [rw] value_list
|
|
2003
|
+
# Allows filtering on the `OfferSetId` of an offer.
|
|
2004
|
+
# @return [Array<String>]
|
|
2005
|
+
#
|
|
2006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetIdFilter AWS API Documentation
|
|
2007
|
+
#
|
|
2008
|
+
class OfferSetIdFilter < Struct.new(
|
|
2009
|
+
:value_list)
|
|
2010
|
+
SENSITIVE = []
|
|
2011
|
+
include Aws::Structure
|
|
2012
|
+
end
|
|
2013
|
+
|
|
2014
|
+
# Allows filtering on the `LastModifiedDate` of an offer set.
|
|
2015
|
+
#
|
|
2016
|
+
# @!attribute [rw] date_range
|
|
2017
|
+
# Allows filtering on the `LastModifiedDate` of an offer set with date
|
|
2018
|
+
# range as input.
|
|
2019
|
+
# @return [Types::OfferSetLastModifiedDateFilterDateRange]
|
|
2020
|
+
#
|
|
2021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetLastModifiedDateFilter AWS API Documentation
|
|
2022
|
+
#
|
|
2023
|
+
class OfferSetLastModifiedDateFilter < Struct.new(
|
|
2024
|
+
:date_range)
|
|
2025
|
+
SENSITIVE = []
|
|
2026
|
+
include Aws::Structure
|
|
2027
|
+
end
|
|
2028
|
+
|
|
2029
|
+
# Allows filtering on the `LastModifiedDate` of an offer set with date
|
|
2030
|
+
# range as input.
|
|
2031
|
+
#
|
|
2032
|
+
# @!attribute [rw] after_value
|
|
2033
|
+
# Allows filtering on the `LastModifiedDate` of an offer set after a
|
|
2034
|
+
# date.
|
|
2035
|
+
# @return [String]
|
|
2036
|
+
#
|
|
2037
|
+
# @!attribute [rw] before_value
|
|
2038
|
+
# Allows filtering on the `LastModifiedDate` of an offer set before a
|
|
2039
|
+
# date.
|
|
2040
|
+
# @return [String]
|
|
2041
|
+
#
|
|
2042
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetLastModifiedDateFilterDateRange AWS API Documentation
|
|
2043
|
+
#
|
|
2044
|
+
class OfferSetLastModifiedDateFilterDateRange < Struct.new(
|
|
2045
|
+
:after_value,
|
|
2046
|
+
:before_value)
|
|
2047
|
+
SENSITIVE = []
|
|
2048
|
+
include Aws::Structure
|
|
2049
|
+
end
|
|
2050
|
+
|
|
2051
|
+
# Allows filtering on the `Name` of an offer set.
|
|
2052
|
+
#
|
|
2053
|
+
# @!attribute [rw] value_list
|
|
2054
|
+
# Allows filtering on the `Name` of an offer set with list input.
|
|
2055
|
+
# @return [Array<String>]
|
|
2056
|
+
#
|
|
2057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetNameFilter AWS API Documentation
|
|
2058
|
+
#
|
|
2059
|
+
class OfferSetNameFilter < Struct.new(
|
|
2060
|
+
:value_list)
|
|
2061
|
+
SENSITIVE = []
|
|
2062
|
+
include Aws::Structure
|
|
2063
|
+
end
|
|
2064
|
+
|
|
2065
|
+
# Allows filtering on the `ReleaseDate` of an offer set.
|
|
2066
|
+
#
|
|
2067
|
+
# @!attribute [rw] date_range
|
|
2068
|
+
# Allows filtering on the `ReleaseDate` of an offer set with date
|
|
2069
|
+
# range as input.
|
|
2070
|
+
# @return [Types::OfferSetReleaseDateFilterDateRange]
|
|
2071
|
+
#
|
|
2072
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetReleaseDateFilter AWS API Documentation
|
|
2073
|
+
#
|
|
2074
|
+
class OfferSetReleaseDateFilter < Struct.new(
|
|
2075
|
+
:date_range)
|
|
2076
|
+
SENSITIVE = []
|
|
2077
|
+
include Aws::Structure
|
|
2078
|
+
end
|
|
2079
|
+
|
|
2080
|
+
# Allows filtering on the `ReleaseDate` of an offer set with date range
|
|
2081
|
+
# as input.
|
|
2082
|
+
#
|
|
2083
|
+
# @!attribute [rw] after_value
|
|
2084
|
+
# Allows filtering on the `ReleaseDate` of offer set after a date.
|
|
2085
|
+
# @return [String]
|
|
2086
|
+
#
|
|
2087
|
+
# @!attribute [rw] before_value
|
|
2088
|
+
# Allows filtering on the `ReleaseDate` of offer set before a date.
|
|
2089
|
+
# @return [String]
|
|
2090
|
+
#
|
|
2091
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetReleaseDateFilterDateRange AWS API Documentation
|
|
2092
|
+
#
|
|
2093
|
+
class OfferSetReleaseDateFilterDateRange < Struct.new(
|
|
2094
|
+
:after_value,
|
|
2095
|
+
:before_value)
|
|
2096
|
+
SENSITIVE = []
|
|
2097
|
+
include Aws::Structure
|
|
2098
|
+
end
|
|
2099
|
+
|
|
2100
|
+
# Allows filtering on the `SolutionId` of an offer set.
|
|
2101
|
+
#
|
|
2102
|
+
# @!attribute [rw] value_list
|
|
2103
|
+
# Allows filtering on the `SolutionId` of an offer set with list
|
|
2104
|
+
# input.
|
|
2105
|
+
# @return [Array<String>]
|
|
2106
|
+
#
|
|
2107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetSolutionIdFilter AWS API Documentation
|
|
2108
|
+
#
|
|
2109
|
+
class OfferSetSolutionIdFilter < Struct.new(
|
|
2110
|
+
:value_list)
|
|
2111
|
+
SENSITIVE = []
|
|
2112
|
+
include Aws::Structure
|
|
2113
|
+
end
|
|
2114
|
+
|
|
2115
|
+
# Allows to sort offer sets.
|
|
2116
|
+
#
|
|
2117
|
+
# @!attribute [rw] sort_by
|
|
2118
|
+
# Allows to sort offer sets.
|
|
2119
|
+
# @return [String]
|
|
2120
|
+
#
|
|
2121
|
+
# @!attribute [rw] sort_order
|
|
2122
|
+
# Allows to sort offer sets.
|
|
2123
|
+
# @return [String]
|
|
2124
|
+
#
|
|
2125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetSort AWS API Documentation
|
|
2126
|
+
#
|
|
2127
|
+
class OfferSetSort < Struct.new(
|
|
2128
|
+
:sort_by,
|
|
2129
|
+
:sort_order)
|
|
2130
|
+
SENSITIVE = []
|
|
2131
|
+
include Aws::Structure
|
|
2132
|
+
end
|
|
2133
|
+
|
|
2134
|
+
# Allows filtering on the `State` of an offer set.
|
|
2135
|
+
#
|
|
2136
|
+
# @!attribute [rw] value_list
|
|
2137
|
+
# Allows filtering on the `State` of an offer set with list input.
|
|
2138
|
+
# @return [Array<String>]
|
|
2139
|
+
#
|
|
2140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetStateFilter AWS API Documentation
|
|
2141
|
+
#
|
|
2142
|
+
class OfferSetStateFilter < Struct.new(
|
|
2143
|
+
:value_list)
|
|
2144
|
+
SENSITIVE = []
|
|
2145
|
+
include Aws::Structure
|
|
2146
|
+
end
|
|
2147
|
+
|
|
2148
|
+
# Summarized information about an offer set.
|
|
2149
|
+
#
|
|
2150
|
+
# @!attribute [rw] name
|
|
2151
|
+
# The name of the offer set.
|
|
2152
|
+
# @return [String]
|
|
2153
|
+
#
|
|
2154
|
+
# @!attribute [rw] state
|
|
2155
|
+
# The state of the offer set.
|
|
2156
|
+
# @return [String]
|
|
2157
|
+
#
|
|
2158
|
+
# @!attribute [rw] release_date
|
|
2159
|
+
# The release date of the offer set.
|
|
2160
|
+
# @return [String]
|
|
2161
|
+
#
|
|
2162
|
+
# @!attribute [rw] associated_offer_ids
|
|
2163
|
+
# The list of offer IDs associated with the offer set.
|
|
2164
|
+
# @return [Array<String>]
|
|
2165
|
+
#
|
|
2166
|
+
# @!attribute [rw] solution_id
|
|
2167
|
+
# The solution ID associated with the offer set.
|
|
2168
|
+
# @return [String]
|
|
2169
|
+
#
|
|
2170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSetSummary AWS API Documentation
|
|
2171
|
+
#
|
|
2172
|
+
class OfferSetSummary < Struct.new(
|
|
2173
|
+
:name,
|
|
2174
|
+
:state,
|
|
2175
|
+
:release_date,
|
|
2176
|
+
:associated_offer_ids,
|
|
2177
|
+
:solution_id)
|
|
2178
|
+
SENSITIVE = []
|
|
2179
|
+
include Aws::Structure
|
|
2180
|
+
end
|
|
2181
|
+
|
|
1904
2182
|
# Allows to sort offers.
|
|
1905
2183
|
#
|
|
1906
2184
|
# @!attribute [rw] sort_by
|
|
@@ -1968,6 +2246,10 @@ module Aws::MarketplaceCatalog
|
|
|
1968
2246
|
# The targeting in the offer.
|
|
1969
2247
|
# @return [Array<String>]
|
|
1970
2248
|
#
|
|
2249
|
+
# @!attribute [rw] offer_set_id
|
|
2250
|
+
# The offer set ID of the offer.
|
|
2251
|
+
# @return [String]
|
|
2252
|
+
#
|
|
1971
2253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/OfferSummary AWS API Documentation
|
|
1972
2254
|
#
|
|
1973
2255
|
class OfferSummary < Struct.new(
|
|
@@ -1978,7 +2260,8 @@ module Aws::MarketplaceCatalog
|
|
|
1978
2260
|
:availability_end_date,
|
|
1979
2261
|
:buyer_accounts,
|
|
1980
2262
|
:state,
|
|
1981
|
-
:targeting
|
|
2263
|
+
:targeting,
|
|
2264
|
+
:offer_set_id)
|
|
1982
2265
|
SENSITIVE = []
|
|
1983
2266
|
include Aws::Structure
|
|
1984
2267
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -301,6 +301,9 @@ module Aws
|
|
|
301
301
|
after_value: ::String?,
|
|
302
302
|
before_value: ::String?
|
|
303
303
|
}?
|
|
304
|
+
}?,
|
|
305
|
+
offer_set_id: {
|
|
306
|
+
value_list: Array[::String]?
|
|
304
307
|
}?
|
|
305
308
|
}?,
|
|
306
309
|
container_product_filters: {
|
|
@@ -397,6 +400,35 @@ module Aws
|
|
|
397
400
|
visibility: {
|
|
398
401
|
value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
|
|
399
402
|
}?
|
|
403
|
+
}?,
|
|
404
|
+
offer_set_filters: {
|
|
405
|
+
entity_id: {
|
|
406
|
+
value_list: Array[::String]?
|
|
407
|
+
}?,
|
|
408
|
+
name: {
|
|
409
|
+
value_list: Array[::String]?
|
|
410
|
+
}?,
|
|
411
|
+
state: {
|
|
412
|
+
value_list: Array[("Draft" | "Released")]?
|
|
413
|
+
}?,
|
|
414
|
+
release_date: {
|
|
415
|
+
date_range: {
|
|
416
|
+
after_value: ::String?,
|
|
417
|
+
before_value: ::String?
|
|
418
|
+
}?
|
|
419
|
+
}?,
|
|
420
|
+
associated_offer_ids: {
|
|
421
|
+
value_list: Array[::String]?
|
|
422
|
+
}?,
|
|
423
|
+
solution_id: {
|
|
424
|
+
value_list: Array[::String]?
|
|
425
|
+
}?,
|
|
426
|
+
last_modified_date: {
|
|
427
|
+
date_range: {
|
|
428
|
+
after_value: ::String?,
|
|
429
|
+
before_value: ::String?
|
|
430
|
+
}?
|
|
431
|
+
}?
|
|
400
432
|
}?
|
|
401
433
|
},
|
|
402
434
|
?entity_type_sort: {
|
|
@@ -413,7 +445,7 @@ module Aws
|
|
|
413
445
|
sort_order: ("ASCENDING" | "DESCENDING")?
|
|
414
446
|
}?,
|
|
415
447
|
offer_sort: {
|
|
416
|
-
sort_by: ("EntityId" | "Name" | "ProductId" | "ResaleAuthorizationId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate")?,
|
|
448
|
+
sort_by: ("EntityId" | "Name" | "ProductId" | "ResaleAuthorizationId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate" | "OfferSetId")?,
|
|
417
449
|
sort_order: ("ASCENDING" | "DESCENDING")?
|
|
418
450
|
}?,
|
|
419
451
|
container_product_sort: {
|
|
@@ -427,6 +459,10 @@ module Aws
|
|
|
427
459
|
machine_learning_product_sort: {
|
|
428
460
|
sort_by: ("EntityId" | "LastModifiedDate" | "ProductTitle" | "Visibility")?,
|
|
429
461
|
sort_order: ("ASCENDING" | "DESCENDING")?
|
|
462
|
+
}?,
|
|
463
|
+
offer_set_sort: {
|
|
464
|
+
sort_by: ("Name" | "State" | "ReleaseDate" | "SolutionId" | "EntityId" | "LastModifiedDate")?,
|
|
465
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
|
430
466
|
}?
|
|
431
467
|
}
|
|
432
468
|
) -> _ListEntitiesResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -294,6 +294,7 @@ module Aws::MarketplaceCatalog
|
|
|
294
294
|
attr_accessor offer_summary: Types::OfferSummary
|
|
295
295
|
attr_accessor resale_authorization_summary: Types::ResaleAuthorizationSummary
|
|
296
296
|
attr_accessor machine_learning_product_summary: Types::MachineLearningProductSummary
|
|
297
|
+
attr_accessor offer_set_summary: Types::OfferSetSummary
|
|
297
298
|
SENSITIVE: []
|
|
298
299
|
end
|
|
299
300
|
|
|
@@ -305,6 +306,7 @@ module Aws::MarketplaceCatalog
|
|
|
305
306
|
attr_accessor container_product_filters: Types::ContainerProductFilters
|
|
306
307
|
attr_accessor resale_authorization_filters: Types::ResaleAuthorizationFilters
|
|
307
308
|
attr_accessor machine_learning_product_filters: Types::MachineLearningProductFilters
|
|
309
|
+
attr_accessor offer_set_filters: Types::OfferSetFilters
|
|
308
310
|
attr_accessor unknown: untyped
|
|
309
311
|
SENSITIVE: []
|
|
310
312
|
|
|
@@ -322,6 +324,8 @@ module Aws::MarketplaceCatalog
|
|
|
322
324
|
end
|
|
323
325
|
class MachineLearningProductFilters < EntityTypeFilters
|
|
324
326
|
end
|
|
327
|
+
class OfferSetFilters < EntityTypeFilters
|
|
328
|
+
end
|
|
325
329
|
class Unknown < EntityTypeFilters
|
|
326
330
|
end
|
|
327
331
|
end
|
|
@@ -334,6 +338,7 @@ module Aws::MarketplaceCatalog
|
|
|
334
338
|
attr_accessor container_product_sort: Types::ContainerProductSort
|
|
335
339
|
attr_accessor resale_authorization_sort: Types::ResaleAuthorizationSort
|
|
336
340
|
attr_accessor machine_learning_product_sort: Types::MachineLearningProductSort
|
|
341
|
+
attr_accessor offer_set_sort: Types::OfferSetSort
|
|
337
342
|
attr_accessor unknown: untyped
|
|
338
343
|
SENSITIVE: []
|
|
339
344
|
|
|
@@ -351,6 +356,8 @@ module Aws::MarketplaceCatalog
|
|
|
351
356
|
end
|
|
352
357
|
class MachineLearningProductSort < EntityTypeSort
|
|
353
358
|
end
|
|
359
|
+
class OfferSetSort < EntityTypeSort
|
|
360
|
+
end
|
|
354
361
|
class Unknown < EntityTypeSort
|
|
355
362
|
end
|
|
356
363
|
end
|
|
@@ -506,6 +513,7 @@ module Aws::MarketplaceCatalog
|
|
|
506
513
|
attr_accessor state: Types::OfferStateFilter
|
|
507
514
|
attr_accessor targeting: Types::OfferTargetingFilter
|
|
508
515
|
attr_accessor last_modified_date: Types::OfferLastModifiedDateFilter
|
|
516
|
+
attr_accessor offer_set_id: Types::OfferSetIdFilter
|
|
509
517
|
SENSITIVE: []
|
|
510
518
|
end
|
|
511
519
|
|
|
@@ -547,8 +555,86 @@ module Aws::MarketplaceCatalog
|
|
|
547
555
|
SENSITIVE: []
|
|
548
556
|
end
|
|
549
557
|
|
|
558
|
+
class OfferSetAssociatedOfferIdsFilter
|
|
559
|
+
attr_accessor value_list: ::Array[::String]
|
|
560
|
+
SENSITIVE: []
|
|
561
|
+
end
|
|
562
|
+
|
|
563
|
+
class OfferSetEntityIdFilter
|
|
564
|
+
attr_accessor value_list: ::Array[::String]
|
|
565
|
+
SENSITIVE: []
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
class OfferSetFilters
|
|
569
|
+
attr_accessor entity_id: Types::OfferSetEntityIdFilter
|
|
570
|
+
attr_accessor name: Types::OfferSetNameFilter
|
|
571
|
+
attr_accessor state: Types::OfferSetStateFilter
|
|
572
|
+
attr_accessor release_date: Types::OfferSetReleaseDateFilter
|
|
573
|
+
attr_accessor associated_offer_ids: Types::OfferSetAssociatedOfferIdsFilter
|
|
574
|
+
attr_accessor solution_id: Types::OfferSetSolutionIdFilter
|
|
575
|
+
attr_accessor last_modified_date: Types::OfferSetLastModifiedDateFilter
|
|
576
|
+
SENSITIVE: []
|
|
577
|
+
end
|
|
578
|
+
|
|
579
|
+
class OfferSetIdFilter
|
|
580
|
+
attr_accessor value_list: ::Array[::String]
|
|
581
|
+
SENSITIVE: []
|
|
582
|
+
end
|
|
583
|
+
|
|
584
|
+
class OfferSetLastModifiedDateFilter
|
|
585
|
+
attr_accessor date_range: Types::OfferSetLastModifiedDateFilterDateRange
|
|
586
|
+
SENSITIVE: []
|
|
587
|
+
end
|
|
588
|
+
|
|
589
|
+
class OfferSetLastModifiedDateFilterDateRange
|
|
590
|
+
attr_accessor after_value: ::String
|
|
591
|
+
attr_accessor before_value: ::String
|
|
592
|
+
SENSITIVE: []
|
|
593
|
+
end
|
|
594
|
+
|
|
595
|
+
class OfferSetNameFilter
|
|
596
|
+
attr_accessor value_list: ::Array[::String]
|
|
597
|
+
SENSITIVE: []
|
|
598
|
+
end
|
|
599
|
+
|
|
600
|
+
class OfferSetReleaseDateFilter
|
|
601
|
+
attr_accessor date_range: Types::OfferSetReleaseDateFilterDateRange
|
|
602
|
+
SENSITIVE: []
|
|
603
|
+
end
|
|
604
|
+
|
|
605
|
+
class OfferSetReleaseDateFilterDateRange
|
|
606
|
+
attr_accessor after_value: ::String
|
|
607
|
+
attr_accessor before_value: ::String
|
|
608
|
+
SENSITIVE: []
|
|
609
|
+
end
|
|
610
|
+
|
|
611
|
+
class OfferSetSolutionIdFilter
|
|
612
|
+
attr_accessor value_list: ::Array[::String]
|
|
613
|
+
SENSITIVE: []
|
|
614
|
+
end
|
|
615
|
+
|
|
616
|
+
class OfferSetSort
|
|
617
|
+
attr_accessor sort_by: ("Name" | "State" | "ReleaseDate" | "SolutionId" | "EntityId" | "LastModifiedDate")
|
|
618
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
619
|
+
SENSITIVE: []
|
|
620
|
+
end
|
|
621
|
+
|
|
622
|
+
class OfferSetStateFilter
|
|
623
|
+
attr_accessor value_list: ::Array[("Draft" | "Released")]
|
|
624
|
+
SENSITIVE: []
|
|
625
|
+
end
|
|
626
|
+
|
|
627
|
+
class OfferSetSummary
|
|
628
|
+
attr_accessor name: ::String
|
|
629
|
+
attr_accessor state: ("Draft" | "Released")
|
|
630
|
+
attr_accessor release_date: ::String
|
|
631
|
+
attr_accessor associated_offer_ids: ::Array[::String]
|
|
632
|
+
attr_accessor solution_id: ::String
|
|
633
|
+
SENSITIVE: []
|
|
634
|
+
end
|
|
635
|
+
|
|
550
636
|
class OfferSort
|
|
551
|
-
attr_accessor sort_by: ("EntityId" | "Name" | "ProductId" | "ResaleAuthorizationId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate")
|
|
637
|
+
attr_accessor sort_by: ("EntityId" | "Name" | "ProductId" | "ResaleAuthorizationId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate" | "OfferSetId")
|
|
552
638
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
553
639
|
SENSITIVE: []
|
|
554
640
|
end
|
|
@@ -567,6 +653,7 @@ module Aws::MarketplaceCatalog
|
|
|
567
653
|
attr_accessor buyer_accounts: ::Array[::String]
|
|
568
654
|
attr_accessor state: ("Draft" | "Released")
|
|
569
655
|
attr_accessor targeting: ::Array[("BuyerAccounts" | "ParticipatingPrograms" | "CountryCodes" | "None")]
|
|
656
|
+
attr_accessor offer_set_id: ::String
|
|
570
657
|
SENSITIVE: []
|
|
571
658
|
end
|
|
572
659
|
|