Show / Hide Table of Contents

Class ProjectsResource.AgentResource.KnowledgeBasesResource.DocumentsResource.ListRequest

Returns the list of all documents of the knowledge base.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>
ProjectsResource.AgentResource.KnowledgeBasesResource.DocumentsResource.ListRequest
Implements
IClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>
IClientServiceRequest
Inherited Members
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Xgafv
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.AccessToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Alt
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Callback
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Fields
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Key
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.OauthToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.PrettyPrint
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.QuotaUser
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.UploadType
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.UploadProtocol
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Execute()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.CreateRequest(bool?)
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.GetBody()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ETagAction
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ModifyRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ValidateParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ApiVersion
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.RequestParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dialogflow.v2
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class ProjectsResource.AgentResource.KnowledgeBasesResource.DocumentsResource.ListRequest : DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>, IClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>, 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 expression used to filter documents returned by the list method. The expression has the following syntax: [AND ] ... The following fields and operators are supported: * knowledge_types with has(:) operator * display_name with has(:) operator * state with equals(=) operator Examples: * "knowledge_types:FAQ" matches documents with FAQ knowledge type. * "display_name:customer" matches documents whose display name contains "customer". * "state=ACTIVE" matches documents with ACTIVE state. * "knowledge_types:FAQ AND state=ACTIVE" matches all active FAQ documents. For more information about filtering, see API Filtering.

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
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.MethodName

PageSize

The maximum number of items to return in a single page. By default 10 and at most 100.

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 knowledge base to list all documents for. Format: projects//locations//knowledgeBases/.

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
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX