aws-sdk-marketplacecatalog 1.60.0 → 1.62.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-marketplacecatalog/client.rb +48 -9
- 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 +23 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +54 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc0d1e93a15285d908711d4ccbfd64dbe4e239fdd1fb07fcd6aa7bf6efa78664
|
4
|
+
data.tar.gz: 677be2f911f204a499ac923cd99e7de05d432a8e42a308056ba593673d7c1783
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3792069066da95fb7ea5248f7a20a562f9642a5f2bb1e0d8ed1418dc0db1602a3ccbeb533b7f1c6d424cfefe9890bf6950260d51d75ed26a4ee6a585816accf8
|
7
|
+
data.tar.gz: 3542ee87554f37e0d459082b86ee857117061aecff8d21a5a0139acfa94cc5613b0853c1abda10da298aefe25f9bf2272f24442f1552d8f95af014b175e9a83f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.62.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.61.0 (2025-06-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.60.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.62.0
|
@@ -95,7 +95,7 @@ module Aws::MarketplaceCatalog
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::MarketplaceCatalog
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::MarketplaceCatalog
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::MarketplaceCatalog
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::MarketplaceCatalog
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1025,6 +1035,24 @@ module Aws::MarketplaceCatalog
|
|
1025
1035
|
# },
|
1026
1036
|
# },
|
1027
1037
|
# },
|
1038
|
+
# machine_learning_product_filters: {
|
1039
|
+
# entity_id: {
|
1040
|
+
# value_list: ["MachineLearningProductEntityIdString"],
|
1041
|
+
# },
|
1042
|
+
# last_modified_date: {
|
1043
|
+
# date_range: {
|
1044
|
+
# after_value: "DateTimeISO8601",
|
1045
|
+
# before_value: "DateTimeISO8601",
|
1046
|
+
# },
|
1047
|
+
# },
|
1048
|
+
# product_title: {
|
1049
|
+
# value_list: ["MachineLearningProductTitleString"],
|
1050
|
+
# wild_card_value: "MachineLearningProductTitleString",
|
1051
|
+
# },
|
1052
|
+
# visibility: {
|
1053
|
+
# value_list: ["Limited"], # accepts Limited, Public, Restricted, Draft
|
1054
|
+
# },
|
1055
|
+
# },
|
1028
1056
|
# },
|
1029
1057
|
# entity_type_sort: {
|
1030
1058
|
# data_product_sort: {
|
@@ -1051,6 +1079,10 @@ module Aws::MarketplaceCatalog
|
|
1051
1079
|
# sort_by: "EntityId", # accepts EntityId, Name, ProductId, ProductName, ManufacturerAccountId, ManufacturerLegalName, ResellerAccountID, ResellerLegalName, Status, OfferExtendedStatus, CreatedDate, AvailabilityEndDate, LastModifiedDate
|
1052
1080
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
1053
1081
|
# },
|
1082
|
+
# machine_learning_product_sort: {
|
1083
|
+
# sort_by: "EntityId", # accepts EntityId, LastModifiedDate, ProductTitle, Visibility
|
1084
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
1085
|
+
# },
|
1054
1086
|
# },
|
1055
1087
|
# })
|
1056
1088
|
#
|
@@ -1092,6 +1124,8 @@ module Aws::MarketplaceCatalog
|
|
1092
1124
|
# resp.entity_summary_list[0].resale_authorization_summary.offer_extended_status #=> String
|
1093
1125
|
# resp.entity_summary_list[0].resale_authorization_summary.created_date #=> String
|
1094
1126
|
# resp.entity_summary_list[0].resale_authorization_summary.availability_end_date #=> String
|
1127
|
+
# resp.entity_summary_list[0].machine_learning_product_summary.product_title #=> String
|
1128
|
+
# resp.entity_summary_list[0].machine_learning_product_summary.visibility #=> String, one of "Limited", "Public", "Restricted", "Draft"
|
1095
1129
|
# resp.next_token #=> String
|
1096
1130
|
#
|
1097
1131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListEntities AWS API Documentation
|
@@ -1190,12 +1224,17 @@ module Aws::MarketplaceCatalog
|
|
1190
1224
|
# for more information about change types available for container-based
|
1191
1225
|
# products, see [Working with container products][4].
|
1192
1226
|
#
|
1227
|
+
# To download "DetailsDocument" shapes, see [Python][5] and [Java][6]
|
1228
|
+
# shapes on GitHub.
|
1229
|
+
#
|
1193
1230
|
#
|
1194
1231
|
#
|
1195
1232
|
# [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/API_StartChangeSet.html#API_StartChangeSet_Examples
|
1196
1233
|
# [2]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html#working-with-change-sets
|
1197
1234
|
# [3]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/ami-products.html#working-with-single-AMI-products
|
1198
1235
|
# [4]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/container-products.html#working-with-container-products
|
1236
|
+
# [5]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-python
|
1237
|
+
# [6]: https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-java/tree/main
|
1199
1238
|
#
|
1200
1239
|
# @option params [required, String] :catalog
|
1201
1240
|
# The catalog related to the request. Fixed value: `AWSMarketplace`
|
@@ -1370,7 +1409,7 @@ module Aws::MarketplaceCatalog
|
|
1370
1409
|
tracer: tracer
|
1371
1410
|
)
|
1372
1411
|
context[:gem_name] = 'aws-sdk-marketplacecatalog'
|
1373
|
-
context[:gem_version] = '1.
|
1412
|
+
context[:gem_version] = '1.62.0'
|
1374
1413
|
Seahorse::Client::Request.new(handlers, context)
|
1375
1414
|
end
|
1376
1415
|
|
@@ -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
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -378,6 +379,24 @@ module Aws
|
|
378
379
|
before_value: ::String?
|
379
380
|
}?
|
380
381
|
}?
|
382
|
+
}?,
|
383
|
+
machine_learning_product_filters: {
|
384
|
+
entity_id: {
|
385
|
+
value_list: Array[::String]?
|
386
|
+
}?,
|
387
|
+
last_modified_date: {
|
388
|
+
date_range: {
|
389
|
+
after_value: ::String?,
|
390
|
+
before_value: ::String?
|
391
|
+
}?
|
392
|
+
}?,
|
393
|
+
product_title: {
|
394
|
+
value_list: Array[::String]?,
|
395
|
+
wild_card_value: ::String?
|
396
|
+
}?,
|
397
|
+
visibility: {
|
398
|
+
value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
|
399
|
+
}?
|
381
400
|
}?
|
382
401
|
},
|
383
402
|
?entity_type_sort: {
|
@@ -404,6 +423,10 @@ module Aws
|
|
404
423
|
resale_authorization_sort: {
|
405
424
|
sort_by: ("EntityId" | "Name" | "ProductId" | "ProductName" | "ManufacturerAccountId" | "ManufacturerLegalName" | "ResellerAccountID" | "ResellerLegalName" | "Status" | "OfferExtendedStatus" | "CreatedDate" | "AvailabilityEndDate" | "LastModifiedDate")?,
|
406
425
|
sort_order: ("ASCENDING" | "DESCENDING")?
|
426
|
+
}?,
|
427
|
+
machine_learning_product_sort: {
|
428
|
+
sort_by: ("EntityId" | "LastModifiedDate" | "ProductTitle" | "Visibility")?,
|
429
|
+
sort_order: ("ASCENDING" | "DESCENDING")?
|
407
430
|
}?
|
408
431
|
}
|
409
432
|
) -> _ListEntitiesResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
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: []
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-marketplacecatalog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|