Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLineageStreamingRequest

Inherits:
Object
  • Object
show all
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

Request message for SearchLineageStreaming.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1SearchLineageStreamingRequest

Returns a new instance of GoogleCloudDatacatalogLineageV1SearchLineageStreamingRequest.



913
914
915
# File 'lib/google/apis/datalineage_v1/classes.rb', line 913

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#directionString

Required. Direction of the search. Corresponds to the JSON property direction

Returns:

  • (String)


890
891
892
# File 'lib/google/apis/datalineage_v1/classes.rb', line 890

def direction
  @direction
end

#filtersGoogle::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLineageStreamingRequestSearchFilters

Filters for the search. Corresponds to the JSON property filters



895
896
897
# File 'lib/google/apis/datalineage_v1/classes.rb', line 895

def filters
  @filters
end

#limitsGoogle::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLineageStreamingRequestSearchLimits

Limits for the search results. Corresponds to the JSON property limits



900
901
902
# File 'lib/google/apis/datalineage_v1/classes.rb', line 900

def limits
  @limits
end

#locationsArray<String>

Required. The locations to search in. This list should contain the location from the parent field. Corresponds to the JSON property locations

Returns:

  • (Array<String>)


906
907
908
# File 'lib/google/apis/datalineage_v1/classes.rb', line 906

def locations
  @locations
end

#root_criteriaGoogle::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLineageStreamingRequestRootCriteria

Criteria for the root of the search. Corresponds to the JSON property rootCriteria



911
912
913
# File 'lib/google/apis/datalineage_v1/classes.rb', line 911

def root_criteria
  @root_criteria
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



918
919
920
921
922
923
924
# File 'lib/google/apis/datalineage_v1/classes.rb', line 918

def update!(**args)
  @direction = args[:direction] if args.key?(:direction)
  @filters = args[:filters] if args.key?(:filters)
  @limits = args[:limits] if args.key?(:limits)
  @locations = args[:locations] if args.key?(:locations)
  @root_criteria = args[:root_criteria] if args.key?(:root_criteria)
end