Class: Google::Apis::SecretmanagerV1::ListSecretVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::SecretmanagerV1::ListSecretVersionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/secretmanager_v1/classes.rb,
generated/google/apis/secretmanager_v1/representations.rb,
generated/google/apis/secretmanager_v1/representations.rb
Overview
Response message for SecretManagerService.ListSecretVersions.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
-
#total_size ⇒ Fixnum
The total number of SecretVersions.
-
#versions ⇒ Array<Google::Apis::SecretmanagerV1::SecretVersion>
The list of SecretVersions sorted in reverse by create_time (newest first).
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSecretVersionsResponse
constructor
A new instance of ListSecretVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSecretVersionsResponse
Returns a new instance of ListSecretVersionsResponse.
456 457 458 |
# File 'generated/google/apis/secretmanager_v1/classes.rb', line 456 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass this value in
ListSecretVersionsRequest.page_token to retrieve the next page.
Corresponds to the JSON property nextPageToken
444 445 446 |
# File 'generated/google/apis/secretmanager_v1/classes.rb', line 444 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
The total number of SecretVersions.
Corresponds to the JSON property totalSize
449 450 451 |
# File 'generated/google/apis/secretmanager_v1/classes.rb', line 449 def total_size @total_size end |
#versions ⇒ Array<Google::Apis::SecretmanagerV1::SecretVersion>
The list of SecretVersions sorted in reverse by create_time (newest first).
Corresponds to the JSON property versions
454 455 456 |
# File 'generated/google/apis/secretmanager_v1/classes.rb', line 454 def versions @versions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
461 462 463 464 465 |
# File 'generated/google/apis/secretmanager_v1/classes.rb', line 461 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) @versions = args[:versions] if args.key?(:versions) end |