aws-sdk-marketplacecatalog 1.60.0 → 1.61.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 +30 -1
- data/lib/aws-sdk-marketplacecatalog/client_api.rb +57 -0
- data/lib/aws-sdk-marketplacecatalog/types.rb +210 -1
- data/lib/aws-sdk-marketplacecatalog.rb +1 -1
- data/sig/client.rbs +22 -0
- data/sig/types.rbs +54 -0
- 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: 2d00bbcf9cc84ab86cb6a160c3125c2b4c44992b09babfabf7ad35e63833b29a
|
4
|
+
data.tar.gz: 9ea68178fb80e61cea0d7a7b2e8cfc63ea29e50e092e63c319054f304239876f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc52642243f7a12d33a8c118348cf58ea5643110a754b23d6c03154d57d0d6b60fe1aa0bee8e414faae852c6a4c1157d02067bd475964832f83ad36fceaff551
|
7
|
+
data.tar.gz: 773204fc4d5c5b58fd1b7eaa8b9da00a91c6915e284ecbc3e09b315093d5360ab40ff19ff2f5ff92fe56ad5ca0fa0a932f0a0fea0367c31b3804d8a068729c68
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.61.0 (2025-06-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - The ListEntities API now supports the EntityID, LastModifiedDate, ProductTitle, and Visibility filters for machine learning products. You can also sort using all of those filters.
|
8
|
+
|
4
9
|
1.60.0 (2025-06-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.61.0
|
@@ -1025,6 +1025,24 @@ module Aws::MarketplaceCatalog
|
|
1025
1025
|
# },
|
1026
1026
|
# },
|
1027
1027
|
# },
|
1028
|
+
# machine_learning_product_filters: {
|
1029
|
+
# entity_id: {
|
1030
|
+
# value_list: ["MachineLearningProductEntityIdString"],
|
1031
|
+
# },
|
1032
|
+
# last_modified_date: {
|
1033
|
+
# date_range: {
|
1034
|
+
# after_value: "DateTimeISO8601",
|
1035
|
+
# before_value: "DateTimeISO8601",
|
1036
|
+
# },
|
1037
|
+
# },
|
1038
|
+
# product_title: {
|
1039
|
+
# value_list: ["MachineLearningProductTitleString"],
|
1040
|
+
# wild_card_value: "MachineLearningProductTitleString",
|
1041
|
+
# },
|
1042
|
+
# visibility: {
|
1043
|
+
# value_list: ["Limited"], # accepts Limited, Public, Restricted, Draft
|
1044
|
+
# },
|
1045
|
+
# },
|
1028
1046
|
# },
|
1029
1047
|
# entity_type_sort: {
|
1030
1048
|
# data_product_sort: {
|
@@ -1051,6 +1069,10 @@ module Aws::MarketplaceCatalog
|
|
1051
1069
|
# sort_by: "EntityId", # accepts EntityId, Name, ProductId, ProductName, ManufacturerAccountId, ManufacturerLegalName, ResellerAccountID, ResellerLegalName, Status, OfferExtendedStatus, CreatedDate, AvailabilityEndDate, LastModifiedDate
|
1052
1070
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
1053
1071
|
# },
|
1072
|
+
# machine_learning_product_sort: {
|
1073
|
+
# sort_by: "EntityId", # accepts EntityId, LastModifiedDate, ProductTitle, Visibility
|
1074
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
1075
|
+
# },
|
1054
1076
|
# },
|
1055
1077
|
# })
|
1056
1078
|
#
|
@@ -1092,6 +1114,8 @@ module Aws::MarketplaceCatalog
|
|
1092
1114
|
# resp.entity_summary_list[0].resale_authorization_summary.offer_extended_status #=> String
|
1093
1115
|
# resp.entity_summary_list[0].resale_authorization_summary.created_date #=> String
|
1094
1116
|
# resp.entity_summary_list[0].resale_authorization_summary.availability_end_date #=> String
|
1117
|
+
# resp.entity_summary_list[0].machine_learning_product_summary.product_title #=> String
|
1118
|
+
# resp.entity_summary_list[0].machine_learning_product_summary.visibility #=> String, one of "Limited", "Public", "Restricted", "Draft"
|
1095
1119
|
# resp.next_token #=> String
|
1096
1120
|
#
|
1097
1121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListEntities AWS API Documentation
|
@@ -1190,12 +1214,17 @@ module Aws::MarketplaceCatalog
|
|
1190
1214
|
# for more information about change types available for container-based
|
1191
1215
|
# products, see [Working with container products][4].
|
1192
1216
|
#
|
1217
|
+
# To download "DetailsDocument" shapes, see [Python][5] and [Java][6]
|
1218
|
+
# shapes on GitHub.
|
1219
|
+
#
|
1193
1220
|
#
|
1194
1221
|
#
|
1195
1222
|
# [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/API_StartChangeSet.html#API_StartChangeSet_Examples
|
1196
1223
|
# [2]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html#working-with-change-sets
|
1197
1224
|
# [3]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/ami-products.html#working-with-single-AMI-products
|
1198
1225
|
# [4]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/container-products.html#working-with-container-products
|
1226
|
+
# [5]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-python
|
1227
|
+
# [6]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-java/tree/main
|
1199
1228
|
#
|
1200
1229
|
# @option params [required, String] :catalog
|
1201
1230
|
# The catalog related to the request. Fixed value: `AWSMarketplace`
|
@@ -1370,7 +1399,7 @@ module Aws::MarketplaceCatalog
|
|
1370
1399
|
tracer: tracer
|
1371
1400
|
)
|
1372
1401
|
context[:gem_name] = 'aws-sdk-marketplacecatalog'
|
1373
|
-
context[:gem_version] = '1.
|
1402
|
+
context[:gem_version] = '1.61.0'
|
1374
1403
|
Seahorse::Client::Request.new(handlers, context)
|
1375
1404
|
end
|
1376
1405
|
|
@@ -123,6 +123,21 @@ module Aws::MarketplaceCatalog
|
|
123
123
|
ListEntitiesResponse = Shapes::StructureShape.new(name: 'ListEntitiesResponse')
|
124
124
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
125
125
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
126
|
+
MachineLearningProductEntityIdFilter = Shapes::StructureShape.new(name: 'MachineLearningProductEntityIdFilter')
|
127
|
+
MachineLearningProductEntityIdFilterValueList = Shapes::ListShape.new(name: 'MachineLearningProductEntityIdFilterValueList')
|
128
|
+
MachineLearningProductEntityIdString = Shapes::StringShape.new(name: 'MachineLearningProductEntityIdString')
|
129
|
+
MachineLearningProductFilters = Shapes::StructureShape.new(name: 'MachineLearningProductFilters')
|
130
|
+
MachineLearningProductLastModifiedDateFilter = Shapes::StructureShape.new(name: 'MachineLearningProductLastModifiedDateFilter')
|
131
|
+
MachineLearningProductLastModifiedDateFilterDateRange = Shapes::StructureShape.new(name: 'MachineLearningProductLastModifiedDateFilterDateRange')
|
132
|
+
MachineLearningProductSort = Shapes::StructureShape.new(name: 'MachineLearningProductSort')
|
133
|
+
MachineLearningProductSortBy = Shapes::StringShape.new(name: 'MachineLearningProductSortBy')
|
134
|
+
MachineLearningProductSummary = Shapes::StructureShape.new(name: 'MachineLearningProductSummary')
|
135
|
+
MachineLearningProductTitleFilter = Shapes::StructureShape.new(name: 'MachineLearningProductTitleFilter')
|
136
|
+
MachineLearningProductTitleFilterValueList = Shapes::ListShape.new(name: 'MachineLearningProductTitleFilterValueList')
|
137
|
+
MachineLearningProductTitleString = Shapes::StringShape.new(name: 'MachineLearningProductTitleString')
|
138
|
+
MachineLearningProductVisibilityFilter = Shapes::StructureShape.new(name: 'MachineLearningProductVisibilityFilter')
|
139
|
+
MachineLearningProductVisibilityFilterValueList = Shapes::ListShape.new(name: 'MachineLearningProductVisibilityFilterValueList')
|
140
|
+
MachineLearningProductVisibilityString = Shapes::StringShape.new(name: 'MachineLearningProductVisibilityString')
|
126
141
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
127
142
|
OfferAvailabilityEndDateFilter = Shapes::StructureShape.new(name: 'OfferAvailabilityEndDateFilter')
|
128
143
|
OfferAvailabilityEndDateFilterDateRange = Shapes::StructureShape.new(name: 'OfferAvailabilityEndDateFilterDateRange')
|
@@ -480,6 +495,7 @@ module Aws::MarketplaceCatalog
|
|
480
495
|
EntitySummary.add_member(:saa_s_product_summary, Shapes::ShapeRef.new(shape: SaaSProductSummary, location_name: "SaaSProductSummary"))
|
481
496
|
EntitySummary.add_member(:offer_summary, Shapes::ShapeRef.new(shape: OfferSummary, location_name: "OfferSummary"))
|
482
497
|
EntitySummary.add_member(:resale_authorization_summary, Shapes::ShapeRef.new(shape: ResaleAuthorizationSummary, location_name: "ResaleAuthorizationSummary"))
|
498
|
+
EntitySummary.add_member(:machine_learning_product_summary, Shapes::ShapeRef.new(shape: MachineLearningProductSummary, location_name: "MachineLearningProductSummary"))
|
483
499
|
EntitySummary.struct_class = Types::EntitySummary
|
484
500
|
|
485
501
|
EntitySummaryList.member = Shapes::ShapeRef.new(shape: EntitySummary)
|
@@ -490,6 +506,7 @@ module Aws::MarketplaceCatalog
|
|
490
506
|
EntityTypeFilters.add_member(:offer_filters, Shapes::ShapeRef.new(shape: OfferFilters, location_name: "OfferFilters"))
|
491
507
|
EntityTypeFilters.add_member(:container_product_filters, Shapes::ShapeRef.new(shape: ContainerProductFilters, location_name: "ContainerProductFilters"))
|
492
508
|
EntityTypeFilters.add_member(:resale_authorization_filters, Shapes::ShapeRef.new(shape: ResaleAuthorizationFilters, location_name: "ResaleAuthorizationFilters"))
|
509
|
+
EntityTypeFilters.add_member(:machine_learning_product_filters, Shapes::ShapeRef.new(shape: MachineLearningProductFilters, location_name: "MachineLearningProductFilters"))
|
493
510
|
EntityTypeFilters.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
494
511
|
EntityTypeFilters.add_member_subclass(:data_product_filters, Types::EntityTypeFilters::DataProductFilters)
|
495
512
|
EntityTypeFilters.add_member_subclass(:saa_s_product_filters, Types::EntityTypeFilters::SaaSProductFilters)
|
@@ -497,6 +514,7 @@ module Aws::MarketplaceCatalog
|
|
497
514
|
EntityTypeFilters.add_member_subclass(:offer_filters, Types::EntityTypeFilters::OfferFilters)
|
498
515
|
EntityTypeFilters.add_member_subclass(:container_product_filters, Types::EntityTypeFilters::ContainerProductFilters)
|
499
516
|
EntityTypeFilters.add_member_subclass(:resale_authorization_filters, Types::EntityTypeFilters::ResaleAuthorizationFilters)
|
517
|
+
EntityTypeFilters.add_member_subclass(:machine_learning_product_filters, Types::EntityTypeFilters::MachineLearningProductFilters)
|
500
518
|
EntityTypeFilters.add_member_subclass(:unknown, Types::EntityTypeFilters::Unknown)
|
501
519
|
EntityTypeFilters.struct_class = Types::EntityTypeFilters
|
502
520
|
|
@@ -506,6 +524,7 @@ module Aws::MarketplaceCatalog
|
|
506
524
|
EntityTypeSort.add_member(:offer_sort, Shapes::ShapeRef.new(shape: OfferSort, location_name: "OfferSort"))
|
507
525
|
EntityTypeSort.add_member(:container_product_sort, Shapes::ShapeRef.new(shape: ContainerProductSort, location_name: "ContainerProductSort"))
|
508
526
|
EntityTypeSort.add_member(:resale_authorization_sort, Shapes::ShapeRef.new(shape: ResaleAuthorizationSort, location_name: "ResaleAuthorizationSort"))
|
527
|
+
EntityTypeSort.add_member(:machine_learning_product_sort, Shapes::ShapeRef.new(shape: MachineLearningProductSort, location_name: "MachineLearningProductSort"))
|
509
528
|
EntityTypeSort.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
510
529
|
EntityTypeSort.add_member_subclass(:data_product_sort, Types::EntityTypeSort::DataProductSort)
|
511
530
|
EntityTypeSort.add_member_subclass(:saa_s_product_sort, Types::EntityTypeSort::SaaSProductSort)
|
@@ -513,6 +532,7 @@ module Aws::MarketplaceCatalog
|
|
513
532
|
EntityTypeSort.add_member_subclass(:offer_sort, Types::EntityTypeSort::OfferSort)
|
514
533
|
EntityTypeSort.add_member_subclass(:container_product_sort, Types::EntityTypeSort::ContainerProductSort)
|
515
534
|
EntityTypeSort.add_member_subclass(:resale_authorization_sort, Types::EntityTypeSort::ResaleAuthorizationSort)
|
535
|
+
EntityTypeSort.add_member_subclass(:machine_learning_product_sort, Types::EntityTypeSort::MachineLearningProductSort)
|
516
536
|
EntityTypeSort.add_member_subclass(:unknown, Types::EntityTypeSort::Unknown)
|
517
537
|
EntityTypeSort.struct_class = Types::EntityTypeSort
|
518
538
|
|
@@ -573,6 +593,43 @@ module Aws::MarketplaceCatalog
|
|
573
593
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
574
594
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
575
595
|
|
596
|
+
MachineLearningProductEntityIdFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: MachineLearningProductEntityIdFilterValueList, location_name: "ValueList"))
|
597
|
+
MachineLearningProductEntityIdFilter.struct_class = Types::MachineLearningProductEntityIdFilter
|
598
|
+
|
599
|
+
MachineLearningProductEntityIdFilterValueList.member = Shapes::ShapeRef.new(shape: MachineLearningProductEntityIdString)
|
600
|
+
|
601
|
+
MachineLearningProductFilters.add_member(:entity_id, Shapes::ShapeRef.new(shape: MachineLearningProductEntityIdFilter, location_name: "EntityId"))
|
602
|
+
MachineLearningProductFilters.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: MachineLearningProductLastModifiedDateFilter, location_name: "LastModifiedDate"))
|
603
|
+
MachineLearningProductFilters.add_member(:product_title, Shapes::ShapeRef.new(shape: MachineLearningProductTitleFilter, location_name: "ProductTitle"))
|
604
|
+
MachineLearningProductFilters.add_member(:visibility, Shapes::ShapeRef.new(shape: MachineLearningProductVisibilityFilter, location_name: "Visibility"))
|
605
|
+
MachineLearningProductFilters.struct_class = Types::MachineLearningProductFilters
|
606
|
+
|
607
|
+
MachineLearningProductLastModifiedDateFilter.add_member(:date_range, Shapes::ShapeRef.new(shape: MachineLearningProductLastModifiedDateFilterDateRange, location_name: "DateRange"))
|
608
|
+
MachineLearningProductLastModifiedDateFilter.struct_class = Types::MachineLearningProductLastModifiedDateFilter
|
609
|
+
|
610
|
+
MachineLearningProductLastModifiedDateFilterDateRange.add_member(:after_value, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "AfterValue"))
|
611
|
+
MachineLearningProductLastModifiedDateFilterDateRange.add_member(:before_value, Shapes::ShapeRef.new(shape: DateTimeISO8601, location_name: "BeforeValue"))
|
612
|
+
MachineLearningProductLastModifiedDateFilterDateRange.struct_class = Types::MachineLearningProductLastModifiedDateFilterDateRange
|
613
|
+
|
614
|
+
MachineLearningProductSort.add_member(:sort_by, Shapes::ShapeRef.new(shape: MachineLearningProductSortBy, location_name: "SortBy"))
|
615
|
+
MachineLearningProductSort.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
616
|
+
MachineLearningProductSort.struct_class = Types::MachineLearningProductSort
|
617
|
+
|
618
|
+
MachineLearningProductSummary.add_member(:product_title, Shapes::ShapeRef.new(shape: MachineLearningProductTitleString, location_name: "ProductTitle"))
|
619
|
+
MachineLearningProductSummary.add_member(:visibility, Shapes::ShapeRef.new(shape: MachineLearningProductVisibilityString, location_name: "Visibility"))
|
620
|
+
MachineLearningProductSummary.struct_class = Types::MachineLearningProductSummary
|
621
|
+
|
622
|
+
MachineLearningProductTitleFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: MachineLearningProductTitleFilterValueList, location_name: "ValueList"))
|
623
|
+
MachineLearningProductTitleFilter.add_member(:wild_card_value, Shapes::ShapeRef.new(shape: MachineLearningProductTitleString, location_name: "WildCardValue"))
|
624
|
+
MachineLearningProductTitleFilter.struct_class = Types::MachineLearningProductTitleFilter
|
625
|
+
|
626
|
+
MachineLearningProductTitleFilterValueList.member = Shapes::ShapeRef.new(shape: MachineLearningProductTitleString)
|
627
|
+
|
628
|
+
MachineLearningProductVisibilityFilter.add_member(:value_list, Shapes::ShapeRef.new(shape: MachineLearningProductVisibilityFilterValueList, location_name: "ValueList"))
|
629
|
+
MachineLearningProductVisibilityFilter.struct_class = Types::MachineLearningProductVisibilityFilter
|
630
|
+
|
631
|
+
MachineLearningProductVisibilityFilterValueList.member = Shapes::ShapeRef.new(shape: MachineLearningProductVisibilityString)
|
632
|
+
|
576
633
|
OfferAvailabilityEndDateFilter.add_member(:date_range, Shapes::ShapeRef.new(shape: OfferAvailabilityEndDateFilterDateRange, location_name: "DateRange"))
|
577
634
|
OfferAvailabilityEndDateFilter.struct_class = Types::OfferAvailabilityEndDateFilter
|
578
635
|
|
@@ -308,6 +308,14 @@ module Aws::MarketplaceCatalog
|
|
308
308
|
# Alternative field that accepts a JSON value instead of a string for
|
309
309
|
# `ChangeType` details. You can use either `Details` or
|
310
310
|
# `DetailsDocument`, but not both.
|
311
|
+
#
|
312
|
+
# To download the "DetailsDocument" shapes, see the [Python][1] and
|
313
|
+
# [Java][2] shapes on GitHub.
|
314
|
+
#
|
315
|
+
#
|
316
|
+
#
|
317
|
+
# [1]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-python
|
318
|
+
# [2]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-java/tree/main
|
311
319
|
# @return [Hash,Array,String,Numeric,Boolean]
|
312
320
|
#
|
313
321
|
# @!attribute [rw] change_name
|
@@ -405,6 +413,14 @@ module Aws::MarketplaceCatalog
|
|
405
413
|
# @!attribute [rw] details_document
|
406
414
|
# The JSON value of the details specific to the change type of the
|
407
415
|
# requested change.
|
416
|
+
#
|
417
|
+
# To download the "DetailsDocument" shapes, see the [Python][1] and
|
418
|
+
# [Java][2] shapes on GitHub.
|
419
|
+
#
|
420
|
+
#
|
421
|
+
#
|
422
|
+
# [1]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-python
|
423
|
+
# [2]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-java/tree/main
|
408
424
|
# @return [Hash,Array,String,Numeric,Boolean]
|
409
425
|
#
|
410
426
|
# @!attribute [rw] error_detail_list
|
@@ -888,6 +904,14 @@ module Aws::MarketplaceCatalog
|
|
888
904
|
#
|
889
905
|
# @!attribute [rw] details_document
|
890
906
|
# The JSON value of the details specific to the entity.
|
907
|
+
#
|
908
|
+
# To download "DetailsDocument" shapes, see the [Python][1] and
|
909
|
+
# [Java][2] shapes on GitHub.
|
910
|
+
#
|
911
|
+
#
|
912
|
+
#
|
913
|
+
# [1]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-python
|
914
|
+
# [2]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-java/tree/main
|
891
915
|
# @return [Hash,Array,String,Numeric,Boolean]
|
892
916
|
#
|
893
917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/DescribeEntityResponse AWS API Documentation
|
@@ -1039,6 +1063,10 @@ module Aws::MarketplaceCatalog
|
|
1039
1063
|
# Authorization.
|
1040
1064
|
# @return [Types::ResaleAuthorizationSummary]
|
1041
1065
|
#
|
1066
|
+
# @!attribute [rw] machine_learning_product_summary
|
1067
|
+
# A summary of a machine learning product.
|
1068
|
+
# @return [Types::MachineLearningProductSummary]
|
1069
|
+
#
|
1042
1070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntitySummary AWS API Documentation
|
1043
1071
|
#
|
1044
1072
|
class EntitySummary < Struct.new(
|
@@ -1053,7 +1081,8 @@ module Aws::MarketplaceCatalog
|
|
1053
1081
|
:data_product_summary,
|
1054
1082
|
:saa_s_product_summary,
|
1055
1083
|
:offer_summary,
|
1056
|
-
:resale_authorization_summary
|
1084
|
+
:resale_authorization_summary,
|
1085
|
+
:machine_learning_product_summary)
|
1057
1086
|
SENSITIVE = []
|
1058
1087
|
include Aws::Structure
|
1059
1088
|
end
|
@@ -1086,6 +1115,12 @@ module Aws::MarketplaceCatalog
|
|
1086
1115
|
# A filter for Resale Authorizations.
|
1087
1116
|
# @return [Types::ResaleAuthorizationFilters]
|
1088
1117
|
#
|
1118
|
+
# @!attribute [rw] machine_learning_product_filters
|
1119
|
+
# The filters that you can use with the ListEntities operation to
|
1120
|
+
# filter machine learning products. You can filter by EntityId,
|
1121
|
+
# LastModifiedDate, ProductTitle, and Visibility.
|
1122
|
+
# @return [Types::MachineLearningProductFilters]
|
1123
|
+
#
|
1089
1124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntityTypeFilters AWS API Documentation
|
1090
1125
|
#
|
1091
1126
|
class EntityTypeFilters < Struct.new(
|
@@ -1095,6 +1130,7 @@ module Aws::MarketplaceCatalog
|
|
1095
1130
|
:offer_filters,
|
1096
1131
|
:container_product_filters,
|
1097
1132
|
:resale_authorization_filters,
|
1133
|
+
:machine_learning_product_filters,
|
1098
1134
|
:unknown)
|
1099
1135
|
SENSITIVE = []
|
1100
1136
|
include Aws::Structure
|
@@ -1106,6 +1142,7 @@ module Aws::MarketplaceCatalog
|
|
1106
1142
|
class OfferFilters < EntityTypeFilters; end
|
1107
1143
|
class ContainerProductFilters < EntityTypeFilters; end
|
1108
1144
|
class ResaleAuthorizationFilters < EntityTypeFilters; end
|
1145
|
+
class MachineLearningProductFilters < EntityTypeFilters; end
|
1109
1146
|
class Unknown < EntityTypeFilters; end
|
1110
1147
|
end
|
1111
1148
|
|
@@ -1137,6 +1174,10 @@ module Aws::MarketplaceCatalog
|
|
1137
1174
|
# A sort for Resale Authorizations.
|
1138
1175
|
# @return [Types::ResaleAuthorizationSort]
|
1139
1176
|
#
|
1177
|
+
# @!attribute [rw] machine_learning_product_sort
|
1178
|
+
# The sort options for machine learning products.
|
1179
|
+
# @return [Types::MachineLearningProductSort]
|
1180
|
+
#
|
1140
1181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntityTypeSort AWS API Documentation
|
1141
1182
|
#
|
1142
1183
|
class EntityTypeSort < Struct.new(
|
@@ -1146,6 +1187,7 @@ module Aws::MarketplaceCatalog
|
|
1146
1187
|
:offer_sort,
|
1147
1188
|
:container_product_sort,
|
1148
1189
|
:resale_authorization_sort,
|
1190
|
+
:machine_learning_product_sort,
|
1149
1191
|
:unknown)
|
1150
1192
|
SENSITIVE = []
|
1151
1193
|
include Aws::Structure
|
@@ -1157,6 +1199,7 @@ module Aws::MarketplaceCatalog
|
|
1157
1199
|
class OfferSort < EntityTypeSort; end
|
1158
1200
|
class ContainerProductSort < EntityTypeSort; end
|
1159
1201
|
class ResaleAuthorizationSort < EntityTypeSort; end
|
1202
|
+
class MachineLearningProductSort < EntityTypeSort; end
|
1160
1203
|
class Unknown < EntityTypeSort; end
|
1161
1204
|
end
|
1162
1205
|
|
@@ -1436,6 +1479,172 @@ module Aws::MarketplaceCatalog
|
|
1436
1479
|
include Aws::Structure
|
1437
1480
|
end
|
1438
1481
|
|
1482
|
+
# The filter for machine learning product entity IDs.
|
1483
|
+
#
|
1484
|
+
# @!attribute [rw] value_list
|
1485
|
+
# A list of entity IDs to filter by. The operation returns machine
|
1486
|
+
# learning products with entity IDs that match the values in this
|
1487
|
+
# list.
|
1488
|
+
# @return [Array<String>]
|
1489
|
+
#
|
1490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/MachineLearningProductEntityIdFilter AWS API Documentation
|
1491
|
+
#
|
1492
|
+
class MachineLearningProductEntityIdFilter < Struct.new(
|
1493
|
+
:value_list)
|
1494
|
+
SENSITIVE = []
|
1495
|
+
include Aws::Structure
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
# The filters that you can use with the ListEntities operation to filter
|
1499
|
+
# machine learning products. You can filter by EntityId,
|
1500
|
+
# LastModifiedDate, ProductTitle, and Visibility.
|
1501
|
+
#
|
1502
|
+
# @!attribute [rw] entity_id
|
1503
|
+
# Filter machine learning products by their entity IDs.
|
1504
|
+
# @return [Types::MachineLearningProductEntityIdFilter]
|
1505
|
+
#
|
1506
|
+
# @!attribute [rw] last_modified_date
|
1507
|
+
# Filter machine learning products by their last modified date.
|
1508
|
+
# @return [Types::MachineLearningProductLastModifiedDateFilter]
|
1509
|
+
#
|
1510
|
+
# @!attribute [rw] product_title
|
1511
|
+
# Filter machine learning products by their product titles.
|
1512
|
+
# @return [Types::MachineLearningProductTitleFilter]
|
1513
|
+
#
|
1514
|
+
# @!attribute [rw] visibility
|
1515
|
+
# Filter machine learning products by their visibility status.
|
1516
|
+
# @return [Types::MachineLearningProductVisibilityFilter]
|
1517
|
+
#
|
1518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/MachineLearningProductFilters AWS API Documentation
|
1519
|
+
#
|
1520
|
+
class MachineLearningProductFilters < Struct.new(
|
1521
|
+
:entity_id,
|
1522
|
+
:last_modified_date,
|
1523
|
+
:product_title,
|
1524
|
+
:visibility)
|
1525
|
+
SENSITIVE = []
|
1526
|
+
include Aws::Structure
|
1527
|
+
end
|
1528
|
+
|
1529
|
+
# The filter for machine learning product last modified date.
|
1530
|
+
#
|
1531
|
+
# @!attribute [rw] date_range
|
1532
|
+
# A date range to filter by. The operation returns machine learning
|
1533
|
+
# products with last modified dates that fall within this range.
|
1534
|
+
# @return [Types::MachineLearningProductLastModifiedDateFilterDateRange]
|
1535
|
+
#
|
1536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/MachineLearningProductLastModifiedDateFilter AWS API Documentation
|
1537
|
+
#
|
1538
|
+
class MachineLearningProductLastModifiedDateFilter < Struct.new(
|
1539
|
+
:date_range)
|
1540
|
+
SENSITIVE = []
|
1541
|
+
include Aws::Structure
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
# A date range for filtering machine learning products by their last
|
1545
|
+
# modified date.
|
1546
|
+
#
|
1547
|
+
# @!attribute [rw] after_value
|
1548
|
+
# The start date (inclusive) of the date range. The operation returns
|
1549
|
+
# machine learning products with last modified dates on or after this
|
1550
|
+
# date.
|
1551
|
+
# @return [String]
|
1552
|
+
#
|
1553
|
+
# @!attribute [rw] before_value
|
1554
|
+
# The end date (inclusive) of the date range. The operation returns
|
1555
|
+
# machine learning products with last modified dates on or before this
|
1556
|
+
# date.
|
1557
|
+
# @return [String]
|
1558
|
+
#
|
1559
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/MachineLearningProductLastModifiedDateFilterDateRange AWS API Documentation
|
1560
|
+
#
|
1561
|
+
class MachineLearningProductLastModifiedDateFilterDateRange < Struct.new(
|
1562
|
+
:after_value,
|
1563
|
+
:before_value)
|
1564
|
+
SENSITIVE = []
|
1565
|
+
include Aws::Structure
|
1566
|
+
end
|
1567
|
+
|
1568
|
+
# The sort options for machine learning products.
|
1569
|
+
#
|
1570
|
+
# @!attribute [rw] sort_by
|
1571
|
+
# The field to sort by. Valid values: `EntityId`, `LastModifiedDate`,
|
1572
|
+
# `ProductTitle`, and `Visibility`.
|
1573
|
+
# @return [String]
|
1574
|
+
#
|
1575
|
+
# @!attribute [rw] sort_order
|
1576
|
+
# The sort order. Valid values are `ASC` (ascending) and `DESC`
|
1577
|
+
# (descending).
|
1578
|
+
# @return [String]
|
1579
|
+
#
|
1580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/MachineLearningProductSort AWS API Documentation
|
1581
|
+
#
|
1582
|
+
class MachineLearningProductSort < Struct.new(
|
1583
|
+
:sort_by,
|
1584
|
+
:sort_order)
|
1585
|
+
SENSITIVE = []
|
1586
|
+
include Aws::Structure
|
1587
|
+
end
|
1588
|
+
|
1589
|
+
# A summary of a machine learning product.
|
1590
|
+
#
|
1591
|
+
# @!attribute [rw] product_title
|
1592
|
+
# The title of the machine learning product.
|
1593
|
+
# @return [String]
|
1594
|
+
#
|
1595
|
+
# @!attribute [rw] visibility
|
1596
|
+
# The visibility status of the machine learning product. Valid values
|
1597
|
+
# are `Limited`, `Public`, `Restricted`, and `Draft`.
|
1598
|
+
# @return [String]
|
1599
|
+
#
|
1600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/MachineLearningProductSummary AWS API Documentation
|
1601
|
+
#
|
1602
|
+
class MachineLearningProductSummary < Struct.new(
|
1603
|
+
:product_title,
|
1604
|
+
:visibility)
|
1605
|
+
SENSITIVE = []
|
1606
|
+
include Aws::Structure
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
# The filter for machine learning product titles.
|
1610
|
+
#
|
1611
|
+
# @!attribute [rw] value_list
|
1612
|
+
# A list of product titles to filter by. The operation returns machine
|
1613
|
+
# learning products with titles that exactly match the values in this
|
1614
|
+
# list.
|
1615
|
+
# @return [Array<String>]
|
1616
|
+
#
|
1617
|
+
# @!attribute [rw] wild_card_value
|
1618
|
+
# A wildcard value to filter product titles. The operation returns
|
1619
|
+
# machine learning products with titles that match this wildcard
|
1620
|
+
# pattern.
|
1621
|
+
# @return [String]
|
1622
|
+
#
|
1623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/MachineLearningProductTitleFilter AWS API Documentation
|
1624
|
+
#
|
1625
|
+
class MachineLearningProductTitleFilter < Struct.new(
|
1626
|
+
:value_list,
|
1627
|
+
:wild_card_value)
|
1628
|
+
SENSITIVE = []
|
1629
|
+
include Aws::Structure
|
1630
|
+
end
|
1631
|
+
|
1632
|
+
# The filter for machine learning product visibility status.
|
1633
|
+
#
|
1634
|
+
# @!attribute [rw] value_list
|
1635
|
+
# A list of visibility values to filter by. The operation returns
|
1636
|
+
# machine learning products with visibility status that match the
|
1637
|
+
# values in this list.
|
1638
|
+
# @return [Array<String>]
|
1639
|
+
#
|
1640
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/MachineLearningProductVisibilityFilter AWS API Documentation
|
1641
|
+
#
|
1642
|
+
class MachineLearningProductVisibilityFilter < Struct.new(
|
1643
|
+
:value_list)
|
1644
|
+
SENSITIVE = []
|
1645
|
+
include Aws::Structure
|
1646
|
+
end
|
1647
|
+
|
1439
1648
|
# Allows filtering on the `AvailabilityEndDate` of an offer.
|
1440
1649
|
#
|
1441
1650
|
# @!attribute [rw] date_range
|
data/sig/client.rbs
CHANGED
@@ -378,6 +378,24 @@ module Aws
|
|
378
378
|
before_value: ::String?
|
379
379
|
}?
|
380
380
|
}?
|
381
|
+
}?,
|
382
|
+
machine_learning_product_filters: {
|
383
|
+
entity_id: {
|
384
|
+
value_list: Array[::String]?
|
385
|
+
}?,
|
386
|
+
last_modified_date: {
|
387
|
+
date_range: {
|
388
|
+
after_value: ::String?,
|
389
|
+
before_value: ::String?
|
390
|
+
}?
|
391
|
+
}?,
|
392
|
+
product_title: {
|
393
|
+
value_list: Array[::String]?,
|
394
|
+
wild_card_value: ::String?
|
395
|
+
}?,
|
396
|
+
visibility: {
|
397
|
+
value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
|
398
|
+
}?
|
381
399
|
}?
|
382
400
|
},
|
383
401
|
?entity_type_sort: {
|
@@ -404,6 +422,10 @@ module Aws
|
|
404
422
|
resale_authorization_sort: {
|
405
423
|
sort_by: ("EntityId" | "Name" | "ProductId" | "ProductName" | "ManufacturerAccountId" | "ManufacturerLegalName" | "ResellerAccountID" | "ResellerLegalName" | "Status" | "OfferExtendedStatus" | "CreatedDate" | "AvailabilityEndDate" | "LastModifiedDate")?,
|
406
424
|
sort_order: ("ASCENDING" | "DESCENDING")?
|
425
|
+
}?,
|
426
|
+
machine_learning_product_sort: {
|
427
|
+
sort_by: ("EntityId" | "LastModifiedDate" | "ProductTitle" | "Visibility")?,
|
428
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
407
429
|
}?
|
408
430
|
}
|
409
431
|
) -> _ListEntitiesResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -293,6 +293,7 @@ module Aws::MarketplaceCatalog
|
|
293
293
|
attr_accessor saa_s_product_summary: Types::SaaSProductSummary
|
294
294
|
attr_accessor offer_summary: Types::OfferSummary
|
295
295
|
attr_accessor resale_authorization_summary: Types::ResaleAuthorizationSummary
|
296
|
+
attr_accessor machine_learning_product_summary: Types::MachineLearningProductSummary
|
296
297
|
SENSITIVE: []
|
297
298
|
end
|
298
299
|
|
@@ -303,6 +304,7 @@ module Aws::MarketplaceCatalog
|
|
303
304
|
attr_accessor offer_filters: Types::OfferFilters
|
304
305
|
attr_accessor container_product_filters: Types::ContainerProductFilters
|
305
306
|
attr_accessor resale_authorization_filters: Types::ResaleAuthorizationFilters
|
307
|
+
attr_accessor machine_learning_product_filters: Types::MachineLearningProductFilters
|
306
308
|
attr_accessor unknown: untyped
|
307
309
|
SENSITIVE: []
|
308
310
|
|
@@ -318,6 +320,8 @@ module Aws::MarketplaceCatalog
|
|
318
320
|
end
|
319
321
|
class ResaleAuthorizationFilters < EntityTypeFilters
|
320
322
|
end
|
323
|
+
class MachineLearningProductFilters < EntityTypeFilters
|
324
|
+
end
|
321
325
|
class Unknown < EntityTypeFilters
|
322
326
|
end
|
323
327
|
end
|
@@ -329,6 +333,7 @@ module Aws::MarketplaceCatalog
|
|
329
333
|
attr_accessor offer_sort: Types::OfferSort
|
330
334
|
attr_accessor container_product_sort: Types::ContainerProductSort
|
331
335
|
attr_accessor resale_authorization_sort: Types::ResaleAuthorizationSort
|
336
|
+
attr_accessor machine_learning_product_sort: Types::MachineLearningProductSort
|
332
337
|
attr_accessor unknown: untyped
|
333
338
|
SENSITIVE: []
|
334
339
|
|
@@ -344,6 +349,8 @@ module Aws::MarketplaceCatalog
|
|
344
349
|
end
|
345
350
|
class ResaleAuthorizationSort < EntityTypeSort
|
346
351
|
end
|
352
|
+
class MachineLearningProductSort < EntityTypeSort
|
353
|
+
end
|
347
354
|
class Unknown < EntityTypeSort
|
348
355
|
end
|
349
356
|
end
|
@@ -420,6 +427,53 @@ module Aws::MarketplaceCatalog
|
|
420
427
|
SENSITIVE: []
|
421
428
|
end
|
422
429
|
|
430
|
+
class MachineLearningProductEntityIdFilter
|
431
|
+
attr_accessor value_list: ::Array[::String]
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class MachineLearningProductFilters
|
436
|
+
attr_accessor entity_id: Types::MachineLearningProductEntityIdFilter
|
437
|
+
attr_accessor last_modified_date: Types::MachineLearningProductLastModifiedDateFilter
|
438
|
+
attr_accessor product_title: Types::MachineLearningProductTitleFilter
|
439
|
+
attr_accessor visibility: Types::MachineLearningProductVisibilityFilter
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class MachineLearningProductLastModifiedDateFilter
|
444
|
+
attr_accessor date_range: Types::MachineLearningProductLastModifiedDateFilterDateRange
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class MachineLearningProductLastModifiedDateFilterDateRange
|
449
|
+
attr_accessor after_value: ::String
|
450
|
+
attr_accessor before_value: ::String
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class MachineLearningProductSort
|
455
|
+
attr_accessor sort_by: ("EntityId" | "LastModifiedDate" | "ProductTitle" | "Visibility")
|
456
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class MachineLearningProductSummary
|
461
|
+
attr_accessor product_title: ::String
|
462
|
+
attr_accessor visibility: ("Limited" | "Public" | "Restricted" | "Draft")
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class MachineLearningProductTitleFilter
|
467
|
+
attr_accessor value_list: ::Array[::String]
|
468
|
+
attr_accessor wild_card_value: ::String
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class MachineLearningProductVisibilityFilter
|
473
|
+
attr_accessor value_list: ::Array[("Limited" | "Public" | "Restricted" | "Draft")]
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
423
477
|
class OfferAvailabilityEndDateFilter
|
424
478
|
attr_accessor date_range: Types::OfferAvailabilityEndDateFilterDateRange
|
425
479
|
SENSITIVE: []
|