aws-sdk-datazone 1.68.0 → 1.69.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: b505049e55576d82d4300eecb71453bc62673809150d40b24c8b8981f3113c19
4
- data.tar.gz: 216cb3882e3f46a6ae7fb131148ee81824033f6c4fa651179d4beaf27223893c
3
+ metadata.gz: 4d1cd7940548c862f8419c585ba084bb9122f8880ac8f2711011e99ad646a6d6
4
+ data.tar.gz: 6b9cef0cff0ce4f1f0f273b2f9d272577dd7e4845658c8bd2a1f9139e07699ee
5
5
  SHA512:
6
- metadata.gz: e4f25982100db3a39d46b25eef7df7e909a2f0bcad889143ceb94f4ca90fc05a0703c804c243d7481ccab125fc320843ec4f5a6eceaddc9f64a5e9b9110865e4
7
- data.tar.gz: b26f17e8c8bc3bd75583da9d46ce0bef5b29be5cee2750d4dd12589f66d74e27b59afa8d6a3b506f3d91224015e01c18f35c0798e25debe66f3a57b206128472
6
+ metadata.gz: 71cdfca68a845ff6441c059364291b19fa5254638e662dff5b9237628a61acc0d872f6696b64b6e770c307b7f60af9fc18343c0115ce0cb43de294c42c984471
7
+ data.tar.gz: 0ac928400b572dd80af4aeeadeb95916e15fa59d2cb0c2eb8973a1b4c0999e21758b1b440ab660fed07160100480d7b20ca1843f8ac1cc2b45e5a97e07909c63
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2026-03-03)
5
+ ------------------
6
+
7
+ * Feature - Adding QueryGraph operation to DataZone SDK
8
+
4
9
  1.68.0 (2026-02-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.69.0
@@ -11233,6 +11233,117 @@ module Aws::DataZone
11233
11233
  req.send_request(options)
11234
11234
  end
11235
11235
 
11236
+ # Queries entities in the graph store.
11237
+ #
11238
+ # @option params [required, String] :domain_identifier
11239
+ # The identifier of the Amazon DataZone domain.
11240
+ #
11241
+ # @option params [required, Array<Types::MatchClause>] :match
11242
+ # List of query match clauses.
11243
+ #
11244
+ # @option params [Integer] :max_results
11245
+ # The maximum number of entities to return in a single call to
11246
+ # `QueryGraph`. When the number of entities to be listed is greater than
11247
+ # the value of `MaxResults`, the response contains a `NextToken` value
11248
+ # that you can use in a subsequent call to `QueryGraph` to list the next
11249
+ # set of entities.
11250
+ #
11251
+ # @option params [String] :next_token
11252
+ # When the number of entities is greater than the default value for the
11253
+ # `MaxResults` parameter, or if you explicitly specify a value for
11254
+ # `MaxResults` that is less than the number of entities, the response
11255
+ # includes a pagination token named `NextToken`. You can specify this
11256
+ # `NextToken` value in a subsequent call to `QueryGraph` to list the
11257
+ # next set of entities.
11258
+ #
11259
+ # @option params [Types::AdditionalAttributes] :additional_attributes
11260
+ # Additional details on the queried entity that can be requested in the
11261
+ # response.
11262
+ #
11263
+ # @return [Types::QueryGraphOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11264
+ #
11265
+ # * {Types::QueryGraphOutput#items #items} => Array&lt;Types::ResultItem&gt;
11266
+ # * {Types::QueryGraphOutput#next_token #next_token} => String
11267
+ #
11268
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11269
+ #
11270
+ # @example Request syntax with placeholder values
11271
+ #
11272
+ # resp = client.query_graph({
11273
+ # domain_identifier: "DomainId", # required
11274
+ # match: [ # required
11275
+ # {
11276
+ # relation_pattern: {
11277
+ # relation_type: "LINEAGE", # required, accepts LINEAGE
11278
+ # relation_direction: "IN", # required, accepts IN, OUT
11279
+ # max_path_length: 1,
11280
+ # },
11281
+ # entity_pattern: {
11282
+ # entity_type: "LINEAGE_NODE", # required, accepts LINEAGE_NODE
11283
+ # identifier: "EntityPatternIdentifierString", # required
11284
+ # filters: {
11285
+ # filter: {
11286
+ # attribute: "Attribute", # required
11287
+ # value: "FilterValueString",
11288
+ # int_value: 1,
11289
+ # operator: "EQ", # accepts EQ, LE, LT, GE, GT, TEXT_SEARCH
11290
+ # },
11291
+ # and: [
11292
+ # {
11293
+ # # recursive FilterClause
11294
+ # },
11295
+ # ],
11296
+ # or: [
11297
+ # {
11298
+ # # recursive FilterClause
11299
+ # },
11300
+ # ],
11301
+ # },
11302
+ # },
11303
+ # },
11304
+ # ],
11305
+ # max_results: 1,
11306
+ # next_token: "PaginationToken",
11307
+ # additional_attributes: {
11308
+ # form_names: ["FormName"],
11309
+ # },
11310
+ # })
11311
+ #
11312
+ # @example Response structure
11313
+ #
11314
+ # resp.items #=> Array
11315
+ # resp.items[0].lineage_node.domain_id #=> String
11316
+ # resp.items[0].lineage_node.name #=> String
11317
+ # resp.items[0].lineage_node.description #=> String
11318
+ # resp.items[0].lineage_node.created_at #=> Time
11319
+ # resp.items[0].lineage_node.created_by #=> String
11320
+ # resp.items[0].lineage_node.updated_at #=> Time
11321
+ # resp.items[0].lineage_node.updated_by #=> String
11322
+ # resp.items[0].lineage_node.id #=> String
11323
+ # resp.items[0].lineage_node.type_name #=> String
11324
+ # resp.items[0].lineage_node.type_revision #=> String
11325
+ # resp.items[0].lineage_node.source_identifier #=> String
11326
+ # resp.items[0].lineage_node.event_timestamp #=> Time
11327
+ # resp.items[0].lineage_node.forms_output #=> Array
11328
+ # resp.items[0].lineage_node.forms_output[0].form_name #=> String
11329
+ # resp.items[0].lineage_node.forms_output[0].type_name #=> String
11330
+ # resp.items[0].lineage_node.forms_output[0].type_revision #=> String
11331
+ # resp.items[0].lineage_node.forms_output[0].content #=> String
11332
+ # resp.items[0].lineage_node.upstream_lineage_node_ids #=> Array
11333
+ # resp.items[0].lineage_node.upstream_lineage_node_ids[0] #=> String
11334
+ # resp.items[0].lineage_node.downstream_lineage_node_ids #=> Array
11335
+ # resp.items[0].lineage_node.downstream_lineage_node_ids[0] #=> String
11336
+ # resp.next_token #=> String
11337
+ #
11338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/QueryGraph AWS API Documentation
11339
+ #
11340
+ # @overload query_graph(params = {})
11341
+ # @param [Hash] params ({})
11342
+ def query_graph(params = {}, options = {})
11343
+ req = build_request(:query_graph, params)
11344
+ req.send_request(options)
11345
+ end
11346
+
11236
11347
  # Rejects automatically generated business-friendly metadata for your
11237
11348
  # Amazon DataZone assets.
11238
11349
  #
@@ -14916,7 +15027,7 @@ module Aws::DataZone
14916
15027
  tracer: tracer
14917
15028
  )
