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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afb2eee9d49f5595104d114ad1d286a3622758e9004835d77ca9c6204bf19f5f
4
- data.tar.gz: c653dd88c840de2f87dffbc3494b88730c474fea37ee345e7565aed67c190a06
3
+ metadata.gz: dbd572f3efa45b5fcb3d81d062bbfb7cdf4d1418f4d0f264206becfd728a5b26
4
+ data.tar.gz: dc09052cd676eb1ace2008f6b0546502629f29084994d33591524d9cae306d03
5
5
  SHA512:
6
- metadata.gz: 6d12e013b0b29fb11d8806139b952eea830c0a5945b33912990ebbc10ab4410ebd4355d73a68ea9e3c7a0076b5264e7e5d7a86ca3e61d8c8a3d24ea517a29aa4
7
- data.tar.gz: c44f793101d4cd4db3750d21bda72d6d7097fe50c1cec28e2616c938fa705544f26a76c2b47ec39da36b076acac32d720a08420ec90b9471042c895b7abc887e
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.65.0
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", # required
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", # required
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", # required
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.65.0'
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, required: true, location_name: "value"))
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
@@ -55,7 +55,7 @@ module Aws::DataZone
55
55
  autoload :EndpointProvider, 'aws-sdk-datazone/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-datazone/endpoints'
57
57
 
58
- GEM_VERSION = '1.65.0'
58
+ GEM_VERSION = '1.66.0'
59
59
 
60
60
  end
61
61
 
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.65.0
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.3
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.3
31
+ version: 3.241.4
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement