Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings
- 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
-
#passphrase ⇒ String
Corresponds to the JSON property
passphrase. -
#private_key ⇒ String
Corresponds to the JSON property
privateKey. -
#ssl_certificate ⇒ String
Corresponds to the JSON property
sslCertificate.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings
constructor
A new instance of GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#passphrase ⇒ String
Corresponds to the JSON property passphrase
4050 4051 4052 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4050 def passphrase @passphrase end |
#private_key ⇒ String
Corresponds to the JSON property privateKey
4055 4056 4057 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4055 def private_key @private_key end |
#ssl_certificate ⇒ String
Corresponds to the JSON property sslCertificate
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 |