Class: Google::Apis::SecretmanagerV1beta1::ListSecretsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/secretmanager_v1beta1/classes.rb,
lib/google/apis/secretmanager_v1beta1/representations.rb,
lib/google/apis/secretmanager_v1beta1/representations.rb

Overview

Response message for SecretManagerService.ListSecrets.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSecretsResponse

Returns a new instance of ListSecretsResponse.



444
445
446
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 444

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token to retrieve the next page of results. Pass this value in ListSecretsRequest.page_token to retrieve the next page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


432
433
434
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 432

def next_page_token
  @next_page_token
end

#secretsArray<Google::Apis::SecretmanagerV1beta1::Secret>

The list of Secrets sorted in reverse by create_time (newest first). Corresponds to the JSON property secrets



437
438
439
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 437

def secrets
  @secrets
end

#total_sizeFixnum

The total number of Secrets. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


442
443
444
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 442

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



449
450
451
452
453
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 449

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @secrets = args[:secrets] if args.key?(:secrets)
  @total_size = args[:total_size] if args.key?(:total_size)
end