Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datalineage_v1/classes.rb,
lib/google/apis/datalineage_v1/representations.rb,
lib/google/apis/datalineage_v1/representations.rb
Overview
Response message for SearchLineageStreaming.
Instance Attribute Summary collapse
-
#links ⇒ Array<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1LineageLink>
Output only.
-
#unreachable ⇒ Array<String>
Unordered list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse
constructor
A new instance of GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse
Returns a new instance of GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse.
1037 1038 1039 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 1037 def initialize(**args) update!(**args) end |
Instance Attribute Details
#links ⇒ Array<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1LineageLink>
Output only. The lineage links that match the search criteria. Can be empty if
no links match.
Corresponds to the JSON property links
1027 1028 1029 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 1027 def links @links end |
#unreachable ⇒ Array<String>
Unordered list. Unreachable resources. If non-empty, the result set might be
incomplete. Currently, only locations are supported. Format: projects/[
PROJECT_NUMBER]/locations/[LOCATION] Example: projects/123456789/locations/us-
east1
Corresponds to the JSON property unreachable
1035 1036 1037 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 1035 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1042 1043 1044 1045 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 1042 def update!(**args) @links = args[:links] if args.key?(:links) @unreachable = args[:unreachable] if args.key?(:unreachable) end |