class Google::Apis::IamV1::ListServiceAccountsResponse

The service account list response.

Attributes

accounts[RW]

The list of matching service accounts. Corresponds to the JSON property `accounts` @return [Array<Google::Apis::IamV1::ServiceAccount>]

next_page_token[RW]

To retrieve the next page of results, set ListServiceAccountsRequest. page_token to this value. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/iam_v1/classes.rb, line 693
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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