Class ProjectsResource.LocationsResource.AgentsResource.ChangelogsResource.ListRequest
Returns the list of Changelogs.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.Dialogflow.v3beta1
Assembly: Google.Apis.Dialogflow.v3beta1.dll
Syntax
public class ProjectsResource.LocationsResource.AgentsResource.ChangelogsResource.ListRequest : DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListChangelogsResponse>, IClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListChangelogsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | parent |
Properties
Filter
The filter string. Supports filter by user_email, resource, type and create_time. Some
examples: 1. By user email: user_email = "someone@google.com" 2. By resource name: resource
= "projects/123/locations/global/agents/456/flows/789" 3. By resource display name:
display_name = "my agent" 4. By action: action = "Create" 5. By type: type = "flows" 6. By
create time. Currently predicates on create_time
and create_time_epoch_seconds
are
supported: create_time_epoch_seconds > 1551790877 AND create_time <=
2017-01-15T01:30:15.01Z 7. 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
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PageSize
The maximum number of items to return in a single page. By default 100 and at most 1000.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
The next_page_token value returned from a previous list request.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. The agent containing the changelogs. Format: projects//locations//agents/
.
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()