aws-sdk-datazone 1.11.0 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7eaf92a26b3f26193a2abda9f41d328b7f25e0a0b68a9c972b6182ccf2c17e8
4
- data.tar.gz: c87d45813aa0cc853c1b06920c66f4733ebd00cc8af9b0cbe61d0cfbb11da923
3
+ metadata.gz: 7809b6b426a31ac06b4009646c40d8d234c9b6560b5e4e3b8691156c08615a5b
4
+ data.tar.gz: 3c193ea170d22e1fea0f3d081ad28c125651ad3f8179a2dbf994b265a29afcbc
5
5
  SHA512:
6
- metadata.gz: 7bd4d41ee3cbe4388a4db3c5b893c369ee724acfd0d4e8aff0aa8a2f8261a3616c5bb67f9ff21dd3268501c52df2fc08a216b4c650b77fe35dbb841a87d8a71b
7
- data.tar.gz: ed2d128e5096bd8c970872a05638898622ccd526b59d87e1c7b2504421798aa3da35da9230c3529e14349ddf083b0445baade2e16f394bd8cb5ef0cef3f8f7b1
6
+ metadata.gz: 9c3913e626c76466b86a13b7b0a4bc233f4a14840842d2cbdbdb276400689e0a22c3999162b8a06516a8d21290b63c000eeae895182d58084ccf6c60ffa38d70
7
+ data.tar.gz: a79c8739bd8d2c50cab4a63c087bd2b6d19bb7d9e100d6172ab163d3e72922431b2151390e2089fb3bf0a785e486b0521ff76f85627f3bee806d02eee2efc2e0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2024-06-27)
5
+ ------------------
6
+
7
+ * Feature - This release supports the data lineage feature of business data catalog in Amazon DataZone.
8
+
4
9
  1.11.0 (2024-06-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.12.0
@@ -3994,6 +3994,84 @@ module Aws::DataZone
3994
3994
  req.send_request(options)
3995
3995
  end
3996
3996
 
3997
+ # Gets the data lineage node.
3998
+ #
3999
+ # @option params [required, String] :domain_identifier
4000
+ # The ID of the domain in which you want to get the data lineage node.
4001
+ #
4002
+ # @option params [Time,DateTime,Date,Integer,String] :event_timestamp
4003
+ # The event time stamp for which you want to get the data lineage node.
4004
+ #
4005
+ # @option params [required, String] :identifier
4006
+ # The ID of the data lineage node that you want to get.
4007
+ #
4008
+ # Both, a lineage node identifier generated by Amazon DataZone and a
4009
+ # `sourceIdentifier` of the lineage node are supported. If
4010
+ # `sourceIdentifier` is greater than 1800 characters, you can use
4011
+ # lineage node identifier generated by Amazon DataZone to get the node
4012
+ # details.
4013
+ #
4014
+ # @return [Types::GetLineageNodeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4015
+ #
4016
+ # * {Types::GetLineageNodeOutput#created_at #created_at} => Time
4017
+ # * {Types::GetLineageNodeOutput#created_by #created_by} => String
4018
+ # * {Types::GetLineageNodeOutput#description #description} => String
4019
+ # * {Types::GetLineageNodeOutput#domain_id #domain_id} => String
4020
+ # * {Types::GetLineageNodeOutput#downstream_nodes #downstream_nodes} => Array<Types::LineageNodeReference>
4021
+ # * {Types::GetLineageNodeOutput#event_timestamp #event_timestamp} => Time
4022
+ # * {Types::GetLineageNodeOutput#forms_output #forms_output} => Array<Types::FormOutput>
4023
+ # * {Types::GetLineageNodeOutput#id #id} => String
4024
+ # * {Types::GetLineageNodeOutput#name #name} => String
4025
+ # * {Types::GetLineageNodeOutput#source_identifier #source_identifier} => String
4026
+ # * {Types::GetLineageNodeOutput#type_name #type_name} => String
4027
+ # * {Types::GetLineageNodeOutput#type_revision #type_revision} => String
4028
+ # * {Types::GetLineageNodeOutput#updated_at #updated_at} => Time
4029
+ # * {Types::GetLineageNodeOutput#updated_by #updated_by} => String
4030
+ # * {Types::GetLineageNodeOutput#upstream_nodes #upstream_nodes} => Array<Types::LineageNodeReference>
4031
+ #
4032
+ # @example Request syntax with placeholder values
4033
+ #
4034
+ # resp = client.get_lineage_node({
4035
+ # domain_identifier: "DomainId", # required
4036
+ # event_timestamp: Time.now,
4037
+ # identifier: "LineageNodeIdentifier", # required
4038
+ # })
4039
+ #
4040
+ # @example Response structure
4041
+ #
4042
+ # resp.created_at #=> Time
4043
+ # resp.created_by #=> String
4044
+ # resp.description #=> String
4045
+ # resp.domain_id #=> String
4046
+ # resp.downstream_nodes #=> Array
4047
+ # resp.downstream_nodes[0].event_timestamp #=> Time
4048
+ # resp.downstream_nodes[0].id #=> String
4049
+ # resp.event_timestamp #=> Time
4050
+ # resp.forms_output #=> Array
4051
+ # resp.forms_output[0].content #=> String
4052
+ # resp.forms_output[0].form_name #=> String
4053
+ # resp.forms_output[0].type_name #=> String
4054
+ # resp.forms_output[0].type_revision #=> String
4055
+ # resp.id #=> String
4056
+ # resp.name #=> String
4057
+ # resp.source_identifier #=> String
4058
+ # resp.type_name #=> String
4059
+ # resp.type_revision #=> String
4060
+ # resp.updated_at #=> Time
4061
+ # resp.updated_by #=> String
4062
+ # resp.upstream_nodes #=> Array
4063
+ # resp.upstream_nodes[0].event_timestamp #=> Time
4064
+ # resp.upstream_nodes[0].id #=> String
4065
+ #
4066
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageNode AWS API Documentation
4067
+ #
4068
+ # @overload get_lineage_node(params = {})
4069
+ # @param [Hash] params ({})
4070
+ def get_lineage_node(params = {}, options = {})
4071
+ req = build_request(:get_lineage_node, params)
4072
+ req.send_request(options)
4073
+ end
4074
+
3997
4075
  # Gets a listing (a record of an asset at a given time).
3998
4076
  #
3999
4077
  # @option params [required, String] :domain_identifier
@@ -5252,6 +5330,93 @@ module Aws::DataZone
5252
5330
  req.send_request(options)
5253
5331
  end
5254
5332
 
5333
+ # Lists the history of the specified data lineage node.
5334
+ #
5335
+ # @option params [String] :direction
5336
+ # The direction of the data lineage node refers to the lineage node
5337
+ # having neighbors in that direction. For example, if direction is
5338
+ # `UPSTREAM`, the `ListLineageNodeHistory` API responds with historical
5339
+ # versions with upstream neighbors only.
5340
+ #
5341
+ # @option params [required, String] :domain_identifier
5342
+ # The ID of the domain where you want to list the history of the
5343
+ # specified data lineage node.
5344
+ #
5345
+ # @option params [Time,DateTime,Date,Integer,String] :event_timestamp_gte
5346
+ # Specifies whether the action is to return data lineage node history
5347
+ # from the time after the event timestamp.
5348
+ #
5349
+ # @option params [Time,DateTime,Date,Integer,String] :event_timestamp_lte
5350
+ # Specifies whether the action is to return data lineage node history
5351
+ # from the time prior of the event timestamp.
5352
+ #
5353
+ # @option params [required, String] :identifier
5354
+ # The ID of the data lineage node whose history you want to list.
5355
+ #
5356
+ # @option params [Integer] :max_results
5357
+ # The maximum number of history items to return in a single call to
5358
+ # ListLineageNodeHistory. When the number of memberships to be listed is
5359
+ # greater than the value of MaxResults, the response contains a
5360
+ # NextToken value that you can use in a subsequent call to
5361
+ # ListLineageNodeHistory to list the next set of items.
5362
+ #
5363
+ # @option params [String] :next_token
5364
+ # When the number of history items is greater than the default value for
5365
+ # the MaxResults parameter, or if you explicitly specify a value for
5366
+ # MaxResults that is less than the number of items, the response
5367
+ # includes a pagination token named NextToken. You can specify this
5368
+ # NextToken value in a subsequent call to ListLineageNodeHistory to list
5369
+ # the next set of items.
5370
+ #
5371
+ # @option params [String] :sort_order
5372
+ # The order by which you want data lineage node history to be sorted.
5373
+ #
5374
+ # @return [Types::ListLineageNodeHistoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5375
+ #
5376
+ # * {Types::ListLineageNodeHistoryOutput#next_token #next_token} => String
5377
+ # * {Types::ListLineageNodeHistoryOutput#nodes #nodes} => Array<Types::LineageNodeSummary>
5378
+ #
5379
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5380
+ #
5381
+ # @example Request syntax with placeholder values
5382
+ #
5383
+ # resp = client.list_lineage_node_history({
5384
+ # direction: "UPSTREAM", # accepts UPSTREAM, DOWNSTREAM
5385
+ # domain_identifier: "DomainId", # required
5386
+ # event_timestamp_gte: Time.now,
5387
+ # event_timestamp_lte: Time.now,
5388
+ # identifier: "LineageNodeIdentifier", # required
5389
+ # max_results: 1,
5390
+ # next_token: "PaginationToken",
5391
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
5392
+ # })
5393
+ #
5394
+ # @example Response structure
5395
+ #
5396
+ # resp.next_token #=> String
5397
+ # resp.nodes #=> Array
5398
+ # resp.nodes[0].created_at #=> Time
5399
+ # resp.nodes[0].created_by #=> String
5400
+ # resp.nodes[0].description #=> String
5401
+ # resp.nodes[0].domain_id #=> String
5402
+ # resp.nodes[0].event_timestamp #=> Time
5403
+ # resp.nodes[0].id #=> String
5404
+ # resp.nodes[0].name #=> String
5405
+ # resp.nodes[0].source_identifier #=> String
5406
+ # resp.nodes[0].type_name #=> String
5407
+ # resp.nodes[0].type_revision #=> String
5408
+ # resp.nodes[0].updated_at #=> Time
5409
+ # resp.nodes[0].updated_by #=> String
5410
+ #
5411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListLineageNodeHistory AWS API Documentation
5412
+ #
5413
+ # @overload list_lineage_node_history(params = {})
5414
+ # @param [Hash] params ({})
5415
+ def list_lineage_node_history(params = {}, options = {})
5416
+ req = build_request(:list_lineage_node_history, params)
5417
+ req.send_request(options)
5418
+ end
5419
+
5255
5420
  # Lists all metadata generation runs.
5256
5421
  #
5257
5422
  # @option params [required, String] :domain_identifier
@@ -6031,6 +6196,41 @@ module Aws::DataZone
6031
6196
  req.send_request(options)
6032
6197
  end
6033
6198
 
6199
+ # Posts a data lineage event.
6200
+ #
6201
+ # @option params [String] :client_token
6202
+ # A unique, case-sensitive identifier that is provided to ensure the
6203
+ # idempotency of the request.
6204
+ #
6205
+ # **A suitable default value is auto-generated.** You should normally
6206
+ # not need to pass this option.**
6207
+ #
6208
+ # @option params [required, String] :domain_identifier
6209
+ # The ID of the domain where you want to post a data lineage event.
6210
+ #
6211
+ # @option params [required, String, StringIO, File] :event
6212
+ # The data lineage event that you want to post. Only open-lineage run
6213
+ # event are supported as events.
6214
+ #
6215
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6216
+ #
6217
+ # @example Request syntax with placeholder values
6218
+ #
6219
+ # resp = client.post_lineage_event({
6220
+ # client_token: "ClientToken",
6221
+ # domain_identifier: "DomainId", # required
6222
+ # event: "data", # required
6223
+ # })
6224
+ #
6225
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostLineageEvent AWS API Documentation
6226
+ #
6227
+ # @overload post_lineage_event(params = {})
6228
+ # @param [Hash] params ({})
6229
+ def post_lineage_event(params = {}, options = {})
6230
+ req = build_request(:post_lineage_event, params)
6231
+ req.send_request(options)
6232
+ end
6233
+
6034
6234
  # Posts time series data points to Amazon DataZone for the specified
6035
6235
  # asset.
6036
6236
  #
@@ -6808,7 +7008,7 @@ module Aws::DataZone
6808
7008
  # attribute: "Attribute", # required
6809
7009
  # },
6810
7010
  # ],
6811
- # search_scope: "ASSET_TYPE", # required, accepts ASSET_TYPE, FORM_TYPE
7011
+ # search_scope: "ASSET_TYPE", # required, accepts ASSET_TYPE, FORM_TYPE, LINEAGE_NODE_TYPE
6812
7012
  # search_text: "SearchText",
6813
7013
  # sort: {
6814
7014
  # attribute: "Attribute", # required
@@ -6848,6 +7048,18 @@ module Aws::DataZone
6848
7048
  # resp.items[0].form_type_item.owning_project_id #=> String
6849
7049
  # resp.items[0].form_type_item.revision #=> String
6850
7050
  # resp.items[0].form_type_item.status #=> String, one of "ENABLED", "DISABLED"
7051
+ # resp.items[0].lineage_node_type_item.created_at #=> Time
7052
+ # resp.items[0].lineage_node_type_item.created_by #=> String
7053
+ # resp.items[0].lineage_node_type_item.description #=> String
7054
+ # resp.items[0].lineage_node_type_item.domain_id #=> String
7055
+ # resp.items[0].lineage_node_type_item.forms_output #=> Hash
7056
+ # resp.items[0].lineage_node_type_item.forms_output["FormName"].required #=> Boolean
7057
+ # resp.items[0].lineage_node_type_item.forms_output["FormName"].type_name #=> String
7058
+ # resp.items[0].lineage_node_type_item.forms_output["FormName"].type_revision #=> String
7059
+ # resp.items[0].lineage_node_type_item.name #=> String
7060
+ # resp.items[0].lineage_node_type_item.revision #=> String
7061
+ # resp.items[0].lineage_node_type_item.updated_at #=> Time
7062
+ # resp.items[0].lineage_node_type_item.updated_by #=> String
6851
7063
  # resp.next_token #=> String
6852
7064
  # resp.total_match_count #=> Integer
6853
7065
  #
@@ -8240,7 +8452,7 @@ module Aws::DataZone
8240
8452
  params: params,
8241
8453
  config: config)
