Class: Google::Apis::SecretmanagerV1beta1::SecretPayload

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

A secret payload resource in the Secret Manager API. This contains the sensitive secret data that is associated with a SecretVersion.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SecretPayload

Returns a new instance of SecretPayload.



675
676
677
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 675

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

Instance Attribute Details

#dataString

The secret data. Must be no larger than 64KiB. Corresponds to the JSON property data NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


673
674
675
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 673

def data
  @data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



680
681
682
# File 'lib/google/apis/secretmanager_v1beta1/classes.rb', line 680

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