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.
11836 11837 11838 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11836 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_export_pattern ⇒ String
Corresponds to the JSON property audioExportPattern
11812 11813 11814 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11812 def audio_export_pattern @audio_export_pattern end |
#audio_format ⇒ String
Corresponds to the JSON property audioFormat
11817 11818 11819 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11817 def audio_format @audio_format end |
#enable_audio_redaction ⇒ Boolean Also known as: enable_audio_redaction?
Corresponds to the JSON property enableAudioRedaction
11822 11823 11824 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11822 def enable_audio_redaction @enable_audio_redaction end |
#gcs_bucket ⇒ String
Corresponds to the JSON property gcsBucket
11828 11829 11830 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11828 def gcs_bucket @gcs_bucket end |
#store_tts_audio ⇒ Boolean Also known as: store_tts_audio?
Corresponds to the JSON property storeTtsAudio
11833 11834 11835 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11833 def store_tts_audio @store_tts_audio end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11841 11842 11843 11844 11845 11846 11847 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11841 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 |