Class: Google::Apis::SecretmanagerV1beta1::Secret

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

Overview

A Secret is a logical secret whose value and versions can be accessed. A Secret is made up of zero or more SecretVersions that represent the secret data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Secret

Returns a new instance of Secret.



642
643
644
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 642

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

Instance Attribute Details

#create_timeString

Output only. The time at which the Secret was created. Corresponds to the JSON property createTime

Returns:

  • (String)


619
620
621
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 619

def create_time
  @create_time
end

#labelsHash<String,String>

The labels assigned to this Secret. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: \pLl\pLo0,62 Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\pLl\p Lo\pN_-]0,63`No more than 64 labels can be assigned to a given resource. Corresponds to the JSON propertylabels`

Returns:

  • (Hash<String,String>)


629
630
631
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 629

def labels
  @labels
end

#nameString

Output only. The resource name of the Secret in the format projects/*/secrets/ *. Corresponds to the JSON property name

Returns:

  • (String)


635
636
637
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 635

def name
  @name
end

#replicationGoogle::Apis::SecretmanagerV1beta1::Replication

A policy that defines the replication configuration of data. Corresponds to the JSON property replication



640
641
642
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 640

def replication
  @replication
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



647
648
649
650
651
652
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 647

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @replication = args[:replication] if args.key?(:replication)
end