14918
15029
  context[:gem_name] = 'aws-sdk-datazone'
14919
- context[:gem_version] = '1.68.0'
15030
+ context[:gem_version] = '1.69.0'
14920
15031
  Seahorse::Client::Request.new(handlers, context)
14921
15032
  end
14922
15033
 
@@ -42,6 +42,7 @@ module Aws::DataZone
42
42
  AddPolicyGrantInput = Shapes::StructureShape.new(name: 'AddPolicyGrantInput')
43
43
  AddPolicyGrantOutput = Shapes::StructureShape.new(name: 'AddPolicyGrantOutput')
44
44
  AddToProjectMemberPoolPolicyGrantDetail = Shapes::StructureShape.new(name: 'AddToProjectMemberPoolPolicyGrantDetail')
45
+ AdditionalAttributes = Shapes::StructureShape.new(name: 'AdditionalAttributes')
45
46
  AggregationAttributeDisplayValue = Shapes::StringShape.new(name: 'AggregationAttributeDisplayValue')
46
47
  AggregationAttributeValue = Shapes::StringShape.new(name: 'AggregationAttributeValue')
47
48
  AggregationDisplayValue = Shapes::StringShape.new(name: 'AggregationDisplayValue')
@@ -388,6 +389,8 @@ module Aws::DataZone
388
389
  EntityId = Shapes::StringShape.new(name: 'EntityId')
389
390
  EntityIdentifier = Shapes::StringShape.new(name: 'EntityIdentifier')
390
391
  EntityOwners = Shapes::ListShape.new(name: 'EntityOwners')
392
+ EntityPattern = Shapes::StructureShape.new(name: 'EntityPattern')
393
+ EntityPatternIdentifierString = Shapes::StringShape.new(name: 'EntityPatternIdentifierString')
391
394
  EntityType = Shapes::StringShape.new(name: 'EntityType')
392
395
  EnvironmentActionId = Shapes::StringShape.new(name: 'EnvironmentActionId')
393
396
  EnvironmentActionList = Shapes::ListShape.new(name: 'EnvironmentActionList')
@@ -452,6 +455,7 @@ module Aws::DataZone
452
455
  FormInputContentString = Shapes::StringShape.new(name: 'FormInputContentString')
453
456
  FormInputList = Shapes::ListShape.new(name: 'FormInputList')
454
457
  FormName = Shapes::StringShape.new(name: 'FormName')
458
+ FormNameList = Shapes::ListShape.new(name: 'FormNameList')
455
459
  FormOutput = Shapes::StructureShape.new(name: 'FormOutput')
456
460
  FormOutputList = Shapes::ListShape.new(name: 'FormOutputList')
457
461
  FormTypeData = Shapes::StructureShape.new(name: 'FormTypeData')
@@ -584,6 +588,7 @@ module Aws::DataZone
584
588
  GrantIdentifier = Shapes::StringShape.new(name: 'GrantIdentifier')
585
589
  GrantedEntity = Shapes::UnionShape.new(name: 'GrantedEntity')
586
590
  GrantedEntityInput = Shapes::UnionShape.new(name: 'GrantedEntityInput')
591
+ GraphEntityType = Shapes::StringShape.new(name: 'GraphEntityType')
587
592
  GreaterThanExpression = Shapes::StructureShape.new(name: 'GreaterThanExpression')
588
593
  GreaterThanOrEqualToExpression = Shapes::StructureShape.new(name: 'GreaterThanOrEqualToExpression')
589
594
  GroupDetails = Shapes::StructureShape.new(name: 'GroupDetails')
@@ -640,6 +645,8 @@ module Aws::DataZone
640
645
  LineageInfo = Shapes::StructureShape.new(name: 'LineageInfo')
641
646
  LineageNodeId = Shapes::StringShape.new(name: 'LineageNodeId')
642
647
  LineageNodeIdentifier = Shapes::StringShape.new(name: 'LineageNodeIdentifier')
648
+ LineageNodeIds = Shapes::ListShape.new(name: 'LineageNodeIds')
649
+ LineageNodeItem = Shapes::StructureShape.new(name: 'LineageNodeItem')
643
650
  LineageNodeReference = Shapes::StructureShape.new(name: 'LineageNodeReference')
644
651
  LineageNodeReferenceList = Shapes::ListShape.new(name: 'LineageNodeReferenceList')
