Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataAttributesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataAttributesResponse

Returns a new instance of GoogleCloudDataplexV1ListDataAttributesResponse.



5186
5187
5188
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5186

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_attributesArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataAttribute>

DataAttributes under the given parent DataTaxonomy. Corresponds to the JSON property dataAttributes



5173
5174
5175
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5173

def data_attributes
  @data_attributes
end

#next_page_tokenString

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

Returns:

  • (String)


5179
5180
5181
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5179

def next_page_token
  @next_page_token
end

#unreachable_locationsArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachableLocations

Returns:

  • (Array<String>)


5184
5185
5186
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5184

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5191
5192
5193
5194
5195
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5191

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