1. Packages
  2. Opentelekomcloud Provider
  3. API Docs
  4. VpcepApprovalV1
opentelekomcloud 1.36.35 published on Monday, Apr 14, 2025 by opentelekomcloud

opentelekomcloud.VpcepApprovalV1

Explore with Pulumi AI

Provides a resource to manage the VPC endpoint connections.

Example Usage

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

const config = new pulumi.Config();
const serviceVpcId = config.requireObject("serviceVpcId");
const vmPort = config.requireObject("vmPort");
const vpcId = config.requireObject("vpcId");
const subnetId = config.requireObject("subnetId");
const srv = new opentelekomcloud.VpcepServiceV1("srv", {
    serverType: "VM",
    vpcId: serviceVpcId,
    portId: vmPort,
    approvalEnabled: true,
    ports: [{
        serverPort: 8080,
        clientPort: 80,
    }],
});
const ep = new opentelekomcloud.VpcepEndpointV1("ep", {
    serviceId: srv.vpcepServiceV1Id,
    vpcId: vpcId,
    subnetId: subnetId,
    enableDns: true,
});
const approval = new opentelekomcloud.VpcepApprovalV1("approval", {
    serviceId: srv.vpcepServiceV1Id,
    endpoints: [ep.vpcepEndpointV1Id],
});
Copy
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud

config = pulumi.Config()
service_vpc_id = config.require_object("serviceVpcId")
vm_port = config.require_object("vmPort")
vpc_id = config.require_object("vpcId")
subnet_id = config.require_object("subnetId")
srv = opentelekomcloud.VpcepServiceV1("srv",
    server_type="VM",
    vpc_id=service_vpc_id,
    port_id=vm_port,
    approval_enabled=True,
    ports=[{
        "server_port": 8080,
        "client_port": 80,
    }])
ep = opentelekomcloud.VpcepEndpointV1("ep",
    service_id=srv.vpcep_service_v1_id,
    vpc_id=vpc_id,
    subnet_id=subnet_id,
    enable_dns=True)
