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.



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

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

Instance Attribute Details

#passphraseString

Corresponds to the JSON property passphrase

Returns:

  • (String)


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

def passphrase
  @passphrase
end

#private_keyString

Corresponds to the JSON property privateKey

Returns:

  • (String)


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

def private_key
  @private_key
end

#ssl_certificateString

Corresponds to the JSON property sslCertificate

Returns:

  • (String)


4060
4061
4062
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4060

def ssl_certificate
  @ssl_certificate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4067
4068
4069
4070
4071
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4067

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