import * as pulumi from "@pulumi/pulumi"; /** * Creates an endpoint attachment. **Note:** Not supported for Apigee hybrid. * 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; /** * State of the endpoint attachment connection to the service attachment. */ readonly connectionState: pulumi.Output; /** * ID to use for the endpoint attachment. ID must start with a lowercase letter followed by up to 31 lowercase letters, numbers, or hyphens, and cannot end with a hyphen. The minimum length is 2. */ readonly endpointAttachmentId: pulumi.Output; /** * Host that can be used in either the HTTP target endpoint directly or as the host in target server. */ readonly host: pulumi.Output; /** * Location of the endpoint attachment. */ readonly location: pulumi.Output; /** * Name of the endpoint attachment. Use the following structure in your request: `organizations/{org}/endpointAttachments/{endpoint_attachment}` */ readonly name: pulumi.Output; readonly organizationId: pulumi.Output; /** * Format: projects/*/regions/*/serviceAttachments/* */ readonly serviceAttachment: pulumi.Output; /** * State of the endpoint attachment. Values other than `ACTIVE` mean the resource is not ready to use. */ readonly state: 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 { /** * ID to use for the endpoint attachment. ID must start with a lowercase letter followed by up to 31 lowercase letters, numbers, or hyphens, and cannot end with a hyphen. The minimum length is 2. */ endpointAttachmentId?: pulumi.Input; /** * Location of the endpoint attachment. */ location?: pulumi.Input; /** * Name of the endpoint attachment. Use the following structure in your request: `organizations/{org}/endpointAttachments/{endpoint_attachment}` */ name?: pulumi.Input; organizationId: pulumi.Input; /** * Format: projects/*/regions/*/serviceAttachments/* */ serviceAttachment?: pulumi.Input; }