8242
8454
  context[:gem_name] = 'aws-sdk-datazone'
8243
- context[:gem_version] = '1.11.0'
8455
+ context[:gem_version] = '1.12.0'
8244
8456
  Seahorse::Client::Request.new(handlers, context)
8245
8457
  end
8246
8458
 
@@ -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
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datazone/customizations'
52
52
  # @!group service
53
53
  module Aws::DataZone
54
54
 
55
- GEM_VERSION = '1.11.0'
55
+ GEM_VERSION = '1.12.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -1324,6 +1324,32 @@ module Aws
1324
1324
  ) -> _GetIamPortalLoginUrlResponseSuccess
1325
1325
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIamPortalLoginUrlResponseSuccess
1326
1326
 
1327
+ interface _GetLineageNodeResponseSuccess
1328
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLineageNodeOutput]
1329
+ def created_at: () -> ::Time
1330
+ def created_by: () -> ::String
1331
+ def description: () -> ::String
1332
+ def domain_id: () -> ::String
1333
+ def downstream_nodes: () -> ::Array[Types::LineageNodeReference]
1334
+ def event_timestamp: () -> ::Time
1335
+ def forms_output: () -> ::Array[Types::FormOutput]
1336
+ def id: () -> ::String
1337
+ def name: () -> ::String
1338
+ def source_identifier: () -> ::String
1339
+ def type_name: () -> ::String
1340
+ def type_revision: () -> ::String
1341
+ def updated_at: () -> ::Time
1342
+ def updated_by: () -> ::String
1343
+ def upstream_nodes: () -> ::Array[Types::LineageNodeReference]
1344
+ end
1345
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_lineage_node-instance_method
1346
+ def get_lineage_node: (
1347
+ domain_identifier: ::String,
1348
+ ?event_timestamp: ::Time,
1349
+ identifier: ::String
1350
+ ) -> _GetLineageNodeResponseSuccess
1351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLineageNodeResponseSuccess
1352
+
1327
1353
  interface _GetListingResponseSuccess
