Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings

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) ⇒ 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_patternString

Corresponds to the JSON property audioExportPattern

Returns:

  • (String)


11800
11801
11802
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11800

def audio_export_pattern
  @audio_export_pattern
end

#audio_formatString

Corresponds to the JSON property audioFormat

Returns:

  • (String)


11805
11806
11807
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11805

def audio_format
  @audio_format
end

#enable_audio_redactionBoolean Also known as: enable_audio_redaction?

Corresponds to the JSON property enableAudioRedaction

Returns:

  • (Boolean)


11810
11811
11812
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11810

def enable_audio_redaction
  @enable_audio_redaction
end

#gcs_bucketString

Corresponds to the JSON property gcsBucket

Returns:

  • (String)


11816
11817
11818
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11816

def gcs_bucket
  @gcs_bucket
end

#store_tts_audioBoolean Also known as: store_tts_audio?

Corresponds to the JSON property storeTtsAudio

Returns:

  • (Boolean)


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