Class: Google::Apis::ComputeAlpha::TlsCertificateContext

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

Overview

Defines the mechanism to obtain the client or server certificate.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TlsCertificateContext

Returns a new instance of TlsCertificateContext.



36331
36332
36333
# File 'generated/google/apis/compute_alpha/classes.rb', line 36331

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

Instance Attribute Details

#certificate_pathsGoogle::Apis::ComputeAlpha::TlsCertificatePaths

The paths to the mounted TLS Certificates and private key. Corresponds to the JSON property certificatePaths



36319
36320
36321
# File 'generated/google/apis/compute_alpha/classes.rb', line 36319

def certificate_paths
  @certificate_paths
end

#certificate_sourceString

Defines how TLS certificates are obtained. Corresponds to the JSON property certificateSource

Returns:

  • (String)


36324
36325
36326
# File 'generated/google/apis/compute_alpha/classes.rb', line 36324

def certificate_source
  @certificate_source
end

#sds_configGoogle::Apis::ComputeAlpha::SdsConfig

The configuration to access the SDS server. Corresponds to the JSON property sdsConfig



36329
36330
36331
# File 'generated/google/apis/compute_alpha/classes.rb', line 36329

def sds_config
  @sds_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



36336
36337
36338
36339
36340
# File 'generated/google/apis/compute_alpha/classes.rb', line 36336

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