1328
1354
  include ::Seahorse::Client::_ResponseSuccess[Types::GetListingOutput]
1329
1355
  def created_at: () -> ::Time
@@ -1664,6 +1690,24 @@ module Aws
1664
1690
  ) -> _ListEnvironmentsResponseSuccess
1665
1691
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
1666
1692
 
1693
+ interface _ListLineageNodeHistoryResponseSuccess
1694
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLineageNodeHistoryOutput]
1695
+ def next_token: () -> ::String
1696
+ def nodes: () -> ::Array[Types::LineageNodeSummary]
1697
+ end
1698
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_lineage_node_history-instance_method
1699
+ def list_lineage_node_history: (
1700
+ ?direction: ("UPSTREAM" | "DOWNSTREAM"),
1701
+ domain_identifier: ::String,
1702
+ ?event_timestamp_gte: ::Time,
1703
+ ?event_timestamp_lte: ::Time,
1704
+ identifier: ::String,
1705
+ ?max_results: ::Integer,
1706
+ ?next_token: ::String,
1707
+ ?sort_order: ("ASCENDING" | "DESCENDING")
1708
+ ) -> _ListLineageNodeHistoryResponseSuccess
1709
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLineageNodeHistoryResponseSuccess
1710
+
1667
1711
  interface _ListMetadataGenerationRunsResponseSuccess
