Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataScansResponse

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 dataScans response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataScansResponse

Returns a new instance of GoogleCloudDataplexV1ListDataScansResponse.



5749
5750
5751
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5749

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

Instance Attribute Details

#data_scansArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScan>

DataScans (BASIC view only) under the given parent location. Corresponds to the JSON property dataScans



5736
5737
5738
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5736

def data_scans
  @data_scans
end

#next_page_tokenString

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


5742
5743
5744
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5742

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


5747
5748
5749
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5747

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5754
5755
5756
5757
5758
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5754

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