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.



2703
2704
2705
# File 'lib/google/apis/container_v1/classes.rb', line 2703

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)


2701
2702
2703
# File 'lib/google/apis/container_v1/classes.rb', line 2701

def secret_uri
  @secret_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2708
2709
2710
# File 'lib/google/apis/container_v1/classes.rb', line 2708

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