Method: projects.locations.integrations.versions.testCases.list

Lists all the test cases that satisfy the filters.

HTTP request

GET https://integrations.googleapis.com/v1/{parent=projects/*/locations/*/integrations/*/versions/*}/testCases

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The parent resource where this TestCase was created.

Query parameters

Parameters
filter

string

Optional. Standard filter field. Filtering as supported in https://developers.google.com/authorized-buyers/apis/guides/list-filters.

pageSize

integer

Optional. The maximum number of test cases to return. The service may return fewer than this value. If unspecified, at most 100 test cases will be returned.

pageToken

string

Optional. A page token, received from a previous testCases.list call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to testCases.list must match the call that provided the page token.

orderBy

string

Optional. The results would be returned in order specified here. Currently supported sort keys are: Descending sort order for "lastModifiedTime", "createdTime". Ascending sort order for "name".

readMask

string (FieldMask format)

Optional. The mask which specifies fields that need to be returned in the TestCases's response.

This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo".

Request body

The request body must be empty.

Response body

Response for testCases.list

If successful, the response body contains data with the following structure:

JSON representation
{
  "testCases": [
    {
      object (TestCase)
    }
  ],
  "nextPageToken": string
}
Fields
testCases[]

object (TestCase)

The test cases corresponding to the specified filter

nextPageToken

string

A token, which can be sent as pageToken to retrieve the next page. If this field is omitted, there are no subsequent pages.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • integrations.testCases.list

For more information, see the IAM documentation.