Skip to content

Commit

Permalink
feat: [dialogflow] created new boolean fields in conversation dataset…
Browse files Browse the repository at this point in the history
… for zone isolation and zone separation compliance status (#5710)

* feat: created new boolean fields in conversation dataset for zone isolation and zone separation compliance status
feat: add ALAW encoding value to Audio encoding enum

PiperOrigin-RevId: 678636701

Source-Link: googleapis/googleapis@0ede901

Source-Link: googleapis/googleapis-gen@39c4278
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3cvLk93bEJvdC55YW1sIiwiaCI6IjM5YzQyNzgyZmViYzkyMTI0MTM0OTk1YjJlN2Q3OGJlNzYyYmNjMjIifQ==

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Bankhead <[email protected]>
  • Loading branch information
3 people authored Sep 28, 2024
1 parent 667316b commit fd737ec
Show file tree
Hide file tree
Showing 5 changed files with 172 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,9 @@ enum AudioEncoding {
// is replaced with a single byte containing the block length. Only Speex
// wideband is supported. `sample_rate_hertz` must be 16000.
AUDIO_ENCODING_SPEEX_WITH_HEADER_BYTE = 7;

// 8-bit samples that compand 13-bit audio samples using G.711 PCMU/a-law.
AUDIO_ENCODING_ALAW = 8;
}

// Variant of the specified [Speech
Expand Down Expand Up @@ -504,4 +507,7 @@ enum OutputAudioEncoding {

// 8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
OUTPUT_AUDIO_ENCODING_MULAW = 5;

// 8-bit samples that compand 13-bit audio samples using G.711 PCMU/a-law.
OUTPUT_AUDIO_ENCODING_ALAW = 6;
}
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,14 @@ message ConversationDataset {
// Output only. The number of conversations this conversation dataset
// contains.
int64 conversation_count = 7 [(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. A read only boolean field reflecting Zone Isolation status of
// the dataset.
optional bool satisfies_pzi = 8 [(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. A read only boolean field reflecting Zone Separation status of
// the dataset.
optional bool satisfies_pzs = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
}

// The request message for
Expand Down
24 changes: 22 additions & 2 deletions packages/google-cloud-dialogflow/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 104 additions & 0 deletions packages/google-cloud-dialogflow/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fd737ec

Please sign in to comment.