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

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.



2481
2482
2483
# File 'lib/google/apis/container_v1/classes.rb', line 2481

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)


2479
2480
2481
# File 'lib/google/apis/container_v1/classes.rb', line 2479

def secret_uri
  @secret_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2486
2487
2488
# File 'lib/google/apis/container_v1/classes.rb', line 2486

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