@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
120 lines (119 loc) • 4.26 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Provides a resource to manage privatelink vpc endpoint service permission
* ## 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 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",
* autoAcceptEnabled: true,
* });
* const fooVpcEndpointServicePermission = new volcengine.privatelink.VpcEndpointServicePermission("fooVpcEndpointServicePermission", {
* serviceId: fooVpcEndpointService.id,
* permitAccountId: "210000000",
* });
* ```
*
* ## Import
*
* VpcEndpointServicePermission can be imported using the serviceId:permitAccountId, e.g.
*
* ```sh
* $ pulumi import volcengine:privatelink/vpcEndpointServicePermission:VpcEndpointServicePermission default epsvc-2fe630gurkl37k5gfuy33****:2100000000
* ```
*/
export declare class VpcEndpointServicePermission extends pulumi.CustomResource {
/**
* Get an existing VpcEndpointServicePermission 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?: VpcEndpointServicePermissionState, opts?: pulumi.CustomResourceOptions): VpcEndpointServicePermission;
/**
* Returns true if the given object is an instance of VpcEndpointServicePermission. 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 VpcEndpointServicePermission;
/**
* The id of account.
*/
readonly permitAccountId: pulumi.Output<string>;
/**
* The id of service.
*/
readonly serviceId: pulumi.Output<string>;
/**
* Create a VpcEndpointServicePermission 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: VpcEndpointServicePermissionArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering VpcEndpointServicePermission resources.
*/
export interface VpcEndpointServicePermissionState {
/**
* The id of account.
*/
permitAccountId?: pulumi.Input<string>;
/**
* The id of service.
*/
serviceId?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a VpcEndpointServicePermission resource.
*/
export interface VpcEndpointServicePermissionArgs {
/**
* The id of account.
*/
permitAccountId: pulumi.Input<string>;
/**
* The id of service.
*/
serviceId: pulumi.Input<string>;
}