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

ServicesSearchOptions

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

Additional options for ServiceConsumerManagement#servicesSearch.

interface ServicesSearchOptions {
pageSize?: number;
pageToken?: string;
query?: string;
}

§Properties

§
pageSize?: number
[src]

Optional. The maximum number of results returned by this request. Currently, the default maximum is set to 1000. If page_size isn't provided or the size provided is a number larger than 1000, it's automatically set to 1000.

§
pageToken?: string
[src]

Optional. The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.

§
query?: string
[src]

Optional. Set a query {expression} for querying tenancy units. Your {expression} must be in the format: field_name=literal_string. The field_name is the name of the field you want to compare. Supported fields are tenant_resources.tag and tenant_resources.resource. For example, to search tenancy units that contain at least one tenant resource with a given tag 'xyz', use the query tenant_resources.tag=xyz. To search tenancy units that contain at least one tenant resource with a given resource name 'projects/123456', use the query tenant_resources.resource=projects/123456. Multiple expressions can be joined with ANDs. Tenancy units must match all expressions to be included in the result set. For example, tenant_resources.tag=xyz AND tenant_resources.resource=projects/123456