import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get information about a BackendBucket. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const my_backend_bucket = gcp.compute.getBackendBucket({ * name: "my-backend", * }); * ``` */ export declare function getBackendBucket(args: GetBackendBucketArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBackendBucket. */ export interface GetBackendBucketArgs { /** * Name of the resource. * * - - - */ name: string; /** * The ID of the project in which the resource belongs. If it * is not provided, the provider project is used. */ project?: string; } /** * A collection of values returned by getBackendBucket. */ export interface GetBackendBucketResult { readonly bucketName: string; readonly cdnPolicies: outputs.compute.GetBackendBucketCdnPolicy[]; readonly compressionMode: string; readonly creationTimestamp: string; readonly customResponseHeaders: string[]; readonly description: string; readonly edgeSecurityPolicy: string; readonly enableCdn: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly loadBalancingScheme: string; readonly name: string; readonly params: outputs.compute.GetBackendBucketParam[]; readonly project?: string; readonly selfLink: string; } /** * Get information about a BackendBucket. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const my_backend_bucket = gcp.compute.getBackendBucket({ * name: "my-backend", * }); * ``` */ export declare function getBackendBucketOutput(args: GetBackendBucketOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBackendBucket. */ export interface GetBackendBucketOutputArgs { /** * Name of the resource. * * - - - */ name: pulumi.Input; /** * The ID of the project in which the resource belongs. If it * is not provided, the provider project is used. */ project?: pulumi.Input; }