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.
5315 5316 5317 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5315 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
5302 5303 5304 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5302 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
5308 5309 5310 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5308 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachableLocations
5313 5314 5315 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5313 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5320 5321 5322 5323 5324 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5320 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 |