import * as pulumi from "@pulumi/pulumi"; /** * The provider type for the Google Cloud package. */ export declare class Provider extends pulumi.ProviderResource { /** * Returns true if the given object is an instance of Provider. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Provider; /** * The default project to manage resources in. If another project is specified on a resource, it will take precedence. */ readonly project: pulumi.Output; /** * The default region to manage resources in. If another region is specified on a regional resource, it will take precedence. */ readonly region: pulumi.Output; /** * The default zone to manage resources in. Generally, this zone should be within the default region you specified. If another zone is specified on a zonal resource, it will take precedence. */ readonly zone: pulumi.Output; /** * Create a Provider resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: ProviderArgs, opts?: pulumi.ResourceOptions); } /** * The set of arguments for constructing a Provider resource. */ export interface ProviderArgs { /** * Additional user-agent string to append to the default one (/). */ appendUserAgent?: pulumi.Input; /** * This will disable the Pulumi Partner Name which is used if a custom `partnerName` isn't specified. */ disablePartnerName?: pulumi.Input; /** * A Google Partner Name to facilitate partner resource usage attribution. */ partnerName?: pulumi.Input; /** * The default project to manage resources in. If another project is specified on a resource, it will take precedence. */ project?: pulumi.Input; /** * The default region to manage resources in. If another region is specified on a regional resource, it will take precedence. */ region?: pulumi.Input; /** * The default zone to manage resources in. Generally, this zone should be within the default region you specified. If another zone is specified on a zonal resource, it will take precedence. */ zone?: pulumi.Input; }