import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a new CustomConnectorVersion in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class CustomConnectorVersion extends pulumi.CustomResource { /** * Get an existing CustomConnectorVersion 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): CustomConnectorVersion; /** * Returns true if the given object is an instance of CustomConnectorVersion. 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 CustomConnectorVersion; /** * Configuration for establishing the authentication to the connector destination. */ readonly authConfig: pulumi.Output; /** * Created time. */ readonly createTime: pulumi.Output; readonly customConnectorId: pulumi.Output; /** * Required. Identifier to assign to the CreateCustomConnectorVersion. Must be unique within scope of the parent resource. */ readonly customConnectorVersionId: pulumi.Output; /** * Configuration of the customConnector's destination. */ readonly destinationConfig: pulumi.Output; /** * Optional. Whether to enable backend destination config. This is the backend server that the connector connects to. */ readonly enableBackendDestinationConfig: 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; }>; /** * Identifier. Resource name of the Version. Format: projects/{project}/locations/{location}/customConnectors/{custom_connector}/customConnectorVersions/{custom_connector_version} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Optional. Location of the custom connector spec. */ readonly specLocation: pulumi.Output; /** * Type of the customConnector. */ readonly type: pulumi.Output; /** * Updated time. */ readonly updateTime: pulumi.Output; /** * Create a CustomConnectorVersion 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: CustomConnectorVersionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CustomConnectorVersion resource. */ export interface CustomConnectorVersionArgs { /** * Configuration for establishing the authentication to the connector destination. */ authConfig: pulumi.Input; customConnectorId: pulumi.Input; /** * Required. Identifier to assign to the CreateCustomConnectorVersion. Must be unique within scope of the parent resource. */ customConnectorVersionId: pulumi.Input; /** * Configuration of the customConnector's destination. */ destinationConfig: pulumi.Input; /** * Optional. Whether to enable backend destination config. This is the backend server that the connector connects to. */ enableBackendDestinationConfig?: 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; }>; project?: pulumi.Input; /** * Optional. Location of the custom connector spec. */ specLocation?: pulumi.Input; /** * Type of the customConnector. */ type: pulumi.Input; }