class Google::Apis::BinaryauthorizationV1beta1::ListAttestorsResponse

Response message for BinauthzManagementService.ListAttestors.

Attributes

attestors[RW]

The list of attestors. Corresponds to the JSON property `attestors` @return [Array<Google::Apis::BinaryauthorizationV1beta1::Attestor>]

next_page_token[RW]

A token to retrieve the next page of results. Pass this value in the ListAttestorsRequest.page_token field in the subsequent call to the ` ListAttestors` method to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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