import * as pulumi from "@pulumi/pulumi"; import * as enums from "../../types/enums"; /** * Creates a new CustomConnector in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class CustomConnector extends pulumi.CustomResource { /** * Get an existing CustomConnector 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): CustomConnector; /** * Returns true if the given object is an instance of CustomConnector. 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 CustomConnector; /** * Created time. */ readonly createTime: pulumi.Output; /** * Required. Identifier to assign to the CreateCustomConnector. Must be unique within scope of the parent resource. */ readonly customConnectorId: pulumi.Output; /** * Type of the custom connector. */ readonly customConnectorType: pulumi.Output; /** * Optional. Description of the resource. */ readonly description: pulumi.Output; /** * Optional. Display name. */ readonly displayName: pulumi.Output; /** * Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * Launch stage. */ readonly launchStage: pulumi.Output; /** * Optional. Logo of the resource. */ readonly logo: pulumi.Output; /** * Identifier. Resource name of the CustomConnector. Format: projects/{project}/locations/{location}/customConnectors/{connector} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Updated time. */ readonly updateTime: pulumi.Output; /** * Create a CustomConnector 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: CustomConnectorArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CustomConnector resource. */ export interface CustomConnectorArgs { /** * Required. Identifier to assign to the CreateCustomConnector. Must be unique within scope of the parent resource. */ customConnectorId: pulumi.Input; /** * Type of the custom connector. */ customConnectorType: pulumi.Input; /** * Optional. Description of the resource. */ description?: pulumi.Input; /** * Optional. Display name. */ displayName?: pulumi.Input; /** * Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Optional. Logo of the resource. */ logo?: pulumi.Input; /** * Identifier. Resource name of the CustomConnector. Format: projects/{project}/locations/{location}/customConnectors/{connector} */ name?: pulumi.Input; project?: pulumi.Input; }