Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest
- 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 BatchSearchLinkProcesses.
Instance Attribute Summary collapse
-
#links ⇒ Array<String>
Required.
-
#page_size ⇒ Fixnum
The maximum number of processes to return in a single page of the response.
-
#page_token ⇒ String
The page token received from a previous
BatchSearchLinkProcesses
call.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest
constructor
A new instance of GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest
Returns a new instance of GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest.
51 52 53 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 51 def initialize(**args) update!(**args) end |
Instance Attribute Details
#links ⇒ Array<String>
Required. An array of links to check for their associated LineageProcesses.
The maximum number of items in this array is 100. If the request contains more
than 100 links, it returns the INVALID_ARGUMENT
error. Format: projects/
project/locations/
location/links/
link`.
Corresponds to the JSON property
links`
35 36 37 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 35 def links @links end |
#page_size ⇒ Fixnum
The maximum number of processes to return in a single page of the response. A
page may contain fewer results than this value.
Corresponds to the JSON property pageSize
41 42 43 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 41 def page_size @page_size end |
#page_token ⇒ String
The page token received from a previous BatchSearchLinkProcesses
call. Use
it to get the next page. When requesting subsequent pages of a response,
remember that all parameters must match the values you provided in the
original request.
Corresponds to the JSON property pageToken
49 50 51 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 49 def page_token @page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
56 57 58 59 60 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 56 def update!(**args) @links = args[:links] if args.key?(:links) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) end |