1668
1712
  include ::Seahorse::Client::_ResponseSuccess[Types::ListMetadataGenerationRunsOutput]
1669
1713
  def items: () -> ::Array[Types::MetadataGenerationRunItem]
@@ -1831,6 +1875,17 @@ module Aws
1831
1875
  ) -> _ListTimeSeriesDataPointsResponseSuccess
1832
1876
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTimeSeriesDataPointsResponseSuccess
1833
1877
 
1878
+ interface _PostLineageEventResponseSuccess
1879
+ include ::Seahorse::Client::_ResponseSuccess[Types::PostLineageEventOutput]
1880
+ end
1881
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#post_lineage_event-instance_method
1882
+ def post_lineage_event: (
1883
+ ?client_token: ::String,
1884
+ domain_identifier: ::String,
1885
+ event: ::String
1886
+ ) -> _PostLineageEventResponseSuccess
1887
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PostLineageEventResponseSuccess
1888
+
1834
1889
  interface _PostTimeSeriesDataPointsResponseSuccess
1835
1890
  include ::Seahorse::Client::_ResponseSuccess[Types::PostTimeSeriesDataPointsOutput]
1836
1891
  def domain_id: () -> ::String
@@ -2068,7 +2123,7 @@ module Aws
2068
2123
  attribute: ::String
2069
2124
  },
2070
2125
  ],
2071
- search_scope: ("ASSET_TYPE" | "FORM_TYPE"),
2126
+ search_scope: ("ASSET_TYPE" | "FORM_TYPE" | "LINEAGE_NODE_TYPE"),
2072
2127
  ?search_text: ::String,
2073
2128
  ?sort: {
2074
2129
  attribute: ::String,
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.11.0
4
+ version: 1.12.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-06-25 00:00:00.000000000 Z
11
+ date: 2024-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core