Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListMetadataJobsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb

Overview

List metadata jobs response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListMetadataJobsResponse

Returns a new instance of GoogleCloudDataplexV1ListMetadataJobsResponse.



6013
6014
6015
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6013

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

Instance Attribute Details

#metadata_jobsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJob>

Metadata jobs under the specified parent location. Corresponds to the JSON property metadataJobs



6000
6001
6002
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6000

def 
  @metadata_jobs
end

#next_page_tokenString

A token to retrieve the next page of results. If there are no more results in the list, the value is empty. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


6006
6007
6008
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6006

def next_page_token
  @next_page_token
end

#unreachable_locationsArray<String>

Locations that the service couldn't reach. Corresponds to the JSON property unreachableLocations

Returns:

  • (Array<String>)


6011
6012
6013
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6011

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6018
6019
6020
6021
6022
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6018

def update!(**args)
  @metadata_jobs = args[:metadata_jobs] if args.key?(:metadata_jobs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations)
end