Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.AgentsResource.TestCasesResource.ResultsResource.ListRequest

Fetches the list of run results for the given test case. A maximum of 100 results are kept for each test case.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>
ProjectsResource.LocationsResource.AgentsResource.TestCasesResource.ResultsResource.ListRequest
Implements
IClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>
IClientServiceRequest
Inherited Members
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.Xgafv
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.AccessToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.Alt
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.Callback
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.Fields
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.Key
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.OauthToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.PrettyPrint
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.QuotaUser
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.UploadType
DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.UploadProtocol
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.Execute()
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ExecuteAsync()
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.CreateRequest(bool?)
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.GetBody()
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ETagAction
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ModifyRequest
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ValidateParameters
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.ApiVersion
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.RequestParameters
ClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.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.v3beta1
Assembly: Google.Apis.Dialogflow.v3beta1.dll
Syntax
public class ProjectsResource.LocationsResource.AgentsResource.TestCasesResource.ResultsResource.ListRequest : DialogflowBaseServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>, IClientServiceRequest<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>, 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 test case results. See API Filtering. The expression is case insensitive. Only 'AND' is supported for logical operators. The supported syntax is listed below in detail: [AND ] ... [AND latest] The supported fields and operators are: field operator environment =, IN (Use value draft for draft environment) test_time &gt;, &lt; latest only returns the latest test result in all results for each test case. Examples: * "environment=draft AND latest" matches the latest test result for each test case in the draft environment. * "environment IN (e1,e2)" matches any test case results with an environment resource name of either "e1" or "e2". * "test_time &gt; 1602540713" matches any test case results with test time later than a unix timestamp in seconds 1602540713.

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<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.HttpMethod

MethodName

Gets the method name.

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

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 test case to list results for. Format: projects//locations//agents//testCases/. Specify a - as a wildcard for TestCase ID to list results across multiple test cases.

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<GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

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