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 exampleResourceGroup = cloudflare.getResourceGroup({ * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * resourceGroupId: "023e105f4ecef8ad9ca31a8372d0c353", * }); * ``` */ export declare function getResourceGroup(args: GetResourceGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResourceGroup. */ export interface GetResourceGroupArgs { /** * Account identifier tag. */ accountId: string; /** * Resource Group identifier tag. */ resourceGroupId: string; } /** * A collection of values returned by getResourceGroup. */ export interface GetResourceGroupResult { /** * Account identifier tag. */ readonly accountId: string; /** * Identifier of the resource group. */ readonly id: string; /** * Attributes associated to the resource group. */ readonly meta: outputs.GetResourceGroupMeta; /** * Name of the resource group. */ readonly name: string; /** * Resource Group identifier tag. */ readonly resourceGroupId: string; /** * The scope associated to the resource group */ readonly scopes: outputs.GetResourceGroupScope[]; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleResourceGroup = cloudflare.getResourceGroup({ * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * resourceGroupId: "023e105f4ecef8ad9ca31a8372d0c353", * }); * ``` */ export declare function getResourceGroupOutput(args: GetResourceGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getResourceGroup. */ export interface GetResourceGroupOutputArgs { /** * Account identifier tag. */ accountId: pulumi.Input; /** * Resource Group identifier tag. */ resourceGroupId: pulumi.Input; }