aws-sdk-datazone 1.65.0 → 1.66.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-datazone/client.rb +53 -7
- data/lib/aws-sdk-datazone/client_api.rb +5 -1
- data/lib/aws-sdk-datazone/types.rb +12 -2
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +9 -3
- data/sig/types.rbs +2 -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: dbd572f3efa45b5fcb3d81d062bbfb7cdf4d1418f4d0f264206becfd728a5b26
|
|
4
|
+
data.tar.gz: dc09052cd676eb1ace2008f6b0546502629f29084994d33591524d9cae306d03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 248f7df239dd27f434de007ba50604488c37019deb5cb028b08e849c36de7139065c9852b2a23fabdd86484f9bfa1aa101c9ed520c48de07bb9491fd270948bc
|
|
7
|
+
data.tar.gz: a9376a91dc6e45da1cc908623026b983331ed03f1aeafcb39ab4e9fbddbaeb17c3c3a05428df3ee60412921b123b59133a2a4c4acf7b469fb3be2c4068f21efd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.66.0 (2026-01-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for numeric filtering and complex free-text searches cases for the Search and SearchListings APIs.
|
|
8
|
+
|
|
4
9
|
1.65.0 (2026-01-13)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.66.0
|
|
@@ -11617,6 +11617,38 @@ module Aws::DataZone
|
|
|
11617
11617
|
# * For paginated results, be prepared to use --next-token to fetch
|
|
11618
11618
|
# additional pages.
|
|
11619
11619
|
#
|
|
11620
|
+
# To run a standard free-text search, the `searchText` parameter must be
|
|
11621
|
+
# supplied. By default, all searchable fields are indexed for semantic
|
|
11622
|
+
# search and will return semantic matches for SearchListings queries. To
|
|
11623
|
+
# prevent semantic search indexing for a custom form attribute, see the
|
|
11624
|
+
# [CreateFormType API documentation][1]. To run a lexical search query,
|
|
11625
|
+
# enclose the query with double quotes (""). This will disable
|
|
11626
|
+
# semantic search even for fields that have semantic search enabled and
|
|
11627
|
+
# will only return results that contain the keywords wrapped by double
|
|
11628
|
+
# quotes (order of tokens in the query is not enforced). Free-text
|
|
11629
|
+
# search is supported for all attributes annotated with
|
|
11630
|
+
# @amazon.datazone#searchable.
|
|
11631
|
+
#
|
|
11632
|
+
# To run a filtered search, provide filter clause using the `filters`
|
|
11633
|
+
# parameter. To filter on glossary terms, use the special attribute
|
|
11634
|
+
# `__DataZoneGlossaryTerms`. To filter on an indexed numeric attribute
|
|
11635
|
+
# (i.e., a numeric attribute annotated with
|
|
11636
|
+
# `@amazon.datazone#sortable`), provide a filter using the `intValue`
|
|
11637
|
+
# parameter. The filters parameter can also be used to run more advanced
|
|
11638
|
+
# free-text searches that target specific attributes (attributes must be
|
|
11639
|
+
# annotated with `@amazon.datazone#searchable` for free-text search).
|
|
11640
|
+
# Create/update timestamp filtering is supported using the special
|
|
11641
|
+
# `creationTime`/`lastUpdatedTime` attributes. Filter types can be mixed
|
|
11642
|
+
# and matched to power complex queries.
|
|
11643
|
+
#
|
|
11644
|
+
# To find out whether an attribute has been annotated and indexed for a
|
|
11645
|
+
# given search type, use the GetFormType API to retrieve the form
|
|
11646
|
+
# containing the attribute.
|
|
11647
|
+
#
|
|
11648
|
+
#
|
|
11649
|
+
#
|
|
11650
|
+
# [1]: https://docs.aws.amazon.com/datazone/latest/APIReference/API_CreateFormType.html
|
|
11651
|
+
#
|
|
11620
11652
|
# @option params [required, String] :domain_identifier
|
|
11621
11653
|
# The identifier of the Amazon DataZone domain.
|
|
11622
11654
|
#
|
|
@@ -11680,7 +11712,9 @@ module Aws::DataZone
|
|
|
11680
11712
|
# filters: {
|
|
11681
11713
|
# filter: {
|
|
11682
11714
|
# attribute: "Attribute", # required
|
|
11683
|
-
# value: "FilterValueString",
|
|
11715
|
+
# value: "FilterValueString",
|
|
11716
|
+
# int_value: 1,
|
|
11717
|
+
# operator: "EQ", # accepts EQ, LE, LT, GE, GT, TEXT_SEARCH
|
|
11684
11718
|
# },
|
|
11685
11719
|
# and: [
|
|
11686
11720
|
# {
|
|
@@ -11897,7 +11931,7 @@ module Aws::DataZone
|
|
|
11897
11931
|
# The SearchListings API gives users flexibility in specifying what kind
|
|
11898
11932
|
# of search is run.
|
|
11899
11933
|
#
|
|
11900
|
-
# To run a free-text search, the `searchText` parameter must be
|
|
11934
|
+
# To run a standard free-text search, the `searchText` parameter must be
|
|
11901
11935
|
# supplied. By default, all searchable fields are indexed for semantic
|
|
11902
11936
|
# search and will return semantic matches for SearchListings queries. To
|
|
11903
11937
|
# prevent semantic search indexing for a custom form attribute, see the
|
|
@@ -11909,9 +11943,17 @@ module Aws::DataZone
|
|
|
11909
11943
|
# search is supported for all attributes annotated with
|
|
11910
11944
|
# @amazon.datazone#searchable.
|
|
11911
11945
|
#
|
|
11912
|
-
# To run a filtered search, provide filter clause using the filters
|
|
11946
|
+
# To run a filtered search, provide filter clause using the `filters`
|
|
11913
11947
|
# parameter. To filter on glossary terms, use the special attribute
|
|
11914
|
-
# `__DataZoneGlossaryTerms`.
|
|
11948
|
+
# `__DataZoneGlossaryTerms`. To filter on an indexed numeric attribute
|
|
11949
|
+
# (i.e., a numeric attribute annotated with
|
|
11950
|
+
# `@amazon.datazone#sortable`), provide a filter using the `intValue`
|
|
11951
|
+
# parameter. The filters parameter can also be used to run more advanced
|
|
11952
|
+
# free-text searches that target specific attributes (attributes must be
|
|
11953
|
+
# annotated with `@amazon.datazone#searchable` for free-text search).
|
|
11954
|
+
# Create/update timestamp filtering is supported using the special
|
|
11955
|
+
# `creationTime`/`lastUpdatedTime` attributes. Filter types can be mixed
|
|
11956
|
+
# and matched to power complex queries.
|
|
11915
11957
|
#
|
|
11916
11958
|
# To find out whether an attribute has been annotated and indexed for a
|
|
11917
11959
|
# given search type, use the GetFormType API to retrieve the form
|
|
@@ -11982,7 +12024,9 @@ module Aws::DataZone
|
|
|
11982
12024
|
# filters: {
|
|
11983
12025
|
# filter: {
|
|
11984
12026
|
# attribute: "Attribute", # required
|
|
11985
|
-
# value: "FilterValueString",
|
|
12027
|
+
# value: "FilterValueString",
|
|
12028
|
+
# int_value: 1,
|
|
12029
|
+
# operator: "EQ", # accepts EQ, LE, LT, GE, GT, TEXT_SEARCH
|
|
11986
12030
|
# },
|
|
11987
12031
|
# and: [
|
|
11988
12032
|
# {
|
|
@@ -12169,7 +12213,9 @@ module Aws::DataZone
|
|
|
12169
12213
|
# filters: {
|
|
12170
12214
|
# filter: {
|
|
12171
12215
|
# attribute: "Attribute", # required
|
|
12172
|
-
# value: "FilterValueString",
|
|
12216
|
+
# value: "FilterValueString",
|
|
12217
|
+
# int_value: 1,
|
|
12218
|
+
# operator: "EQ", # accepts EQ, LE, LT, GE, GT, TEXT_SEARCH
|
|
12173
12219
|
# },
|
|
12174
12220
|
# and: [
|
|
12175
12221
|
# {
|
|
@@ -14816,7 +14862,7 @@ module Aws::DataZone
|
|
|
14816
14862
|
tracer: tracer
|
|
14817
14863
|
)
|
|
14818
14864
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
14819
|
-
context[:gem_version] = '1.
|
|
14865
|
+
context[:gem_version] = '1.66.0'
|
|
14820
14866
|
Seahorse::Client::Request.new(handlers, context)
|
|
14821
14867
|
end
|
|
14822
14868
|
|
|
@@ -439,6 +439,7 @@ module Aws::DataZone
|
|
|
439
439
|
FilterIds = Shapes::ListShape.new(name: 'FilterIds')
|
|
440
440
|
FilterList = Shapes::ListShape.new(name: 'FilterList')
|
|
441
441
|
FilterName = Shapes::StringShape.new(name: 'FilterName')
|
|
442
|
+
FilterOperator = Shapes::StringShape.new(name: 'FilterOperator')
|
|
442
443
|
FilterStatus = Shapes::StringShape.new(name: 'FilterStatus')
|
|
443
444
|
FilterValueString = Shapes::StringShape.new(name: 'FilterValueString')
|
|
444
445
|
FirstName = Shapes::StringShape.new(name: 'FirstName')
|
|
@@ -725,6 +726,7 @@ module Aws::DataZone
|
|
|
725
726
|
ListingSummary = Shapes::StructureShape.new(name: 'ListingSummary')
|
|
726
727
|
ListingSummaryItem = Shapes::StructureShape.new(name: 'ListingSummaryItem')
|
|
727
728
|
ListingSummaryItems = Shapes::ListShape.new(name: 'ListingSummaryItems')
|
|
729
|
+
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
728
730
|
LongDescription = Shapes::StringShape.new(name: 'LongDescription')
|
|
729
731
|
ManagedEndpointCredentials = Shapes::StructureShape.new(name: 'ManagedEndpointCredentials')
|
|
730
732
|
ManagedEndpointCredentialsIdString = Shapes::StringShape.new(name: 'ManagedEndpointCredentialsIdString')
|
|
@@ -2998,7 +3000,9 @@ module Aws::DataZone
|
|
|
2998
3000
|
FailureReasons.member = Shapes::ShapeRef.new(shape: ProjectDeletionError)
|
|
2999
3001
|
|
|
3000
3002
|
Filter.add_member(:attribute, Shapes::ShapeRef.new(shape: Attribute, required: true, location_name: "attribute"))
|
|
3001
|
-
Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValueString,
|
|
3003
|
+
Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValueString, location_name: "value"))
|
|
3004
|
+
Filter.add_member(:int_value, Shapes::ShapeRef.new(shape: Long, location_name: "intValue"))
|
|
3005
|
+
Filter.add_member(:operator, Shapes::ShapeRef.new(shape: FilterOperator, location_name: "operator"))
|
|
3002
3006
|
Filter.struct_class = Types::Filter
|
|
3003
3007
|
|
|
3004
3008
|
FilterClause.add_member(:filter, Shapes::ShapeRef.new(shape: Filter, location_name: "filter"))
|
|
@@ -8076,14 +8076,24 @@ module Aws::DataZone
|
|
|
8076
8076
|
# @return [String]
|
|
8077
8077
|
#
|
|
8078
8078
|
# @!attribute [rw] value
|
|
8079
|
-
# A search filter value in Amazon DataZone.
|
|
8079
|
+
# A search filter string value in Amazon DataZone.
|
|
8080
|
+
# @return [String]
|
|
8081
|
+
#
|
|
8082
|
+
# @!attribute [rw] int_value
|
|
8083
|
+
# A search filter integer value in Amazon DataZone.
|
|
8084
|
+
# @return [Integer]
|
|
8085
|
+
#
|
|
8086
|
+
# @!attribute [rw] operator
|
|
8087
|
+
# Specifies the search filter operator.
|
|
8080
8088
|
# @return [String]
|
|
8081
8089
|
#
|
|
8082
8090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Filter AWS API Documentation
|
|
8083
8091
|
#
|
|
8084
8092
|
class Filter < Struct.new(
|
|
8085
8093
|
:attribute,
|
|
8086
|
-
:value
|
|
8094
|
+
:value,
|
|
8095
|
+
:int_value,
|
|
8096
|
+
:operator)
|
|
8087
8097
|
SENSITIVE = []
|
|
8088
8098
|
include Aws::Structure
|
|
8089
8099
|
end
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -3469,7 +3469,9 @@ module Aws
|
|
|
3469
3469
|
?filters: {
|
|
3470
3470
|
filter: {
|
|
3471
3471
|
attribute: ::String,
|
|
3472
|
-
value: ::String
|
|
3472
|
+
value: ::String?,
|
|
3473
|
+
int_value: ::Integer?,
|
|
3474
|
+
operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
|
|
3473
3475
|
}?,
|
|
3474
3476
|
and: Array[
|
|
3475
3477
|
untyped,
|
|
@@ -3522,7 +3524,9 @@ module Aws
|
|
|
3522
3524
|
?filters: {
|
|
3523
3525
|
filter: {
|
|
3524
3526
|
attribute: ::String,
|
|
3525
|
-
value: ::String
|
|
3527
|
+
value: ::String?,
|
|
3528
|
+
int_value: ::Integer?,
|
|
3529
|
+
operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
|
|
3526
3530
|
}?,
|
|
3527
3531
|
and: Array[
|
|
3528
3532
|
untyped,
|
|
@@ -3566,7 +3570,9 @@ module Aws
|
|
|
3566
3570
|
?filters: {
|
|
3567
3571
|
filter: {
|
|
3568
3572
|
attribute: ::String,
|
|
3569
|
-
value: ::String
|
|
3573
|
+
value: ::String?,
|
|
3574
|
+
int_value: ::Integer?,
|
|
3575
|
+
operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
|
|
3570
3576
|
}?,
|
|
3571
3577
|
and: Array[
|
|
3572
3578
|
untyped,
|
data/sig/types.rbs
CHANGED
|
@@ -2214,6 +2214,8 @@ module Aws::DataZone
|
|
|
2214
2214
|
class Filter
|
|
2215
2215
|
attr_accessor attribute: ::String
|
|
2216
2216
|
attr_accessor value: ::String
|
|
2217
|
+
attr_accessor int_value: ::Integer
|
|
2218
|
+
attr_accessor operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")
|
|
2217
2219
|
SENSITIVE: []
|
|
2218
2220
|
end
|
|
2219
2221
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-datazone
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.66.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.241.
|
|
21
|
+
version: 3.241.4
|
|
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.241.
|
|
31
|
+
version: 3.241.4
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|