1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. privatelink
  5. VpcEndpointService
Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 by Pulumi

alicloud.privatelink.VpcEndpointService

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 by Pulumi

    Provides a Private Link Vpc Endpoint Service resource.

    For information about Private Link Vpc Endpoint Service and how to use it, see What is Vpc Endpoint Service.

    NOTE: Available since v1.109.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf_example";
    const example = new alicloud.privatelink.VpcEndpointService("example", {
        serviceDescription: name,
        connectBandwidth: 103,
        autoAcceptConnection: false,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf_example"
    example = alicloud.privatelink.VpcEndpointService("example",
        service_description=name,
        connect_bandwidth=103,
        auto_accept_connection=False)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/privatelink"
    	"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, "")
    		name := "tf_example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_, err := privatelink.NewVpcEndpointService(ctx, "example", &privatelink.VpcEndpointServiceArgs{
    			ServiceDescription:   pulumi.String(name),
    			ConnectBandwidth:     pulumi.Int(103),
    			AutoAcceptConnection: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "tf_example";
        var example = new AliCloud.PrivateLink.VpcEndpointService("example", new()
        {
            ServiceDescription = name,
            ConnectBandwidth = 103,
            AutoAcceptConnection = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.privatelink.VpcEndpointService;
    import com.pulumi.alicloud.privatelink.VpcEndpointServiceArgs;
    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 name = config.get("name").orElse("tf_example");
            var example = new VpcEndpointService("example", VpcEndpointServiceArgs.builder()        
                .serviceDescription(name)
                .connectBandwidth(103)
                .autoAcceptConnection(false)
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf_example
    resources:
      example:
        type: alicloud:privatelink:VpcEndpointService
        properties:
          serviceDescription: ${name}
          connectBandwidth: 103
          autoAcceptConnection: false
    

    Create VpcEndpointService Resource

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

    Constructor syntax

    new VpcEndpointService(name: string, args?: VpcEndpointServiceArgs, opts?: CustomResourceOptions);
    @overload
    def VpcEndpointService(resource_name: str,
                           args: Optional[VpcEndpointServiceArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def VpcEndpointService(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           auto_accept_connection: Optional[bool] = None,
                           connect_bandwidth: Optional[int] = None,
                           dry_run: Optional[bool] = None,
                           payer: Optional[str] = None,
                           resource_group_id: Optional[str] = None,
                           service_description: Optional[str] = None,
                           service_resource_type: Optional[str] = None,
                           service_support_ipv6: Optional[bool] = None,
                           tags: Optional[Mapping[str, Any]] = None,
                           zone_affinity_enabled: Optional[bool] = None)
    func NewVpcEndpointService(ctx *Context, name string, args *VpcEndpointServiceArgs, opts ...ResourceOption) (*VpcEndpointService, error)
    public VpcEndpointService(string name, VpcEndpointServiceArgs? args = null, CustomResourceOptions? opts = null)
    public VpcEndpointService(String name, VpcEndpointServiceArgs args)
    public VpcEndpointService(String name, VpcEndpointServiceArgs args, CustomResourceOptions options)
    
    type: alicloud:privatelink:VpcEndpointService
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Example

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

    var vpcEndpointServiceResource = new AliCloud.PrivateLink.VpcEndpointService("vpcEndpointServiceResource", new()
    {
        AutoAcceptConnection = false,
        ConnectBandwidth = 0,
        DryRun = false,
        Payer = "string",
        ResourceGroupId = "string",
        ServiceDescription = "string",
        ServiceResourceType = "string",
        ServiceSupportIpv6 = false,
        Tags = 
        {
            { "string", "any" },
        },
        ZoneAffinityEnabled = false,
    });
    
    example, err := privatelink.NewVpcEndpointService(ctx, "vpcEndpointServiceResource", &privatelink.VpcEndpointServiceArgs{
    	AutoAcceptConnection: pulumi.Bool(false),
    	ConnectBandwidth:     pulumi.Int(0),
    	DryRun:               pulumi.Bool(false),
    	Payer:                pulumi.String("string"),
    	ResourceGroupId:      pulumi.String("string"),
    	ServiceDescription:   pulumi.String("string"),
    	ServiceResourceType:  pulumi.String("string"),
    	ServiceSupportIpv6:   pulumi.Bool(false),
    	Tags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	ZoneAffinityEnabled: pulumi.Bool(false),
    })
    
    var vpcEndpointServiceResource = new VpcEndpointService("vpcEndpointServiceResource", VpcEndpointServiceArgs.builder()        
        .autoAcceptConnection(false)
        .connectBandwidth(0)
        .dryRun(false)
        .payer("string")
        .resourceGroupId("string")
        .serviceDescription("string")
        .serviceResourceType("string")
        .serviceSupportIpv6(false)
        .tags(Map.of("string", "any"))
        .zoneAffinityEnabled(false)
        .build());
    
    vpc_endpoint_service_resource = alicloud.privatelink.VpcEndpointService("vpcEndpointServiceResource",
        auto_accept_connection=False,
        connect_bandwidth=0,
        dry_run=False,
        payer="string",
        resource_group_id="string",
        service_description="string",
        service_resource_type="string",
        service_support_ipv6=False,
        tags={
            "string": "any",
        },
        zone_affinity_enabled=False)
    
    const vpcEndpointServiceResource = new alicloud.privatelink.VpcEndpointService("vpcEndpointServiceResource", {
        autoAcceptConnection: false,
        connectBandwidth: 0,
        dryRun: false,
        payer: "string",
        resourceGroupId: "string",
        serviceDescription: "string",
        serviceResourceType: "string",
        serviceSupportIpv6: false,
        tags: {
            string: "any",
        },
        zoneAffinityEnabled: false,
    });
    
    type: alicloud:privatelink:VpcEndpointService
    properties:
        autoAcceptConnection: false
        connectBandwidth: 0
        dryRun: false
        payer: string
        resourceGroupId: string
        serviceDescription: string
        serviceResourceType: string
        serviceSupportIpv6: false
        tags:
            string: any
        zoneAffinityEnabled: false
    

    VpcEndpointService Resource Properties

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

    Inputs

    The VpcEndpointService resource accepts the following input properties:

    AutoAcceptConnection bool
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    ConnectBandwidth int
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    DryRun bool
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    Payer string
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    ResourceGroupId string
    The resource group ID.
    ServiceDescription string
    The description of the endpoint service.
    ServiceResourceType string
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    ServiceSupportIpv6 bool
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    Tags Dictionary<string, object>
    The list of tags.
    ZoneAffinityEnabled bool
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    AutoAcceptConnection bool
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    ConnectBandwidth int
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    DryRun bool
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    Payer string
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    ResourceGroupId string
    The resource group ID.
    ServiceDescription string
    The description of the endpoint service.
    ServiceResourceType string
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    ServiceSupportIpv6 bool
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    Tags map[string]interface{}
    The list of tags.
    ZoneAffinityEnabled bool
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    autoAcceptConnection Boolean
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    connectBandwidth Integer
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    dryRun Boolean
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    payer String
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    resourceGroupId String
    The resource group ID.
    serviceDescription String
    The description of the endpoint service.
    serviceResourceType String
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    serviceSupportIpv6 Boolean
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    tags Map<String,Object>
    The list of tags.
    zoneAffinityEnabled Boolean
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    autoAcceptConnection boolean
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    connectBandwidth number
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    dryRun boolean
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    payer string
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    resourceGroupId string
    The resource group ID.
    serviceDescription string
    The description of the endpoint service.
    serviceResourceType string
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    serviceSupportIpv6 boolean
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    tags {[key: string]: any}
    The list of tags.
    zoneAffinityEnabled boolean
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    auto_accept_connection bool
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    connect_bandwidth int
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    dry_run bool
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    payer str
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    resource_group_id str
    The resource group ID.
    service_description str
    The description of the endpoint service.
    service_resource_type str
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    service_support_ipv6 bool
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    tags Mapping[str, Any]
    The list of tags.
    zone_affinity_enabled bool
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    autoAcceptConnection Boolean
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    connectBandwidth Number
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    dryRun Boolean
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    payer String
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    resourceGroupId String
    The resource group ID.
    serviceDescription String
    The description of the endpoint service.
    serviceResourceType String
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    serviceSupportIpv6 Boolean
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    tags Map<Any>
    The list of tags.
    zoneAffinityEnabled Boolean
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).

    Outputs

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

    CreateTime string
    The time when the endpoint service was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    ServiceBusinessStatus string
    The service state of the endpoint service.
    ServiceDomain string
    The domain name of the endpoint service.
    Status string
    The state of the endpoint service.
    VpcEndpointServiceName string
    The name of the endpoint service.
    CreateTime string
    The time when the endpoint service was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    ServiceBusinessStatus string
    The service state of the endpoint service.
    ServiceDomain string
    The domain name of the endpoint service.
    Status string
    The state of the endpoint service.
    VpcEndpointServiceName string
    The name of the endpoint service.
    createTime String
    The time when the endpoint service was created.
    id String
    The provider-assigned unique ID for this managed resource.
    serviceBusinessStatus String
    The service state of the endpoint service.
    serviceDomain String
    The domain name of the endpoint service.
    status String
    The state of the endpoint service.
    vpcEndpointServiceName String
    The name of the endpoint service.
    createTime string
    The time when the endpoint service was created.
    id string
    The provider-assigned unique ID for this managed resource.
    serviceBusinessStatus string
    The service state of the endpoint service.
    serviceDomain string
    The domain name of the endpoint service.
    status string
    The state of the endpoint service.
    vpcEndpointServiceName string
    The name of the endpoint service.
    create_time str
    The time when the endpoint service was created.
    id str
    The provider-assigned unique ID for this managed resource.
    service_business_status str
    The service state of the endpoint service.
    service_domain str
    The domain name of the endpoint service.
    status str
    The state of the endpoint service.
    vpc_endpoint_service_name str
    The name of the endpoint service.
    createTime String
    The time when the endpoint service was created.
    id String
    The provider-assigned unique ID for this managed resource.
    serviceBusinessStatus String
    The service state of the endpoint service.
    serviceDomain String
    The domain name of the endpoint service.
    status String
    The state of the endpoint service.
    vpcEndpointServiceName String
    The name of the endpoint service.

    Look up Existing VpcEndpointService Resource

    Get an existing VpcEndpointService 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?: VpcEndpointServiceState, opts?: CustomResourceOptions): VpcEndpointService
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_accept_connection: Optional[bool] = None,
            connect_bandwidth: Optional[int] = None,
            create_time: Optional[str] = None,
            dry_run: Optional[bool] = None,
            payer: Optional[str] = None,
            resource_group_id: Optional[str] = None,
            service_business_status: Optional[str] = None,
            service_description: Optional[str] = None,
            service_domain: Optional[str] = None,
            service_resource_type: Optional[str] = None,
            service_support_ipv6: Optional[bool] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, Any]] = None,
            vpc_endpoint_service_name: Optional[str] = None,
            zone_affinity_enabled: Optional[bool] = None) -> VpcEndpointService
    func GetVpcEndpointService(ctx *Context, name string, id IDInput, state *VpcEndpointServiceState, opts ...ResourceOption) (*VpcEndpointService, error)
    public static VpcEndpointService Get(string name, Input<string> id, VpcEndpointServiceState? state, CustomResourceOptions? opts = null)
    public static VpcEndpointService get(String name, Output<String> id, VpcEndpointServiceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    AutoAcceptConnection bool
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    ConnectBandwidth int
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    CreateTime string
    The time when the endpoint service was created.
    DryRun bool
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    Payer string
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    ResourceGroupId string
    The resource group ID.
    ServiceBusinessStatus string
    The service state of the endpoint service.
    ServiceDescription string
    The description of the endpoint service.
    ServiceDomain string
    The domain name of the endpoint service.
    ServiceResourceType string
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    ServiceSupportIpv6 bool
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    Status string
    The state of the endpoint service.
    Tags Dictionary<string, object>
    The list of tags.
    VpcEndpointServiceName string
    The name of the endpoint service.
    ZoneAffinityEnabled bool
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    AutoAcceptConnection bool
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    ConnectBandwidth int
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    CreateTime string
    The time when the endpoint service was created.
    DryRun bool
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    Payer string
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    ResourceGroupId string
    The resource group ID.
    ServiceBusinessStatus string
    The service state of the endpoint service.
    ServiceDescription string
    The description of the endpoint service.
    ServiceDomain string
    The domain name of the endpoint service.
    ServiceResourceType string
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    ServiceSupportIpv6 bool
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    Status string
    The state of the endpoint service.
    Tags map[string]interface{}
    The list of tags.
    VpcEndpointServiceName string
    The name of the endpoint service.
    ZoneAffinityEnabled bool
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    autoAcceptConnection Boolean
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    connectBandwidth Integer
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    createTime String
    The time when the endpoint service was created.
    dryRun Boolean
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    payer String
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    resourceGroupId String
    The resource group ID.
    serviceBusinessStatus String
    The service state of the endpoint service.
    serviceDescription String
    The description of the endpoint service.
    serviceDomain String
    The domain name of the endpoint service.
    serviceResourceType String
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    serviceSupportIpv6 Boolean
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    status String
    The state of the endpoint service.
    tags Map<String,Object>
    The list of tags.
    vpcEndpointServiceName String
    The name of the endpoint service.
    zoneAffinityEnabled Boolean
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    autoAcceptConnection boolean
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    connectBandwidth number
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    createTime string
    The time when the endpoint service was created.
    dryRun boolean
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    payer string
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    resourceGroupId string
    The resource group ID.
    serviceBusinessStatus string
    The service state of the endpoint service.
    serviceDescription string
    The description of the endpoint service.
    serviceDomain string
    The domain name of the endpoint service.
    serviceResourceType string
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    serviceSupportIpv6 boolean
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    status string
    The state of the endpoint service.
    tags {[key: string]: any}
    The list of tags.
    vpcEndpointServiceName string
    The name of the endpoint service.
    zoneAffinityEnabled boolean
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    auto_accept_connection bool
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    connect_bandwidth int
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    create_time str
    The time when the endpoint service was created.
    dry_run bool
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    payer str
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    resource_group_id str
    The resource group ID.
    service_business_status str
    The service state of the endpoint service.
    service_description str
    The description of the endpoint service.
    service_domain str
    The domain name of the endpoint service.
    service_resource_type str
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    service_support_ipv6 bool
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    status str
    The state of the endpoint service.
    tags Mapping[str, Any]
    The list of tags.
    vpc_endpoint_service_name str
    The name of the endpoint service.
    zone_affinity_enabled bool
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).
    autoAcceptConnection Boolean
    Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:

    • true
    • false.
    connectBandwidth Number
    The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
    createTime String
    The time when the endpoint service was created.
    dryRun Boolean
    Specifies whether to perform only a dry run, without performing the actual request.

    • true: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
    • false (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
    payer String
    The payer of the endpoint service. Valid values:

    • Endpoint: the service consumer.
    • EndpointService: the service provider.
    resourceGroupId String
    The resource group ID.
    serviceBusinessStatus String
    The service state of the endpoint service.
    serviceDescription String
    The description of the endpoint service.
    serviceDomain String
    The domain name of the endpoint service.
    serviceResourceType String
    Service resource type, value:

    • slb: indicates that the service resource type is Classic Load Balancer (CLB).
    • alb: indicates that the service resource type is Application Load Balancer (ALB).
    • nlb: indicates that the service resource type is Network Load Balancer (NLB).
    serviceSupportIpv6 Boolean
    Specifies whether to enable IPv6 for the endpoint service. Valid values:

    • true
    • false (default).
    status String
    The state of the endpoint service.
    tags Map<Any>
    The list of tags.
    vpcEndpointServiceName String
    The name of the endpoint service.
    zoneAffinityEnabled Boolean
    Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:

    • true
    • false (default).

    Import

    Private Link Vpc Endpoint Service can be imported using the id, e.g.

    $ pulumi import alicloud:privatelink/vpcEndpointService:VpcEndpointService example <id>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 by Pulumi