645
652
  LineageNodeSummaries = Shapes::ListShape.new(name: 'LineageNodeSummaries')
@@ -733,6 +740,8 @@ module Aws::DataZone
733
740
  ManagedEndpointCredentials = Shapes::StructureShape.new(name: 'ManagedEndpointCredentials')
734
741
  ManagedEndpointCredentialsIdString = Shapes::StringShape.new(name: 'ManagedEndpointCredentialsIdString')
735
742
  ManagedPolicyType = Shapes::StringShape.new(name: 'ManagedPolicyType')
743
+ MatchClause = Shapes::UnionShape.new(name: 'MatchClause')
744
+ MatchClauses = Shapes::ListShape.new(name: 'MatchClauses')
736
745
  MatchCriteria = Shapes::ListShape.new(name: 'MatchCriteria')
737
746
  MatchOffset = Shapes::StructureShape.new(name: 'MatchOffset')
738
747
  MatchOffsets = Shapes::ListShape.new(name: 'MatchOffsets')
@@ -843,6 +852,8 @@ module Aws::DataZone
843
852
  PutDataExportConfigurationOutput = Shapes::StructureShape.new(name: 'PutDataExportConfigurationOutput')
844
853
  PutEnvironmentBlueprintConfigurationInput = Shapes::StructureShape.new(name: 'PutEnvironmentBlueprintConfigurationInput')
845
854
  PutEnvironmentBlueprintConfigurationOutput = Shapes::StructureShape.new(name: 'PutEnvironmentBlueprintConfigurationOutput')
855
+ QueryGraphInput = Shapes::StructureShape.new(name: 'QueryGraphInput')
856
+ QueryGraphOutput = Shapes::StructureShape.new(name: 'QueryGraphOutput')
846
857
  RecommendationConfiguration = Shapes::StructureShape.new(name: 'RecommendationConfiguration')
847
858
  RedshiftClusterStorage = Shapes::StructureShape.new(name: 'RedshiftClusterStorage')
848
859
  RedshiftClusterStorageClusterNameString = Shapes::StringShape.new(name: 'RedshiftClusterStorageClusterNameString')
@@ -886,6 +897,10 @@ module Aws::DataZone
886
897
  RejectSubscriptionRequestOutput = Shapes::StructureShape.new(name: 'RejectSubscriptionRequestOutput')
887
898
  RejectSubscriptionRequestOutputSubscribedListingsList = Shapes::ListShape.new(name: 'RejectSubscriptionRequestOutputSubscribedListingsList')
888
899
  RejectSubscriptionRequestOutputSubscribedPrincipalsList = Shapes::ListShape.new(name: 'RejectSubscriptionRequestOutputSubscribedPrincipalsList')
900
+ RelationDirection = Shapes::StringShape.new(name: 'RelationDirection')
901
+ RelationPattern = Shapes::StructureShape.new(name: 'RelationPattern')
902
+ RelationPatternMaxPathLengthInteger = Shapes::IntegerShape.new(name: 'RelationPatternMaxPathLengthInteger')
903
+ RelationType = Shapes::StringShape.new(name: 'RelationType')
889
904
  RelationalFilterConfiguration = Shapes::StructureShape.new(name: 'RelationalFilterConfiguration')
890
905
  RelationalFilterConfigurationDatabaseNameString = Shapes::StringShape.new(name: 'RelationalFilterConfigurationDatabaseNameString')
891
906
  RelationalFilterConfigurationSchemaNameString = Shapes::StringShape.new(name: 'RelationalFilterConfigurationSchemaNameString')
@@ -904,6 +919,8 @@ module Aws::DataZone
904
919
  ResourceTagParameter = Shapes::StructureShape.new(name: 'ResourceTagParameter')
905
920
  ResourceTagSource = Shapes::StringShape.new(name: 'ResourceTagSource')
906
921
  ResourceTags = Shapes::ListShape.new(name: 'ResourceTags')
922
+ ResultItem = Shapes::UnionShape.new(name: 'ResultItem')
923
+ ResultItemList = Shapes::ListShape.new(name: 'ResultItemList')
907
924
  Revision = Shapes::StringShape.new(name: 'Revision')
908
925
  RevisionInput = Shapes::StringShape.new(name: 'RevisionInput')
909
926
  RevokeSubscriptionInput = Shapes::StructureShape.new(name: 'RevokeSubscriptionInput')
@@ -1297,6 +1314,9 @@ module Aws::DataZone
1297
1314
  AddToProjectMemberPoolPolicyGrantDetail.add_member(:include_child_domain_units, Shapes::ShapeRef.new(shape: Boolean, location_name: "includeChildDomainUnits"))
1298
1315
  AddToProjectMemberPoolPolicyGrantDetail.struct_class = Types::AddToProjectMemberPoolPolicyGrantDetail
1299
1316
 
1317
+ AdditionalAttributes.add_member(:form_names, Shapes::ShapeRef.new(shape: FormNameList, location_name: "formNames"))
1318
+ AdditionalAttributes.struct_class = Types::AdditionalAttributes
1319
+
1300
1320
  AggregationList.member = Shapes::ShapeRef.new(shape: AggregationListItem)
1301
1321
 
1302
1322
  AggregationListItem.add_member(:attribute, Shapes::ShapeRef.new(shape: Attribute, required: true, location_name: "attribute"))
@@ -2875,6 +2895,11 @@ module Aws::DataZone
2875
2895
 
2876
2896
  EntityOwners.member = Shapes::ShapeRef.new(shape: OwnerPropertiesOutput)
2877
2897
 
2898
+ EntityPattern.add_member(:entity_type, Shapes::ShapeRef.new(shape: GraphEntityType, required: true, location_name: "entityType"))
2899
+ EntityPattern.add_member(:identifier, Shapes::ShapeRef.new(shape: EntityPatternIdentifierString, required: true, location_name: "identifier"))
2900
+ EntityPattern.add_member(:filters, Shapes::ShapeRef.new(shape: FilterClause, location_name: "filters"))
2901
+ EntityPattern.struct_class = Types::EntityPattern
2902
+
2878
2903
  EnvironmentActionList.member = Shapes::ShapeRef.new(shape: ConfigurableEnvironmentAction)