approval = opentelekomcloud.VpcepApprovalV1("approval",
    service_id=srv.vpcep_service_v1_id,
    endpoints=[ep.vpcep_endpoint_v1_id])
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		serviceVpcId := cfg.RequireObject("serviceVpcId")
		vmPort := cfg.RequireObject("vmPort")
		vpcId := cfg.RequireObject("vpcId")
		subnetId := cfg.RequireObject("subnetId")
		srv, err := opentelekomcloud.NewVpcepServiceV1(ctx, "srv", &opentelekomcloud.VpcepServiceV1Args{
			ServerType:      pulumi.String("VM"),
			VpcId:           pulumi.Any(serviceVpcId),
			PortId:          pulumi.Any(vmPort),
			ApprovalEnabled: pulumi.Bool(true),
			Ports: opentelekomcloud.VpcepServiceV1PortArray{
				&opentelekomcloud.VpcepServiceV1PortArgs{
					ServerPort: pulumi.Float64(8080),
					ClientPort: pulumi.Float64(80),
				},
			},
		})
		if err != nil {
			return err
		}
		ep, err := opentelekomcloud.NewVpcepEndpointV1(ctx, "ep", &opentelekomcloud.VpcepEndpointV1Args{
			ServiceId: srv.VpcepServiceV1Id,
			VpcId:     pulumi.Any(vpcId),
			SubnetId:  pulumi.Any(subnetId),
			EnableDns: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		_, err = opentelekomcloud.NewVpcepApprovalV1(ctx, "approval", &opentelekomcloud.VpcepApprovalV1Args{
			ServiceId: srv.VpcepServiceV1Id,
			Endpoints: pulumi.StringArray{
				ep.VpcepEndpointV1Id,
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var serviceVpcId = config.RequireObject<dynamic>("serviceVpcId");
    var vmPort = config.RequireObject<dynamic>("vmPort");
    var vpcId = config.RequireObject<dynamic>("vpcId");
    var subnetId = config.RequireObject<dynamic>("subnetId");
    var srv = new Opentelekomcloud.VpcepServiceV1("srv", new()
    {
        ServerType = "VM",
        VpcId = serviceVpcId,
        PortId = vmPort,
        ApprovalEnabled = true,
        Ports = new[]
        {
            new Opentelekomcloud.Inputs.VpcepServiceV1PortArgs
            {
                ServerPort = 8080,
                ClientPort = 80,
            },
        },
    });

    var ep = new Opentelekomcloud.VpcepEndpointV1("ep", new()
    {
        ServiceId = srv.VpcepServiceV1Id,
        VpcId = vpcId,
        SubnetId = subnetId,
        EnableDns = true,
    });

    var approval = new Opentelekomcloud.VpcepApprovalV1("approval", new()
    {
        ServiceId = srv.VpcepServiceV1Id,
        Endpoints = new[]
        {
            ep.VpcepEndpointV1Id,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.VpcepServiceV1;
import com.pulumi.opentelekomcloud.VpcepServiceV1Args;
import com.pulumi.opentelekomcloud.inputs.VpcepServiceV1PortArgs;
import com.pulumi.opentelekomcloud.VpcepEndpointV1;
import com.pulumi.opentelekomcloud.VpcepEndpointV1Args;
import com.pulumi.opentelekomcloud.VpcepApprovalV1;
import com.pulumi.opentelekomcloud.VpcepApprovalV1Args;
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) {
        final var config = ctx.config();
        final var serviceVpcId = config.get("serviceVpcId");
        final var vmPort = config.get("vmPort");
        final var vpcId = config.get("vpcId");
        final var subnetId = config.get("subnetId");
        var srv = new VpcepServiceV1("srv", VpcepServiceV1Args.builder()
            .serverType("VM")
            .vpcId(serviceVpcId)
            .portId(vmPort)
            .approvalEnabled(true)
            .ports(VpcepServiceV1PortArgs.builder()
                .serverPort(8080)
                .clientPort(80)
                .build())
            .build());

        var ep = new VpcepEndpointV1("ep", VpcepEndpointV1Args.builder()
            .serviceId(srv.vpcepServiceV1Id())
            .vpcId(vpcId)
            .subnetId(subnetId)
            .enableDns(true)
            .build());

        var approval = new VpcepApprovalV1("approval", VpcepApprovalV1Args.builder()
            .serviceId(srv.vpcepServiceV1Id())
            .endpoints(ep.vpcepEndpointV1Id())
            .build());

    }
}
Copy
configuration:
  serviceVpcId:
    type: dynamic
  vmPort:
    type: dynamic
  vpcId:
    type: dynamic
  subnetId:
    type: dynamic
resources:
  srv:
    type: opentelekomcloud:VpcepServiceV1
    properties:
      serverType: VM
      vpcId: ${serviceVpcId}
      portId: ${vmPort}
      approvalEnabled: true
      ports:
        - serverPort: 8080
          clientPort: 80
  ep:
    type: opentelekomcloud:VpcepEndpointV1
    properties:
      serviceId: ${srv.vpcepServiceV1Id}
      vpcId: ${vpcId}
      subnetId: ${subnetId}
      enableDns: true
  approval:
    type: opentelekomcloud:VpcepApprovalV1
    properties:
      serviceId: ${srv.vpcepServiceV1Id}
      endpoints:
        - ${ep.vpcepEndpointV1Id}
Copy

Create VpcepApprovalV1 Resource

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

Constructor syntax

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

@overload
def VpcepApprovalV1(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    endpoints: Optional[Sequence[str]] = None,
                    service_id: Optional[str] = None,
                    timeouts: Optional[VpcepApprovalV1TimeoutsArgs] = None,
                    vpcep_approval_v1_id: Optional[str] = None)
func NewVpcepApprovalV1(ctx *Context, name string, args VpcepApprovalV1Args, opts ...ResourceOption) (*VpcepApprovalV1, error)
public VpcepApprovalV1(string name, VpcepApprovalV1Args args, CustomResourceOptions? opts = null)
public VpcepApprovalV1(String name, VpcepApprovalV1Args args)
public VpcepApprovalV1(String name, VpcepApprovalV1Args args, CustomResourceOptions options)
type: opentelekomcloud:VpcepApprovalV1
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. VpcepApprovalV1Args
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. VpcepApprovalV1Args
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. VpcepApprovalV1Args
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. VpcepApprovalV1Args
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. VpcepApprovalV1Args
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var vpcepApprovalV1Resource = new Opentelekomcloud.VpcepApprovalV1("vpcepApprovalV1Resource", new()
{
    Endpoints = new[]
    {
        "string",
    },
    ServiceId = "string",
    Timeouts = new Opentelekomcloud.Inputs.VpcepApprovalV1TimeoutsArgs
    {
        Create = "string",
        Delete = "string",
    },
    VpcepApprovalV1Id = "string",
});
Copy
example, err := opentelekomcloud.NewVpcepApprovalV1(ctx, "vpcepApprovalV1Resource", &opentelekomcloud.VpcepApprovalV1Args{
Endpoints: pulumi.StringArray{
pulumi.String("string"),
},
ServiceId: pulumi.String("string"),
Timeouts: &.VpcepApprovalV1TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
VpcepApprovalV1Id: pulumi.String("string"),
})
Copy
var vpcepApprovalV1Resource = new VpcepApprovalV1("vpcepApprovalV1Resource", VpcepApprovalV1Args.builder()
    .endpoints("string")
    .serviceId("string")
    .timeouts(VpcepApprovalV1TimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .build())
    .vpcepApprovalV1Id("string")
    .build());
Copy
vpcep_approval_v1_resource = opentelekomcloud.VpcepApprovalV1("vpcepApprovalV1Resource",
    endpoints=["string"],
    service_id="string",
    timeouts={
        "create": "string",
        "delete": "string",
    },
    vpcep_approval_v1_id="string")
Copy
const vpcepApprovalV1Resource = new opentelekomcloud.VpcepApprovalV1("vpcepApprovalV1Resource", {
    endpoints: ["string"],
    serviceId: "string",
    timeouts: {
        create: "string",
        "delete": "string",
    },
    vpcepApprovalV1Id: "string",
});
Copy
type: opentelekomcloud:VpcepApprovalV1
properties:
    endpoints:
        - string
    serviceId: string
    timeouts:
        create: string
        delete: string
    vpcepApprovalV1Id: string
Copy

VpcepApprovalV1 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 VpcepApprovalV1 resource accepts the following input properties:

Endpoints This property is required. List<string>
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
ServiceId This property is required. string
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
Timeouts VpcepApprovalV1Timeouts
VpcepApprovalV1Id string
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
Endpoints This property is required. []string
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
ServiceId This property is required. string
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
Timeouts VpcepApprovalV1TimeoutsArgs
VpcepApprovalV1Id string
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
endpoints This property is required. List<String>
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
serviceId This property is required. String
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
timeouts VpcepApprovalV1Timeouts
vpcepApprovalV1Id String
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
endpoints This property is required. string[]
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
serviceId This property is required. string
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
timeouts VpcepApprovalV1Timeouts
vpcepApprovalV1Id string
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
endpoints This property is required. Sequence[str]
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
service_id This property is required. str
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
timeouts VpcepApprovalV1TimeoutsArgs
vpcep_approval_v1_id str
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
endpoints This property is required. List<String>
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
serviceId This property is required. String
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
timeouts Property Map
vpcepApprovalV1Id String
The unique ID in UUID format which equals to the ID of the VPC endpoint service.

Outputs

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

Connections List<VpcepApprovalV1Connection>
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
Id string
The provider-assigned unique ID for this managed resource.
Region string
The VPC endpoint service region.
Connections []VpcepApprovalV1Connection
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
Id string
The provider-assigned unique ID for this managed resource.
Region string
The VPC endpoint service region.
connections List<VpcepApprovalV1Connection>
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
id String
The provider-assigned unique ID for this managed resource.
region String
The VPC endpoint service region.
connections VpcepApprovalV1Connection[]
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
id string
The provider-assigned unique ID for this managed resource.
region string
The VPC endpoint service region.
connections Sequence[VpcepApprovalV1Connection]
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
id str
The provider-assigned unique ID for this managed resource.
region str
The VPC endpoint service region.
connections List<Property Map>
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
id String
The provider-assigned unique ID for this managed resource.
region String
The VPC endpoint service region.

Look up Existing VpcepApprovalV1 Resource

Get an existing VpcepApprovalV1 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?: VpcepApprovalV1State, opts?: CustomResourceOptions): VpcepApprovalV1
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        connections: Optional[Sequence[VpcepApprovalV1ConnectionArgs]] = None,
        endpoints: Optional[Sequence[str]] = None,
        region: Optional[str] = None,
        service_id: Optional[str] = None,
        timeouts: Optional[VpcepApprovalV1TimeoutsArgs] = None,
        vpcep_approval_v1_id: Optional[str] = None) -> VpcepApprovalV1
func GetVpcepApprovalV1(ctx *Context, name string, id IDInput, state *VpcepApprovalV1State, opts ...ResourceOption) (*VpcepApprovalV1, error)
public static VpcepApprovalV1 Get(string name, Input<string> id, VpcepApprovalV1State? state, CustomResourceOptions? opts = null)
public static VpcepApprovalV1 get(String name, Output<String> id, VpcepApprovalV1State state, CustomResourceOptions options)
resources:  _:    type: opentelekomcloud:VpcepApprovalV1    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:
Connections List<VpcepApprovalV1Connection>
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
Endpoints List<string>
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
Region string
The VPC endpoint service region.
ServiceId string
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
Timeouts VpcepApprovalV1Timeouts
VpcepApprovalV1Id string
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
Connections []VpcepApprovalV1ConnectionArgs
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
Endpoints []string
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
Region string
The VPC endpoint service region.
ServiceId string
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
Timeouts VpcepApprovalV1TimeoutsArgs
VpcepApprovalV1Id string
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
connections List<VpcepApprovalV1Connection>
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
endpoints List<String>
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
region String
The VPC endpoint service region.
serviceId String
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
timeouts VpcepApprovalV1Timeouts
vpcepApprovalV1Id String
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
connections VpcepApprovalV1Connection[]
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
endpoints string[]
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
region string
The VPC endpoint service region.
serviceId string
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
timeouts VpcepApprovalV1Timeouts
vpcepApprovalV1Id string
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
connections Sequence[VpcepApprovalV1ConnectionArgs]
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
endpoints Sequence[str]
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
region str
The VPC endpoint service region.
service_id str
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
timeouts VpcepApprovalV1TimeoutsArgs
vpcep_approval_v1_id str
The unique ID in UUID format which equals to the ID of the VPC endpoint service.
connections List<Property Map>
An array of VPC endpoints connect to the VPC endpoint service. Structure is documented below.
endpoints List<String>
Specifies the list of VPC endpoint IDs which accepted to connect to VPC endpoint service. The VPC endpoints will be rejected when the resource was destroyed.
region String
The VPC endpoint service region.
serviceId String
Specifies the ID of the VPC endpoint service. Changing this creates a new resource.
timeouts Property Map
vpcepApprovalV1Id String
The unique ID in UUID format which equals to the ID of the VPC endpoint service.

Supporting Types

VpcepApprovalV1Connection
, VpcepApprovalV1ConnectionArgs

CreatedAt This property is required. string
Description This property is required. string
The description of the VPC endpoint service connection.
DomainId This property is required. string
The user's domain ID.
EndpointId This property is required. string
The unique ID of the VPC endpoint.
PacketId This property is required. double
The packet ID of the VPC endpoint.
Status This property is required. string
The connection status of the VPC endpoint.
UpdatedAt This property is required. string
CreatedAt This property is required. string
Description This property is required. string
The description of the VPC endpoint service connection.
DomainId This property is required. string
The user's domain ID.
EndpointId This property is required. string
The unique ID of the VPC endpoint.
PacketId This property is required. float64
The packet ID of the VPC endpoint.
Status This property is required. string
The connection status of the VPC endpoint.
UpdatedAt This property is required. string
createdAt This property is required. String
description This property is required. String
The description of the VPC endpoint service connection.
domainId This property is required. String
The user's domain ID.
endpointId This property is required. String
The unique ID of the VPC endpoint.
packetId This property is required. Double
The packet ID of the VPC endpoint.
status This property is required. String
The connection status of the VPC endpoint.
updatedAt This property is required. String
createdAt This property is required. string
description This property is required. string
The description of the VPC endpoint service connection.
domainId This property is required. string
The user's domain ID.
endpointId This property is required. string
The unique ID of the VPC endpoint.
packetId This property is required. number
The packet ID of the VPC endpoint.
status This property is required. string
The connection status of the VPC endpoint.
updatedAt This property is required. string
created_at This property is required. str
description This property is required. str
The description of the VPC endpoint service connection.
domain_id This property is required. str
The user's domain ID.
endpoint_id This property is required. str
The unique ID of the VPC endpoint.
packet_id This property is required. float
The packet ID of the VPC endpoint.
status This property is required. str
The connection status of the VPC endpoint.
updated_at This property is required. str
createdAt This property is required. String
description This property is required. String
The description of the VPC endpoint service connection.
domainId This property is required. String
The user's domain ID.
endpointId This property is required. String
The unique ID of the VPC endpoint.
packetId This property is required. Number
The packet ID of the VPC endpoint.
status This property is required. String
The connection status of the VPC endpoint.
updatedAt This property is required. String

VpcepApprovalV1Timeouts
, VpcepApprovalV1TimeoutsArgs

Create string
Delete string
Create string
Delete string
create String
delete String
create string
delete string
create str
delete str
create String
delete String

Import

VPC endpoint approval can be imported using the id, e.g.

bash

$ pulumi import opentelekomcloud:index/vpcepApprovalV1:VpcepApprovalV1 apr <id>
Copy

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

Package Details

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