Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
- 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
-
#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) ⇒ GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
constructor
A new instance of GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
Returns a new instance of GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings.
11824 11825 11826 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11824 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_export_pattern ⇒ String
Corresponds to the JSON property audioExportPattern
11800 11801 11802 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11800 def audio_export_pattern @audio_export_pattern end |
#audio_format ⇒ String
Corresponds to the JSON property audioFormat
11805 11806 11807 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11805 def audio_format @audio_format end |
#enable_audio_redaction ⇒ Boolean Also known as: enable_audio_redaction?
Corresponds to the JSON property enableAudioRedaction
11810 11811 11812 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11810 def enable_audio_redaction @enable_audio_redaction end |
#gcs_bucket ⇒ String
Corresponds to the JSON property gcsBucket
11816 11817 11818 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11816 def gcs_bucket @gcs_bucket end |
#store_tts_audio ⇒ Boolean Also known as: store_tts_audio?
Corresponds to the JSON property storeTtsAudio
11821 11822 11823 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11821 def store_tts_audio @store_tts_audio end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11829 11830 11831 11832 11833 11834 11835 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11829 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 |