2879
2904
 
2880
2905
  EnvironmentActionSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
@@ -3062,6 +3087,8 @@ module Aws::DataZone
3062
3087
 
3063
3088
  FormInputList.member = Shapes::ShapeRef.new(shape: FormInput)
3064
3089
 
3090
+ FormNameList.member = Shapes::ShapeRef.new(shape: FormName)
3091
+
3065
3092
  FormOutput.add_member(:form_name, Shapes::ShapeRef.new(shape: FormName, required: true, location_name: "formName"))
3066
3093
  FormOutput.add_member(:type_name, Shapes::ShapeRef.new(shape: FormTypeName, location_name: "typeName"))
3067
3094
  FormOutput.add_member(:type_revision, Shapes::ShapeRef.new(shape: Revision, location_name: "typeRevision"))
@@ -3997,6 +4024,25 @@ module Aws::DataZone
3997
4024
  LineageInfo.add_member(:error_message, Shapes::ShapeRef.new(shape: LineageEventErrorMessage, location_name: "errorMessage"))
3998
4025
  LineageInfo.struct_class = Types::LineageInfo
3999
4026
 
4027
+ LineageNodeIds.member = Shapes::ShapeRef.new(shape: LineageNodeId)
4028
+
4029
+ LineageNodeItem.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
4030
+ LineageNodeItem.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
4031
+ LineageNodeItem.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
4032
+ LineageNodeItem.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
4033
+ LineageNodeItem.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
4034
+ LineageNodeItem.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
4035
+ LineageNodeItem.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
4036
+ LineageNodeItem.add_member(:id, Shapes::ShapeRef.new(shape: LineageNodeId, required: true, location_name: "id"))
4037
+ LineageNodeItem.add_member(:type_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "typeName"))
4038
+ LineageNodeItem.add_member(:type_revision, Shapes::ShapeRef.new(shape: Revision, location_name: "typeRevision"))
4039
+ LineageNodeItem.add_member(:source_identifier, Shapes::ShapeRef.new(shape: String, location_name: "sourceIdentifier"))
4040
+ LineageNodeItem.add_member(:event_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "eventTimestamp"))
4041
+ LineageNodeItem.add_member(:forms_output, Shapes::ShapeRef.new(shape: FormOutputList, location_name: "formsOutput"))
4042
+ LineageNodeItem.add_member(:upstream_lineage_node_ids, Shapes::ShapeRef.new(shape: LineageNodeIds, location_name: "upstreamLineageNodeIds"))
4043
+ LineageNodeItem.add_member(:downstream_lineage_node_ids, Shapes::ShapeRef.new(shape: LineageNodeIds, location_name: "downstreamLineageNodeIds"))
4044
+ LineageNodeItem.struct_class = Types::LineageNodeItem
4045
+
4000
4046
  LineageNodeReference.add_member(:id, Shapes::ShapeRef.new(shape: LineageNodeId, location_name: "id"))
4001
4047
  LineageNodeReference.add_member(:event_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "eventTimestamp"))
4002
4048
  LineageNodeReference.struct_class = Types::LineageNodeReference
@@ -4494,6 +4540,16 @@ module Aws::DataZone
4494
4540
  ManagedEndpointCredentials.add_member(:token, Shapes::ShapeRef.new(shape: String, location_name: "token"))
4495
4541
  ManagedEndpointCredentials.struct_class = Types::ManagedEndpointCredentials
4496
4542
 
4543
+ MatchClause.add_member(:relation_pattern, Shapes::ShapeRef.new(shape: RelationPattern, location_name: "relationPattern"))
4544
+ MatchClause.add_member(:entity_pattern, Shapes::ShapeRef.new(shape: EntityPattern, location_name: "entityPattern"))
4545
+ MatchClause.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
4546
+ MatchClause.add_member_subclass(:relation_pattern, Types::MatchClause::RelationPattern)
4547
+ MatchClause.add_member_subclass(:entity_pattern, Types::MatchClause::EntityPattern)
4548
+ MatchClause.add_member_subclass(:unknown, Types::MatchClause::Unknown)
4549
+ MatchClause.struct_class = Types::MatchClause
4550
+
4551
+ MatchClauses.member = Shapes::ShapeRef.new(shape: MatchClause)
4552
+
4497
4553
  MatchCriteria.member = Shapes::ShapeRef.new(shape: String)
4498
4554
 
4499
4555
  MatchOffset.add_member(:start_offset, Shapes::ShapeRef.new(shape: Integer, location_name: "startOffset"))
@@ -4894,6 +4950,17 @@ module Aws::DataZone
4894
4950
  PutEnvironmentBlueprintConfigurationOutput.add_member(:provisioning_configurations, Shapes::ShapeRef.new(shape: ProvisioningConfigurationList, location_name: "provisioningConfigurations"))
4895
4951
  PutEnvironmentBlueprintConfigurationOutput.struct_class = Types::PutEnvironmentBlueprintConfigurationOutput
4896
4952
 
