public sealed class ListChangelogsRequest : IMessage<ListChangelogsRequest>, IEquatable<ListChangelogsRequest>, IDeepCloneable<ListChangelogsRequest>, IBufferMessage, IMessage, IPageRequest
Reference documentation and code samples for the Dialogflow v3 API class ListChangelogsRequest.
The request message for [Changelogs.ListChangelogs][google.cloud.dialogflow.cx.v3.Changelogs.ListChangelogs].
Implements
IMessageListChangelogsRequest, IEquatableListChangelogsRequest, IDeepCloneableListChangelogsRequest, IBufferMessage, IMessage, IPageRequestNamespace
Google.Cloud.Dialogflow.Cx.V3Assembly
Google.Cloud.Dialogflow.Cx.V3.dll
Constructors
ListChangelogsRequest()
public ListChangelogsRequest()
ListChangelogsRequest(ListChangelogsRequest)
public ListChangelogsRequest(ListChangelogsRequest other)
Parameter | |
---|---|
Name | Description |
other | ListChangelogsRequest |
Properties
Filter
public string Filter { get; set; }
The filter string. Supports filter by user_email, resource, type and create_time. Some examples:
- By user email: user_email = "someone@google.com"
- By resource name: resource = "projects/123/locations/global/agents/456/flows/789"
- By resource display name: display_name = "my agent"
- By action: action = "Create"
- By type: type = "flows"
- By create time. Currently predicates on
create_time
andcreate_time_epoch_seconds
are supported: create_time_epoch_seconds > 1551790877 AND create_time <= 2017-01-15T01:30:15.01Z - Combination of above filters: resource = "projects/123/locations/global/agents/456/flows/789" AND user_email = "someone@google.com" AND create_time <= 2017-01-15T01:30:15.01Z
Property Value | |
---|---|
Type | Description |
string |
PageSize
public int PageSize { get; set; }
The maximum number of items to return in a single page. By default 100 and at most 1000.
Property Value | |
---|---|
Type | Description |
int |
PageToken
public string PageToken { get; set; }
The next_page_token value returned from a previous list request.
Property Value | |
---|---|
Type | Description |
string |
Parent
public string Parent { get; set; }
Required. The agent containing the changelogs.
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>
.
Property Value | |
---|---|
Type | Description |
string |
ParentAsAgentName
public AgentName ParentAsAgentName { get; set; }
Property Value | |
---|---|
Type | Description |
AgentName |