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.
5691 5692 5693 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5691 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
5678 5679 5680 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5678 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
5684 5685 5686 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5684 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachableLocations
5689 5690 5691 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5689 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5696 5697 5698 5699 5700 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5696 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 |