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.



419
420
421
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 419

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)


407
408
409
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 407

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



412
413
414
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 412

def secrets
  @secrets
end

#total_sizeFixnum

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

Returns:

  • (Fixnum)


417
418
419
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 417

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



424
425
426
427
428
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 424

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