import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleAccountApiTokenPermissionGroups = cloudflare.getAccountApiTokenPermissionGroups({ * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * name: "Account%20Settings%20Write", * scope: "com.cloudflare.api.account.zone", * }); * ``` */ export declare function getAccountApiTokenPermissionGroups(args: GetAccountApiTokenPermissionGroupsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccountApiTokenPermissionGroups. */ export interface GetAccountApiTokenPermissionGroupsArgs { /** * Account identifier tag. */ accountId: string; /** * 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 getAccountApiTokenPermissionGroups. */ export interface GetAccountApiTokenPermissionGroupsResult { /** * Account identifier tag. */ readonly accountId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Filter by the name of the permission group. * The value must be URL-encoded. */ readonly name?: string; /** * 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 exampleAccountApiTokenPermissionGroups = cloudflare.getAccountApiTokenPermissionGroups({ * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * name: "Account%20Settings%20Write", * scope: "com.cloudflare.api.account.zone", * }); * ``` */ export declare function getAccountApiTokenPermissionGroupsOutput(args: GetAccountApiTokenPermissionGroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccountApiTokenPermissionGroups. */ export interface GetAccountApiTokenPermissionGroupsOutputArgs { /** * Account identifier tag. */ accountId: 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; }