1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. VpcEndPointServiceWhiteList
tencentcloud 1.81.187 published on Monday, Apr 28, 2025 by tencentcloudstack

tencentcloud.VpcEndPointServiceWhiteList

Explore with Pulumi AI

Provides a resource to create a vpc end_point_service_white_list

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const endPointServiceWhiteList = new tencentcloud.VpcEndPointServiceWhiteList("endPointServiceWhiteList", {
    description: "terraform for test",
    endPointServiceId: "vpcsvc-69y13tdb",
    userUin: "100020512675",
});
Copy
import pulumi
import pulumi_tencentcloud as tencentcloud

end_point_service_white_list = tencentcloud.VpcEndPointServiceWhiteList("endPointServiceWhiteList",
    description="terraform for test",
    end_point_service_id="vpcsvc-69y13tdb",
    user_uin="100020512675")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := tencentcloud.NewVpcEndPointServiceWhiteList(ctx, "endPointServiceWhiteList", &tencentcloud.VpcEndPointServiceWhiteListArgs{
			Description:       pulumi.String("terraform for test"),
			EndPointServiceId: pulumi.String("vpcsvc-69y13tdb"),
			UserUin:           pulumi.String("100020512675"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var endPointServiceWhiteList = new Tencentcloud.VpcEndPointServiceWhiteList("endPointServiceWhiteList", new()
    {
        Description = "terraform for test",
        EndPointServiceId = "vpcsvc-69y13tdb",
        UserUin = "100020512675",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.VpcEndPointServiceWhiteList;
import com.pulumi.tencentcloud.VpcEndPointServiceWhiteListArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var endPointServiceWhiteList = new VpcEndPointServiceWhiteList("endPointServiceWhiteList", VpcEndPointServiceWhiteListArgs.builder()
            .description("terraform for test")
            .endPointServiceId("vpcsvc-69y13tdb")
            .userUin("100020512675")
            .build());

    }
}
Copy
resources:
  endPointServiceWhiteList:
    type: tencentcloud:VpcEndPointServiceWhiteList
    properties:
      description: terraform for test
      endPointServiceId: vpcsvc-69y13tdb
      userUin: '100020512675'
Copy

Create VpcEndPointServiceWhiteList Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new VpcEndPointServiceWhiteList(name: string, args: VpcEndPointServiceWhiteListArgs, opts?: CustomResourceOptions);
@overload
def VpcEndPointServiceWhiteList(resource_name: str,
                                args: VpcEndPointServiceWhiteListArgs,
                                opts: Optional[ResourceOptions] = None)

@overload
def VpcEndPointServiceWhiteList(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                end_point_service_id: Optional[str] = None,
                                user_uin: Optional[str] = None,
                                description: Optional[str] = None,
                                vpc_end_point_service_white_list_id: Optional[str] = None)
func NewVpcEndPointServiceWhiteList(ctx *Context, name string, args VpcEndPointServiceWhiteListArgs, opts ...ResourceOption) (*VpcEndPointServiceWhiteList, error)
public VpcEndPointServiceWhiteList(string name, VpcEndPointServiceWhiteListArgs args, CustomResourceOptions? opts = null)
public VpcEndPointServiceWhiteList(String name, VpcEndPointServiceWhiteListArgs args)
public VpcEndPointServiceWhiteList(String name, VpcEndPointServiceWhiteListArgs args, CustomResourceOptions options)
type: tencentcloud:VpcEndPointServiceWhiteList
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VpcEndPointServiceWhiteListArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VpcEndPointServiceWhiteListArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VpcEndPointServiceWhiteListArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VpcEndPointServiceWhiteListArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VpcEndPointServiceWhiteListArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

VpcEndPointServiceWhiteList Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The VpcEndPointServiceWhiteList resource accepts the following input properties:

EndPointServiceId This property is required. string
ID of endpoint service.
UserUin This property is required. string
UIN.
Description string
Description of white list.
VpcEndPointServiceWhiteListId string
ID of the resource.
EndPointServiceId This property is required. string
ID of endpoint service.
UserUin This property is required. string
UIN.
Description string
Description of white list.
VpcEndPointServiceWhiteListId string
ID of the resource.
endPointServiceId This property is required. String
ID of endpoint service.
userUin This property is required. String
UIN.
description String
Description of white list.
vpcEndPointServiceWhiteListId String
ID of the resource.
endPointServiceId This property is required. string
ID of endpoint service.
userUin This property is required. string
UIN.
description string
Description of white list.
vpcEndPointServiceWhiteListId string
ID of the resource.
end_point_service_id This property is required. str
ID of endpoint service.
user_uin This property is required. str
UIN.
description str
Description of white list.
vpc_end_point_service_white_list_id str
ID of the resource.
endPointServiceId This property is required. String
ID of endpoint service.
userUin This property is required. String
UIN.
description String
Description of white list.
vpcEndPointServiceWhiteListId String
ID of the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the VpcEndPointServiceWhiteList resource produces the following output properties:

CreateTime string
Create Time.
Id string
The provider-assigned unique ID for this managed resource.
Owner string
APPID.
CreateTime string
Create Time.
Id string
The provider-assigned unique ID for this managed resource.
Owner string
APPID.
createTime String
Create Time.
id String
The provider-assigned unique ID for this managed resource.
owner String
APPID.
createTime string
Create Time.
id string
The provider-assigned unique ID for this managed resource.
owner string
APPID.
create_time str
Create Time.
id str
The provider-assigned unique ID for this managed resource.
owner str
APPID.
createTime String
Create Time.
id String
The provider-assigned unique ID for this managed resource.
owner String
APPID.

Look up Existing VpcEndPointServiceWhiteList Resource

Get an existing VpcEndPointServiceWhiteList resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: VpcEndPointServiceWhiteListState, opts?: CustomResourceOptions): VpcEndPointServiceWhiteList
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        create_time: Optional[str] = None,
        description: Optional[str] = None,
        end_point_service_id: Optional[str] = None,
        owner: Optional[str] = None,
        user_uin: Optional[str] = None,
        vpc_end_point_service_white_list_id: Optional[str] = None) -> VpcEndPointServiceWhiteList
func GetVpcEndPointServiceWhiteList(ctx *Context, name string, id IDInput, state *VpcEndPointServiceWhiteListState, opts ...ResourceOption) (*VpcEndPointServiceWhiteList, error)
public static VpcEndPointServiceWhiteList Get(string name, Input<string> id, VpcEndPointServiceWhiteListState? state, CustomResourceOptions? opts = null)
public static VpcEndPointServiceWhiteList get(String name, Output<String> id, VpcEndPointServiceWhiteListState state, CustomResourceOptions options)
resources:  _:    type: tencentcloud:VpcEndPointServiceWhiteList    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CreateTime string
Create Time.
Description string
Description of white list.
EndPointServiceId string
ID of endpoint service.
Owner string
APPID.
UserUin string
UIN.
VpcEndPointServiceWhiteListId string
ID of the resource.
CreateTime string
Create Time.
Description string
Description of white list.
EndPointServiceId string
ID of endpoint service.
Owner string
APPID.
UserUin string
UIN.
VpcEndPointServiceWhiteListId string
ID of the resource.
createTime String
Create Time.
description String
Description of white list.
endPointServiceId String
ID of endpoint service.
owner String
APPID.
userUin String
UIN.
vpcEndPointServiceWhiteListId String
ID of the resource.
createTime string
Create Time.
description string
Description of white list.
endPointServiceId string
ID of endpoint service.
owner string
APPID.
userUin string
UIN.
vpcEndPointServiceWhiteListId string
ID of the resource.
create_time str
Create Time.
description str
Description of white list.
end_point_service_id str
ID of endpoint service.
owner str
APPID.
user_uin str
UIN.
vpc_end_point_service_white_list_id str
ID of the resource.
createTime String
Create Time.
description String
Description of white list.
endPointServiceId String
ID of endpoint service.
owner String
APPID.
userUin String
UIN.
vpcEndPointServiceWhiteListId String
ID of the resource.

Import

vpc end_point_service_white_list can be imported using the id, e.g.

$ pulumi import tencentcloud:index/vpcEndPointServiceWhiteList:VpcEndPointServiceWhiteList end_point_service_white_list end_point_service_white_list_id
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
tencentcloud tencentcloudstack/terraform-provider-tencentcloud
License
Notes
This Pulumi package is based on the tencentcloud Terraform Provider.