class Google::Apis::DatafusionV1beta1::ListInstancesResponse
Response message for the list instance request.
Attributes
instances[RW]
Represents a list of Data Fusion instances. Corresponds to the JSON property `instances` @return [Array<Google::Apis::DatafusionV1beta1::Instance>]
next_page_token[RW]
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` @return [String]
unreachable[RW]
Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datafusion_v1beta1/classes.rb, line 696 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datafusion_v1beta1/classes.rb, line 701 def update!(**args) @instances = args[:instances] if args.key?(:instances) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end