Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#audio_export_pattern ⇒ String
Corresponds to the JSON property
audioExportPattern. -
#audio_format ⇒ String
Corresponds to the JSON property
audioFormat. -
#enable_audio_redaction ⇒ Boolean
(also: #enable_audio_redaction?)
Corresponds to the JSON property
enableAudioRedaction. -
#gcs_bucket ⇒ String
Corresponds to the JSON property
gcsBucket. -
#store_tts_audio ⇒ Boolean
(also: #store_tts_audio?)
Corresponds to the JSON property
storeTtsAudio.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
constructor
A new instance of GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
Returns a new instance of GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings.
7369 7370 7371 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7369 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_export_pattern ⇒ String
Corresponds to the JSON property audioExportPattern
7345 7346 7347 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7345 def audio_export_pattern @audio_export_pattern end |
#audio_format ⇒ String
Corresponds to the JSON property audioFormat
7350 7351 7352 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7350 def audio_format @audio_format end |
#enable_audio_redaction ⇒ Boolean Also known as: enable_audio_redaction?
Corresponds to the JSON property enableAudioRedaction
7355 7356 7357 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7355 def enable_audio_redaction @enable_audio_redaction end |
#gcs_bucket ⇒ String
Corresponds to the JSON property gcsBucket
7361 7362 7363 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7361 def gcs_bucket @gcs_bucket end |
#store_tts_audio ⇒ Boolean Also known as: store_tts_audio?
Corresponds to the JSON property storeTtsAudio
7366 7367 7368 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7366 def store_tts_audio @store_tts_audio end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7374 7375 7376 7377 7378 7379 7380 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7374 def update!(**args) @audio_export_pattern = args[:audio_export_pattern] if args.key?(:audio_export_pattern) @audio_format = args[:audio_format] if args.key?(:audio_format) @enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction) @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket) @store_tts_audio = args[:store_tts_audio] if args.key?(:store_tts_audio) end |