Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings.



4056
4057
4058
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4056

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

Instance Attribute Details

#passphraseString

Corresponds to the JSON property passphrase

Returns:

  • (String)


4044
4045
4046
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4044

def passphrase
  @passphrase
end

#private_keyString

Corresponds to the JSON property privateKey

Returns:

  • (String)


4049
4050
4051
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4049

def private_key
  @private_key
end

#ssl_certificateString

Corresponds to the JSON property sslCertificate

Returns:

  • (String)


4054
4055
4056
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4054

def ssl_certificate
  @ssl_certificate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4061
4062
4063
4064
4065
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4061

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