aws-sdk-datazone 1.42.0 → 1.44.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-datazone/client.rb +90 -12
- data/lib/aws-sdk-datazone/client_api.rb +78 -1
- data/lib/aws-sdk-datazone/types.rb +230 -2
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +10 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +69 -2
- 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: '0086eaacceddba64f0b9d97d371cf07035e66f0b1121581fda667680a8d77860'
|
4
|
+
data.tar.gz: 29a8b189d864b0ce1cad80a4c17d210836fcabb8ed7feab9c09362f6d84746e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82fd8ae636242da024a0a42381629066d60e704bc49b90a69599716c7ce5add268b1fb33c1e354e946b4056a606b619e1108b8146a4776a2cd52c2640f066e29
|
7
|
+
data.tar.gz: 1f7d9e77994fe78bb3a84ac79878d998eb396b508e64bba7f8535c78b0e8b928ae5c51a7eb8d1c5fd914c6224db4680c6bf7ae4b36c8f62d2961cfafa865650e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.44.0 (2025-07-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for 1) highlighting relevant text in returned results for Search and SearchListings APIs and 2) returning aggregated counts of values for specified attributes for SearchListings API.
|
8
|
+
|
9
|
+
1.43.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.42.0 (2025-07-15)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
@@ -95,7 +95,7 @@ module Aws::DataZone
|
|
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::DataZone
|
|
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::DataZone
|
|
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::DataZone
|
|
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::DataZone
|
|
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
|
@@ -975,6 +985,9 @@ module Aws::DataZone
|
|
975
985
|
# @option params [String] :external_identifier
|
976
986
|
# The external identifier of the asset.
|
977
987
|
#
|
988
|
+
# If the value for the `externalIdentifier` parameter is specified, it
|
989
|
+
# must be a unique value.
|
990
|
+
#
|
978
991
|
# @option params [Array<Types::FormInput>] :forms_input
|
979
992
|
# Metadata forms attached to the asset.
|
980
993
|
#
|
@@ -4664,6 +4677,11 @@ module Aws::DataZone
|
|
4664
4677
|
# @option params [required, String] :identifier
|
4665
4678
|
# The ID of the Amazon DataZone asset.
|
4666
4679
|
#
|
4680
|
+
# This parameter supports either the value of `assetId` or
|
4681
|
+
# `externalIdentifier` as input. If you are passing the value of
|
4682
|
+
# `externalIdentifier`, you must prefix this value with
|
4683
|
+
# `externalIdentifer%2F`.
|
4684
|
+
#
|
4667
4685
|
# @option params [String] :revision
|
4668
4686
|
# The revision of the Amazon DataZone asset.
|
4669
4687
|
#
|
@@ -10086,7 +10104,7 @@ module Aws::DataZone
|
|
10086
10104
|
# @example Request syntax with placeholder values
|
10087
10105
|
#
|
10088
10106
|
# resp = client.search({
|
10089
|
-
# additional_attributes: ["FORMS"], # accepts FORMS, TIME_SERIES_DATA_POINT_FORMS
|
10107
|
+
# additional_attributes: ["FORMS"], # accepts FORMS, TIME_SERIES_DATA_POINT_FORMS, TEXT_MATCH_RATIONALE
|
10090
10108
|
# domain_identifier: "DomainId", # required
|
10091
10109
|
# filters: {
|
10092
10110
|
# and: [
|
@@ -10135,6 +10153,13 @@ module Aws::DataZone
|
|
10135
10153
|
# resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].timestamp #=> Time
|
10136
10154
|
# resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].type_identifier #=> String
|
10137
10155
|
# resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].type_revision #=> String
|
10156
|
+
# resp.items[0].asset_item.additional_attributes.match_rationale #=> Array
|
10157
|
+
# resp.items[0].asset_item.additional_attributes.match_rationale[0].text_matches #=> Array
|
10158
|
+
# resp.items[0].asset_item.additional_attributes.match_rationale[0].text_matches[0].attribute #=> String
|
10159
|
+
# resp.items[0].asset_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets #=> Array
|
10160
|
+
# resp.items[0].asset_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].end_offset #=> Integer
|
10161
|
+
# resp.items[0].asset_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].start_offset #=> Integer
|
10162
|
+
# resp.items[0].asset_item.additional_attributes.match_rationale[0].text_matches[0].text #=> String
|
10138
10163
|
# resp.items[0].asset_item.additional_attributes.read_only_forms_output #=> Array
|
10139
10164
|
# resp.items[0].asset_item.additional_attributes.read_only_forms_output[0].content #=> String
|
10140
10165
|
# resp.items[0].asset_item.additional_attributes.read_only_forms_output[0].form_name #=> String
|
@@ -10154,6 +10179,13 @@ module Aws::DataZone
|
|
10154
10179
|
# resp.items[0].asset_item.owning_project_id #=> String
|
10155
10180
|
# resp.items[0].asset_item.type_identifier #=> String
|
10156
10181
|
# resp.items[0].asset_item.type_revision #=> String
|
10182
|
+
# resp.items[0].data_product_item.additional_attributes.match_rationale #=> Array
|
10183
|
+
# resp.items[0].data_product_item.additional_attributes.match_rationale[0].text_matches #=> Array
|
10184
|
+
# resp.items[0].data_product_item.additional_attributes.match_rationale[0].text_matches[0].attribute #=> String
|
10185
|
+
# resp.items[0].data_product_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets #=> Array
|
10186
|
+
# resp.items[0].data_product_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].end_offset #=> Integer
|
10187
|
+
# resp.items[0].data_product_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].start_offset #=> Integer
|
10188
|
+
# resp.items[0].data_product_item.additional_attributes.match_rationale[0].text_matches[0].text #=> String
|
10157
10189
|
# resp.items[0].data_product_item.created_at #=> Time
|
10158
10190
|
# resp.items[0].data_product_item.created_by #=> String
|
10159
10191
|
# resp.items[0].data_product_item.description #=> String
|
@@ -10165,6 +10197,13 @@ module Aws::DataZone
|
|
10165
10197
|
# resp.items[0].data_product_item.id #=> String
|
10166
10198
|
# resp.items[0].data_product_item.name #=> String
|
10167
10199
|
# resp.items[0].data_product_item.owning_project_id #=> String
|
10200
|
+
# resp.items[0].glossary_item.additional_attributes.match_rationale #=> Array
|
10201
|
+
# resp.items[0].glossary_item.additional_attributes.match_rationale[0].text_matches #=> Array
|
10202
|
+
# resp.items[0].glossary_item.additional_attributes.match_rationale[0].text_matches[0].attribute #=> String
|
10203
|
+
# resp.items[0].glossary_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets #=> Array
|
10204
|
+
# resp.items[0].glossary_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].end_offset #=> Integer
|
10205
|
+
# resp.items[0].glossary_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].start_offset #=> Integer
|
10206
|
+
# resp.items[0].glossary_item.additional_attributes.match_rationale[0].text_matches[0].text #=> String
|
10168
10207
|
# resp.items[0].glossary_item.created_at #=> Time
|
10169
10208
|
# resp.items[0].glossary_item.created_by #=> String
|
10170
10209
|
# resp.items[0].glossary_item.description #=> String
|
@@ -10175,6 +10214,13 @@ module Aws::DataZone
|
|
10175
10214
|
# resp.items[0].glossary_item.status #=> String, one of "DISABLED", "ENABLED"
|
10176
10215
|
# resp.items[0].glossary_item.updated_at #=> Time
|
10177
10216
|
# resp.items[0].glossary_item.updated_by #=> String
|
10217
|
+
# resp.items[0].glossary_term_item.additional_attributes.match_rationale #=> Array
|
10218
|
+
# resp.items[0].glossary_term_item.additional_attributes.match_rationale[0].text_matches #=> Array
|
10219
|
+
# resp.items[0].glossary_term_item.additional_attributes.match_rationale[0].text_matches[0].attribute #=> String
|
10220
|
+
# resp.items[0].glossary_term_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets #=> Array
|
10221
|
+
# resp.items[0].glossary_term_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].end_offset #=> Integer
|
10222
|
+
# resp.items[0].glossary_term_item.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].start_offset #=> Integer
|
10223
|
+
# resp.items[0].glossary_term_item.additional_attributes.match_rationale[0].text_matches[0].text #=> String
|
10178
10224
|
# resp.items[0].glossary_term_item.created_at #=> Time
|
10179
10225
|
# resp.items[0].glossary_term_item.created_by #=> String
|
10180
10226
|
# resp.items[0].glossary_term_item.domain_id #=> String
|
@@ -10270,6 +10316,10 @@ module Aws::DataZone
|
|
10270
10316
|
# @option params [Array<String>] :additional_attributes
|
10271
10317
|
# Specifies additional attributes for the search.
|
10272
10318
|
#
|
10319
|
+
# @option params [Array<Types::AggregationListItem>] :aggregations
|
10320
|
+
# Enables you to specify one or more attributes to compute and return
|
10321
|
+
# counts grouped by field values.
|
10322
|
+
#
|
10273
10323
|
# @option params [required, String] :domain_identifier
|
10274
10324
|
# The identifier of the domain in which to search listings.
|
10275
10325
|
#
|
@@ -10302,6 +10352,7 @@ module Aws::DataZone
|
|
10302
10352
|
#
|
10303
10353
|
# @return [Types::SearchListingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10304
10354
|
#
|
10355
|
+
# * {Types::SearchListingsOutput#aggregates #aggregates} => Array<Types::AggregationOutput>
|
10305
10356
|
# * {Types::SearchListingsOutput#items #items} => Array<Types::SearchResultItem>
|
10306
10357
|
# * {Types::SearchListingsOutput#next_token #next_token} => String
|
10307
10358
|
# * {Types::SearchListingsOutput#total_match_count #total_match_count} => Integer
|
@@ -10311,7 +10362,13 @@ module Aws::DataZone
|
|
10311
10362
|
# @example Request syntax with placeholder values
|
10312
10363
|
#
|
10313
10364
|
# resp = client.search_listings({
|
10314
|
-
# additional_attributes: ["FORMS"], # accepts FORMS, TIME_SERIES_DATA_POINT_FORMS
|
10365
|
+
# additional_attributes: ["FORMS"], # accepts FORMS, TIME_SERIES_DATA_POINT_FORMS, TEXT_MATCH_RATIONALE
|
10366
|
+
# aggregations: [
|
10367
|
+
# {
|
10368
|
+
# attribute: "Attribute", # required
|
10369
|
+
# display_value: "AggregationDisplayValue",
|
10370
|
+
# },
|
10371
|
+
# ],
|
10315
10372
|
# domain_identifier: "DomainId", # required
|
10316
10373
|
# filters: {
|
10317
10374
|
# and: [
|
@@ -10336,7 +10393,7 @@ module Aws::DataZone
|
|
10336
10393
|
# attribute: "Attribute", # required
|
10337
10394
|
# },
|
10338
10395
|
# ],
|
10339
|
-
# search_text: "
|
10396
|
+
# search_text: "SearchListingsInputSearchTextString",
|
10340
10397
|
# sort: {
|
10341
10398
|
# attribute: "Attribute", # required
|
10342
10399
|
# order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
@@ -10345,6 +10402,13 @@ module Aws::DataZone
|
|
10345
10402
|
#
|
10346
10403
|
# @example Response structure
|
10347
10404
|
#
|
10405
|
+
# resp.aggregates #=> Array
|
10406
|
+
# resp.aggregates[0].attribute #=> String
|
10407
|
+
# resp.aggregates[0].display_value #=> String
|
10408
|
+
# resp.aggregates[0].items #=> Array
|
10409
|
+
# resp.aggregates[0].items[0].count #=> Integer
|
10410
|
+
# resp.aggregates[0].items[0].display_value #=> String
|
10411
|
+
# resp.aggregates[0].items[0].value #=> String
|
10348
10412
|
# resp.items #=> Array
|
10349
10413
|
# resp.items[0].asset_listing.additional_attributes.forms #=> String
|
10350
10414
|
# resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms #=> Array
|
@@ -10354,6 +10418,13 @@ module Aws::DataZone
|
|
10354
10418
|
# resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].timestamp #=> Time
|
10355
10419
|
# resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].type_identifier #=> String
|
10356
10420
|
# resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].type_revision #=> String
|
10421
|
+
# resp.items[0].asset_listing.additional_attributes.match_rationale #=> Array
|
10422
|
+
# resp.items[0].asset_listing.additional_attributes.match_rationale[0].text_matches #=> Array
|
10423
|
+
# resp.items[0].asset_listing.additional_attributes.match_rationale[0].text_matches[0].attribute #=> String
|
10424
|
+
# resp.items[0].asset_listing.additional_attributes.match_rationale[0].text_matches[0].match_offsets #=> Array
|
10425
|
+
# resp.items[0].asset_listing.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].end_offset #=> Integer
|
10426
|
+
# resp.items[0].asset_listing.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].start_offset #=> Integer
|
10427
|
+
# resp.items[0].asset_listing.additional_attributes.match_rationale[0].text_matches[0].text #=> String
|
10357
10428
|
# resp.items[0].asset_listing.created_at #=> Time
|
10358
10429
|
# resp.items[0].asset_listing.description #=> String
|
10359
10430
|
# resp.items[0].asset_listing.entity_id #=> String
|
@@ -10369,6 +10440,13 @@ module Aws::DataZone
|
|
10369
10440
|
# resp.items[0].asset_listing.name #=> String
|
10370
10441
|
# resp.items[0].asset_listing.owning_project_id #=> String
|
10371
10442
|
# resp.items[0].data_product_listing.additional_attributes.forms #=> String
|
10443
|
+
# resp.items[0].data_product_listing.additional_attributes.match_rationale #=> Array
|
10444
|
+
# resp.items[0].data_product_listing.additional_attributes.match_rationale[0].text_matches #=> Array
|
10445
|
+
# resp.items[0].data_product_listing.additional_attributes.match_rationale[0].text_matches[0].attribute #=> String
|
10446
|
+
# resp.items[0].data_product_listing.additional_attributes.match_rationale[0].text_matches[0].match_offsets #=> Array
|
10447
|
+
# resp.items[0].data_product_listing.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].end_offset #=> Integer
|
10448
|
+
# resp.items[0].data_product_listing.additional_attributes.match_rationale[0].text_matches[0].match_offsets[0].start_offset #=> Integer
|
10449
|
+
# resp.items[0].data_product_listing.additional_attributes.match_rationale[0].text_matches[0].text #=> String
|
10372
10450
|
# resp.items[0].data_product_listing.created_at #=> Time
|
10373
10451
|
# resp.items[0].data_product_listing.description #=> String
|
10374
10452
|
# resp.items[0].data_product_listing.entity_id #=> String
|
@@ -12731,7 +12809,7 @@ module Aws::DataZone
|
|
12731
12809
|
tracer: tracer
|
12732
12810
|
)
|
12733
12811
|
context[:gem_name] = 'aws-sdk-datazone'
|
12734
|
-
context[:gem_version] = '1.
|
12812
|
+
context[:gem_version] = '1.44.0'
|
12735
12813
|
Seahorse::Client::Request.new(handlers, context)
|
12736
12814
|
end
|
12737
12815
|
|
@@ -34,6 +34,15 @@ module Aws::DataZone
|
|
34
34
|
AddPolicyGrantInput = Shapes::StructureShape.new(name: 'AddPolicyGrantInput')
|
35
35
|
AddPolicyGrantOutput = Shapes::StructureShape.new(name: 'AddPolicyGrantOutput')
|
36
36
|
AddToProjectMemberPoolPolicyGrantDetail = Shapes::StructureShape.new(name: 'AddToProjectMemberPoolPolicyGrantDetail')
|
37
|
+
AggregationAttributeDisplayValue = Shapes::StringShape.new(name: 'AggregationAttributeDisplayValue')
|
38
|
+
AggregationAttributeValue = Shapes::StringShape.new(name: 'AggregationAttributeValue')
|
39
|
+
AggregationDisplayValue = Shapes::StringShape.new(name: 'AggregationDisplayValue')
|
40
|
+
AggregationList = Shapes::ListShape.new(name: 'AggregationList')
|
41
|
+
AggregationListItem = Shapes::StructureShape.new(name: 'AggregationListItem')
|
42
|
+
AggregationOutput = Shapes::StructureShape.new(name: 'AggregationOutput')
|
43
|
+
AggregationOutputItem = Shapes::StructureShape.new(name: 'AggregationOutputItem')
|
44
|
+
AggregationOutputItems = Shapes::ListShape.new(name: 'AggregationOutputItems')
|
45
|
+
AggregationOutputList = Shapes::ListShape.new(name: 'AggregationOutputList')
|
37
46
|
AllDomainUnitsGrantFilter = Shapes::StructureShape.new(name: 'AllDomainUnitsGrantFilter')
|
38
47
|
AllUsersGrantFilter = Shapes::StructureShape.new(name: 'AllUsersGrantFilter')
|
39
48
|
ApplicableAssetTypes = Shapes::ListShape.new(name: 'ApplicableAssetTypes')
|
@@ -201,6 +210,7 @@ module Aws::DataZone
|
|
201
210
|
DataProductDescription = Shapes::StringShape.new(name: 'DataProductDescription')
|
202
211
|
DataProductId = Shapes::StringShape.new(name: 'DataProductId')
|
203
212
|
DataProductItem = Shapes::StructureShape.new(name: 'DataProductItem')
|
213
|
+
DataProductItemAdditionalAttributes = Shapes::StructureShape.new(name: 'DataProductItemAdditionalAttributes')
|
204
214
|
DataProductItemType = Shapes::StringShape.new(name: 'DataProductItemType')
|
205
215
|
DataProductItems = Shapes::ListShape.new(name: 'DataProductItems')
|
206
216
|
DataProductListing = Shapes::StructureShape.new(name: 'DataProductListing')
|
@@ -461,10 +471,12 @@ module Aws::DataZone
|
|
461
471
|
GlossaryDescription = Shapes::StringShape.new(name: 'GlossaryDescription')
|
462
472
|
GlossaryId = Shapes::StringShape.new(name: 'GlossaryId')
|
463
473
|
GlossaryItem = Shapes::StructureShape.new(name: 'GlossaryItem')
|
474
|
+
GlossaryItemAdditionalAttributes = Shapes::StructureShape.new(name: 'GlossaryItemAdditionalAttributes')
|
464
475
|
GlossaryName = Shapes::StringShape.new(name: 'GlossaryName')
|
465
476
|
GlossaryStatus = Shapes::StringShape.new(name: 'GlossaryStatus')
|
466
477
|
GlossaryTermId = Shapes::StringShape.new(name: 'GlossaryTermId')
|
467
478
|
GlossaryTermItem = Shapes::StructureShape.new(name: 'GlossaryTermItem')
|
479
|
+
GlossaryTermItemAdditionalAttributes = Shapes::StructureShape.new(name: 'GlossaryTermItemAdditionalAttributes')
|
468
480
|
GlossaryTermName = Shapes::StringShape.new(name: 'GlossaryTermName')
|
469
481
|
GlossaryTermStatus = Shapes::StringShape.new(name: 'GlossaryTermStatus')
|
470
482
|
GlossaryTerms = Shapes::ListShape.new(name: 'GlossaryTerms')
|
@@ -637,6 +649,10 @@ module Aws::DataZone
|
|
637
649
|
LongDescription = Shapes::StringShape.new(name: 'LongDescription')
|
638
650
|
ManagedPolicyType = Shapes::StringShape.new(name: 'ManagedPolicyType')
|
639
651
|
MatchCriteria = Shapes::ListShape.new(name: 'MatchCriteria')
|
652
|
+
MatchOffset = Shapes::StructureShape.new(name: 'MatchOffset')
|
653
|
+
MatchOffsets = Shapes::ListShape.new(name: 'MatchOffsets')
|
654
|
+
MatchRationale = Shapes::ListShape.new(name: 'MatchRationale')
|
655
|
+
MatchRationaleItem = Shapes::UnionShape.new(name: 'MatchRationaleItem')
|
640
656
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
641
657
|
MaxResultsForListDomains = Shapes::IntegerShape.new(name: 'MaxResultsForListDomains')
|
642
658
|
Member = Shapes::UnionShape.new(name: 'Member')
|
@@ -834,6 +850,7 @@ module Aws::DataZone
|
|
834
850
|
SearchInventoryResultItem = Shapes::UnionShape.new(name: 'SearchInventoryResultItem')
|
835
851
|
SearchInventoryResultItems = Shapes::ListShape.new(name: 'SearchInventoryResultItems')
|
836
852
|
SearchListingsInput = Shapes::StructureShape.new(name: 'SearchListingsInput')
|
853
|
+
SearchListingsInputSearchTextString = Shapes::StringShape.new(name: 'SearchListingsInputSearchTextString')
|
837
854
|
SearchListingsOutput = Shapes::StructureShape.new(name: 'SearchListingsOutput')
|
838
855
|
SearchOutput = Shapes::StructureShape.new(name: 'SearchOutput')
|
839
856
|
SearchOutputAdditionalAttribute = Shapes::StringShape.new(name: 'SearchOutputAdditionalAttribute')
|
@@ -947,6 +964,8 @@ module Aws::DataZone
|
|
947
964
|
TermRelations = Shapes::StructureShape.new(name: 'TermRelations')
|
948
965
|
TermRelationsClassifiesList = Shapes::ListShape.new(name: 'TermRelationsClassifiesList')
|
949
966
|
TermRelationsIsAList = Shapes::ListShape.new(name: 'TermRelationsIsAList')
|
967
|
+
TextMatchItem = Shapes::StructureShape.new(name: 'TextMatchItem')
|
968
|
+
TextMatches = Shapes::ListShape.new(name: 'TextMatches')
|
950
969
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
951
970
|
TimeSeriesDataPointFormInput = Shapes::StructureShape.new(name: 'TimeSeriesDataPointFormInput')
|
952
971
|
TimeSeriesDataPointFormInputContentString = Shapes::StringShape.new(name: 'TimeSeriesDataPointFormInputContentString')
|
@@ -1124,6 +1143,26 @@ module Aws::DataZone
|
|
1124
1143
|
AddToProjectMemberPoolPolicyGrantDetail.add_member(:include_child_domain_units, Shapes::ShapeRef.new(shape: Boolean, location_name: "includeChildDomainUnits"))
|
1125
1144
|
AddToProjectMemberPoolPolicyGrantDetail.struct_class = Types::AddToProjectMemberPoolPolicyGrantDetail
|
1126
1145
|
|
1146
|
+
AggregationList.member = Shapes::ShapeRef.new(shape: AggregationListItem)
|
1147
|
+
|
1148
|
+
AggregationListItem.add_member(:attribute, Shapes::ShapeRef.new(shape: Attribute, required: true, location_name: "attribute"))
|
1149
|
+
AggregationListItem.add_member(:display_value, Shapes::ShapeRef.new(shape: AggregationDisplayValue, location_name: "displayValue"))
|
1150
|
+
AggregationListItem.struct_class = Types::AggregationListItem
|
1151
|
+
|
1152
|
+
AggregationOutput.add_member(:attribute, Shapes::ShapeRef.new(shape: Attribute, location_name: "attribute"))
|
1153
|
+
AggregationOutput.add_member(:display_value, Shapes::ShapeRef.new(shape: AggregationDisplayValue, location_name: "displayValue"))
|
1154
|
+
AggregationOutput.add_member(:items, Shapes::ShapeRef.new(shape: AggregationOutputItems, location_name: "items"))
|
1155
|
+
AggregationOutput.struct_class = Types::AggregationOutput
|
1156
|
+
|
1157
|
+
AggregationOutputItem.add_member(:count, Shapes::ShapeRef.new(shape: Integer, location_name: "count"))
|
1158
|
+
AggregationOutputItem.add_member(:display_value, Shapes::ShapeRef.new(shape: AggregationAttributeDisplayValue, location_name: "displayValue"))
|
1159
|
+
AggregationOutputItem.add_member(:value, Shapes::ShapeRef.new(shape: AggregationAttributeValue, location_name: "value"))
|
1160
|
+
AggregationOutputItem.struct_class = Types::AggregationOutputItem
|
1161
|
+
|
1162
|
+
AggregationOutputItems.member = Shapes::ShapeRef.new(shape: AggregationOutputItem)
|
1163
|
+
|
1164
|
+
AggregationOutputList.member = Shapes::ShapeRef.new(shape: AggregationOutput)
|
1165
|
+
|
1127
1166
|
AllDomainUnitsGrantFilter.struct_class = Types::AllDomainUnitsGrantFilter
|
1128
1167
|
|
1129
1168
|
AllUsersGrantFilter.struct_class = Types::AllUsersGrantFilter
|
@@ -1177,6 +1216,7 @@ module Aws::DataZone
|
|
1177
1216
|
|
1178
1217
|
AssetItemAdditionalAttributes.add_member(:forms_output, Shapes::ShapeRef.new(shape: FormOutputList, location_name: "formsOutput"))
|
1179
1218
|
AssetItemAdditionalAttributes.add_member(:latest_time_series_data_point_forms_output, Shapes::ShapeRef.new(shape: TimeSeriesDataPointSummaryFormOutputList, location_name: "latestTimeSeriesDataPointFormsOutput"))
|
1219
|
+
AssetItemAdditionalAttributes.add_member(:match_rationale, Shapes::ShapeRef.new(shape: MatchRationale, location_name: "matchRationale"))
|
1180
1220
|
AssetItemAdditionalAttributes.add_member(:read_only_forms_output, Shapes::ShapeRef.new(shape: FormOutputList, location_name: "readOnlyFormsOutput"))
|
1181
1221
|
AssetItemAdditionalAttributes.struct_class = Types::AssetItemAdditionalAttributes
|
1182
1222
|
|
@@ -1211,6 +1251,7 @@ module Aws::DataZone
|
|
1211
1251
|
|
1212
1252
|
AssetListingItemAdditionalAttributes.add_member(:forms, Shapes::ShapeRef.new(shape: Forms, location_name: "forms"))
|
1213
1253
|
AssetListingItemAdditionalAttributes.add_member(:latest_time_series_data_point_forms, Shapes::ShapeRef.new(shape: TimeSeriesDataPointSummaryFormOutputList, location_name: "latestTimeSeriesDataPointForms"))
|
1254
|
+
AssetListingItemAdditionalAttributes.add_member(:match_rationale, Shapes::ShapeRef.new(shape: MatchRationale, location_name: "matchRationale"))
|
1214
1255
|
AssetListingItemAdditionalAttributes.struct_class = Types::AssetListingItemAdditionalAttributes
|
1215
1256
|
|
1216
1257
|
AssetRevision.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
@@ -2068,6 +2109,9 @@ module Aws::DataZone
|
|
2068
2109
|
DataProductItem.add_member(:revision, Shapes::ShapeRef.new(shape: Revision, location_name: "revision"))
|
2069
2110
|
DataProductItem.struct_class = Types::DataProductItem
|
2070
2111
|
|
2112
|
+
DataProductItemAdditionalAttributes.add_member(:match_rationale, Shapes::ShapeRef.new(shape: MatchRationale, location_name: "matchRationale"))
|
2113
|
+
DataProductItemAdditionalAttributes.struct_class = Types::DataProductItemAdditionalAttributes
|
2114
|
+
|
2071
2115
|
DataProductItems.member = Shapes::ShapeRef.new(shape: DataProductItem)
|
2072
2116
|
|
2073
2117
|
DataProductListing.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
@@ -2095,8 +2139,10 @@ module Aws::DataZone
|
|
2095
2139
|
DataProductListingItem.struct_class = Types::DataProductListingItem
|
2096
2140
|
|
2097
2141
|
DataProductListingItemAdditionalAttributes.add_member(:forms, Shapes::ShapeRef.new(shape: Forms, location_name: "forms"))
|
2142
|
+
DataProductListingItemAdditionalAttributes.add_member(:match_rationale, Shapes::ShapeRef.new(shape: MatchRationale, location_name: "matchRationale"))
|
2098
2143
|
DataProductListingItemAdditionalAttributes.struct_class = Types::DataProductListingItemAdditionalAttributes
|
2099
2144
|
|
2145
|
+
DataProductResultItem.add_member(:additional_attributes, Shapes::ShapeRef.new(shape: DataProductItemAdditionalAttributes, location_name: "additionalAttributes"))
|
2100
2146
|
DataProductResultItem.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
2101
2147
|
DataProductResultItem.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
2102
2148
|
DataProductResultItem.add_member(:description, Shapes::ShapeRef.new(shape: DataProductDescription, location_name: "description"))
|
@@ -3276,6 +3322,7 @@ module Aws::DataZone
|
|
3276
3322
|
GetUserProfileOutput.add_member(:type, Shapes::ShapeRef.new(shape: UserProfileType, location_name: "type"))
|
3277
3323
|
GetUserProfileOutput.struct_class = Types::GetUserProfileOutput
|
3278
3324
|
|
3325
|
+
GlossaryItem.add_member(:additional_attributes, Shapes::ShapeRef.new(shape: GlossaryItemAdditionalAttributes, location_name: "additionalAttributes"))
|
3279
3326
|
GlossaryItem.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
3280
3327
|
GlossaryItem.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
3281
3328
|
GlossaryItem.add_member(:description, Shapes::ShapeRef.new(shape: GlossaryDescription, location_name: "description"))
|
@@ -3288,6 +3335,10 @@ module Aws::DataZone
|
|
3288
3335
|
GlossaryItem.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
3289
3336
|
GlossaryItem.struct_class = Types::GlossaryItem
|
3290
3337
|
|
3338
|
+
GlossaryItemAdditionalAttributes.add_member(:match_rationale, Shapes::ShapeRef.new(shape: MatchRationale, location_name: "matchRationale"))
|
3339
|
+
GlossaryItemAdditionalAttributes.struct_class = Types::GlossaryItemAdditionalAttributes
|
3340
|
+
|
3341
|
+
GlossaryTermItem.add_member(:additional_attributes, Shapes::ShapeRef.new(shape: GlossaryTermItemAdditionalAttributes, location_name: "additionalAttributes"))
|
3291
3342
|
GlossaryTermItem.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
3292
3343
|
GlossaryTermItem.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
3293
3344
|
GlossaryTermItem.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
@@ -3302,6 +3353,9 @@ module Aws::DataZone
|
|
3302
3353
|
GlossaryTermItem.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
3303
3354
|
GlossaryTermItem.struct_class = Types::GlossaryTermItem
|
3304
3355
|
|
3356
|
+
GlossaryTermItemAdditionalAttributes.add_member(:match_rationale, Shapes::ShapeRef.new(shape: MatchRationale, location_name: "matchRationale"))
|
3357
|
+
GlossaryTermItemAdditionalAttributes.struct_class = Types::GlossaryTermItemAdditionalAttributes
|
3358
|
+
|
3305
3359
|
GlossaryTerms.member = Shapes::ShapeRef.new(shape: GlossaryTermId)
|
3306
3360
|
|
3307
3361
|
GlueConnection.add_member(:athena_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "athenaProperties"))
|
@@ -3973,6 +4027,20 @@ module Aws::DataZone
|
|
3973
4027
|
|
3974
4028
|
MatchCriteria.member = Shapes::ShapeRef.new(shape: String)
|
3975
4029
|
|
4030
|
+
MatchOffset.add_member(:end_offset, Shapes::ShapeRef.new(shape: Integer, location_name: "endOffset"))
|
4031
|
+
MatchOffset.add_member(:start_offset, Shapes::ShapeRef.new(shape: Integer, location_name: "startOffset"))
|
4032
|
+
MatchOffset.struct_class = Types::MatchOffset
|
4033
|
+
|
4034
|
+
MatchOffsets.member = Shapes::ShapeRef.new(shape: MatchOffset)
|
4035
|
+
|
4036
|
+
MatchRationale.member = Shapes::ShapeRef.new(shape: MatchRationaleItem)
|
4037
|
+
|
4038
|
+
MatchRationaleItem.add_member(:text_matches, Shapes::ShapeRef.new(shape: TextMatches, location_name: "textMatches"))
|
4039
|
+
MatchRationaleItem.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
4040
|
+
MatchRationaleItem.add_member_subclass(:text_matches, Types::MatchRationaleItem::TextMatches)
|
4041
|
+
MatchRationaleItem.add_member_subclass(:unknown, Types::MatchRationaleItem::Unknown)
|
4042
|
+
MatchRationaleItem.struct_class = Types::MatchRationaleItem
|
4043
|
+
|
3976
4044
|
Member.add_member(:group_identifier, Shapes::ShapeRef.new(shape: String, location_name: "groupIdentifier"))
|
3977
4045
|
Member.add_member(:user_identifier, Shapes::ShapeRef.new(shape: String, location_name: "userIdentifier"))
|
3978
4046
|
Member.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
@@ -4684,15 +4752,17 @@ module Aws::DataZone
|
|
4684
4752
|
SearchInventoryResultItems.member = Shapes::ShapeRef.new(shape: SearchInventoryResultItem)
|
4685
4753
|
|
4686
4754
|
SearchListingsInput.add_member(:additional_attributes, Shapes::ShapeRef.new(shape: SearchOutputAdditionalAttributes, location_name: "additionalAttributes"))
|
4755
|
+
SearchListingsInput.add_member(:aggregations, Shapes::ShapeRef.new(shape: AggregationList, location_name: "aggregations"))
|
4687
4756
|
SearchListingsInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
4688
4757
|
SearchListingsInput.add_member(:filters, Shapes::ShapeRef.new(shape: FilterClause, location_name: "filters"))
|
4689
4758
|
SearchListingsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
|
4690
4759
|
SearchListingsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
4691
4760
|
SearchListingsInput.add_member(:search_in, Shapes::ShapeRef.new(shape: SearchInList, location_name: "searchIn"))
|
4692
|
-
SearchListingsInput.add_member(:search_text, Shapes::ShapeRef.new(shape:
|
4761
|
+
SearchListingsInput.add_member(:search_text, Shapes::ShapeRef.new(shape: SearchListingsInputSearchTextString, location_name: "searchText"))
|
4693
4762
|
SearchListingsInput.add_member(:sort, Shapes::ShapeRef.new(shape: SearchSort, location_name: "sort"))
|
4694
4763
|
SearchListingsInput.struct_class = Types::SearchListingsInput
|
4695
4764
|
|
4765
|
+
SearchListingsOutput.add_member(:aggregates, Shapes::ShapeRef.new(shape: AggregationOutputList, location_name: "aggregates"))
|
4696
4766
|
SearchListingsOutput.add_member(:items, Shapes::ShapeRef.new(shape: SearchResultItems, location_name: "items"))
|
4697
4767
|
SearchListingsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
4698
4768
|
SearchListingsOutput.add_member(:total_match_count, Shapes::ShapeRef.new(shape: Integer, location_name: "totalMatchCount"))
|
@@ -5050,6 +5120,13 @@ module Aws::DataZone
|
|
5050
5120
|
|
5051
5121
|
TermRelationsIsAList.member = Shapes::ShapeRef.new(shape: GlossaryTermId)
|
5052
5122
|
|
5123
|
+
TextMatchItem.add_member(:attribute, Shapes::ShapeRef.new(shape: Attribute, location_name: "attribute"))
|
5124
|
+
TextMatchItem.add_member(:match_offsets, Shapes::ShapeRef.new(shape: MatchOffsets, location_name: "matchOffsets"))
|
5125
|
+
TextMatchItem.add_member(:text, Shapes::ShapeRef.new(shape: String, location_name: "text"))
|
5126
|
+
TextMatchItem.struct_class = Types::TextMatchItem
|
5127
|
+
|
5128
|
+
TextMatches.member = Shapes::ShapeRef.new(shape: TextMatchItem)
|
5129
|
+
|
5053
5130
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
5054
5131
|
ThrottlingException.struct_class = Types::ThrottlingException
|
5055
5132
|
|
@@ -399,6 +399,76 @@ module Aws::DataZone
|
|
399
399
|
include Aws::Structure
|
400
400
|
end
|
401
401
|
|
402
|
+
# An aggregation list item.
|
403
|
+
#
|
404
|
+
# @!attribute [rw] attribute
|
405
|
+
# An attribute on which to compute aggregations.
|
406
|
+
# @return [String]
|
407
|
+
#
|
408
|
+
# @!attribute [rw] display_value
|
409
|
+
# The display value of the aggregation list item. Supported values
|
410
|
+
# include `value` and `glossaryTerm.name`.
|
411
|
+
# @return [String]
|
412
|
+
#
|
413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AggregationListItem AWS API Documentation
|
414
|
+
#
|
415
|
+
class AggregationListItem < Struct.new(
|
416
|
+
:attribute,
|
417
|
+
:display_value)
|
418
|
+
SENSITIVE = []
|
419
|
+
include Aws::Structure
|
420
|
+
end
|
421
|
+
|
422
|
+
# The aggregation for an attribute.
|
423
|
+
#
|
424
|
+
# @!attribute [rw] attribute
|
425
|
+
# The attribute for this aggregation.
|
426
|
+
# @return [String]
|
427
|
+
#
|
428
|
+
# @!attribute [rw] display_value
|
429
|
+
# The display value of the aggregation output item.
|
430
|
+
# @return [String]
|
431
|
+
#
|
432
|
+
# @!attribute [rw] items
|
433
|
+
# A list of aggregation output items.
|
434
|
+
# @return [Array<Types::AggregationOutputItem>]
|
435
|
+
#
|
436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AggregationOutput AWS API Documentation
|
437
|
+
#
|
438
|
+
class AggregationOutput < Struct.new(
|
439
|
+
:attribute,
|
440
|
+
:display_value,
|
441
|
+
:items)
|
442
|
+
SENSITIVE = []
|
443
|
+
include Aws::Structure
|
444
|
+
end
|
445
|
+
|
446
|
+
# An aggregation output item.
|
447
|
+
#
|
448
|
+
# @!attribute [rw] count
|
449
|
+
# The count of the aggregation output item.
|
450
|
+
# @return [Integer]
|
451
|
+
#
|
452
|
+
# @!attribute [rw] display_value
|
453
|
+
# The display value of the aggregation. If the attribute being
|
454
|
+
# aggregated corresponds to the id of a public resource, the service
|
455
|
+
# automatically resolves the id to the provided display value.
|
456
|
+
# @return [String]
|
457
|
+
#
|
458
|
+
# @!attribute [rw] value
|
459
|
+
# The attribute value of the aggregation output item.
|
460
|
+
# @return [String]
|
461
|
+
#
|
462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AggregationOutputItem AWS API Documentation
|
463
|
+
#
|
464
|
+
class AggregationOutputItem < Struct.new(
|
465
|
+
:count,
|
466
|
+
:display_value,
|
467
|
+
:value)
|
468
|
+
SENSITIVE = []
|
469
|
+
include Aws::Structure
|
470
|
+
end
|
471
|
+
|
402
472
|
# The grant filter for all domain units.
|
403
473
|
#
|
404
474
|
# @api private
|
@@ -624,6 +694,10 @@ module Aws::DataZone
|
|
624
694
|
# attributes of an asset.
|
625
695
|
# @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
|
626
696
|
#
|
697
|
+
# @!attribute [rw] match_rationale
|
698
|
+
# List of rationales indicating why this item was matched by search.
|
699
|
+
# @return [Array<Types::MatchRationaleItem>]
|
700
|
+
#
|
627
701
|
# @!attribute [rw] read_only_forms_output
|
628
702
|
# The read-only forms included in the additional attributes of an
|
629
703
|
# inventory asset.
|
@@ -634,6 +708,7 @@ module Aws::DataZone
|
|
634
708
|
class AssetItemAdditionalAttributes < Struct.new(
|
635
709
|
:forms_output,
|
636
710
|
:latest_time_series_data_point_forms_output,
|
711
|
+
:match_rationale,
|
637
712
|
:read_only_forms_output)
|
638
713
|
SENSITIVE = []
|
639
714
|
include Aws::Structure
|
@@ -802,11 +877,16 @@ module Aws::DataZone
|
|
802
877
|
# attributes of an asset.
|
803
878
|
# @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
|
804
879
|
#
|
880
|
+
# @!attribute [rw] match_rationale
|
881
|
+
# List of rationales indicating why this item was matched by search.
|
882
|
+
# @return [Array<Types::MatchRationaleItem>]
|
883
|
+
#
|
805
884
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssetListingItemAdditionalAttributes AWS API Documentation
|
806
885
|
#
|
807
886
|
class AssetListingItemAdditionalAttributes < Struct.new(
|
808
887
|
:forms,
|
809
|
-
:latest_time_series_data_point_forms
|
888
|
+
:latest_time_series_data_point_forms,
|
889
|
+
:match_rationale)
|
810
890
|
SENSITIVE = []
|
811
891
|
include Aws::Structure
|
812
892
|
end
|
@@ -1840,6 +1920,9 @@ module Aws::DataZone
|
|
1840
1920
|
#
|
1841
1921
|
# @!attribute [rw] external_identifier
|
1842
1922
|
# The external identifier of the asset.
|
1923
|
+
#
|
1924
|
+
# If the value for the `externalIdentifier` parameter is specified, it
|
1925
|
+
# must be a unique value.
|
1843
1926
|
# @return [String]
|
1844
1927
|
#
|
1845
1928
|
# @!attribute [rw] forms_input
|
@@ -4820,6 +4903,20 @@ module Aws::DataZone
|
|
4820
4903
|
include Aws::Structure
|
4821
4904
|
end
|
4822
4905
|
|
4906
|
+
# The additional attributes of an Amazon DataZone data product.
|
4907
|
+
#
|
4908
|
+
# @!attribute [rw] match_rationale
|
4909
|
+
# List of rationales indicating why this item was matched by search.
|
4910
|
+
# @return [Array<Types::MatchRationaleItem>]
|
4911
|
+
#
|
4912
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductItemAdditionalAttributes AWS API Documentation
|
4913
|
+
#
|
4914
|
+
class DataProductItemAdditionalAttributes < Struct.new(
|
4915
|
+
:match_rationale)
|
4916
|
+
SENSITIVE = []
|
4917
|
+
include Aws::Structure
|
4918
|
+
end
|
4919
|
+
|
4823
4920
|
# The data product listing.
|
4824
4921
|
#
|
4825
4922
|
# @!attribute [rw] created_at
|
@@ -4945,16 +5042,25 @@ module Aws::DataZone
|
|
4945
5042
|
# The metadata forms of the asset of the data product.
|
4946
5043
|
# @return [String]
|
4947
5044
|
#
|
5045
|
+
# @!attribute [rw] match_rationale
|
5046
|
+
# List of rationales indicating why this item was matched by search.
|
5047
|
+
# @return [Array<Types::MatchRationaleItem>]
|
5048
|
+
#
|
4948
5049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductListingItemAdditionalAttributes AWS API Documentation
|
4949
5050
|
#
|
4950
5051
|
class DataProductListingItemAdditionalAttributes < Struct.new(
|
4951
|
-
:forms
|
5052
|
+
:forms,
|
5053
|
+
:match_rationale)
|
4952
5054
|
SENSITIVE = []
|
4953
5055
|
include Aws::Structure
|
4954
5056
|
end
|
4955
5057
|
|
4956
5058
|
# The data product.
|
4957
5059
|
#
|
5060
|
+
# @!attribute [rw] additional_attributes
|
5061
|
+
# The additional attributes of an Amazon DataZone data product.
|
5062
|
+
# @return [Types::DataProductItemAdditionalAttributes]
|
5063
|
+
#
|
4958
5064
|
# @!attribute [rw] created_at
|
4959
5065
|
# The timestamp at which the data product was created.
|
4960
5066
|
# @return [Time]
|
@@ -4999,6 +5105,7 @@ module Aws::DataZone
|
|
4999
5105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductResultItem AWS API Documentation
|
5000
5106
|
#
|
5001
5107
|
class DataProductResultItem < Struct.new(
|
5108
|
+
:additional_attributes,
|
5002
5109
|
:created_at,
|
5003
5110
|
:created_by,
|
5004
5111
|
:description,
|
@@ -7354,6 +7461,11 @@ module Aws::DataZone
|
|
7354
7461
|
#
|
7355
7462
|
# @!attribute [rw] identifier
|
7356
7463
|
# The ID of the Amazon DataZone asset.
|
7464
|
+
#
|
7465
|
+
# This parameter supports either the value of `assetId` or
|
7466
|
+
# `externalIdentifier` as input. If you are passing the value of
|
7467
|
+
# `externalIdentifier`, you must prefix this value with
|
7468
|
+
# `externalIdentifer%2F`.
|
7357
7469
|
# @return [String]
|
7358
7470
|
#
|
7359
7471
|
# @!attribute [rw] revision
|
@@ -10145,6 +10257,10 @@ module Aws::DataZone
|
|
10145
10257
|
|
10146
10258
|
# The details of a business glossary.
|
10147
10259
|
#
|
10260
|
+
# @!attribute [rw] additional_attributes
|
10261
|
+
# The additional attributes of an Amazon DataZone glossary.
|
10262
|
+
# @return [Types::GlossaryItemAdditionalAttributes]
|
10263
|
+
#
|
10148
10264
|
# @!attribute [rw] created_at
|
10149
10265
|
# The timestamp of when the glossary was created.
|
10150
10266
|
# @return [Time]
|
@@ -10189,6 +10305,7 @@ module Aws::DataZone
|
|
10189
10305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlossaryItem AWS API Documentation
|
10190
10306
|
#
|
10191
10307
|
class GlossaryItem < Struct.new(
|
10308
|
+
:additional_attributes,
|
10192
10309
|
:created_at,
|
10193
10310
|
:created_by,
|
10194
10311
|
:description,
|
@@ -10203,8 +10320,26 @@ module Aws::DataZone
|
|
10203
10320
|
include Aws::Structure
|
10204
10321
|
end
|
10205
10322
|
|
10323
|
+
# The additional attributes of an Amazon DataZone glossary.
|
10324
|
+
#
|
10325
|
+
# @!attribute [rw] match_rationale
|
10326
|
+
# List of rationales indicating why this item was matched by search.
|
10327
|
+
# @return [Array<Types::MatchRationaleItem>]
|
10328
|
+
#
|
10329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlossaryItemAdditionalAttributes AWS API Documentation
|
10330
|
+
#
|
10331
|
+
class GlossaryItemAdditionalAttributes < Struct.new(
|
10332
|
+
:match_rationale)
|
10333
|
+
SENSITIVE = []
|
10334
|
+
include Aws::Structure
|
10335
|
+
end
|
10336
|
+
|
10206
10337
|
# The details of a business glossary term.
|
10207
10338
|
#
|
10339
|
+
# @!attribute [rw] additional_attributes
|
10340
|
+
# The additional attributes of an Amazon DataZone glossary term.
|
10341
|
+
# @return [Types::GlossaryTermItemAdditionalAttributes]
|
10342
|
+
#
|
10208
10343
|
# @!attribute [rw] created_at
|
10209
10344
|
# The timestamp of when a business glossary term was created.
|
10210
10345
|
# @return [Time]
|
@@ -10257,6 +10392,7 @@ module Aws::DataZone
|
|
10257
10392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlossaryTermItem AWS API Documentation
|
10258
10393
|
#
|
10259
10394
|
class GlossaryTermItem < Struct.new(
|
10395
|
+
:additional_attributes,
|
10260
10396
|
:created_at,
|
10261
10397
|
:created_by,
|
10262
10398
|
:domain_id,
|
@@ -10273,6 +10409,20 @@ module Aws::DataZone
|
|
10273
10409
|
include Aws::Structure
|
10274
10410
|
end
|
10275
10411
|
|
10412
|
+
# The additional attributes of an Amazon DataZone glossary term.
|
10413
|
+
#
|
10414
|
+
# @!attribute [rw] match_rationale
|
10415
|
+
# List of rationales indicating why this item was matched by search.
|
10416
|
+
# @return [Array<Types::MatchRationaleItem>]
|
10417
|
+
#
|
10418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlossaryTermItemAdditionalAttributes AWS API Documentation
|
10419
|
+
#
|
10420
|
+
class GlossaryTermItemAdditionalAttributes < Struct.new(
|
10421
|
+
:match_rationale)
|
10422
|
+
SENSITIVE = []
|
10423
|
+
include Aws::Structure
|
10424
|
+
end
|
10425
|
+
|
10276
10426
|
# The Amazon Web Services Glue connection.
|
10277
10427
|
#
|
10278
10428
|
# @!attribute [rw] athena_properties
|
@@ -13756,6 +13906,48 @@ module Aws::DataZone
|
|
13756
13906
|
include Aws::Structure
|
13757
13907
|
end
|
13758
13908
|
|
13909
|
+
# The offset of a matched term.
|
13910
|
+
#
|
13911
|
+
# @!attribute [rw] end_offset
|
13912
|
+
# The 0-indexed number indicating the end position (exclusive) of a
|
13913
|
+
# matched term.
|
13914
|
+
# @return [Integer]
|
13915
|
+
#
|
13916
|
+
# @!attribute [rw] start_offset
|
13917
|
+
# The 0-indexed number indicating the start position (inclusive) of a
|
13918
|
+
# matched term.
|
13919
|
+
# @return [Integer]
|
13920
|
+
#
|
13921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MatchOffset AWS API Documentation
|
13922
|
+
#
|
13923
|
+
class MatchOffset < Struct.new(
|
13924
|
+
:end_offset,
|
13925
|
+
:start_offset)
|
13926
|
+
SENSITIVE = []
|
13927
|
+
include Aws::Structure
|
13928
|
+
end
|
13929
|
+
|
13930
|
+
# A rationale indicating why this item was matched by search.
|
13931
|
+
#
|
13932
|
+
# @note MatchRationaleItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MatchRationaleItem corresponding to the set member.
|
13933
|
+
#
|
13934
|
+
# @!attribute [rw] text_matches
|
13935
|
+
# A list of TextMatchItems.
|
13936
|
+
# @return [Array<Types::TextMatchItem>]
|
13937
|
+
#
|
13938
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MatchRationaleItem AWS API Documentation
|
13939
|
+
#
|
13940
|
+
class MatchRationaleItem < Struct.new(
|
13941
|
+
:text_matches,
|
13942
|
+
:unknown)
|
13943
|
+
SENSITIVE = []
|
13944
|
+
include Aws::Structure
|
13945
|
+
include Aws::Structure::Union
|
13946
|
+
|
13947
|
+
class TextMatches < MatchRationaleItem; end
|
13948
|
+
class Unknown < MatchRationaleItem; end
|
13949
|
+
end
|
13950
|
+
|
13759
13951
|
# The details about a project member.
|
13760
13952
|
#
|
13761
13953
|
# @note Member is a union - when making an API calls you must set exactly one of the members.
|
@@ -16638,6 +16830,11 @@ module Aws::DataZone
|
|
16638
16830
|
# Specifies additional attributes for the search.
|
16639
16831
|
# @return [Array<String>]
|
16640
16832
|
#
|
16833
|
+
# @!attribute [rw] aggregations
|
16834
|
+
# Enables you to specify one or more attributes to compute and return
|
16835
|
+
# counts grouped by field values.
|
16836
|
+
# @return [Array<Types::AggregationListItem>]
|
16837
|
+
#
|
16641
16838
|
# @!attribute [rw] domain_identifier
|
16642
16839
|
# The identifier of the domain in which to search listings.
|
16643
16840
|
# @return [String]
|
@@ -16679,6 +16876,7 @@ module Aws::DataZone
|
|
16679
16876
|
#
|
16680
16877
|
class SearchListingsInput < Struct.new(
|
16681
16878
|
:additional_attributes,
|
16879
|
+
:aggregations,
|
16682
16880
|
:domain_identifier,
|
16683
16881
|
:filters,
|
16684
16882
|
:max_results,
|
@@ -16690,6 +16888,11 @@ module Aws::DataZone
|
|
16690
16888
|
include Aws::Structure
|
16691
16889
|
end
|
16692
16890
|
|
16891
|
+
# @!attribute [rw] aggregates
|
16892
|
+
# Contains computed counts grouped by field values based on the
|
16893
|
+
# requested aggregation attributes for the matching listings.
|
16894
|
+
# @return [Array<Types::AggregationOutput>]
|
16895
|
+
#
|
16693
16896
|
# @!attribute [rw] items
|
16694
16897
|
# The results of the `SearchListings` action.
|
16695
16898
|
# @return [Array<Types::SearchResultItem>]
|
@@ -16710,6 +16913,7 @@ module Aws::DataZone
|
|
16710
16913
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SearchListingsOutput AWS API Documentation
|
16711
16914
|
#
|
16712
16915
|
class SearchListingsOutput < Struct.new(
|
16916
|
+
:aggregates,
|
16713
16917
|
:items,
|
16714
16918
|
:next_token,
|
16715
16919
|
:total_match_count)
|
@@ -18220,6 +18424,30 @@ module Aws::DataZone
|
|
18220
18424
|
include Aws::Structure
|
18221
18425
|
end
|
18222
18426
|
|
18427
|
+
# A structure indicating matched terms for an attribute.
|
18428
|
+
#
|
18429
|
+
# @!attribute [rw] attribute
|
18430
|
+
# The name of the attribute.
|
18431
|
+
# @return [String]
|
18432
|
+
#
|
18433
|
+
# @!attribute [rw] match_offsets
|
18434
|
+
# List of offsets indicating matching terms in the TextMatchItem text.
|
18435
|
+
# @return [Array<Types::MatchOffset>]
|
18436
|
+
#
|
18437
|
+
# @!attribute [rw] text
|
18438
|
+
# Snippet of attribute text containing highlighted content.
|
18439
|
+
# @return [String]
|
18440
|
+
#
|
18441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/TextMatchItem AWS API Documentation
|
18442
|
+
#
|
18443
|
+
class TextMatchItem < Struct.new(
|
18444
|
+
:attribute,
|
18445
|
+
:match_offsets,
|
18446
|
+
:text)
|
18447
|
+
SENSITIVE = []
|
18448
|
+
include Aws::Structure
|
18449
|
+
end
|
18450
|
+
|
18223
18451
|
# The request was denied due to request throttling.
|
18224
18452
|
#
|
18225
18453
|
# @!attribute [rw] message
|
data/lib/aws-sdk-datazone.rb
CHANGED
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,
|
@@ -3115,7 +3116,7 @@ module Aws
|
|
3115
3116
|
end
|
3116
3117
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search-instance_method
|
3117
3118
|
def search: (
|
3118
|
-
?additional_attributes: Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")],
|
3119
|
+
?additional_attributes: Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS" | "TEXT_MATCH_RATIONALE")],
|
3119
3120
|
domain_identifier: ::String,
|
3120
3121
|
?filters: {
|
3121
3122
|
and: Array[
|
@@ -3163,13 +3164,20 @@ module Aws
|
|
3163
3164
|
|
3164
3165
|
interface _SearchListingsResponseSuccess
|
3165
3166
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchListingsOutput]
|
3167
|
+
def aggregates: () -> ::Array[Types::AggregationOutput]
|
3166
3168
|
def items: () -> ::Array[Types::SearchResultItem]
|
3167
3169
|
def next_token: () -> ::String
|
3168
3170
|
def total_match_count: () -> ::Integer
|
3169
3171
|
end
|
3170
3172
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_listings-instance_method
|
3171
3173
|
def search_listings: (
|
3172
|
-
?additional_attributes: Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")],
|
3174
|
+
?additional_attributes: Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS" | "TEXT_MATCH_RATIONALE")],
|
3175
|
+
?aggregations: Array[
|
3176
|
+
{
|
3177
|
+
attribute: ::String,
|
3178
|
+
display_value: ::String?
|
3179
|
+
},
|
3180
|
+
],
|
3173
3181
|
domain_identifier: ::String,
|
3174
3182
|
?filters: {
|
3175
3183
|
and: Array[
|
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
@@ -117,6 +117,26 @@ module Aws::DataZone
|
|
117
117
|
SENSITIVE: []
|
118
118
|
end
|
119
119
|
|
120
|
+
class AggregationListItem
|
121
|
+
attr_accessor attribute: ::String
|
122
|
+
attr_accessor display_value: ::String
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class AggregationOutput
|
127
|
+
attr_accessor attribute: ::String
|
128
|
+
attr_accessor display_value: ::String
|
129
|
+
attr_accessor items: ::Array[Types::AggregationOutputItem]
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class AggregationOutputItem
|
134
|
+
attr_accessor count: ::Integer
|
135
|
+
attr_accessor display_value: ::String
|
136
|
+
attr_accessor value: ::String
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
120
140
|
class AllDomainUnitsGrantFilter < Aws::EmptyStructure
|
121
141
|
end
|
122
142
|
|
@@ -179,6 +199,7 @@ module Aws::DataZone
|
|
179
199
|
class AssetItemAdditionalAttributes
|
180
200
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
181
201
|
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
202
|
+
attr_accessor match_rationale: ::Array[Types::MatchRationaleItem]
|
182
203
|
attr_accessor read_only_forms_output: ::Array[Types::FormOutput]
|
183
204
|
SENSITIVE: []
|
184
205
|
end
|
@@ -221,6 +242,7 @@ module Aws::DataZone
|
|
221
242
|
class AssetListingItemAdditionalAttributes
|
222
243
|
attr_accessor forms: ::String
|
223
244
|
attr_accessor latest_time_series_data_point_forms: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
245
|
+
attr_accessor match_rationale: ::Array[Types::MatchRationaleItem]
|
224
246
|
SENSITIVE: []
|
225
247
|
end
|
226
248
|
|
@@ -1268,6 +1290,11 @@ module Aws::DataZone
|
|
1268
1290
|
SENSITIVE: []
|
1269
1291
|
end
|
1270
1292
|
|
1293
|
+
class DataProductItemAdditionalAttributes
|
1294
|
+
attr_accessor match_rationale: ::Array[Types::MatchRationaleItem]
|
1295
|
+
SENSITIVE: []
|
1296
|
+
end
|
1297
|
+
|
1271
1298
|
class DataProductListing
|
1272
1299
|
attr_accessor created_at: ::Time
|
1273
1300
|
attr_accessor data_product_id: ::String
|
@@ -1298,10 +1325,12 @@ module Aws::DataZone
|
|
1298
1325
|
|
1299
1326
|
class DataProductListingItemAdditionalAttributes
|
1300
1327
|
attr_accessor forms: ::String
|
1328
|
+
attr_accessor match_rationale: ::Array[Types::MatchRationaleItem]
|
1301
1329
|
SENSITIVE: []
|
1302
1330
|
end
|
1303
1331
|
|
1304
1332
|
class DataProductResultItem
|
1333
|
+
attr_accessor additional_attributes: Types::DataProductItemAdditionalAttributes
|
1305
1334
|
attr_accessor created_at: ::Time
|
1306
1335
|
attr_accessor created_by: ::String
|
1307
1336
|
attr_accessor description: ::String
|
@@ -2730,6 +2759,7 @@ module Aws::DataZone
|
|
2730
2759
|
end
|
2731
2760
|
|
2732
2761
|
class GlossaryItem
|
2762
|
+
attr_accessor additional_attributes: Types::GlossaryItemAdditionalAttributes
|
2733
2763
|
attr_accessor created_at: ::Time
|
2734
2764
|
attr_accessor created_by: ::String
|
2735
2765
|
attr_accessor description: ::String
|
@@ -2743,7 +2773,13 @@ module Aws::DataZone
|
|
2743
2773
|
SENSITIVE: [:description, :name]
|
2744
2774
|
end
|
2745
2775
|
|
2776
|
+
class GlossaryItemAdditionalAttributes
|
2777
|
+
attr_accessor match_rationale: ::Array[Types::MatchRationaleItem]
|
2778
|
+
SENSITIVE: []
|
2779
|
+
end
|
2780
|
+
|
2746
2781
|
class GlossaryTermItem
|
2782
|
+
attr_accessor additional_attributes: Types::GlossaryTermItemAdditionalAttributes
|
2747
2783
|
attr_accessor created_at: ::Time
|
2748
2784
|
attr_accessor created_by: ::String
|
2749
2785
|
attr_accessor domain_id: ::String
|
@@ -2759,6 +2795,11 @@ module Aws::DataZone
|
|
2759
2795
|
SENSITIVE: [:long_description, :name, :short_description]
|
2760
2796
|
end
|
2761
2797
|
|
2798
|
+
class GlossaryTermItemAdditionalAttributes
|
2799
|
+
attr_accessor match_rationale: ::Array[Types::MatchRationaleItem]
|
2800
|
+
SENSITIVE: []
|
2801
|
+
end
|
2802
|
+
|
2762
2803
|
class GlueConnection
|
2763
2804
|
attr_accessor athena_properties: ::Hash[::String, ::String]
|
2764
2805
|
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
@@ -3642,6 +3683,23 @@ module Aws::DataZone
|
|
3642
3683
|
SENSITIVE: []
|
3643
3684
|
end
|
3644
3685
|
|
3686
|
+
class MatchOffset
|
3687
|
+
attr_accessor end_offset: ::Integer
|
3688
|
+
attr_accessor start_offset: ::Integer
|
3689
|
+
SENSITIVE: []
|
3690
|
+
end
|
3691
|
+
|
3692
|
+
class MatchRationaleItem
|
3693
|
+
attr_accessor text_matches: ::Array[Types::TextMatchItem]
|
3694
|
+
attr_accessor unknown: untyped
|
3695
|
+
SENSITIVE: []
|
3696
|
+
|
3697
|
+
class TextMatches < MatchRationaleItem
|
3698
|
+
end
|
3699
|
+
class Unknown < MatchRationaleItem
|
3700
|
+
end
|
3701
|
+
end
|
3702
|
+
|
3645
3703
|
class Member
|
3646
3704
|
attr_accessor group_identifier: ::String
|
3647
3705
|
attr_accessor user_identifier: ::String
|
@@ -4534,7 +4592,7 @@ module Aws::DataZone
|
|
4534
4592
|
end
|
4535
4593
|
|
4536
4594
|
class SearchInput
|
4537
|
-
attr_accessor additional_attributes: ::Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")]
|
4595
|
+
attr_accessor additional_attributes: ::Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS" | "TEXT_MATCH_RATIONALE")]
|
4538
4596
|
attr_accessor domain_identifier: ::String
|
4539
4597
|
attr_accessor filters: Types::FilterClause
|
4540
4598
|
attr_accessor max_results: ::Integer
|
@@ -4568,7 +4626,8 @@ module Aws::DataZone
|
|
4568
4626
|
end
|
4569
4627
|
|
4570
4628
|
class SearchListingsInput
|
4571
|
-
attr_accessor additional_attributes: ::Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")]
|
4629
|
+
attr_accessor additional_attributes: ::Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS" | "TEXT_MATCH_RATIONALE")]
|
4630
|
+
attr_accessor aggregations: ::Array[Types::AggregationListItem]
|
4572
4631
|
attr_accessor domain_identifier: ::String
|
4573
4632
|
attr_accessor filters: Types::FilterClause
|
4574
4633
|
attr_accessor max_results: ::Integer
|
@@ -4580,6 +4639,7 @@ module Aws::DataZone
|
|
4580
4639
|
end
|
4581
4640
|
|
4582
4641
|
class SearchListingsOutput
|
4642
|
+
attr_accessor aggregates: ::Array[Types::AggregationOutput]
|
4583
4643
|
attr_accessor items: ::Array[Types::SearchResultItem]
|
4584
4644
|
attr_accessor next_token: ::String
|
4585
4645
|
attr_accessor total_match_count: ::Integer
|
@@ -4999,6 +5059,13 @@ module Aws::DataZone
|
|
4999
5059
|
SENSITIVE: []
|
5000
5060
|
end
|
5001
5061
|
|
5062
|
+
class TextMatchItem
|
5063
|
+
attr_accessor attribute: ::String
|
5064
|
+
attr_accessor match_offsets: ::Array[Types::MatchOffset]
|
5065
|
+
attr_accessor text: ::String
|
5066
|
+
SENSITIVE: []
|
5067
|
+
end
|
5068
|
+
|
5002
5069
|
class ThrottlingException
|
5003
5070
|
attr_accessor message: ::String
|
5004
5071
|
SENSITIVE: []
|
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.44.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
|