import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleAccountApiTokenPermissionGroupsList = cloudflare.getAccountApiTokenPermissionGroupsList({ * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * name: "Account%20Settings%20Write", * scope: "com.cloudflare.api.account.zone", * }); * ``` */ export declare function getAccountApiTokenPermissionGroupsList(args: GetAccountApiTokenPermissionGroupsListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccountApiTokenPermissionGroupsList. */ export interface GetAccountApiTokenPermissionGroupsListArgs { /** * Account identifier tag. */ accountId: string; /** * Max items to fetch, default: 1000 */ maxItems?: number; /** * Filter by the name of the permission group. * The value must be URL-encoded. */ name?: string; /** * Filter by the scope of the permission group. * The value must be URL-encoded. */ scope?: string; } /** * A collection of values returned by getAccountApiTokenPermissionGroupsList. */ export interface GetAccountApiTokenPermissionGroupsListResult { /** * Account identifier tag. */ readonly accountId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Max items to fetch, default: 1000 */ readonly maxItems?: number; /** * Filter by the name of the permission group. * The value must be URL-encoded. */ readonly name?: string; /** * The items returned by the data source */ readonly results: outputs.GetAccountApiTokenPermissionGroupsListResult[]; /** * Filter by the scope of the permission group. * The value must be URL-encoded. */ readonly scope?: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleAccountApiTokenPermissionGroupsList = cloudflare.getAccountApiTokenPermissionGroupsList({ * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * name: "Account%20Settings%20Write", * scope: "com.cloudflare.api.account.zone", * }); * ``` */ export declare function getAccountApiTokenPermissionGroupsListOutput(args: GetAccountApiTokenPermissionGroupsListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccountApiTokenPermissionGroupsList. */ export interface GetAccountApiTokenPermissionGroupsListOutputArgs { /** * Account identifier tag. */ accountId: pulumi.Input; /** * Max items to fetch, default: 1000 */ maxItems?: pulumi.Input; /** * Filter by the name of the permission group. * The value must be URL-encoded. */ name?: pulumi.Input; /** * Filter by the scope of the permission group. * The value must be URL-encoded. */ scope?: pulumi.Input; }