4953
+ QueryGraphInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
4954
+ QueryGraphInput.add_member(:match, Shapes::ShapeRef.new(shape: MatchClauses, required: true, location_name: "match"))
4955
+ QueryGraphInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
4956
+ QueryGraphInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
4957
+ QueryGraphInput.add_member(:additional_attributes, Shapes::ShapeRef.new(shape: AdditionalAttributes, location_name: "additionalAttributes"))
4958
+ QueryGraphInput.struct_class = Types::QueryGraphInput
4959
+
4960
+ QueryGraphOutput.add_member(:items, Shapes::ShapeRef.new(shape: ResultItemList, location_name: "items"))
4961
+ QueryGraphOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
4962
+ QueryGraphOutput.struct_class = Types::QueryGraphOutput
4963
+
4897
4964
  RecommendationConfiguration.add_member(:enable_business_name_generation, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableBusinessNameGeneration"))
4898
4965
  RecommendationConfiguration.struct_class = Types::RecommendationConfiguration
4899
4966
 
@@ -5045,6 +5112,11 @@ module Aws::DataZone
5045
5112
 
5046
5113
  RejectSubscriptionRequestOutputSubscribedPrincipalsList.member = Shapes::ShapeRef.new(shape: SubscribedPrincipal)
5047
5114
 
5115
+ RelationPattern.add_member(:relation_type, Shapes::ShapeRef.new(shape: RelationType, required: true, location_name: "relationType"))
5116
+ RelationPattern.add_member(:relation_direction, Shapes::ShapeRef.new(shape: RelationDirection, required: true, location_name: "relationDirection"))
5117
+ RelationPattern.add_member(:max_path_length, Shapes::ShapeRef.new(shape: RelationPatternMaxPathLengthInteger, location_name: "maxPathLength"))
5118
+ RelationPattern.struct_class = Types::RelationPattern
5119
+
5048
5120
  RelationalFilterConfiguration.add_member(:database_name, Shapes::ShapeRef.new(shape: RelationalFilterConfigurationDatabaseNameString, required: true, location_name: "databaseName"))
5049
5121
  RelationalFilterConfiguration.add_member(:schema_name, Shapes::ShapeRef.new(shape: RelationalFilterConfigurationSchemaNameString, location_name: "schemaName"))
5050
5122
  RelationalFilterConfiguration.add_member(:filter_expressions, Shapes::ShapeRef.new(shape: FilterExpressions, location_name: "filterExpressions"))
@@ -5097,6 +5169,14 @@ module Aws::DataZone
5097
5169
 
5098
5170
  ResourceTags.member = Shapes::ShapeRef.new(shape: ResourceTag)
5099
5171
 
5172
+ ResultItem.add_member(:lineage_node, Shapes::ShapeRef.new(shape: LineageNodeItem, location_name: "lineageNode"))
5173
+ ResultItem.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
5174
+ ResultItem.add_member_subclass(:lineage_node, Types::ResultItem::LineageNode)
5175
+ ResultItem.add_member_subclass(:unknown, Types::ResultItem::Unknown)
5176
+ ResultItem.struct_class = Types::ResultItem
5177
+
5178
+ ResultItemList.member = Shapes::ShapeRef.new(shape: ResultItem)
5179
+
5100
5180
  RevokeSubscriptionInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
5101
5181
  RevokeSubscriptionInput.add_member(:identifier, Shapes::ShapeRef.new(shape: SubscriptionId, required: true, location: "uri", location_name: "identifier"))
5102
5182
  RevokeSubscriptionInput.add_member(:retain_permissions, Shapes::ShapeRef.new(shape: Boolean, location_name: "retainPermissions"))
@@ -8509,6 +8589,25 @@ module Aws::DataZone
8509
8589
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
8510
8590
  end)
8511
8591
 
