Class: Google::Apis::BinaryauthorizationV1beta1::ListAttestorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::BinaryauthorizationV1beta1::ListAttestorsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/binaryauthorization_v1beta1/classes.rb,
generated/google/apis/binaryauthorization_v1beta1/representations.rb,
generated/google/apis/binaryauthorization_v1beta1/representations.rb
Overview
Response message for BinauthzManagementService.ListAttestors.
Instance Attribute Summary collapse
-
#attestors ⇒ Array<Google::Apis::BinaryauthorizationV1beta1::Attestor>
The list of attestors.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAttestorsResponse
constructor
A new instance of ListAttestorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAttestorsResponse
Returns a new instance of ListAttestorsResponse
374 375 376 |
# File 'generated/google/apis/binaryauthorization_v1beta1/classes.rb', line 374 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attestors ⇒ Array<Google::Apis::BinaryauthorizationV1beta1::Attestor>
The list of attestors.
Corresponds to the JSON property attestors
365 366 367 |
# File 'generated/google/apis/binaryauthorization_v1beta1/classes.rb', line 365 def attestors @attestors end |
#next_page_token ⇒ String
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
372 373 374 |
# File 'generated/google/apis/binaryauthorization_v1beta1/classes.rb', line 372 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
379 380 381 382 |
# File 'generated/google/apis/binaryauthorization_v1beta1/classes.rb', line 379 def update!(**args) @attestors = args[:attestors] if args.key?(:attestors) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |