Class: Google::Apis::ContainerV1::GcpSecretManagerCertificateConfig

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

Overview

GCPSecretManagerCertificateConfig configures a secret from Google Secret Manager.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GcpSecretManagerCertificateConfig

Returns a new instance of GcpSecretManagerCertificateConfig.

[View source]

2573
2574
2575
# File 'lib/google/apis/container_v1/classes.rb', line 2573

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

Instance Attribute Details

#secret_uriString

Secret URI, in the form "projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$ VERSION". Version can be fixed (e.g. "2") or "latest" Corresponds to the JSON property secretUri

Returns:

  • (String)

2571
2572
2573
# File 'lib/google/apis/container_v1/classes.rb', line 2571

def secret_uri
  @secret_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

2578
2579
2580
# File 'lib/google/apis/container_v1/classes.rb', line 2578

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