8592
+ api.add_operation(:query_graph, Seahorse::Model::Operation.new.tap do |o|
8593
+ o.name = "QueryGraph"
8594
+ o.http_method = "POST"
8595
+ o.http_request_uri = "/v2/domains/{domainIdentifier}/graph/query"
8596
+ o.input = Shapes::ShapeRef.new(shape: QueryGraphInput)
8597
+ o.output = Shapes::ShapeRef.new(shape: QueryGraphOutput)
8598
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
8599
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
8600
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
8601
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
8602
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
8603
+ o[:pager] = Aws::Pager.new(
8604
+ limit_key: "max_results",
8605
+ tokens: {
8606
+ "next_token" => "next_token"
8607
+ }
8608
+ )
8609
+ end)
8610
+
8512
8611
  api.add_operation(:reject_predictions, Seahorse::Model::Operation.new.tap do |o|
8513
8612
  o.name = "RejectPredictions"
8514
8613
  o.http_method = "PUT"
@@ -513,6 +513,22 @@ module Aws::DataZone
513
513
  include Aws::Structure
514
514
  end
515
515
 
516
+ # Additional details on the queried entity that can be requested in the
517
+ # response.
518
+ #
519
+ # @!attribute [rw] form_names
520
+ # Names of forms on the query entity that can be requested in the
521
+ # response.
522
+ # @return [Array<String>]
523
+ #
524
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AdditionalAttributes AWS API Documentation
525
+ #
526
+ class AdditionalAttributes < Struct.new(
527
+ :form_names)
528
+ SENSITIVE = []
529
+ include Aws::Structure
530
+ end
531
+
516
532
  # An aggregation list item.
517
533
  #
518
534
  # @!attribute [rw] attribute
@@ -7536,6 +7552,32 @@ module Aws::DataZone
7536
7552
  include Aws::Structure
7537
7553
  end
7538
7554
 
7555
+ # The pattern describing the entities to be matched during the graph
7556
+ # query.
7557
+ #
7558
+ # @!attribute [rw] entity_type
7559
+ # The type of entity to be matched during the graph query.
7560
+ # @return [String]
7561
+ #
7562
+ # @!attribute [rw] identifier
7563
+ # The identifier of the root entity to start traversal from during the
7564
+ # graph query.
7565
+ # @return [String]
7566
+ #
7567
+ # @!attribute [rw] filters
7568
+ # A search filter clause in Amazon DataZone.
7569
+ # @return [Types::FilterClause]
7570
+ #
7571
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EntityPattern AWS API Documentation
7572
+ #
7573
+ class EntityPattern < Struct.new(
7574
+ :entity_type,
7575
+ :identifier,
7576
+ :filters)
7577
+ SENSITIVE = []
7578
+ include Aws::Structure
7579
+ end
7580
+
7539
7581
  # The details about the specified action configured for an environment.
7540
7582
  # For example, the details of the specified console links for an
7541
7583
  # analytics tool that is available in this environment.
@@ -12606,6 +12648,91 @@ module Aws::DataZone
12606
12648
  include Aws::Structure
12607
12649
  end
12608
12650
 
12651
+ # The summary and output forms of a LineageNode
12652
+ #
12653
+ # @!attribute [rw] domain_id
12654
+ # The ID of the domain of the data lineage node.
12655
+ # @return [String]
12656
+ #
12657
+ # @!attribute [rw] name
12658
+ # The name of the data lineage node.
12659
+ # @return [String]
12660
+ #
12661
+ # @!attribute [rw] description
12662
+ # The description of the data lineage node.
12663
+ # @return [String]
12664
+ #
12665
+ # @!attribute [rw] created_at
12666
+ # The timestamp at which the data lineage node was created.
12667
+ # @return [Time]
12668
+ #
12669
+ # @!attribute [rw] created_by
12670
+ # The user who created the data lineage node.
12671
+ # @return [String]
12672
+ #
12673
+ # @!attribute [rw] updated_at
12674
+ # The timestamp at which the data lineage node was updated.
12675
+ # @return [Time]
12676
+ #
12677
+ # @!attribute [rw] updated_by
12678
+ # The user who updated the data lineage node.
12679
+ # @return [String]
12680
+ #
12681
+ # @!attribute [rw] id
12682
+ # The ID of the data lineage node.
12683
+ # @return [String]
12684
+ #
12685
+ # @!attribute [rw] type_name
12686
+ # The name of the type of the data lineage node.
12687
+ # @return [String]
12688
+ #
12689
+ # @!attribute [rw] type_revision
12690
+ # The type of the revision of the data lineage node.
12691
+ # @return [String]
12692
+ #
12693
+ # @!attribute [rw] source_identifier
12694
+ # The alternate ID of the data lineage node.
12695
+ # @return [String]
12696
+ #
12697
+ # @!attribute [rw] event_timestamp
12698
+ # The event timestamp of the data lineage node.
12699
+ # @return [Time]
12700
+ #
12701
+ # @!attribute [rw] forms_output
12702
+ # The forms included in the additional attributes of a data lineage
12703
+ # node.
12704
+ # @return [Array<Types::FormOutput>]
12705
+ #
12706
+ # @!attribute [rw] upstream_lineage_node_ids
12707
+ # The IDs of the upstream data lineage nodes.
12708
+ # @return [Array<String>]
12709
+ #
12710
+ # @!attribute [rw] downstream_lineage_node_ids
12711
+ # The IDs of the downstream data lineage nodes.
12712
+ # @return [Array<String>]
12713
+ #
12714
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageNodeItem AWS API Documentation
12715
+ #
12716
+ class LineageNodeItem < Struct.new(
12717
+ :domain_id,
12718
+ :name,
12719
+ :description,
12720
+ :created_at,
12721
+ :created_by,
12722
+ :updated_at,
12723
+ :updated_by,
12724
+ :id,
12725
+ :type_name,
12726
+ :type_revision,
12727
+ :source_identifier,
12728
+ :event_timestamp,
12729
+ :forms_output,
12730
+ :upstream_lineage_node_ids,
12731
+ :downstream_lineage_node_ids)
12732
+ SENSITIVE = []
12733
+ include Aws::Structure
12734
+ end
12735
+
12609
12736
  # The reference details for the data lineage node.
12610
12737
  #
12611
12738
  # @!attribute [rw] id
@@ -15343,6 +15470,33 @@ module Aws::DataZone
15343
15470
  include Aws::Structure
15344
15471
  end
15345
15472
 
15473
+ # A clause to match a query pattern
15474
+ #
15475
+ # @note MatchClause is a union - when making an API calls you must set exactly one of the members.
15476
+ #
15477
+ # @!attribute [rw] relation_pattern
15478
+ # The pattern describing the query's relational traversal.
15479
+ # @return [Types::RelationPattern]
15480
+ #
15481
+ # @!attribute [rw] entity_pattern
15482
+ # The pattern describing the entities for the query to traverse.
15483
+ # @return [Types::EntityPattern]
15484
+ #
15485
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MatchClause AWS API Documentation
15486
+ #
15487
+ class MatchClause < Struct.new(
15488
+ :relation_pattern,
15489
+ :entity_pattern,
15490
+ :unknown)
15491
+ SENSITIVE = []
15492
+ include Aws::Structure
15493
+ include Aws::Structure::Union
15494
+
15495
+ class RelationPattern < MatchClause; end
15496
+ class EntityPattern < MatchClause; end
15497
+ class Unknown < MatchClause; end
15498
+ end
15499
+
15346
15500
  # The offset of a matched term.
15347
15501
  #
15348
15502
  # @!attribute [rw] start_offset
@@ -16896,6 +17050,70 @@ module Aws::DataZone
16896
17050
  include Aws::Structure
16897
17051
  end
16898
17052
 
17053
+ # @!attribute [rw] domain_identifier
17054
+ # The identifier of the Amazon DataZone domain.
17055
+ # @return [String]
17056
+ #
17057
+ # @!attribute [rw] match
17058
+ # List of query match clauses.
17059
+ # @return [Array<Types::MatchClause>]
17060
+ #
17061
+ # @!attribute [rw] max_results
17062
+ # The maximum number of entities to return in a single call to
17063
+ # `QueryGraph`. When the number of entities to be listed is greater
17064
+ # than the value of `MaxResults`, the response contains a `NextToken`
17065
+ # value that you can use in a subsequent call to `QueryGraph` to list
17066
+ # the next set of entities.
17067
+ # @return [Integer]
17068
+ #
17069
+ # @!attribute [rw] next_token
17070
+ # When the number of entities is greater than the default value for
17071
+ # the `MaxResults` parameter, or if you explicitly specify a value for
17072
+ # `MaxResults` that is less than the number of entities, the response
17073
+ # includes a pagination token named `NextToken`. You can specify this
17074
+ # `NextToken` value in a subsequent call to `QueryGraph` to list the
17075
+ # next set of entities.
17076
+ # @return [String]
17077
+ #
17078
+ # @!attribute [rw] additional_attributes
17079
+ # Additional details on the queried entity that can be requested in
17080
+ # the response.
17081
+ # @return [Types::AdditionalAttributes]
17082
+ #
17083
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/QueryGraphInput AWS API Documentation
17084
+ #
17085
+ class QueryGraphInput < Struct.new(
17086
+ :domain_identifier,
17087
+ :match,
17088
+ :max_results,
17089
+ :next_token,
17090
+ :additional_attributes)
17091
+ SENSITIVE = []
17092
+ include Aws::Structure
17093
+ end
17094
+
17095
+ # @!attribute [rw] items
17096
+ # The results of the `QueryGraph` action.
17097
+ # @return [Array<Types::ResultItem>]
17098
+ #
17099
+ # @!attribute [rw] next_token
17100
+ # When the number of entities is greater than the default value for
17101
+ # the `MaxResults` parameter, or if you explicitly specify a value for
17102
+ # `MaxResults` that is less than the number of entities, the response
17103
+ # includes a pagination token named `NextToken`. You can specify this
17104
+ # `NextToken` value in a subsequent call to `QueryGraph` to list the
17105
+ # next set of entities.
17106
+ # @return [String]
17107
+ #
17108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/QueryGraphOutput AWS API Documentation
17109
+ #
17110
+ class QueryGraphOutput < Struct.new(
17111
+ :items,
17112
+ :next_token)
17113
+ SENSITIVE = []
17114
+ include Aws::Structure
17115
+ end
17116
+
16899
17117
  # The recommendation to be updated as part of the `UpdateDataSource`
16900
17118
  # action.
16901
17119
  #
@@ -17556,6 +17774,30 @@ module Aws::DataZone
17556
17774
  include Aws::Structure
17557
17775
  end
17558
17776
 
17777
+ # The pattern describing the query's relational traversal.
17778
+ #
17779
+ # @!attribute [rw] relation_type
17780
+ # The type of relation to query.
17781
+ # @return [String]
17782
+ #
17783
+ # @!attribute [rw] relation_direction
17784
+ # The direction to query.
17785
+ # @return [String]
17786
+ #
17787
+ # @!attribute [rw] max_path_length
17788
+ # The number of hops to query.
17789
+ # @return [Integer]
17790
+ #
17791
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RelationPattern AWS API Documentation
17792
+ #
17793
+ class RelationPattern < Struct.new(
17794
+ :relation_type,
17795
+ :relation_direction,
17796
+ :max_path_length)
17797
+ SENSITIVE = []
17798
+ include Aws::Structure
17799
+ end
17800
+
17559
17801
  # The relational filter configuration for the data source.
17560
17802
  #
17561
17803
  # @!attribute [rw] database_name
@@ -17771,6 +18013,27 @@ module Aws::DataZone
17771
18013
  include Aws::Structure
17772
18014
  end
17773
18015
 
18016
+ # Resulting entity from the query.
18017
+ #
18018
+ # @note ResultItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResultItem corresponding to the set member.
18019
+ #
18020
+ # @!attribute [rw] lineage_node
18021
+ # Resulting data lineage node from the query.
18022
+ # @return [Types::LineageNodeItem]
18023
+ #
18024
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ResultItem AWS API Documentation
18025
+ #
18026
+ class ResultItem < Struct.new(
18027
+ :lineage_node,
18028
+ :unknown)
18029
+ SENSITIVE = []
18030
+ include Aws::Structure
18031
+ include Aws::Structure::Union
18032
+
18033
+ class LineageNode < ResultItem; end
18034
+ class Unknown < ResultItem; end
18035
+ end
18036
+
17774
18037
  # @!attribute [rw] domain_identifier
17775
18038
  # The identifier of the Amazon DataZone domain where you want to
17776
18039
  # revoke a subscription.
@@ -55,7 +55,7 @@ module Aws::DataZone
55
55
  autoload :EndpointProvider, 'aws-sdk-datazone/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-datazone/endpoints'
57
57
 
58
- GEM_VERSION = '1.68.0'
58
+ GEM_VERSION = '1.69.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -3327,6 +3327,49 @@ module Aws
3327
3327
  ) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
