class Google::Apis::ManagedidentitiesV1beta1::ListDomainsResponse

Response message for ListDomains

Attributes

domains[RW]

A list of Managed Identities Service domains in the project. Corresponds to the JSON property `domains` @return [Array<Google::Apis::ManagedidentitiesV1beta1::Domain>]

next_page_token[RW]

A 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]

A list of 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/managedidentities_v1beta1/classes.rb, line 1114
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/managedidentities_v1beta1/classes.rb, line 1119
def update!(**args)
  @domains = args[:domains] if args.key?(:domains)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end