-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add TelephonyConnectInfo of phone call-related info about the conversation PiperOrigin-RevId: 724392543 Source-Link: googleapis/googleapis@7dd0554 Source-Link: googleapis/googleapis-gen@8816a46 Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuRGlhbG9nZmxvdy5WMkJldGExLy5Pd2xCb3QueWFtbCIsImgiOiI4ODE2YTQ2ZDMxNzUzMjJhMmUwY2IxMjUzNmVhZDJmZmQxNmYwNjc0In0=
- Loading branch information
1 parent
40f33a4
commit 44acfea
Showing
29 changed files
with
5,645 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
...ialogflow.V2Beta1.GeneratedSnippets/PhoneNumbersClient.DeletePhoneNumberAsyncSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace GoogleCSharpSnippets | ||
{ | ||
// [START dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_async_flattened] | ||
using Google.Cloud.Dialogflow.V2Beta1; | ||
using System.Threading.Tasks; | ||
|
||
public sealed partial class GeneratedPhoneNumbersClientSnippets | ||
{ | ||
/// <summary>Snippet for DeletePhoneNumberAsync</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public async Task DeletePhoneNumberAsync() | ||
{ | ||
// Create client | ||
PhoneNumbersClient phoneNumbersClient = await PhoneNumbersClient.CreateAsync(); | ||
// Initialize request argument(s) | ||
string name = "projects/[PROJECT]/phoneNumbers/[PHONE_NUMBER]"; | ||
// Make the request | ||
PhoneNumber response = await phoneNumbersClient.DeletePhoneNumberAsync(name); | ||
} | ||
} | ||
// [END dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_async_flattened] | ||
} |
47 changes: 47 additions & 0 deletions
47
...eta1.GeneratedSnippets/PhoneNumbersClient.DeletePhoneNumberRequestObjectAsyncSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace GoogleCSharpSnippets | ||
{ | ||
// [START dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_async] | ||
using Google.Cloud.Dialogflow.V2Beta1; | ||
using System.Threading.Tasks; | ||
|
||
public sealed partial class GeneratedPhoneNumbersClientSnippets | ||
{ | ||
/// <summary>Snippet for DeletePhoneNumberAsync</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public async Task DeletePhoneNumberRequestObjectAsync() | ||
{ | ||
// Create client | ||
PhoneNumbersClient phoneNumbersClient = await PhoneNumbersClient.CreateAsync(); | ||
// Initialize request argument(s) | ||
DeletePhoneNumberRequest request = new DeletePhoneNumberRequest | ||
{ | ||
PhoneNumberName = PhoneNumberName.FromProjectPhoneNumber("[PROJECT]", "[PHONE_NUMBER]"), | ||
}; | ||
// Make the request | ||
PhoneNumber response = await phoneNumbersClient.DeletePhoneNumberAsync(request); | ||
} | ||
} | ||
// [END dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_async] | ||
} |
46 changes: 46 additions & 0 deletions
46
...w.V2Beta1.GeneratedSnippets/PhoneNumbersClient.DeletePhoneNumberRequestObjectSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace GoogleCSharpSnippets | ||
{ | ||
// [START dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_sync] | ||
using Google.Cloud.Dialogflow.V2Beta1; | ||
|
||
public sealed partial class GeneratedPhoneNumbersClientSnippets | ||
{ | ||
/// <summary>Snippet for DeletePhoneNumber</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public void DeletePhoneNumberRequestObject() | ||
{ | ||
// Create client | ||
PhoneNumbersClient phoneNumbersClient = PhoneNumbersClient.Create(); | ||
// Initialize request argument(s) | ||
DeletePhoneNumberRequest request = new DeletePhoneNumberRequest | ||
{ | ||
PhoneNumberName = PhoneNumberName.FromProjectPhoneNumber("[PROJECT]", "[PHONE_NUMBER]"), | ||
}; | ||
// Make the request | ||
PhoneNumber response = phoneNumbersClient.DeletePhoneNumber(request); | ||
} | ||
} | ||
// [END dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_sync] | ||
} |
44 changes: 44 additions & 0 deletions
44
...eta1.GeneratedSnippets/PhoneNumbersClient.DeletePhoneNumberResourceNamesAsyncSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace GoogleCSharpSnippets | ||
{ | ||
// [START dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_async_flattened_resourceNames] | ||
using Google.Cloud.Dialogflow.V2Beta1; | ||
using System.Threading.Tasks; | ||
|
||
public sealed partial class GeneratedPhoneNumbersClientSnippets | ||
{ | ||
/// <summary>Snippet for DeletePhoneNumberAsync</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public async Task DeletePhoneNumberResourceNamesAsync() | ||
{ | ||
// Create client | ||
PhoneNumbersClient phoneNumbersClient = await PhoneNumbersClient.CreateAsync(); | ||
// Initialize request argument(s) | ||
PhoneNumberName name = PhoneNumberName.FromProjectPhoneNumber("[PROJECT]", "[PHONE_NUMBER]"); | ||
// Make the request | ||
PhoneNumber response = await phoneNumbersClient.DeletePhoneNumberAsync(name); | ||
} | ||
} | ||
// [END dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_async_flattened_resourceNames] | ||
} |
43 changes: 43 additions & 0 deletions
43
...w.V2Beta1.GeneratedSnippets/PhoneNumbersClient.DeletePhoneNumberResourceNamesSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace GoogleCSharpSnippets | ||
{ | ||
// [START dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_sync_flattened_resourceNames] | ||
using Google.Cloud.Dialogflow.V2Beta1; | ||
|
||
public sealed partial class GeneratedPhoneNumbersClientSnippets | ||
{ | ||
/// <summary>Snippet for DeletePhoneNumber</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public void DeletePhoneNumberResourceNames() | ||
{ | ||
// Create client | ||
PhoneNumbersClient phoneNumbersClient = PhoneNumbersClient.Create(); | ||
// Initialize request argument(s) | ||
PhoneNumberName name = PhoneNumberName.FromProjectPhoneNumber("[PROJECT]", "[PHONE_NUMBER]"); | ||
// Make the request | ||
PhoneNumber response = phoneNumbersClient.DeletePhoneNumber(name); | ||
} | ||
} | ||
// [END dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_sync_flattened_resourceNames] | ||
} |
43 changes: 43 additions & 0 deletions
43
...oud.Dialogflow.V2Beta1.GeneratedSnippets/PhoneNumbersClient.DeletePhoneNumberSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace GoogleCSharpSnippets | ||
{ | ||
// [START dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_sync_flattened] | ||
using Google.Cloud.Dialogflow.V2Beta1; | ||
|
||
public sealed partial class GeneratedPhoneNumbersClientSnippets | ||
{ | ||
/// <summary>Snippet for DeletePhoneNumber</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public void DeletePhoneNumber() | ||
{ | ||
// Create client | ||
PhoneNumbersClient phoneNumbersClient = PhoneNumbersClient.Create(); | ||
// Initialize request argument(s) | ||
string name = "projects/[PROJECT]/phoneNumbers/[PHONE_NUMBER]"; | ||
// Make the request | ||
PhoneNumber response = phoneNumbersClient.DeletePhoneNumber(name); | ||
} | ||
} | ||
// [END dialogflow_v2beta1_generated_PhoneNumbers_DeletePhoneNumber_sync_flattened] | ||
} |
79 changes: 79 additions & 0 deletions
79
...Dialogflow.V2Beta1.GeneratedSnippets/PhoneNumbersClient.ListPhoneNumbersAsyncSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace GoogleCSharpSnippets | ||
{ | ||
// [START dialogflow_v2beta1_generated_PhoneNumbers_ListPhoneNumbers_async_flattened] | ||
using Google.Api.Gax; | ||
using Google.Cloud.Dialogflow.V2Beta1; | ||
using System; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
public sealed partial class GeneratedPhoneNumbersClientSnippets | ||
{ | ||
/// <summary>Snippet for ListPhoneNumbersAsync</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public async Task ListPhoneNumbersAsync() | ||
{ | ||
// Create client | ||
PhoneNumbersClient phoneNumbersClient = await PhoneNumbersClient.CreateAsync(); | ||
// Initialize request argument(s) | ||
string parent = "projects/[PROJECT]"; | ||
// Make the request | ||
PagedAsyncEnumerable<ListPhoneNumbersResponse, PhoneNumber> response = phoneNumbersClient.ListPhoneNumbersAsync(parent); | ||
|
||
// Iterate over all response items, lazily performing RPCs as required | ||
await response.ForEachAsync((PhoneNumber item) => | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
}); | ||
|
||
// Or iterate over pages (of server-defined size), performing one RPC per page | ||
await response.AsRawResponses().ForEachAsync((ListPhoneNumbersResponse page) => | ||
{ | ||
// Do something with each page of items | ||
Console.WriteLine("A page of results:"); | ||
foreach (PhoneNumber item in page) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
}); | ||
|
||
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required | ||
int pageSize = 10; | ||
Page<PhoneNumber> singlePage = await response.ReadPageAsync(pageSize); | ||
// Do something with the page of items | ||
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):"); | ||
foreach (PhoneNumber item in singlePage) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
// Store the pageToken, for when the next page is required. | ||
string nextPageToken = singlePage.NextPageToken; | ||
} | ||
} | ||
// [END dialogflow_v2beta1_generated_PhoneNumbers_ListPhoneNumbers_async_flattened] | ||
} |
Oops, something went wrong.