Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataScansResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataScansResponse
- 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
-
#data_scans ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScan>
DataScans (BASIC view only) under the given parent location.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataScansResponse
constructor
A new instance of GoogleCloudDataplexV1ListDataScansResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataScansResponse
Returns a new instance of GoogleCloudDataplexV1ListDataScansResponse.
4234 4235 4236 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4234 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_scans ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScan>
DataScans (BASIC view only) under the given parent location.
Corresponds to the JSON property dataScans
4221 4222 4223 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4221 def data_scans @data_scans end |
#next_page_token ⇒ String
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
4227 4228 4229 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4227 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
4232 4233 4234 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4232 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4239 4240 4241 4242 4243 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4239 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 |