import { APIResource } from "../../core/resource.js"; import { CursorPaginationAfter, type CursorPaginationAfterParams, PagePromise } from "../../core/pagination.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class BaseValues extends APIResource { static readonly _key: readonly ['resourceTagging', 'values']; /** * Lists all distinct values for a given tag key, optionally filtered by resource * type. */ list(tagKey: string, params: ValueListParams, options?: RequestOptions): PagePromise; } export declare class Values extends BaseValues { } export type ValueListResponsesCursorPaginationAfter = CursorPaginationAfter; export type ValueListResponse = string; export interface ValueListParams extends CursorPaginationAfterParams { /** * Path param: Identifier. */ account_id: string; /** * Query param: Filter by resource type. */ type?: 'access_application' | 'access_application_policy' | 'access_group' | 'account' | 'ai_gateway' | 'alerting_policy' | 'alerting_webhook' | 'api_gateway_operation' | 'cloudflared_tunnel' | 'custom_certificate' | 'custom_hostname' | 'd1_database' | 'dns_record' | 'durable_object_namespace' | 'gateway_list' | 'gateway_rule' | 'image' | 'kv_namespace' | 'managed_client_certificate' | 'queue' | 'r2_bucket' | 'resource_share' | 'stream_live_input' | 'stream_video' | 'worker' | 'worker_version' | 'zone'; } export declare namespace Values { export { type ValueListResponse as ValueListResponse, type ValueListResponsesCursorPaginationAfter as ValueListResponsesCursorPaginationAfter, type ValueListParams as ValueListParams, }; } //# sourceMappingURL=values.d.ts.map