Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OperationsListOptions

import type { OperationsListOptions } from "https://googleapis.deno.dev/v1/servicemanagement:v1.ts";

Additional options for ServiceManagement#operationsList.

interface OperationsListOptions {
filter?: string;
name?: string;
pageSize?: number;
pageToken?: string;
returnPartialSuccess?: boolean;
}

§Properties

§
filter?: string
[src]

A string for filtering Operations. The following filter fields are supported: * serviceName: Required. Only = operator is allowed. * startTime: The time this job was started, in ISO 8601 format. Allowed operators are >=, >, <=, and <. * status: Can be done, in_progress, or failed. Allowed operators are =, and !=. Filter expression supports conjunction (AND) and disjunction (OR) logical operators. However, the serviceName restriction must be at the top-level and can only be combined with other restrictions via the AND logical operator. Examples: * serviceName={some-service}.googleapis.com * serviceName={some-service}.googleapis.com AND startTime>="2017-02-01" * serviceName={some-service}.googleapis.com AND status=done * serviceName={some-service}.googleapis.com AND (status=done OR startTime>="2017-02-01")

§
name?: string
[src]

Not used.

§
pageSize?: number
[src]

The maximum number of operations to return. If unspecified, defaults to 50. The maximum value is 100.

§
pageToken?: string
[src]

The standard list page token.

§
returnPartialSuccess?: boolean
[src]

When set to true, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be true when reading across collections. For example, when parent is set to "projects/example/locations/-". This field is not supported by default and will result in an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or product specific documentation.