import * as pulumi from "@pulumi/pulumi"; /** * Creates a new EndpointAttachment in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class EndpointAttachment extends pulumi.CustomResource { /** * Get an existing EndpointAttachment 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): EndpointAttachment; /** * Returns true if the given object is an instance of EndpointAttachment. 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 EndpointAttachment; /** * Created time. */ readonly createTime: pulumi.Output; /** * Optional. Description of the resource. */ readonly description: pulumi.Output; /** * Required. Identifier to assign to the EndpointAttachment. Must be unique within scope of the parent resource. */ readonly endpointAttachmentId: pulumi.Output; /** * The Private Service Connect connection endpoint ip */ readonly endpointIp: 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; }>; readonly location: pulumi.Output; /** * Resource name of the Endpoint Attachment. Format: projects/{project}/locations/{location}/endpointAttachments/{endpoint_attachment} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The path of the service attachment */ readonly serviceAttachment: pulumi.Output; /** * Updated time. */ readonly updateTime: pulumi.Output; /** * Create a EndpointAttachment 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: EndpointAttachmentArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a EndpointAttachment resource. */ export interface EndpointAttachmentArgs { /** * Optional. Description of the resource. */ description?: pulumi.Input; /** * Required. Identifier to assign to the EndpointAttachment. Must be unique within scope of the parent resource. */ endpointAttachmentId: 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; }>; location?: pulumi.Input; project?: pulumi.Input; /** * The path of the service attachment */ serviceAttachment: pulumi.Input; }