UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

190 lines (189 loc) 6.46 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Provides a resource to manage privatelink vpc endpoint connection * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * import * as volcengine from "@volcengine/pulumi"; * * const fooZones = volcengine.ecs.getZones({}); * const fooVpc = new volcengine.vpc.Vpc("fooVpc", { * vpcName: "acc-test-vpc", * cidrBlock: "172.16.0.0/16", * }); * const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", { * subnetName: "acc-test-subnet", * cidrBlock: "172.16.0.0/24", * zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id), * vpcId: fooVpc.id, * }); * const fooSecurityGroup = new volcengine.vpc.SecurityGroup("fooSecurityGroup", { * securityGroupName: "acc-test-security-group", * vpcId: fooVpc.id, * }); * const fooClb = new volcengine.clb.Clb("fooClb", { * type: "public", * subnetId: fooSubnet.id, * loadBalancerSpec: "small_1", * description: "acc-test-demo", * loadBalancerName: "acc-test-clb", * loadBalancerBillingType: "PostPaid", * eipBillingConfig: { * isp: "BGP", * eipBillingType: "PostPaidByBandwidth", * bandwidth: 1, * }, * tags: [{ * key: "k1", * value: "v1", * }], * }); * const fooVpcEndpointService = new volcengine.privatelink.VpcEndpointService("fooVpcEndpointService", { * resources: [{ * resourceId: fooClb.id, * resourceType: "CLB", * }], * description: "acc-test", * }); * const fooVpcEndpoint = new volcengine.privatelink.VpcEndpoint("fooVpcEndpoint", { * securityGroupIds: [fooSecurityGroup.id], * serviceId: fooVpcEndpointService.id, * endpointName: "acc-test-ep", * description: "acc-test", * }); * //resource "volcengine_privatelink_vpc_endpoint_connection" "foo" { * // endpoint_id = volcengine_privatelink_vpc_endpoint.foo.id * // service_id = volcengine_privatelink_vpc_endpoint_service.foo.id * //} * const fooVpcEndpointZone = new volcengine.privatelink.VpcEndpointZone("fooVpcEndpointZone", { * endpointId: fooVpcEndpoint.id, * subnetId: fooSubnet.id, * privateIpAddress: "172.16.0.251", * }); * const fooVpcEndpointConnection = new volcengine.privatelink.VpcEndpointConnection("fooVpcEndpointConnection", { * endpointId: fooVpcEndpoint.id, * serviceId: fooVpcEndpointService.id, * }, { * dependsOn: [fooVpcEndpointZone], * }); * ``` * * ## Import * * PrivateLink Vpc Endpoint Connection Service can be imported using the endpoint id and service id, e.g. * * ```sh * $ pulumi import volcengine:privatelink/vpcEndpointConnection:VpcEndpointConnection default ep-3rel74u229dz45zsk2i6l69qa:epsvc-2byz5mykk9y4g2dx0efs4aqz3 * ``` */ export declare class VpcEndpointConnection extends pulumi.CustomResource { /** * Get an existing VpcEndpointConnection 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: VpcEndpointConnectionState, opts?: pulumi.CustomResourceOptions): VpcEndpointConnection; /** * Returns true if the given object is an instance of VpcEndpointConnection. 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 VpcEndpointConnection; /** * The status of the connection. */ readonly connectionStatus: pulumi.Output<string>; /** * The create time of the connection. */ readonly creationTime: pulumi.Output<string>; /** * The id of the endpoint. */ readonly endpointId: pulumi.Output<string>; /** * The account id of the vpc endpoint. */ readonly endpointOwnerAccountId: pulumi.Output<string>; /** * The vpc id of the vpc endpoint. */ readonly endpointVpcId: pulumi.Output<string>; /** * The id of the security group. */ readonly serviceId: pulumi.Output<string>; /** * The update time of the connection. */ readonly updateTime: pulumi.Output<string>; /** * The available zones. */ readonly zones: pulumi.Output<outputs.privatelink.VpcEndpointConnectionZone[]>; /** * Create a VpcEndpointConnection 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: VpcEndpointConnectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VpcEndpointConnection resources. */ export interface VpcEndpointConnectionState { /** * The status of the connection. */ connectionStatus?: pulumi.Input<string>; /** * The create time of the connection. */ creationTime?: pulumi.Input<string>; /** * The id of the endpoint. */ endpointId?: pulumi.Input<string>; /** * The account id of the vpc endpoint. */ endpointOwnerAccountId?: pulumi.Input<string>; /** * The vpc id of the vpc endpoint. */ endpointVpcId?: pulumi.Input<string>; /** * The id of the security group. */ serviceId?: pulumi.Input<string>; /** * The update time of the connection. */ updateTime?: pulumi.Input<string>; /** * The available zones. */ zones?: pulumi.Input<pulumi.Input<inputs.privatelink.VpcEndpointConnectionZone>[]>; } /** * The set of arguments for constructing a VpcEndpointConnection resource. */ export interface VpcEndpointConnectionArgs { /** * The id of the endpoint. */ endpointId: pulumi.Input<string>; /** * The id of the security group. */ serviceId: pulumi.Input<string>; }