aws-sdk-datazone 1.11.0 → 1.13.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 +223 -2
- data/lib/aws-sdk-datazone/client_api.rb +145 -0
- data/lib/aws-sdk-datazone/endpoints.rb +39 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-datazone/types.rb +374 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +57 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +93 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e078b5f5f273c0995b78de5e59e86dad738d31042ca9cd3724c9441abc28f81
|
4
|
+
data.tar.gz: cfc06d070f7c2e203e9706babba1e3dc2ec2a5bee0c120da1cc74bb064722870
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a80c46417cc26b425813262572c4f5ffb1748807fe66ddf90266f7c0acf2616275051ebbc07491bc1a9d8a9a9b15954851b30316432a101e9aa17b373380a6f4
|
7
|
+
data.tar.gz: ccd10fa38bb29067dcd74152e13028dd052fcbc4c9d18c4519654ea1ccf4032150f84099cb5121db69528e5e3a0d7f998f1f5fc4dcce0331c4518bbf4d813f33
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.13.0 (2024-07-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.12.0 (2024-06-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release supports the data lineage feature of business data catalog in Amazon DataZone.
|
13
|
+
|
4
14
|
1.11.0 (2024-06-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.13.0
|
@@ -312,6 +312,15 @@ module Aws::DataZone
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -3994,6 +4003,84 @@ module Aws::DataZone
|
|
3994
4003
|
req.send_request(options)
|
3995
4004
|
end
|
3996
4005
|
|
4006
|
+
# Gets the data lineage node.
|
4007
|
+
#
|
4008
|
+
# @option params [required, String] :domain_identifier
|
4009
|
+
# The ID of the domain in which you want to get the data lineage node.
|
4010
|
+
#
|
4011
|
+
# @option params [Time,DateTime,Date,Integer,String] :event_timestamp
|
4012
|
+
# The event time stamp for which you want to get the data lineage node.
|
4013
|
+
#
|
4014
|
+
# @option params [required, String] :identifier
|
4015
|
+
# The ID of the data lineage node that you want to get.
|
4016
|
+
#
|
4017
|
+
# Both, a lineage node identifier generated by Amazon DataZone and a
|
4018
|
+
# `sourceIdentifier` of the lineage node are supported. If
|
4019
|
+
# `sourceIdentifier` is greater than 1800 characters, you can use
|
4020
|
+
# lineage node identifier generated by Amazon DataZone to get the node
|
4021
|
+
# details.
|
4022
|
+
#
|
4023
|
+
# @return [Types::GetLineageNodeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4024
|
+
#
|
4025
|
+
# * {Types::GetLineageNodeOutput#created_at #created_at} => Time
|
4026
|
+
# * {Types::GetLineageNodeOutput#created_by #created_by} => String
|
4027
|
+
# * {Types::GetLineageNodeOutput#description #description} => String
|
4028
|
+
# * {Types::GetLineageNodeOutput#domain_id #domain_id} => String
|
4029
|
+
# * {Types::GetLineageNodeOutput#downstream_nodes #downstream_nodes} => Array<Types::LineageNodeReference>
|
4030
|
+
# * {Types::GetLineageNodeOutput#event_timestamp #event_timestamp} => Time
|
4031
|
+
# * {Types::GetLineageNodeOutput#forms_output #forms_output} => Array<Types::FormOutput>
|
4032
|
+
# * {Types::GetLineageNodeOutput#id #id} => String
|
4033
|
+
# * {Types::GetLineageNodeOutput#name #name} => String
|
4034
|
+
# * {Types::GetLineageNodeOutput#source_identifier #source_identifier} => String
|
4035
|
+
# * {Types::GetLineageNodeOutput#type_name #type_name} => String
|
4036
|
+
# * {Types::GetLineageNodeOutput#type_revision #type_revision} => String
|
4037
|
+
# * {Types::GetLineageNodeOutput#updated_at #updated_at} => Time
|
4038
|
+
# * {Types::GetLineageNodeOutput#updated_by #updated_by} => String
|
4039
|
+
# * {Types::GetLineageNodeOutput#upstream_nodes #upstream_nodes} => Array<Types::LineageNodeReference>
|
4040
|
+
#
|
4041
|
+
# @example Request syntax with placeholder values
|
4042
|
+
#
|
4043
|
+
# resp = client.get_lineage_node({
|
4044
|
+
# domain_identifier: "DomainId", # required
|
4045
|
+
# event_timestamp: Time.now,
|
4046
|
+
# identifier: "LineageNodeIdentifier", # required
|
4047
|
+
# })
|
4048
|
+
#
|
4049
|
+
# @example Response structure
|
4050
|
+
#
|
4051
|
+
# resp.created_at #=> Time
|
4052
|
+
# resp.created_by #=> String
|
4053
|
+
# resp.description #=> String
|
4054
|
+
# resp.domain_id #=> String
|
4055
|
+
# resp.downstream_nodes #=> Array
|
4056
|
+
# resp.downstream_nodes[0].event_timestamp #=> Time
|
4057
|
+
# resp.downstream_nodes[0].id #=> String
|
4058
|
+
# resp.event_timestamp #=> Time
|
4059
|
+
# resp.forms_output #=> Array
|
4060
|
+
# resp.forms_output[0].content #=> String
|
4061
|
+
# resp.forms_output[0].form_name #=> String
|
4062
|
+
# resp.forms_output[0].type_name #=> String
|
4063
|
+
# resp.forms_output[0].type_revision #=> String
|
4064
|
+
# resp.id #=> String
|
4065
|
+
# resp.name #=> String
|
4066
|
+
# resp.source_identifier #=> String
|
4067
|
+
# resp.type_name #=> String
|
4068
|
+
# resp.type_revision #=> String
|
4069
|
+
# resp.updated_at #=> Time
|
4070
|
+
# resp.updated_by #=> String
|
4071
|
+
# resp.upstream_nodes #=> Array
|
4072
|
+
# resp.upstream_nodes[0].event_timestamp #=> Time
|
4073
|
+
# resp.upstream_nodes[0].id #=> String
|
4074
|
+
#
|
4075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageNode AWS API Documentation
|
4076
|
+
#
|
4077
|
+
# @overload get_lineage_node(params = {})
|
4078
|
+
# @param [Hash] params ({})
|
4079
|
+
def get_lineage_node(params = {}, options = {})
|
4080
|
+
req = build_request(:get_lineage_node, params)
|
4081
|
+
req.send_request(options)
|
4082
|
+
end
|
4083
|
+
|
3997
4084
|
# Gets a listing (a record of an asset at a given time).
|
3998
4085
|
#
|
3999
4086
|
# @option params [required, String] :domain_identifier
|
@@ -5252,6 +5339,93 @@ module Aws::DataZone
|
|
5252
5339
|
req.send_request(options)
|
5253
5340
|
end
|
5254
5341
|
|
5342
|
+
# Lists the history of the specified data lineage node.
|
5343
|
+
#
|
5344
|
+
# @option params [String] :direction
|
5345
|
+
# The direction of the data lineage node refers to the lineage node
|
5346
|
+
# having neighbors in that direction. For example, if direction is
|
5347
|
+
# `UPSTREAM`, the `ListLineageNodeHistory` API responds with historical
|
5348
|
+
# versions with upstream neighbors only.
|
5349
|
+
#
|
5350
|
+
# @option params [required, String] :domain_identifier
|
5351
|
+
# The ID of the domain where you want to list the history of the
|
5352
|
+
# specified data lineage node.
|
5353
|
+
#
|
5354
|
+
# @option params [Time,DateTime,Date,Integer,String] :event_timestamp_gte
|
5355
|
+
# Specifies whether the action is to return data lineage node history
|
5356
|
+
# from the time after the event timestamp.
|
5357
|
+
#
|
5358
|
+
# @option params [Time,DateTime,Date,Integer,String] :event_timestamp_lte
|
5359
|
+
# Specifies whether the action is to return data lineage node history
|
5360
|
+
# from the time prior of the event timestamp.
|
5361
|
+
#
|
5362
|
+
# @option params [required, String] :identifier
|
5363
|
+
# The ID of the data lineage node whose history you want to list.
|
5364
|
+
#
|
5365
|
+
# @option params [Integer] :max_results
|
5366
|
+
# The maximum number of history items to return in a single call to
|
5367
|
+
# ListLineageNodeHistory. When the number of memberships to be listed is
|
5368
|
+
# greater than the value of MaxResults, the response contains a
|
5369
|
+
# NextToken value that you can use in a subsequent call to
|
5370
|
+
# ListLineageNodeHistory to list the next set of items.
|
5371
|
+
#
|
5372
|
+
# @option params [String] :next_token
|
5373
|
+
# When the number of history items is greater than the default value for
|
5374
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
5375
|
+
# MaxResults that is less than the number of items, the response
|
5376
|
+
# includes a pagination token named NextToken. You can specify this
|
5377
|
+
# NextToken value in a subsequent call to ListLineageNodeHistory to list
|
5378
|
+
# the next set of items.
|
5379
|
+
#
|
5380
|
+
# @option params [String] :sort_order
|
5381
|
+
# The order by which you want data lineage node history to be sorted.
|
5382
|
+
#
|
5383
|
+
# @return [Types::ListLineageNodeHistoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5384
|
+
#
|
5385
|
+
# * {Types::ListLineageNodeHistoryOutput#next_token #next_token} => String
|
5386
|
+
# * {Types::ListLineageNodeHistoryOutput#nodes #nodes} => Array<Types::LineageNodeSummary>
|
5387
|
+
#
|
5388
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5389
|
+
#
|
5390
|
+
# @example Request syntax with placeholder values
|
5391
|
+
#
|
5392
|
+
# resp = client.list_lineage_node_history({
|
5393
|
+
# direction: "UPSTREAM", # accepts UPSTREAM, DOWNSTREAM
|
5394
|
+
# domain_identifier: "DomainId", # required
|
5395
|
+
# event_timestamp_gte: Time.now,
|
5396
|
+
# event_timestamp_lte: Time.now,
|
5397
|
+
# identifier: "LineageNodeIdentifier", # required
|
5398
|
+
# max_results: 1,
|
5399
|
+
# next_token: "PaginationToken",
|
5400
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
5401
|
+
# })
|
5402
|
+
#
|
5403
|
+
# @example Response structure
|
5404
|
+
#
|
5405
|
+
# resp.next_token #=> String
|
5406
|
+
# resp.nodes #=> Array
|
5407
|
+
# resp.nodes[0].created_at #=> Time
|
5408
|
+
# resp.nodes[0].created_by #=> String
|
5409
|
+
# resp.nodes[0].description #=> String
|
5410
|
+
# resp.nodes[0].domain_id #=> String
|
5411
|
+
# resp.nodes[0].event_timestamp #=> Time
|
5412
|
+
# resp.nodes[0].id #=> String
|
5413
|
+
# resp.nodes[0].name #=> String
|
5414
|
+
# resp.nodes[0].source_identifier #=> String
|
5415
|
+
# resp.nodes[0].type_name #=> String
|
5416
|
+
# resp.nodes[0].type_revision #=> String
|
5417
|
+
# resp.nodes[0].updated_at #=> Time
|
5418
|
+
# resp.nodes[0].updated_by #=> String
|
5419
|
+
#
|
5420
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListLineageNodeHistory AWS API Documentation
|
5421
|
+
#
|
5422
|
+
# @overload list_lineage_node_history(params = {})
|
5423
|
+
# @param [Hash] params ({})
|
5424
|
+
def list_lineage_node_history(params = {}, options = {})
|
5425
|
+
req = build_request(:list_lineage_node_history, params)
|
5426
|
+
req.send_request(options)
|
5427
|
+
end
|
5428
|
+
|
5255
5429
|
# Lists all metadata generation runs.
|
5256
5430
|
#
|
5257
5431
|
# @option params [required, String] :domain_identifier
|
@@ -6031,6 +6205,41 @@ module Aws::DataZone
|
|
6031
6205
|
req.send_request(options)
|
6032
6206
|
end
|
6033
6207
|
|
6208
|
+
# Posts a data lineage event.
|
6209
|
+
#
|
6210
|
+
# @option params [String] :client_token
|
6211
|
+
# A unique, case-sensitive identifier that is provided to ensure the
|
6212
|
+
# idempotency of the request.
|
6213
|
+
#
|
6214
|
+
# **A suitable default value is auto-generated.** You should normally
|
6215
|
+
# not need to pass this option.**
|
6216
|
+
#
|
6217
|
+
# @option params [required, String] :domain_identifier
|
6218
|
+
# The ID of the domain where you want to post a data lineage event.
|
6219
|
+
#
|
6220
|
+
# @option params [required, String, StringIO, File] :event
|
6221
|
+
# The data lineage event that you want to post. Only open-lineage run
|
6222
|
+
# event are supported as events.
|
6223
|
+
#
|
6224
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6225
|
+
#
|
6226
|
+
# @example Request syntax with placeholder values
|
6227
|
+
#
|
6228
|
+
# resp = client.post_lineage_event({
|
6229
|
+
# client_token: "ClientToken",
|
6230
|
+
# domain_identifier: "DomainId", # required
|
6231
|
+
# event: "data", # required
|
6232
|
+
# })
|
6233
|
+
#
|
6234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostLineageEvent AWS API Documentation
|
6235
|
+
#
|
6236
|
+
# @overload post_lineage_event(params = {})
|
6237
|
+
# @param [Hash] params ({})
|
6238
|
+
def post_lineage_event(params = {}, options = {})
|
6239
|
+
req = build_request(:post_lineage_event, params)
|
6240
|
+
req.send_request(options)
|
6241
|
+
end
|
6242
|
+
|
6034
6243
|
# Posts time series data points to Amazon DataZone for the specified
|
6035
6244
|
# asset.
|
6036
6245
|
#
|
@@ -6808,7 +7017,7 @@ module Aws::DataZone
|
|
6808
7017
|
# attribute: "Attribute", # required
|
6809
7018
|
# },
|
6810
7019
|
# ],
|
6811
|
-
# search_scope: "ASSET_TYPE", # required, accepts ASSET_TYPE, FORM_TYPE
|
7020
|
+
# search_scope: "ASSET_TYPE", # required, accepts ASSET_TYPE, FORM_TYPE, LINEAGE_NODE_TYPE
|
6812
7021
|
# search_text: "SearchText",
|
6813
7022
|
# sort: {
|
6814
7023
|
# attribute: "Attribute", # required
|
@@ -6848,6 +7057,18 @@ module Aws::DataZone
|
|
6848
7057
|
# resp.items[0].form_type_item.owning_project_id #=> String
|
6849
7058
|
# resp.items[0].form_type_item.revision #=> String
|
6850
7059
|
# resp.items[0].form_type_item.status #=> String, one of "ENABLED", "DISABLED"
|
7060
|
+
# resp.items[0].lineage_node_type_item.created_at #=> Time
|
7061
|
+
# resp.items[0].lineage_node_type_item.created_by #=> String
|
7062
|
+
# resp.items[0].lineage_node_type_item.description #=> String
|
7063
|
+
# resp.items[0].lineage_node_type_item.domain_id #=> String
|
7064
|
+
# resp.items[0].lineage_node_type_item.forms_output #=> Hash
|
7065
|
+
# resp.items[0].lineage_node_type_item.forms_output["FormName"].required #=> Boolean
|
7066
|
+
# resp.items[0].lineage_node_type_item.forms_output["FormName"].type_name #=> String
|
7067
|
+
# resp.items[0].lineage_node_type_item.forms_output["FormName"].type_revision #=> String
|
7068
|
+
# resp.items[0].lineage_node_type_item.name #=> String
|
7069
|
+
# resp.items[0].lineage_node_type_item.revision #=> String
|
7070
|
+
# resp.items[0].lineage_node_type_item.updated_at #=> Time
|
7071
|
+
# resp.items[0].lineage_node_type_item.updated_by #=> String
|
6851
7072
|
# resp.next_token #=> String
|
6852
7073
|
# resp.total_match_count #=> Integer
|
6853
7074
|
#
|
@@ -8240,7 +8461,7 @@ module Aws::DataZone
|
|
8240
8461
|
params: params,
|
8241
8462
|
config: config)
|
8242
8463
|
context[:gem_name] = 'aws-sdk-datazone'
|
8243
|
-
context[:gem_version] = '1.
|
8464
|
+
context[:gem_version] = '1.13.0'
|
8244
8465
|
Seahorse::Client::Request.new(handlers, context)
|
8245
8466
|
end
|
8246
8467
|
|
@@ -187,6 +187,7 @@ module Aws::DataZone
|
|
187
187
|
DomainStatus = Shapes::StringShape.new(name: 'DomainStatus')
|
188
188
|
DomainSummaries = Shapes::ListShape.new(name: 'DomainSummaries')
|
189
189
|
DomainSummary = Shapes::StructureShape.new(name: 'DomainSummary')
|
190
|
+
EdgeDirection = Shapes::StringShape.new(name: 'EdgeDirection')
|
190
191
|
EditedValue = Shapes::StringShape.new(name: 'EditedValue')
|
191
192
|
EnableSetting = Shapes::StringShape.new(name: 'EnableSetting')
|
192
193
|
EnabledRegionList = Shapes::ListShape.new(name: 'EnabledRegionList')
|
@@ -273,6 +274,8 @@ module Aws::DataZone
|
|
273
274
|
GetGroupProfileOutput = Shapes::StructureShape.new(name: 'GetGroupProfileOutput')
|
274
275
|
GetIamPortalLoginUrlInput = Shapes::StructureShape.new(name: 'GetIamPortalLoginUrlInput')
|
275
276
|
GetIamPortalLoginUrlOutput = Shapes::StructureShape.new(name: 'GetIamPortalLoginUrlOutput')
|
277
|
+
GetLineageNodeInput = Shapes::StructureShape.new(name: 'GetLineageNodeInput')
|
278
|
+
GetLineageNodeOutput = Shapes::StructureShape.new(name: 'GetLineageNodeOutput')
|
276
279
|
GetListingInput = Shapes::StructureShape.new(name: 'GetListingInput')
|
277
280
|
GetListingOutput = Shapes::StructureShape.new(name: 'GetListingOutput')
|
278
281
|
GetMetadataGenerationRunInput = Shapes::StructureShape.new(name: 'GetMetadataGenerationRunInput')
|
@@ -329,6 +332,14 @@ module Aws::DataZone
|
|
329
332
|
InventorySearchScope = Shapes::StringShape.new(name: 'InventorySearchScope')
|
330
333
|
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
331
334
|
LastName = Shapes::StringShape.new(name: 'LastName')
|
335
|
+
LineageEvent = Shapes::BlobShape.new(name: 'LineageEvent')
|
336
|
+
LineageNodeId = Shapes::StringShape.new(name: 'LineageNodeId')
|
337
|
+
LineageNodeIdentifier = Shapes::StringShape.new(name: 'LineageNodeIdentifier')
|
338
|
+
LineageNodeReference = Shapes::StructureShape.new(name: 'LineageNodeReference')
|
339
|
+
LineageNodeReferenceList = Shapes::ListShape.new(name: 'LineageNodeReferenceList')
|
340
|
+
LineageNodeSummaries = Shapes::ListShape.new(name: 'LineageNodeSummaries')
|
341
|
+
LineageNodeSummary = Shapes::StructureShape.new(name: 'LineageNodeSummary')
|
342
|
+
LineageNodeTypeItem = Shapes::StructureShape.new(name: 'LineageNodeTypeItem')
|
332
343
|
ListAssetRevisionsInput = Shapes::StructureShape.new(name: 'ListAssetRevisionsInput')
|
333
344
|
ListAssetRevisionsOutput = Shapes::StructureShape.new(name: 'ListAssetRevisionsOutput')
|
334
345
|
ListDataSourceRunActivitiesInput = Shapes::StructureShape.new(name: 'ListDataSourceRunActivitiesInput')
|
@@ -350,6 +361,8 @@ module Aws::DataZone
|
|
350
361
|
ListEnvironmentProfilesOutput = Shapes::StructureShape.new(name: 'ListEnvironmentProfilesOutput')
|
351
362
|
ListEnvironmentsInput = Shapes::StructureShape.new(name: 'ListEnvironmentsInput')
|
352
363
|
ListEnvironmentsOutput = Shapes::StructureShape.new(name: 'ListEnvironmentsOutput')
|
364
|
+
ListLineageNodeHistoryInput = Shapes::StructureShape.new(name: 'ListLineageNodeHistoryInput')
|
365
|
+
ListLineageNodeHistoryOutput = Shapes::StructureShape.new(name: 'ListLineageNodeHistoryOutput')
|
353
366
|
ListMetadataGenerationRunsInput = Shapes::StructureShape.new(name: 'ListMetadataGenerationRunsInput')
|
354
367
|
ListMetadataGenerationRunsOutput = Shapes::StructureShape.new(name: 'ListMetadataGenerationRunsOutput')
|
355
368
|
ListNotificationsInput = Shapes::StructureShape.new(name: 'ListNotificationsInput')
|
@@ -400,6 +413,8 @@ module Aws::DataZone
|
|
400
413
|
NotificationType = Shapes::StringShape.new(name: 'NotificationType')
|
401
414
|
NotificationsList = Shapes::ListShape.new(name: 'NotificationsList')
|
402
415
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
416
|
+
PostLineageEventInput = Shapes::StructureShape.new(name: 'PostLineageEventInput')
|
417
|
+
PostLineageEventOutput = Shapes::StructureShape.new(name: 'PostLineageEventOutput')
|
403
418
|
PostTimeSeriesDataPointsInput = Shapes::StructureShape.new(name: 'PostTimeSeriesDataPointsInput')
|
404
419
|
PostTimeSeriesDataPointsOutput = Shapes::StructureShape.new(name: 'PostTimeSeriesDataPointsOutput')
|
405
420
|
PredictionChoices = Shapes::ListShape.new(name: 'PredictionChoices')
|
@@ -1910,6 +1925,28 @@ module Aws::DataZone
|
|
1910
1925
|
GetIamPortalLoginUrlOutput.add_member(:user_profile_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "userProfileId"))
|
1911
1926
|
GetIamPortalLoginUrlOutput.struct_class = Types::GetIamPortalLoginUrlOutput
|
1912
1927
|
|
1928
|
+
GetLineageNodeInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
1929
|
+
GetLineageNodeInput.add_member(:event_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "timestamp"))
|
1930
|
+
GetLineageNodeInput.add_member(:identifier, Shapes::ShapeRef.new(shape: LineageNodeIdentifier, required: true, location: "uri", location_name: "identifier"))
|
1931
|
+
GetLineageNodeInput.struct_class = Types::GetLineageNodeInput
|
1932
|
+
|
1933
|
+
GetLineageNodeOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
1934
|
+
GetLineageNodeOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
1935
|
+
GetLineageNodeOutput.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
1936
|
+
GetLineageNodeOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
1937
|
+
GetLineageNodeOutput.add_member(:downstream_nodes, Shapes::ShapeRef.new(shape: LineageNodeReferenceList, location_name: "downstreamNodes"))
|
1938
|
+
GetLineageNodeOutput.add_member(:event_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "eventTimestamp"))
|
1939
|
+
GetLineageNodeOutput.add_member(:forms_output, Shapes::ShapeRef.new(shape: FormOutputList, location_name: "formsOutput"))
|
1940
|
+
GetLineageNodeOutput.add_member(:id, Shapes::ShapeRef.new(shape: LineageNodeId, required: true, location_name: "id"))
|
1941
|
+
GetLineageNodeOutput.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
1942
|
+
GetLineageNodeOutput.add_member(:source_identifier, Shapes::ShapeRef.new(shape: String, location_name: "sourceIdentifier"))
|
1943
|
+
GetLineageNodeOutput.add_member(:type_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "typeName"))
|
1944
|
+
GetLineageNodeOutput.add_member(:type_revision, Shapes::ShapeRef.new(shape: Revision, location_name: "typeRevision"))
|
1945
|
+
GetLineageNodeOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
1946
|
+
GetLineageNodeOutput.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
1947
|
+
GetLineageNodeOutput.add_member(:upstream_nodes, Shapes::ShapeRef.new(shape: LineageNodeReferenceList, location_name: "upstreamNodes"))
|
1948
|
+
GetLineageNodeOutput.struct_class = Types::GetLineageNodeOutput
|
1949
|
+
|
1913
1950
|
GetListingInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
1914
1951
|
GetListingInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ListingId, required: true, location: "uri", location_name: "identifier"))
|
1915
1952
|
GetListingInput.add_member(:listing_revision, Shapes::ShapeRef.new(shape: Revision, location: "querystring", location_name: "listingRevision"))
|
@@ -2140,6 +2177,39 @@ module Aws::DataZone
|
|
2140
2177
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
2141
2178
|
InternalServerException.struct_class = Types::InternalServerException
|
2142
2179
|
|
2180
|
+
LineageNodeReference.add_member(:event_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "eventTimestamp"))
|
2181
|
+
LineageNodeReference.add_member(:id, Shapes::ShapeRef.new(shape: LineageNodeId, location_name: "id"))
|
2182
|
+
LineageNodeReference.struct_class = Types::LineageNodeReference
|
2183
|
+
|
2184
|
+
LineageNodeReferenceList.member = Shapes::ShapeRef.new(shape: LineageNodeReference)
|
2185
|
+
|
2186
|
+
LineageNodeSummaries.member = Shapes::ShapeRef.new(shape: LineageNodeSummary)
|
2187
|
+
|
2188
|
+
LineageNodeSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
2189
|
+
LineageNodeSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
2190
|
+
LineageNodeSummary.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
2191
|
+
LineageNodeSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
2192
|
+
LineageNodeSummary.add_member(:event_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "eventTimestamp"))
|
2193
|
+
LineageNodeSummary.add_member(:id, Shapes::ShapeRef.new(shape: LineageNodeId, required: true, location_name: "id"))
|
2194
|
+
LineageNodeSummary.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
2195
|
+
LineageNodeSummary.add_member(:source_identifier, Shapes::ShapeRef.new(shape: String, location_name: "sourceIdentifier"))
|
2196
|
+
LineageNodeSummary.add_member(:type_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "typeName"))
|
2197
|
+
LineageNodeSummary.add_member(:type_revision, Shapes::ShapeRef.new(shape: Revision, location_name: "typeRevision"))
|
2198
|
+
LineageNodeSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
2199
|
+
LineageNodeSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
2200
|
+
LineageNodeSummary.struct_class = Types::LineageNodeSummary
|
2201
|
+
|
2202
|
+
LineageNodeTypeItem.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
2203
|
+
LineageNodeTypeItem.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
2204
|
+
LineageNodeTypeItem.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
2205
|
+
LineageNodeTypeItem.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
2206
|
+
LineageNodeTypeItem.add_member(:forms_output, Shapes::ShapeRef.new(shape: FormsOutputMap, required: true, location_name: "formsOutput"))
|
2207
|
+
LineageNodeTypeItem.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
2208
|
+
LineageNodeTypeItem.add_member(:revision, Shapes::ShapeRef.new(shape: Revision, required: true, location_name: "revision"))
|
2209
|
+
LineageNodeTypeItem.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
2210
|
+
LineageNodeTypeItem.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
2211
|
+
LineageNodeTypeItem.struct_class = Types::LineageNodeTypeItem
|
2212
|
+
|
2143
2213
|
ListAssetRevisionsInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
2144
2214
|
ListAssetRevisionsInput.add_member(:identifier, Shapes::ShapeRef.new(shape: AssetIdentifier, required: true, location: "uri", location_name: "identifier"))
|
2145
2215
|
ListAssetRevisionsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
@@ -2258,6 +2328,20 @@ module Aws::DataZone
|
|
2258
2328
|
ListEnvironmentsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
2259
2329
|
ListEnvironmentsOutput.struct_class = Types::ListEnvironmentsOutput
|
2260
2330
|
|
2331
|
+
ListLineageNodeHistoryInput.add_member(:direction, Shapes::ShapeRef.new(shape: EdgeDirection, location: "querystring", location_name: "direction"))
|
2332
|
+
ListLineageNodeHistoryInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
2333
|
+
ListLineageNodeHistoryInput.add_member(:event_timestamp_gte, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "timestampGTE"))
|
2334
|
+
ListLineageNodeHistoryInput.add_member(:event_timestamp_lte, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "timestampLTE"))
|
2335
|
+
ListLineageNodeHistoryInput.add_member(:identifier, Shapes::ShapeRef.new(shape: LineageNodeIdentifier, required: true, location: "uri", location_name: "identifier"))
|
2336
|
+
ListLineageNodeHistoryInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
2337
|
+
ListLineageNodeHistoryInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
2338
|
+
ListLineageNodeHistoryInput.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location: "querystring", location_name: "sortOrder"))
|
2339
|
+
ListLineageNodeHistoryInput.struct_class = Types::ListLineageNodeHistoryInput
|
2340
|
+
|
2341
|
+
ListLineageNodeHistoryOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
2342
|
+
ListLineageNodeHistoryOutput.add_member(:nodes, Shapes::ShapeRef.new(shape: LineageNodeSummaries, location_name: "nodes"))
|
2343
|
+
ListLineageNodeHistoryOutput.struct_class = Types::ListLineageNodeHistoryOutput
|
2344
|
+
|
2261
2345
|
ListMetadataGenerationRunsInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
2262
2346
|
ListMetadataGenerationRunsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
2263
2347
|
ListMetadataGenerationRunsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
@@ -2463,6 +2547,15 @@ module Aws::DataZone
|
|
2463
2547
|
|
2464
2548
|
NotificationsList.member = Shapes::ShapeRef.new(shape: NotificationOutput)
|
2465
2549
|
|
2550
|
+
PostLineageEventInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
2551
|
+
PostLineageEventInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
2552
|
+
PostLineageEventInput.add_member(:event, Shapes::ShapeRef.new(shape: LineageEvent, required: true, location_name: "event"))
|
2553
|
+
PostLineageEventInput.struct_class = Types::PostLineageEventInput
|
2554
|
+
PostLineageEventInput[:payload] = :event
|
2555
|
+
PostLineageEventInput[:payload_member] = PostLineageEventInput.member(:event)
|
2556
|
+
|
2557
|
+
PostLineageEventOutput.struct_class = Types::PostLineageEventOutput
|
2558
|
+
|
2466
2559
|
PostTimeSeriesDataPointsInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
2467
2560
|
PostTimeSeriesDataPointsInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
2468
2561
|
PostTimeSeriesDataPointsInput.add_member(:entity_identifier, Shapes::ShapeRef.new(shape: EntityIdentifier, required: true, location: "uri", location_name: "entityIdentifier"))
|
@@ -2758,9 +2851,11 @@ module Aws::DataZone
|
|
2758
2851
|
|
2759
2852
|
SearchTypesResultItem.add_member(:asset_type_item, Shapes::ShapeRef.new(shape: AssetTypeItem, location_name: "assetTypeItem"))
|
2760
2853
|
SearchTypesResultItem.add_member(:form_type_item, Shapes::ShapeRef.new(shape: FormTypeData, location_name: "formTypeItem"))
|
2854
|
+
SearchTypesResultItem.add_member(:lineage_node_type_item, Shapes::ShapeRef.new(shape: LineageNodeTypeItem, location_name: "lineageNodeTypeItem"))
|
2761
2855
|
SearchTypesResultItem.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2762
2856
|
SearchTypesResultItem.add_member_subclass(:asset_type_item, Types::SearchTypesResultItem::AssetTypeItem)
|
2763
2857
|
SearchTypesResultItem.add_member_subclass(:form_type_item, Types::SearchTypesResultItem::FormTypeItem)
|
2858
|
+
SearchTypesResultItem.add_member_subclass(:lineage_node_type_item, Types::SearchTypesResultItem::LineageNodeTypeItem)
|
2764
2859
|
SearchTypesResultItem.add_member_subclass(:unknown, Types::SearchTypesResultItem::Unknown)
|
2765
2860
|
SearchTypesResultItem.struct_class = Types::SearchTypesResultItem
|
2766
2861
|
|
@@ -4213,6 +4308,20 @@ module Aws::DataZone
|
|
4213
4308
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
4214
4309
|
end)
|
4215
4310
|
|
4311
|
+
api.add_operation(:get_lineage_node, Seahorse::Model::Operation.new.tap do |o|
|
4312
|
+
o.name = "GetLineageNode"
|
4313
|
+
o.http_method = "GET"
|
4314
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/lineage/nodes/{identifier}"
|
4315
|
+
o.input = Shapes::ShapeRef.new(shape: GetLineageNodeInput)
|
4316
|
+
o.output = Shapes::ShapeRef.new(shape: GetLineageNodeOutput)
|
4317
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
4318
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
4319
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4320
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
4321
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
4322
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
4323
|
+
end)
|
4324
|
+
|
4216
4325
|
api.add_operation(:get_listing, Seahorse::Model::Operation.new.tap do |o|
|
4217
4326
|
o.name = "GetListing"
|
4218
4327
|
o.http_method = "GET"
|
@@ -4544,6 +4653,26 @@ module Aws::DataZone
|
|
4544
4653
|
)
|
4545
4654
|
end)
|
4546
4655
|
|
4656
|
+
api.add_operation(:list_lineage_node_history, Seahorse::Model::Operation.new.tap do |o|
|
4657
|
+
o.name = "ListLineageNodeHistory"
|
4658
|
+
o.http_method = "GET"
|
4659
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/lineage/nodes/{identifier}/history"
|
4660
|
+
o.input = Shapes::ShapeRef.new(shape: ListLineageNodeHistoryInput)
|
4661
|
+
o.output = Shapes::ShapeRef.new(shape: ListLineageNodeHistoryOutput)
|
4662
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
4663
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
4664
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4665
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
4666
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
4667
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
4668
|
+
o[:pager] = Aws::Pager.new(
|
4669
|
+
limit_key: "max_results",
|
4670
|
+
tokens: {
|
4671
|
+
"next_token" => "next_token"
|
4672
|
+
}
|
4673
|
+
)
|
4674
|
+
end)
|
4675
|
+
|
4547
4676
|
api.add_operation(:list_metadata_generation_runs, Seahorse::Model::Operation.new.tap do |o|
|
4548
4677
|
o.name = "ListMetadataGenerationRuns"
|
4549
4678
|
o.http_method = "GET"
|
@@ -4737,6 +4866,22 @@ module Aws::DataZone
|
|
4737
4866
|
)
|
4738
4867
|
end)
|
4739
4868
|
|
4869
|
+
api.add_operation(:post_lineage_event, Seahorse::Model::Operation.new.tap do |o|
|
4870
|
+
o.name = "PostLineageEvent"
|
4871
|
+
o.http_method = "POST"
|
4872
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/lineage/events"
|
4873
|
+
o.input = Shapes::ShapeRef.new(shape: PostLineageEventInput)
|
4874
|
+
o.output = Shapes::ShapeRef.new(shape: PostLineageEventOutput)
|
4875
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
4876
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
4877
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4878
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
4879
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
4880
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
4881
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
4882
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
4883
|
+
end)
|
4884
|
+
|
4740
4885
|
api.add_operation(:post_time_series_data_points, Seahorse::Model::Operation.new.tap do |o|
|
4741
4886
|
o.name = "PostTimeSeriesDataPoints"
|
4742
4887
|
o.http_method = "POST"
|
@@ -766,6 +766,19 @@ module Aws::DataZone
|
|
766
766
|
end
|
767
767
|
end
|
768
768
|
|
769
|
+
class GetLineageNode
|
770
|
+
def self.build(context)
|
771
|
+
unless context.config.regional_endpoint
|
772
|
+
endpoint = context.config.endpoint.to_s
|
773
|
+
end
|
774
|
+
Aws::DataZone::EndpointParameters.new(
|
775
|
+
region: context.config.region,
|
776
|
+
use_fips: context.config.use_fips_endpoint,
|
777
|
+
endpoint: endpoint,
|
778
|
+
)
|
779
|
+
end
|
780
|
+
end
|
781
|
+
|
769
782
|
class GetListing
|
770
783
|
def self.build(context)
|
771
784
|
unless context.config.regional_endpoint
|
@@ -1013,6 +1026,19 @@ module Aws::DataZone
|
|
1013
1026
|
end
|
1014
1027
|
end
|
1015
1028
|
|
1029
|
+
class ListLineageNodeHistory
|
1030
|
+
def self.build(context)
|
1031
|
+
unless context.config.regional_endpoint
|
1032
|
+
endpoint = context.config.endpoint.to_s
|
1033
|
+
end
|
1034
|
+
Aws::DataZone::EndpointParameters.new(
|
1035
|
+
region: context.config.region,
|
1036
|
+
use_fips: context.config.use_fips_endpoint,
|
1037
|
+
endpoint: endpoint,
|
1038
|
+
)
|
1039
|
+
end
|
1040
|
+
end
|
1041
|
+
|
1016
1042
|
class ListMetadataGenerationRuns
|
1017
1043
|
def self.build(context)
|
1018
1044
|
unless context.config.regional_endpoint
|
@@ -1143,6 +1169,19 @@ module Aws::DataZone
|
|
1143
1169
|
end
|
1144
1170
|
end
|
1145
1171
|
|
1172
|
+
class PostLineageEvent
|
1173
|
+
def self.build(context)
|
1174
|
+
unless context.config.regional_endpoint
|
1175
|
+
endpoint = context.config.endpoint.to_s
|
1176
|
+
end
|
1177
|
+
Aws::DataZone::EndpointParameters.new(
|
1178
|
+
region: context.config.region,
|
1179
|
+
use_fips: context.config.use_fips_endpoint,
|
1180
|
+
endpoint: endpoint,
|
1181
|
+
)
|
1182
|
+
end
|
1183
|
+
end
|
1184
|
+
|
1146
1185
|
class PostTimeSeriesDataPoints
|
1147
1186
|
def self.build(context)
|
1148
1187
|
unless context.config.regional_endpoint
|
@@ -174,6 +174,8 @@ module Aws::DataZone
|
|
174
174
|
Aws::DataZone::Endpoints::GetGroupProfile.build(context)
|
175
175
|
when :get_iam_portal_login_url
|
176
176
|
Aws::DataZone::Endpoints::GetIamPortalLoginUrl.build(context)
|
177
|
+
when :get_lineage_node
|
178
|
+
Aws::DataZone::Endpoints::GetLineageNode.build(context)
|
177
179
|
when :get_listing
|
178
180
|
Aws::DataZone::Endpoints::GetListing.build(context)
|
179
181
|
when :get_metadata_generation_run
|
@@ -212,6 +214,8 @@ module Aws::DataZone
|
|
212
214
|
Aws::DataZone::Endpoints::ListEnvironmentProfiles.build(context)
|
213
215
|
when :list_environments
|
214
216
|
Aws::DataZone::Endpoints::ListEnvironments.build(context)
|
217
|
+
when :list_lineage_node_history
|
218
|
+
Aws::DataZone::Endpoints::ListLineageNodeHistory.build(context)
|
215
219
|
when :list_metadata_generation_runs
|
216
220
|
Aws::DataZone::Endpoints::ListMetadataGenerationRuns.build(context)
|
217
221
|
when :list_notifications
|
@@ -232,6 +236,8 @@ module Aws::DataZone
|
|
232
236
|
Aws::DataZone::Endpoints::ListTagsForResource.build(context)
|
233
237
|
when :list_time_series_data_points
|
234
238
|
Aws::DataZone::Endpoints::ListTimeSeriesDataPoints.build(context)
|
239
|
+
when :post_lineage_event
|
240
|
+
Aws::DataZone::Endpoints::PostLineageEvent.build(context)
|
235
241
|
when :post_time_series_data_points
|
236
242
|
Aws::DataZone::Endpoints::PostTimeSeriesDataPoints.build(context)
|
237
243
|
when :put_environment_blueprint_configuration
|
@@ -6017,6 +6017,117 @@ module Aws::DataZone
|
|
6017
6017
|
include Aws::Structure
|
6018
6018
|
end
|
6019
6019
|
|
6020
|
+
# @!attribute [rw] domain_identifier
|
6021
|
+
# The ID of the domain in which you want to get the data lineage node.
|
6022
|
+
# @return [String]
|
6023
|
+
#
|
6024
|
+
# @!attribute [rw] event_timestamp
|
6025
|
+
# The event time stamp for which you want to get the data lineage
|
6026
|
+
# node.
|
6027
|
+
# @return [Time]
|
6028
|
+
#
|
6029
|
+
# @!attribute [rw] identifier
|
6030
|
+
# The ID of the data lineage node that you want to get.
|
6031
|
+
#
|
6032
|
+
# Both, a lineage node identifier generated by Amazon DataZone and a
|
6033
|
+
# `sourceIdentifier` of the lineage node are supported. If
|
6034
|
+
# `sourceIdentifier` is greater than 1800 characters, you can use
|
6035
|
+
# lineage node identifier generated by Amazon DataZone to get the node
|
6036
|
+
# details.
|
6037
|
+
# @return [String]
|
6038
|
+
#
|
6039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageNodeInput AWS API Documentation
|
6040
|
+
#
|
6041
|
+
class GetLineageNodeInput < Struct.new(
|
6042
|
+
:domain_identifier,
|
6043
|
+
:event_timestamp,
|
6044
|
+
:identifier)
|
6045
|
+
SENSITIVE = []
|
6046
|
+
include Aws::Structure
|
6047
|
+
end
|
6048
|
+
|
6049
|
+
# @!attribute [rw] created_at
|
6050
|
+
# The timestamp at which the data lineage node was created.
|
6051
|
+
# @return [Time]
|
6052
|
+
#
|
6053
|
+
# @!attribute [rw] created_by
|
6054
|
+
# The user who created the data lineage node.
|
6055
|
+
# @return [String]
|
6056
|
+
#
|
6057
|
+
# @!attribute [rw] description
|
6058
|
+
# The description of the data lineage node.
|
6059
|
+
# @return [String]
|
6060
|
+
#
|
6061
|
+
# @!attribute [rw] domain_id
|
6062
|
+
# The ID of the domain where you're getting the data lineage node.
|
6063
|
+
# @return [String]
|
6064
|
+
#
|
6065
|
+
# @!attribute [rw] downstream_nodes
|
6066
|
+
# The downsteam nodes of the specified data lineage node.
|
6067
|
+
# @return [Array<Types::LineageNodeReference>]
|
6068
|
+
#
|
6069
|
+
# @!attribute [rw] event_timestamp
|
6070
|
+
# The timestamp of the event described in the data lineage node.
|
6071
|
+
# @return [Time]
|
6072
|
+
#
|
6073
|
+
# @!attribute [rw] forms_output
|
6074
|
+
# The metadata of the specified data lineage node.
|
6075
|
+
# @return [Array<Types::FormOutput>]
|
6076
|
+
#
|
6077
|
+
# @!attribute [rw] id
|
6078
|
+
# The ID of the data lineage node.
|
6079
|
+
# @return [String]
|
6080
|
+
#
|
6081
|
+
# @!attribute [rw] name
|
6082
|
+
# The name of the data lineage node.
|
6083
|
+
# @return [String]
|
6084
|
+
#
|
6085
|
+
# @!attribute [rw] source_identifier
|
6086
|
+
# The source identifier of the data lineage node.
|
6087
|
+
# @return [String]
|
6088
|
+
#
|
6089
|
+
# @!attribute [rw] type_name
|
6090
|
+
# The name of the type of the specified data lineage node.
|
6091
|
+
# @return [String]
|
6092
|
+
#
|
6093
|
+
# @!attribute [rw] type_revision
|
6094
|
+
# The revision type of the specified data lineage node.
|
6095
|
+
# @return [String]
|
6096
|
+
#
|
6097
|
+
# @!attribute [rw] updated_at
|
6098
|
+
# The timestamp at which the data lineage node was updated.
|
6099
|
+
# @return [Time]
|
6100
|
+
#
|
6101
|
+
# @!attribute [rw] updated_by
|
6102
|
+
# The user who updated the data lineage node.
|
6103
|
+
# @return [String]
|
6104
|
+
#
|
6105
|
+
# @!attribute [rw] upstream_nodes
|
6106
|
+
# The upstream nodes of the specified data lineage node.
|
6107
|
+
# @return [Array<Types::LineageNodeReference>]
|
6108
|
+
#
|
6109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageNodeOutput AWS API Documentation
|
6110
|
+
#
|
6111
|
+
class GetLineageNodeOutput < Struct.new(
|
6112
|
+
:created_at,
|
6113
|
+
:created_by,
|
6114
|
+
:description,
|
6115
|
+
:domain_id,
|
6116
|
+
:downstream_nodes,
|
6117
|
+
:event_timestamp,
|
6118
|
+
:forms_output,
|
6119
|
+
:id,
|
6120
|
+
:name,
|
6121
|
+
:source_identifier,
|
6122
|
+
:type_name,
|
6123
|
+
:type_revision,
|
6124
|
+
:updated_at,
|
6125
|
+
:updated_by,
|
6126
|
+
:upstream_nodes)
|
6127
|
+
SENSITIVE = []
|
6128
|
+
include Aws::Structure
|
6129
|
+
end
|
6130
|
+
|
6020
6131
|
# @!attribute [rw] domain_identifier
|
6021
6132
|
# The ID of the Amazon DataZone domain.
|
6022
6133
|
# @return [String]
|
@@ -7069,6 +7180,148 @@ module Aws::DataZone
|
|
7069
7180
|
include Aws::Structure
|
7070
7181
|
end
|
7071
7182
|
|
7183
|
+
# The reference details for the data lineage node.
|
7184
|
+
#
|
7185
|
+
# @!attribute [rw] event_timestamp
|
7186
|
+
# The event timestamp of the data lineage node.
|
7187
|
+
# @return [Time]
|
7188
|
+
#
|
7189
|
+
# @!attribute [rw] id
|
7190
|
+
# The ID of the data lineage node.
|
7191
|
+
# @return [String]
|
7192
|
+
#
|
7193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageNodeReference AWS API Documentation
|
7194
|
+
#
|
7195
|
+
class LineageNodeReference < Struct.new(
|
7196
|
+
:event_timestamp,
|
7197
|
+
:id)
|
7198
|
+
SENSITIVE = []
|
7199
|
+
include Aws::Structure
|
7200
|
+
end
|
7201
|
+
|
7202
|
+
# The summary of the data lineage node.
|
7203
|
+
#
|
7204
|
+
# @!attribute [rw] created_at
|
7205
|
+
# The timestamp at which the data lineage node was created.
|
7206
|
+
# @return [Time]
|
7207
|
+
#
|
7208
|
+
# @!attribute [rw] created_by
|
7209
|
+
# The user who created the data lineage node.
|
7210
|
+
# @return [String]
|
7211
|
+
#
|
7212
|
+
# @!attribute [rw] description
|
7213
|
+
# The description of the data lineage node.
|
7214
|
+
# @return [String]
|
7215
|
+
#
|
7216
|
+
# @!attribute [rw] domain_id
|
7217
|
+
# The ID of the domain of the data lineage node.
|
7218
|
+
# @return [String]
|
7219
|
+
#
|
7220
|
+
# @!attribute [rw] event_timestamp
|
7221
|
+
# The event timestamp of the data lineage node.
|
7222
|
+
# @return [Time]
|
7223
|
+
#
|
7224
|
+
# @!attribute [rw] id
|
7225
|
+
# The ID of the data lineage node.
|
7226
|
+
# @return [String]
|
7227
|
+
#
|
7228
|
+
# @!attribute [rw] name
|
7229
|
+
# The name of the data lineage node.
|
7230
|
+
# @return [String]
|
7231
|
+
#
|
7232
|
+
# @!attribute [rw] source_identifier
|
7233
|
+
# The alternate ID of the data lineage node.
|
7234
|
+
# @return [String]
|
7235
|
+
#
|
7236
|
+
# @!attribute [rw] type_name
|
7237
|
+
# The name of the type of the data lineage node.
|
7238
|
+
# @return [String]
|
7239
|
+
#
|
7240
|
+
# @!attribute [rw] type_revision
|
7241
|
+
# The type of the revision of the data lineage node.
|
7242
|
+
# @return [String]
|
7243
|
+
#
|
7244
|
+
# @!attribute [rw] updated_at
|
7245
|
+
# The timestamp at which the data lineage node was updated.
|
7246
|
+
# @return [Time]
|
7247
|
+
#
|
7248
|
+
# @!attribute [rw] updated_by
|
7249
|
+
# The user who updated the data lineage node.
|
7250
|
+
# @return [String]
|
7251
|
+
#
|
7252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageNodeSummary AWS API Documentation
|
7253
|
+
#
|
7254
|
+
class LineageNodeSummary < Struct.new(
|
7255
|
+
:created_at,
|
7256
|
+
:created_by,
|
7257
|
+
:description,
|
7258
|
+
:domain_id,
|
7259
|
+
:event_timestamp,
|
7260
|
+
:id,
|
7261
|
+
:name,
|
7262
|
+
:source_identifier,
|
7263
|
+
:type_name,
|
7264
|
+
:type_revision,
|
7265
|
+
:updated_at,
|
7266
|
+
:updated_by)
|
7267
|
+
SENSITIVE = []
|
7268
|
+
include Aws::Structure
|
7269
|
+
end
|
7270
|
+
|
7271
|
+
# The details of a data lineage node type.
|
7272
|
+
#
|
7273
|
+
# @!attribute [rw] created_at
|
7274
|
+
# The timestamp at which the data lineage node type was created.
|
7275
|
+
# @return [Time]
|
7276
|
+
#
|
7277
|
+
# @!attribute [rw] created_by
|
7278
|
+
# The user who created the data lineage node type.
|
7279
|
+
# @return [String]
|
7280
|
+
#
|
7281
|
+
# @!attribute [rw] description
|
7282
|
+
# The description of the data lineage node type.
|
7283
|
+
# @return [String]
|
7284
|
+
#
|
7285
|
+
# @!attribute [rw] domain_id
|
7286
|
+
# The ID of the domain where the data lineage node type lives.
|
7287
|
+
# @return [String]
|
7288
|
+
#
|
7289
|
+
# @!attribute [rw] forms_output
|
7290
|
+
# The forms output of the data lineage node type.
|
7291
|
+
# @return [Hash<String,Types::FormEntryOutput>]
|
7292
|
+
#
|
7293
|
+
# @!attribute [rw] name
|
7294
|
+
# The name of the data lineage node type.
|
7295
|
+
# @return [String]
|
7296
|
+
#
|
7297
|
+
# @!attribute [rw] revision
|
7298
|
+
# The revision of the data lineage node type.
|
7299
|
+
# @return [String]
|
7300
|
+
#
|
7301
|
+
# @!attribute [rw] updated_at
|
7302
|
+
# The timestamp at which the data lineage node type was updated.
|
7303
|
+
# @return [Time]
|
7304
|
+
#
|
7305
|
+
# @!attribute [rw] updated_by
|
7306
|
+
# The user who updated the data lineage node type.
|
7307
|
+
# @return [String]
|
7308
|
+
#
|
7309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageNodeTypeItem AWS API Documentation
|
7310
|
+
#
|
7311
|
+
class LineageNodeTypeItem < Struct.new(
|
7312
|
+
:created_at,
|
7313
|
+
:created_by,
|
7314
|
+
:description,
|
7315
|
+
:domain_id,
|
7316
|
+
:forms_output,
|
7317
|
+
:name,
|
7318
|
+
:revision,
|
7319
|
+
:updated_at,
|
7320
|
+
:updated_by)
|
7321
|
+
SENSITIVE = []
|
7322
|
+
include Aws::Structure
|
7323
|
+
end
|
7324
|
+
|
7072
7325
|
# @!attribute [rw] domain_identifier
|
7073
7326
|
# The identifier of the domain.
|
7074
7327
|
# @return [String]
|
@@ -7748,6 +8001,90 @@ module Aws::DataZone
|
|
7748
8001
|
include Aws::Structure
|
7749
8002
|
end
|
7750
8003
|
|
8004
|
+
# @!attribute [rw] direction
|
8005
|
+
# The direction of the data lineage node refers to the lineage node
|
8006
|
+
# having neighbors in that direction. For example, if direction is
|
8007
|
+
# `UPSTREAM`, the `ListLineageNodeHistory` API responds with
|
8008
|
+
# historical versions with upstream neighbors only.
|
8009
|
+
# @return [String]
|
8010
|
+
#
|
8011
|
+
# @!attribute [rw] domain_identifier
|
8012
|
+
# The ID of the domain where you want to list the history of the
|
8013
|
+
# specified data lineage node.
|
8014
|
+
# @return [String]
|
8015
|
+
#
|
8016
|
+
# @!attribute [rw] event_timestamp_gte
|
8017
|
+
# Specifies whether the action is to return data lineage node history
|
8018
|
+
# from the time after the event timestamp.
|
8019
|
+
# @return [Time]
|
8020
|
+
#
|
8021
|
+
# @!attribute [rw] event_timestamp_lte
|
8022
|
+
# Specifies whether the action is to return data lineage node history
|
8023
|
+
# from the time prior of the event timestamp.
|
8024
|
+
# @return [Time]
|
8025
|
+
#
|
8026
|
+
# @!attribute [rw] identifier
|
8027
|
+
# The ID of the data lineage node whose history you want to list.
|
8028
|
+
# @return [String]
|
8029
|
+
#
|
8030
|
+
# @!attribute [rw] max_results
|
8031
|
+
# The maximum number of history items to return in a single call to
|
8032
|
+
# ListLineageNodeHistory. When the number of memberships to be listed
|
8033
|
+
# is greater than the value of MaxResults, the response contains a
|
8034
|
+
# NextToken value that you can use in a subsequent call to
|
8035
|
+
# ListLineageNodeHistory to list the next set of items.
|
8036
|
+
# @return [Integer]
|
8037
|
+
#
|
8038
|
+
# @!attribute [rw] next_token
|
8039
|
+
# When the number of history items is greater than the default value
|
8040
|
+
# for the MaxResults parameter, or if you explicitly specify a value
|
8041
|
+
# for MaxResults that is less than the number of items, the response
|
8042
|
+
# includes a pagination token named NextToken. You can specify this
|
8043
|
+
# NextToken value in a subsequent call to ListLineageNodeHistory to
|
8044
|
+
# list the next set of items.
|
8045
|
+
# @return [String]
|
8046
|
+
#
|
8047
|
+
# @!attribute [rw] sort_order
|
8048
|
+
# The order by which you want data lineage node history to be sorted.
|
8049
|
+
# @return [String]
|
8050
|
+
#
|
8051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListLineageNodeHistoryInput AWS API Documentation
|
8052
|
+
#
|
8053
|
+
class ListLineageNodeHistoryInput < Struct.new(
|
8054
|
+
:direction,
|
8055
|
+
:domain_identifier,
|
8056
|
+
:event_timestamp_gte,
|
8057
|
+
:event_timestamp_lte,
|
8058
|
+
:identifier,
|
8059
|
+
:max_results,
|
8060
|
+
:next_token,
|
8061
|
+
:sort_order)
|
8062
|
+
SENSITIVE = []
|
8063
|
+
include Aws::Structure
|
8064
|
+
end
|
8065
|
+
|
8066
|
+
# @!attribute [rw] next_token
|
8067
|
+
# When the number of history items is greater than the default value
|
8068
|
+
# for the MaxResults parameter, or if you explicitly specify a value
|
8069
|
+
# for MaxResults that is less than the number of items, the response
|
8070
|
+
# includes a pagination token named NextToken. You can specify this
|
8071
|
+
# NextToken value in a subsequent call to ListLineageNodeHistory to
|
8072
|
+
# list the next set of items.
|
8073
|
+
# @return [String]
|
8074
|
+
#
|
8075
|
+
# @!attribute [rw] nodes
|
8076
|
+
# The nodes returned by the ListLineageNodeHistory action.
|
8077
|
+
# @return [Array<Types::LineageNodeSummary>]
|
8078
|
+
#
|
8079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListLineageNodeHistoryOutput AWS API Documentation
|
8080
|
+
#
|
8081
|
+
class ListLineageNodeHistoryOutput < Struct.new(
|
8082
|
+
:next_token,
|
8083
|
+
:nodes)
|
8084
|
+
SENSITIVE = []
|
8085
|
+
include Aws::Structure
|
8086
|
+
end
|
8087
|
+
|
7751
8088
|
# @!attribute [rw] domain_identifier
|
7752
8089
|
# The ID of the Amazon DataZone domain where you want to list metadata
|
7753
8090
|
# generation runs.
|
@@ -8778,6 +9115,37 @@ module Aws::DataZone
|
|
8778
9115
|
include Aws::Structure
|
8779
9116
|
end
|
8780
9117
|
|
9118
|
+
# @!attribute [rw] client_token
|
9119
|
+
# A unique, case-sensitive identifier that is provided to ensure the
|
9120
|
+
# idempotency of the request.
|
9121
|
+
#
|
9122
|
+
# **A suitable default value is auto-generated.** You should normally
|
9123
|
+
# not need to pass this option.
|
9124
|
+
# @return [String]
|
9125
|
+
#
|
9126
|
+
# @!attribute [rw] domain_identifier
|
9127
|
+
# The ID of the domain where you want to post a data lineage event.
|
9128
|
+
# @return [String]
|
9129
|
+
#
|
9130
|
+
# @!attribute [rw] event
|
9131
|
+
# The data lineage event that you want to post. Only open-lineage run
|
9132
|
+
# event are supported as events.
|
9133
|
+
# @return [String]
|
9134
|
+
#
|
9135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostLineageEventInput AWS API Documentation
|
9136
|
+
#
|
9137
|
+
class PostLineageEventInput < Struct.new(
|
9138
|
+
:client_token,
|
9139
|
+
:domain_identifier,
|
9140
|
+
:event)
|
9141
|
+
SENSITIVE = [:event]
|
9142
|
+
include Aws::Structure
|
9143
|
+
end
|
9144
|
+
|
9145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostLineageEventOutput AWS API Documentation
|
9146
|
+
#
|
9147
|
+
class PostLineageEventOutput < Aws::EmptyStructure; end
|
9148
|
+
|
8781
9149
|
# @!attribute [rw] client_token
|
8782
9150
|
# A unique, case-sensitive identifier that is provided to ensure the
|
8783
9151
|
# idempotency of the request.
|
@@ -10094,11 +10462,16 @@ module Aws::DataZone
|
|
10094
10462
|
# The form type included in the results of the `SearchTypes` action.
|
10095
10463
|
# @return [Types::FormTypeData]
|
10096
10464
|
#
|
10465
|
+
# @!attribute [rw] lineage_node_type_item
|
10466
|
+
# The details of a data lineage node type.
|
10467
|
+
# @return [Types::LineageNodeTypeItem]
|
10468
|
+
#
|
10097
10469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SearchTypesResultItem AWS API Documentation
|
10098
10470
|
#
|
10099
10471
|
class SearchTypesResultItem < Struct.new(
|
10100
10472
|
:asset_type_item,
|
10101
10473
|
:form_type_item,
|
10474
|
+
:lineage_node_type_item,
|
10102
10475
|
:unknown)
|
10103
10476
|
SENSITIVE = []
|
10104
10477
|
include Aws::Structure
|
@@ -10106,6 +10479,7 @@ module Aws::DataZone
|
|
10106
10479
|
|
10107
10480
|
class AssetTypeItem < SearchTypesResultItem; end
|
10108
10481
|
class FormTypeItem < SearchTypesResultItem; end
|
10482
|
+
class LineageNodeTypeItem < SearchTypesResultItem; end
|
10109
10483
|
class Unknown < SearchTypesResultItem; end
|
10110
10484
|
end
|
10111
10485
|
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -1324,6 +1325,32 @@ module Aws
|
|
1324
1325
|
) -> _GetIamPortalLoginUrlResponseSuccess
|
1325
1326
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIamPortalLoginUrlResponseSuccess
|
1326
1327
|
|
1328
|
+
interface _GetLineageNodeResponseSuccess
|
1329
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLineageNodeOutput]
|
1330
|
+
def created_at: () -> ::Time
|
1331
|
+
def created_by: () -> ::String
|
1332
|
+
def description: () -> ::String
|
1333
|
+
def domain_id: () -> ::String
|
1334
|
+
def downstream_nodes: () -> ::Array[Types::LineageNodeReference]
|
1335
|
+
def event_timestamp: () -> ::Time
|
1336
|
+
def forms_output: () -> ::Array[Types::FormOutput]
|
1337
|
+
def id: () -> ::String
|
1338
|
+
def name: () -> ::String
|
1339
|
+
def source_identifier: () -> ::String
|
1340
|
+
def type_name: () -> ::String
|
1341
|
+
def type_revision: () -> ::String
|
1342
|
+
def updated_at: () -> ::Time
|
1343
|
+
def updated_by: () -> ::String
|
1344
|
+
def upstream_nodes: () -> ::Array[Types::LineageNodeReference]
|
1345
|
+
end
|
1346
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_lineage_node-instance_method
|
1347
|
+
def get_lineage_node: (
|
1348
|
+
domain_identifier: ::String,
|
1349
|
+
?event_timestamp: ::Time,
|
1350
|
+
identifier: ::String
|
1351
|
+
) -> _GetLineageNodeResponseSuccess
|
1352
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLineageNodeResponseSuccess
|
1353
|
+
|
1327
1354
|
interface _GetListingResponseSuccess
|
1328
1355
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetListingOutput]
|
1329
1356
|
def created_at: () -> ::Time
|
@@ -1664,6 +1691,24 @@ module Aws
|
|
1664
1691
|
) -> _ListEnvironmentsResponseSuccess
|
1665
1692
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
|
1666
1693
|
|
1694
|
+
interface _ListLineageNodeHistoryResponseSuccess
|
1695
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLineageNodeHistoryOutput]
|
1696
|
+
def next_token: () -> ::String
|
1697
|
+
def nodes: () -> ::Array[Types::LineageNodeSummary]
|
1698
|
+
end
|
1699
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_lineage_node_history-instance_method
|
1700
|
+
def list_lineage_node_history: (
|
1701
|
+
?direction: ("UPSTREAM" | "DOWNSTREAM"),
|
1702
|
+
domain_identifier: ::String,
|
1703
|
+
?event_timestamp_gte: ::Time,
|
1704
|
+
?event_timestamp_lte: ::Time,
|
1705
|
+
identifier: ::String,
|
1706
|
+
?max_results: ::Integer,
|
1707
|
+
?next_token: ::String,
|
1708
|
+
?sort_order: ("ASCENDING" | "DESCENDING")
|
1709
|
+
) -> _ListLineageNodeHistoryResponseSuccess
|
1710
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLineageNodeHistoryResponseSuccess
|
1711
|
+
|
1667
1712
|
interface _ListMetadataGenerationRunsResponseSuccess
|
1668
1713
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListMetadataGenerationRunsOutput]
|
1669
1714
|
def items: () -> ::Array[Types::MetadataGenerationRunItem]
|
@@ -1831,6 +1876,17 @@ module Aws
|
|
1831
1876
|
) -> _ListTimeSeriesDataPointsResponseSuccess
|
1832
1877
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTimeSeriesDataPointsResponseSuccess
|
1833
1878
|
|
1879
|
+
interface _PostLineageEventResponseSuccess
|
1880
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PostLineageEventOutput]
|
1881
|
+
end
|
1882
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#post_lineage_event-instance_method
|
1883
|
+
def post_lineage_event: (
|
1884
|
+
?client_token: ::String,
|
1885
|
+
domain_identifier: ::String,
|
1886
|
+
event: ::String
|
1887
|
+
) -> _PostLineageEventResponseSuccess
|
1888
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PostLineageEventResponseSuccess
|
1889
|
+
|
1834
1890
|
interface _PostTimeSeriesDataPointsResponseSuccess
|
1835
1891
|
include ::Seahorse::Client::_ResponseSuccess[Types::PostTimeSeriesDataPointsOutput]
|
1836
1892
|
def domain_id: () -> ::String
|
@@ -2068,7 +2124,7 @@ module Aws
|
|
2068
2124
|
attribute: ::String
|
2069
2125
|
},
|
2070
2126
|
],
|
2071
|
-
search_scope: ("ASSET_TYPE" | "FORM_TYPE"),
|
2127
|
+
search_scope: ("ASSET_TYPE" | "FORM_TYPE" | "LINEAGE_NODE_TYPE"),
|
2072
2128
|
?search_text: ::String,
|
2073
2129
|
?sort: {
|
2074
2130
|
attribute: ::String,
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -1561,6 +1561,32 @@ module Aws::DataZone
|
|
1561
1561
|
SENSITIVE: []
|
1562
1562
|
end
|
1563
1563
|
|
1564
|
+
class GetLineageNodeInput
|
1565
|
+
attr_accessor domain_identifier: ::String
|
1566
|
+
attr_accessor event_timestamp: ::Time
|
1567
|
+
attr_accessor identifier: ::String
|
1568
|
+
SENSITIVE: []
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
class GetLineageNodeOutput
|
1572
|
+
attr_accessor created_at: ::Time
|
1573
|
+
attr_accessor created_by: ::String
|
1574
|
+
attr_accessor description: ::String
|
1575
|
+
attr_accessor domain_id: ::String
|
1576
|
+
attr_accessor downstream_nodes: ::Array[Types::LineageNodeReference]
|
1577
|
+
attr_accessor event_timestamp: ::Time
|
1578
|
+
attr_accessor forms_output: ::Array[Types::FormOutput]
|
1579
|
+
attr_accessor id: ::String
|
1580
|
+
attr_accessor name: ::String
|
1581
|
+
attr_accessor source_identifier: ::String
|
1582
|
+
attr_accessor type_name: ::String
|
1583
|
+
attr_accessor type_revision: ::String
|
1584
|
+
attr_accessor updated_at: ::Time
|
1585
|
+
attr_accessor updated_by: ::String
|
1586
|
+
attr_accessor upstream_nodes: ::Array[Types::LineageNodeReference]
|
1587
|
+
SENSITIVE: []
|
1588
|
+
end
|
1589
|
+
|
1564
1590
|
class GetListingInput
|
1565
1591
|
attr_accessor domain_identifier: ::String
|
1566
1592
|
attr_accessor identifier: ::String
|
@@ -1847,6 +1873,41 @@ module Aws::DataZone
|
|
1847
1873
|
SENSITIVE: []
|
1848
1874
|
end
|
1849
1875
|
|
1876
|
+
class LineageNodeReference
|
1877
|
+
attr_accessor event_timestamp: ::Time
|
1878
|
+
attr_accessor id: ::String
|
1879
|
+
SENSITIVE: []
|
1880
|
+
end
|
1881
|
+
|
1882
|
+
class LineageNodeSummary
|
1883
|
+
attr_accessor created_at: ::Time
|
1884
|
+
attr_accessor created_by: ::String
|
1885
|
+
attr_accessor description: ::String
|
1886
|
+
attr_accessor domain_id: ::String
|
1887
|
+
attr_accessor event_timestamp: ::Time
|
1888
|
+
attr_accessor id: ::String
|
1889
|
+
attr_accessor name: ::String
|
1890
|
+
attr_accessor source_identifier: ::String
|
1891
|
+
attr_accessor type_name: ::String
|
1892
|
+
attr_accessor type_revision: ::String
|
1893
|
+
attr_accessor updated_at: ::Time
|
1894
|
+
attr_accessor updated_by: ::String
|
1895
|
+
SENSITIVE: []
|
1896
|
+
end
|
1897
|
+
|
1898
|
+
class LineageNodeTypeItem
|
1899
|
+
attr_accessor created_at: ::Time
|
1900
|
+
attr_accessor created_by: ::String
|
1901
|
+
attr_accessor description: ::String
|
1902
|
+
attr_accessor domain_id: ::String
|
1903
|
+
attr_accessor forms_output: ::Hash[::String, Types::FormEntryOutput]
|
1904
|
+
attr_accessor name: ::String
|
1905
|
+
attr_accessor revision: ::String
|
1906
|
+
attr_accessor updated_at: ::Time
|
1907
|
+
attr_accessor updated_by: ::String
|
1908
|
+
SENSITIVE: []
|
1909
|
+
end
|
1910
|
+
|
1850
1911
|
class ListAssetRevisionsInput
|
1851
1912
|
attr_accessor domain_identifier: ::String
|
1852
1913
|
attr_accessor identifier: ::String
|
@@ -2003,6 +2064,24 @@ module Aws::DataZone
|
|
2003
2064
|
SENSITIVE: []
|
2004
2065
|
end
|
2005
2066
|
|
2067
|
+
class ListLineageNodeHistoryInput
|
2068
|
+
attr_accessor direction: ("UPSTREAM" | "DOWNSTREAM")
|
2069
|
+
attr_accessor domain_identifier: ::String
|
2070
|
+
attr_accessor event_timestamp_gte: ::Time
|
2071
|
+
attr_accessor event_timestamp_lte: ::Time
|
2072
|
+
attr_accessor identifier: ::String
|
2073
|
+
attr_accessor max_results: ::Integer
|
2074
|
+
attr_accessor next_token: ::String
|
2075
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
2076
|
+
SENSITIVE: []
|
2077
|
+
end
|
2078
|
+
|
2079
|
+
class ListLineageNodeHistoryOutput
|
2080
|
+
attr_accessor next_token: ::String
|
2081
|
+
attr_accessor nodes: ::Array[Types::LineageNodeSummary]
|
2082
|
+
SENSITIVE: []
|
2083
|
+
end
|
2084
|
+
|
2006
2085
|
class ListMetadataGenerationRunsInput
|
2007
2086
|
attr_accessor domain_identifier: ::String
|
2008
2087
|
attr_accessor max_results: ::Integer
|
@@ -2273,6 +2352,16 @@ module Aws::DataZone
|
|
2273
2352
|
SENSITIVE: []
|
2274
2353
|
end
|
2275
2354
|
|
2355
|
+
class PostLineageEventInput
|
2356
|
+
attr_accessor client_token: ::String
|
2357
|
+
attr_accessor domain_identifier: ::String
|
2358
|
+
attr_accessor event: ::String
|
2359
|
+
SENSITIVE: [:event]
|
2360
|
+
end
|
2361
|
+
|
2362
|
+
class PostLineageEventOutput < Aws::EmptyStructure
|
2363
|
+
end
|
2364
|
+
|
2276
2365
|
class PostTimeSeriesDataPointsInput
|
2277
2366
|
attr_accessor client_token: ::String
|
2278
2367
|
attr_accessor domain_identifier: ::String
|
@@ -2623,7 +2712,7 @@ module Aws::DataZone
|
|
2623
2712
|
attr_accessor max_results: ::Integer
|
2624
2713
|
attr_accessor next_token: ::String
|
2625
2714
|
attr_accessor search_in: ::Array[Types::SearchInItem]
|
2626
|
-
attr_accessor search_scope: ("ASSET_TYPE" | "FORM_TYPE")
|
2715
|
+
attr_accessor search_scope: ("ASSET_TYPE" | "FORM_TYPE" | "LINEAGE_NODE_TYPE")
|
2627
2716
|
attr_accessor search_text: ::String
|
2628
2717
|
attr_accessor sort: Types::SearchSort
|
2629
2718
|
SENSITIVE: []
|
@@ -2639,6 +2728,7 @@ module Aws::DataZone
|
|
2639
2728
|
class SearchTypesResultItem
|
2640
2729
|
attr_accessor asset_type_item: Types::AssetTypeItem
|
2641
2730
|
attr_accessor form_type_item: Types::FormTypeData
|
2731
|
+
attr_accessor lineage_node_type_item: Types::LineageNodeTypeItem
|
2642
2732
|
attr_accessor unknown: untyped
|
2643
2733
|
SENSITIVE: []
|
2644
2734
|
|
@@ -2646,6 +2736,8 @@ module Aws::DataZone
|
|
2646
2736
|
end
|
2647
2737
|
class FormTypeItem < SearchTypesResultItem
|
2648
2738
|
end
|
2739
|
+
class LineageNodeTypeItem < SearchTypesResultItem
|
2740
|
+
end
|
2649
2741
|
class Unknown < SearchTypesResultItem
|
2650
2742
|
end
|
2651
2743
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|