public abstract class ChangelogsClient
Changelogs client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Dialogflow.Cx.V3Assembly
Google.Cloud.Dialogflow.Cx.V3.dll
Remarks
Service for managing [Changelogs][google.cloud.dialogflow.cx.v3.Changelog].
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the Changelogs service, which is a host of "dialogflow.googleapis.com" and a port of 443.
Property Value | |
---|---|
Type | Description |
String |
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }
The default Changelogs scopes.
Property Value | |
---|---|
Type | Description |
IReadOnlyList<String> |
The default Changelogs scopes are:
GrpcClient
public virtual Changelogs.ChangelogsClient GrpcClient { get; }
The underlying gRPC Changelogs client
Property Value | |
---|---|
Type | Description |
Changelogs.ChangelogsClient |
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }
The service metadata associated with this client type.
Property Value | |
---|---|
Type | Description |
ServiceMetadata |
Methods
Create()
public static ChangelogsClient Create()
Synchronously creates a ChangelogsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use ChangelogsClientBuilder.
Returns | |
---|---|
Type | Description |
ChangelogsClient | The created ChangelogsClient. |
CreateAsync(CancellationToken)
public static Task<ChangelogsClient> CreateAsync(CancellationToken cancellationToken = default(CancellationToken))
Asynchronously creates a ChangelogsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use ChangelogsClientBuilder.
Parameter | |
---|---|
Name | Description |
cancellationToken | CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
Task<ChangelogsClient> | The task representing the created ChangelogsClient. |
GetChangelog(ChangelogName, CallSettings)
public virtual Changelog GetChangelog(ChangelogName name, CallSettings callSettings = null)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
name | ChangelogName Required. The name of the changelog to get.
Format: |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Changelog | The RPC response. |
// Create client
ChangelogsClient changelogsClient = ChangelogsClient.Create();
// Initialize request argument(s)
ChangelogName name = ChangelogName.FromProjectLocationAgentChangelog("[PROJECT]", "[LOCATION]", "[AGENT]", "[CHANGELOG]");
// Make the request
Changelog response = changelogsClient.GetChangelog(name);
GetChangelog(GetChangelogRequest, CallSettings)
public virtual Changelog GetChangelog(GetChangelogRequest request, CallSettings callSettings = null)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
request | GetChangelogRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Changelog | The RPC response. |
// Create client
ChangelogsClient changelogsClient = ChangelogsClient.Create();
// Initialize request argument(s)
GetChangelogRequest request = new GetChangelogRequest
{
ChangelogName = ChangelogName.FromProjectLocationAgentChangelog("[PROJECT]", "[LOCATION]", "[AGENT]", "[CHANGELOG]"),
};
// Make the request
Changelog response = changelogsClient.GetChangelog(request);
GetChangelog(String, CallSettings)
public virtual Changelog GetChangelog(string name, CallSettings callSettings = null)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
name | String Required. The name of the changelog to get.
Format: |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Changelog | The RPC response. |
// Create client
ChangelogsClient changelogsClient = ChangelogsClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/changelogs/[CHANGELOG]";
// Make the request
Changelog response = changelogsClient.GetChangelog(name);
GetChangelogAsync(ChangelogName, CallSettings)
public virtual Task<Changelog> GetChangelogAsync(ChangelogName name, CallSettings callSettings = null)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
name | ChangelogName Required. The name of the changelog to get.
Format: |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Changelog> | A Task containing the RPC response. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
ChangelogName name = ChangelogName.FromProjectLocationAgentChangelog("[PROJECT]", "[LOCATION]", "[AGENT]", "[CHANGELOG]");
// Make the request
Changelog response = await changelogsClient.GetChangelogAsync(name);
GetChangelogAsync(ChangelogName, CancellationToken)
public virtual Task<Changelog> GetChangelogAsync(ChangelogName name, CancellationToken cancellationToken)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
name | ChangelogName Required. The name of the changelog to get.
Format: |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Changelog> | A Task containing the RPC response. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
ChangelogName name = ChangelogName.FromProjectLocationAgentChangelog("[PROJECT]", "[LOCATION]", "[AGENT]", "[CHANGELOG]");
// Make the request
Changelog response = await changelogsClient.GetChangelogAsync(name);
GetChangelogAsync(GetChangelogRequest, CallSettings)
public virtual Task<Changelog> GetChangelogAsync(GetChangelogRequest request, CallSettings callSettings = null)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
request | GetChangelogRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Changelog> | A Task containing the RPC response. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
GetChangelogRequest request = new GetChangelogRequest
{
ChangelogName = ChangelogName.FromProjectLocationAgentChangelog("[PROJECT]", "[LOCATION]", "[AGENT]", "[CHANGELOG]"),
};
// Make the request
Changelog response = await changelogsClient.GetChangelogAsync(request);
GetChangelogAsync(GetChangelogRequest, CancellationToken)
public virtual Task<Changelog> GetChangelogAsync(GetChangelogRequest request, CancellationToken cancellationToken)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
request | GetChangelogRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Changelog> | A Task containing the RPC response. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
GetChangelogRequest request = new GetChangelogRequest
{
ChangelogName = ChangelogName.FromProjectLocationAgentChangelog("[PROJECT]", "[LOCATION]", "[AGENT]", "[CHANGELOG]"),
};
// Make the request
Changelog response = await changelogsClient.GetChangelogAsync(request);
GetChangelogAsync(String, CallSettings)
public virtual Task<Changelog> GetChangelogAsync(string name, CallSettings callSettings = null)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
name | String Required. The name of the changelog to get.
Format: |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Changelog> | A Task containing the RPC response. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/changelogs/[CHANGELOG]";
// Make the request
Changelog response = await changelogsClient.GetChangelogAsync(name);
GetChangelogAsync(String, CancellationToken)
public virtual Task<Changelog> GetChangelogAsync(string name, CancellationToken cancellationToken)
Retrieves the specified Changelog.
Parameters | |
---|---|
Name | Description |
name | String Required. The name of the changelog to get.
Format: |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Changelog> | A Task containing the RPC response. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/changelogs/[CHANGELOG]";
// Make the request
Changelog response = await changelogsClient.GetChangelogAsync(name);
ListChangelogs(AgentName, String, Nullable<Int32>, CallSettings)
public virtual PagedEnumerable<ListChangelogsResponse, Changelog> ListChangelogs(AgentName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Returns the list of Changelogs.
Parameters | |
---|---|
Name | Description |
parent | AgentName Required. The agent containing the changelogs.
Format: |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<ListChangelogsResponse, Changelog> | A pageable sequence of Changelog resources. |
// Create client
ChangelogsClient changelogsClient = ChangelogsClient.Create();
// Initialize request argument(s)
AgentName parent = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]");
// Make the request
PagedEnumerable<ListChangelogsResponse, Changelog> response = changelogsClient.ListChangelogs(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (Changelog item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListChangelogsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Changelog 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<Changelog> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Changelog 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;
ListChangelogs(ListChangelogsRequest, CallSettings)
public virtual PagedEnumerable<ListChangelogsResponse, Changelog> ListChangelogs(ListChangelogsRequest request, CallSettings callSettings = null)
Returns the list of Changelogs.
Parameters | |
---|---|
Name | Description |
request | ListChangelogsRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<ListChangelogsResponse, Changelog> | A pageable sequence of Changelog resources. |
// Create client
ChangelogsClient changelogsClient = ChangelogsClient.Create();
// Initialize request argument(s)
ListChangelogsRequest request = new ListChangelogsRequest
{
ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
Filter = "",
};
// Make the request
PagedEnumerable<ListChangelogsResponse, Changelog> response = changelogsClient.ListChangelogs(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (Changelog item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListChangelogsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Changelog 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<Changelog> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Changelog 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;
ListChangelogs(String, String, Nullable<Int32>, CallSettings)
public virtual PagedEnumerable<ListChangelogsResponse, Changelog> ListChangelogs(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Returns the list of Changelogs.
Parameters | |
---|---|
Name | Description |
parent | String Required. The agent containing the changelogs.
Format: |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<ListChangelogsResponse, Changelog> | A pageable sequence of Changelog resources. |
// Create client
ChangelogsClient changelogsClient = ChangelogsClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]";
// Make the request
PagedEnumerable<ListChangelogsResponse, Changelog> response = changelogsClient.ListChangelogs(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (Changelog item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListChangelogsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Changelog 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<Changelog> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Changelog 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;
ListChangelogsAsync(AgentName, String, Nullable<Int32>, CallSettings)
public virtual PagedAsyncEnumerable<ListChangelogsResponse, Changelog> ListChangelogsAsync(AgentName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Returns the list of Changelogs.
Parameters | |
---|---|
Name | Description |
parent | AgentName Required. The agent containing the changelogs.
Format: |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<ListChangelogsResponse, Changelog> | A pageable asynchronous sequence of Changelog resources. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]");
// Make the request
PagedAsyncEnumerable<ListChangelogsResponse, Changelog> response = changelogsClient.ListChangelogsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Changelog 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((ListChangelogsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Changelog 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<Changelog> 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 (Changelog 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;
ListChangelogsAsync(ListChangelogsRequest, CallSettings)
public virtual PagedAsyncEnumerable<ListChangelogsResponse, Changelog> ListChangelogsAsync(ListChangelogsRequest request, CallSettings callSettings = null)
Returns the list of Changelogs.
Parameters | |
---|---|
Name | Description |
request | ListChangelogsRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<ListChangelogsResponse, Changelog> | A pageable asynchronous sequence of Changelog resources. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
ListChangelogsRequest request = new ListChangelogsRequest
{
ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
Filter = "",
};
// Make the request
PagedAsyncEnumerable<ListChangelogsResponse, Changelog> response = changelogsClient.ListChangelogsAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Changelog 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((ListChangelogsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Changelog 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<Changelog> 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 (Changelog 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;
ListChangelogsAsync(String, String, Nullable<Int32>, CallSettings)
public virtual PagedAsyncEnumerable<ListChangelogsResponse, Changelog> ListChangelogsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Returns the list of Changelogs.
Parameters | |
---|---|
Name | Description |
parent | String Required. The agent containing the changelogs.
Format: |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<ListChangelogsResponse, Changelog> | A pageable asynchronous sequence of Changelog resources. |
// Create client
ChangelogsClient changelogsClient = await ChangelogsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]";
// Make the request
PagedAsyncEnumerable<ListChangelogsResponse, Changelog> response = changelogsClient.ListChangelogsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Changelog 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((ListChangelogsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Changelog 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<Changelog> 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 (Changelog 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;
ShutdownDefaultChannelsAsync()
public static Task ShutdownDefaultChannelsAsync()
Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.
Returns | |
---|---|
Type | Description |
Task | A task representing the asynchronous shutdown operation. |
After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.