class Google::Apis::ManagedidentitiesV1beta1::ListPeeringsResponse

ListPeeringsResponse is the response message for ListPeerings method.

Attributes

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]

peerings[RW]

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

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/managedidentities_v1beta1/classes.rb, line 1196
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 1201
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @peerings = args[:peerings] if args.key?(:peerings)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end