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.
5568 5569 5570 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5568 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
5555 5556 5557 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5555 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
5561 5562 5563 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5561 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachableLocations
5566 5567 5568 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5566 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5573 5574 5575 5576 5577 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5573 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 |