import * as pulumi from "@pulumi/pulumi"; /** * Creates an sfdc instance record. Store the sfdc instance in Spanner. Returns the sfdc instance. * Auto-naming is currently not supported for this resource. */ export declare class SfdcInstance extends pulumi.CustomResource { /** * Get an existing SfdcInstance resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): SfdcInstance; /** * Returns true if the given object is an instance of SfdcInstance. 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 SfdcInstance; /** * A list of AuthConfigs that can be tried to open the channel to SFDC */ readonly authConfigId: pulumi.Output; /** * Time when the instance is created */ readonly createTime: pulumi.Output; /** * Time when the instance was deleted. Empty if not deleted. */ readonly deleteTime: pulumi.Output; /** * A description of the sfdc instance. */ readonly description: pulumi.Output; /** * User selected unique name/alias to easily reference an instance. */ readonly displayName: pulumi.Output; readonly location: pulumi.Output; /** * Resource name of the SFDC instance projects/{project}/locations/{location}/sfdcInstances/{sfdcInstance}. */ readonly name: pulumi.Output; readonly productId: pulumi.Output; readonly project: pulumi.Output; /** * URL used for API calls after authentication (the login authority is configured within the referenced AuthConfig). */ readonly serviceAuthority: pulumi.Output; /** * The SFDC Org Id. This is defined in salesforce. */ readonly sfdcOrgId: pulumi.Output; /** * Time when the instance was last updated */ readonly updateTime: pulumi.Output; /** * Create a SfdcInstance 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: SfdcInstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SfdcInstance resource. */ export interface SfdcInstanceArgs { /** * A list of AuthConfigs that can be tried to open the channel to SFDC */ authConfigId?: pulumi.Input[]>; /** * A description of the sfdc instance. */ description?: pulumi.Input; /** * User selected unique name/alias to easily reference an instance. */ displayName?: pulumi.Input; location?: pulumi.Input; /** * Resource name of the SFDC instance projects/{project}/locations/{location}/sfdcInstances/{sfdcInstance}. */ name?: pulumi.Input; productId: pulumi.Input; project?: pulumi.Input; /** * URL used for API calls after authentication (the login authority is configured within the referenced AuthConfig). */ serviceAuthority?: pulumi.Input; /** * The SFDC Org Id. This is defined in salesforce. */ sfdcOrgId?: pulumi.Input; }