3328
3328
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
3329
3329
 
3330
+ interface _QueryGraphResponseSuccess
3331
+ include ::Seahorse::Client::_ResponseSuccess[Types::QueryGraphOutput]
3332
+ def items: () -> ::Array[Types::ResultItem]
3333
+ def next_token: () -> ::String
3334
+ end
3335
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#query_graph-instance_method
3336
+ def query_graph: (
3337
+ domain_identifier: ::String,
3338
+ match: Array[
3339
+ {
3340
+ relation_pattern: {
3341
+ relation_type: ("LINEAGE"),
3342
+ relation_direction: ("IN" | "OUT"),
3343
+ max_path_length: ::Integer?
3344
+ }?,
3345
+ entity_pattern: {
3346
+ entity_type: ("LINEAGE_NODE"),
3347
+ identifier: ::String,
3348
+ filters: {
3349
+ filter: {
3350
+ attribute: ::String,
3351
+ value: ::String?,
3352
+ int_value: ::Integer?,
3353
+ operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
3354
+ }?,
3355
+ and: Array[
3356
+ untyped,
3357
+ ]?,
3358
+ or: Array[
3359
+ untyped,
3360
+ ]?
3361
+ }?
3362
+ }?
3363
+ },
3364
+ ],
3365
+ ?max_results: ::Integer,
3366
+ ?next_token: ::String,
3367
+ ?additional_attributes: {
3368
+ form_names: Array[::String]?
3369
+ }
3370
+ ) -> _QueryGraphResponseSuccess
3371
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _QueryGraphResponseSuccess
3372
+
3330
3373
  interface _RejectPredictionsResponseSuccess
