Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataAttributesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataAttributesResponse
- 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 DataAttributes response.
Instance Attribute Summary collapse
-
#data_attributes ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataAttribute>
DataAttributes under the given parent DataTaxonomy.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataAttributesResponse
constructor
A new instance of GoogleCloudDataplexV1ListDataAttributesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataAttributesResponse
Returns a new instance of GoogleCloudDataplexV1ListDataAttributesResponse.
3480 3481 3482 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3480 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_attributes ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataAttribute>
DataAttributes under the given parent DataTaxonomy.
Corresponds to the JSON property dataAttributes
3467 3468 3469 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3467 def data_attributes @data_attributes 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
3473 3474 3475 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3473 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachableLocations
3478 3479 3480 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3478 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3485 3486 3487 3488 3489 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3485 def update!(**args) @data_attributes = args[:data_attributes] if args.key?(:data_attributes) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations) end |