3331
3374
  include ::Seahorse::Client::_ResponseSuccess[Types::RejectPredictionsOutput]
3332
3375
  def domain_id: () -> ::String
data/sig/types.rbs CHANGED
@@ -152,6 +152,11 @@ module Aws::DataZone
152
152
  SENSITIVE: []
153
153
  end
154
154
 
155
+ class AdditionalAttributes
156
+ attr_accessor form_names: ::Array[::String]
157
+ SENSITIVE: []
158
+ end
159
+
155
160
  class AggregationListItem
156
161
  attr_accessor attribute: ::String
157
162
  attr_accessor display_value: ::String
@@ -2080,6 +2085,13 @@ module Aws::DataZone
2080
2085
  SENSITIVE: []
2081
2086
  end
2082
2087
 
2088
+ class EntityPattern
2089
+ attr_accessor entity_type: ("LINEAGE_NODE")
2090
+ attr_accessor identifier: ::String
2091
+ attr_accessor filters: Types::FilterClause
2092
+ SENSITIVE: []
2093
+ end
2094
+
2083
2095
  class EnvironmentActionSummary
2084
2096
  attr_accessor domain_id: ::String
2085
2097
  attr_accessor environment_id: ::String
@@ -3428,6 +3440,25 @@ module Aws::DataZone
3428
3440
  SENSITIVE: []
3429
3441
  end
3430
3442
 
3443
+ class LineageNodeItem
3444
+ attr_accessor domain_id: ::String
3445
+ attr_accessor name: ::String
3446
+ attr_accessor description: ::String
3447
+ attr_accessor created_at: ::Time
3448
+ attr_accessor created_by: ::String
3449
+ attr_accessor updated_at: ::Time
3450
+ attr_accessor updated_by: ::String
3451
+ attr_accessor id: ::String
3452
+ attr_accessor type_name: ::String
3453
+ attr_accessor type_revision: ::String
3454
+ attr_accessor source_identifier: ::String
3455
+ attr_accessor event_timestamp: ::Time
3456
+ attr_accessor forms_output: ::Array[Types::FormOutput]
3457
+ attr_accessor upstream_lineage_node_ids: ::Array[::String]
3458
+ attr_accessor downstream_lineage_node_ids: ::Array[::String]
3459
+ SENSITIVE: []
3460
+ end
3461
+
3431
3462
  class LineageNodeReference
3432
3463
  attr_accessor id: ::String
3433
3464
  attr_accessor event_timestamp: ::Time
@@ -4075,6 +4106,20 @@ module Aws::DataZone
4075
4106
  SENSITIVE: []
4076
4107
  end
4077
4108
 
4109
+ class MatchClause
4110
+ attr_accessor relation_pattern: Types::RelationPattern
4111
+ attr_accessor entity_pattern: Types::EntityPattern
4112
+ attr_accessor unknown: untyped
4113
+ SENSITIVE: []
4114
+
4115
+ class RelationPattern < MatchClause
4116
+ end
4117
+ class EntityPattern < MatchClause
4118
+ end
4119
+ class Unknown < MatchClause
4120
+ end
4121
+ end
4122
+
4078
4123
  class MatchOffset
4079
4124
  attr_accessor start_offset: ::Integer
4080
4125
  attr_accessor end_offset: ::Integer
@@ -4588,6 +4633,21 @@ module Aws::DataZone
4588
4633
  SENSITIVE: []
4589
4634
  end
4590
4635
 
4636
+ class QueryGraphInput
4637
+ attr_accessor domain_identifier: ::String
4638
+ attr_accessor match: ::Array[Types::MatchClause]
4639
+ attr_accessor max_results: ::Integer
4640
+ attr_accessor next_token: ::String
4641
+ attr_accessor additional_attributes: Types::AdditionalAttributes
4642
+ SENSITIVE: []
4643
+ end
4644
+
4645
+ class QueryGraphOutput
4646
+ attr_accessor items: ::Array[Types::ResultItem]
4647
+ attr_accessor next_token: ::String
4648
+ SENSITIVE: []
4649
+ end
4650
+
4591
4651
  class RecommendationConfiguration
4592
4652
  attr_accessor enable_business_name_generation: bool
4593
4653
  SENSITIVE: []
@@ -4787,6 +4847,13 @@ module Aws::DataZone
4787
4847
  SENSITIVE: [:request_reason, :decision_comment]
4788
4848
  end
4789
4849
 
4850
+ class RelationPattern
4851
+ attr_accessor relation_type: ("LINEAGE")
4852
+ attr_accessor relation_direction: ("IN" | "OUT")
4853
+ attr_accessor max_path_length: ::Integer
4854
+ SENSITIVE: []
4855
+ end
4856
+
4790
4857
  class RelationalFilterConfiguration
4791
4858
  attr_accessor database_name: ::String
4792
4859
  attr_accessor schema_name: ::String
@@ -4847,6 +4914,17 @@ module Aws::DataZone
4847
4914
  SENSITIVE: []
4848
4915
  end
4849
4916
 
4917
+ class ResultItem
4918
+ attr_accessor lineage_node: Types::LineageNodeItem
4919
+ attr_accessor unknown: untyped
4920
+ SENSITIVE: []
4921
+
4922
+ class LineageNode < ResultItem
4923
+ end
4924
+ class Unknown < ResultItem
4925
+ end
4926
+ end
4927
+
4850
4928
  class RevokeSubscriptionInput
4851
4929
  attr_accessor domain_identifier: ::String
4852
4930
  attr_accessor identifier: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datazone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.68.0
4
+ version: 1.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services