alicloud.privatelink.VpcEndpointService
Explore with Pulumi AI
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, str]] = 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.
Constructor 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", "string" },
},
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.StringMap{
"string": pulumi.String("string"),
},
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", "string"))
.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": "string",
},
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: "string",
},
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: string
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:
- Auto
Accept boolConnection - 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 string
- The payer of the endpoint service. Valid values:
- Endpoint: the service consumer.
- EndpointService: the service provider.
- Resource
Group stringId - The resource group ID.
- Service
Description string - The description of the endpoint service.
- Service
Resource stringType - 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 boolIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- Dictionary<string, string>
- The list of tags.
- Zone
Affinity boolEnabled - 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 boolConnection - 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 string
- The payer of the endpoint service. Valid values:
- Endpoint: the service consumer.
- EndpointService: the service provider.
- Resource
Group stringId - The resource group ID.
- Service
Description string - The description of the endpoint service.
- Service
Resource stringType - 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 boolIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- map[string]string
- The list of tags.
- Zone
Affinity boolEnabled - 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 BooleanConnection - Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
- true
- false.
- connect
Bandwidth Integer - The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
- dry
Run 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.
- resource
Group StringId - The resource group ID.
- service
Description String - The description of the endpoint service.
- service
Resource StringType - 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 BooleanIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- Map<String,String>
- The list of tags.
- zone
Affinity BooleanEnabled - 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 booleanConnection - Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
- true
- false.
- connect
Bandwidth number - The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
- dry
Run 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.
- resource
Group stringId - The resource group ID.
- service
Description string - The description of the endpoint service.
- service
Resource stringType - 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 booleanIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- {[key: string]: string}
- The list of tags.
- zone
Affinity booleanEnabled - 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_ boolconnection - 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_ strid - The resource group ID.
- service_
description str - The description of the endpoint service.
- service_
resource_ strtype - 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_ boolipv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- Mapping[str, str]
- The list of tags.
- zone_
affinity_ boolenabled - 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 BooleanConnection - Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
- true
- false.
- connect
Bandwidth Number - The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
- dry
Run 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.
- resource
Group StringId - The resource group ID.
- service
Description String - The description of the endpoint service.
- service
Resource StringType - 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 BooleanIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- Map<String>
- The list of tags.
- zone
Affinity BooleanEnabled - 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:
- Create
Time string - The time when the endpoint service was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Business stringStatus - The service state of the endpoint service.
- Service
Domain string - The domain name of the endpoint service.
- Status string
- The state of the endpoint service.
- Vpc
Endpoint stringService Name - The name of the endpoint service.
- Create
Time string - The time when the endpoint service was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Business stringStatus - The service state of the endpoint service.
- Service
Domain string - The domain name of the endpoint service.
- Status string
- The state of the endpoint service.
- Vpc
Endpoint stringService Name - The name of the endpoint service.
- create
Time String - The time when the endpoint service was created.
- id String
- The provider-assigned unique ID for this managed resource.
- service
Business StringStatus - The service state of the endpoint service.
- service
Domain String - The domain name of the endpoint service.
- status String
- The state of the endpoint service.
- vpc
Endpoint StringService Name - The name of the endpoint service.
- create
Time string - The time when the endpoint service was created.
- id string
- The provider-assigned unique ID for this managed resource.
- service
Business stringStatus - The service state of the endpoint service.
- service
Domain string - The domain name of the endpoint service.
- status string
- The state of the endpoint service.
- vpc
Endpoint stringService Name - 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_ strstatus - 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_ strservice_ name - The name of the endpoint service.
- create
Time String - The time when the endpoint service was created.
- id String
- The provider-assigned unique ID for this managed resource.
- service
Business StringStatus - The service state of the endpoint service.
- service
Domain String - The domain name of the endpoint service.
- status String
- The state of the endpoint service.
- vpc
Endpoint StringService Name - 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, str]] = 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.
- Auto
Accept boolConnection - 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 string - 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 string
- The payer of the endpoint service. Valid values:
- Endpoint: the service consumer.
- EndpointService: the service provider.
- Resource
Group stringId - The resource group ID.
- Service
Business stringStatus - The service state of the endpoint service.
- Service
Description string - The description of the endpoint service.
- Service
Domain string - The domain name of the endpoint service.
- Service
Resource stringType - 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 boolIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- Status string
- The state of the endpoint service.
- Dictionary<string, string>
- The list of tags.
- Vpc
Endpoint stringService Name - The name of the endpoint service.
- Zone
Affinity boolEnabled - 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 boolConnection - 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 string - 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 string
- The payer of the endpoint service. Valid values:
- Endpoint: the service consumer.
- EndpointService: the service provider.
- Resource
Group stringId - The resource group ID.
- Service
Business stringStatus - The service state of the endpoint service.
- Service
Description string - The description of the endpoint service.
- Service
Domain string - The domain name of the endpoint service.
- Service
Resource stringType - 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 boolIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- Status string
- The state of the endpoint service.
- map[string]string
- The list of tags.
- Vpc
Endpoint stringService Name - The name of the endpoint service.
- Zone
Affinity boolEnabled - 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 BooleanConnection - Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
- true
- false.
- connect
Bandwidth Integer - The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
- create
Time String - The time when the endpoint service was created.
- dry
Run 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.
- resource
Group StringId - The resource group ID.
- service
Business StringStatus - The service state of the endpoint service.
- service
Description String - The description of the endpoint service.
- service
Domain String - The domain name of the endpoint service.
- service
Resource StringType - 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 BooleanIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- status String
- The state of the endpoint service.
- Map<String,String>
- The list of tags.
- vpc
Endpoint StringService Name - The name of the endpoint service.
- zone
Affinity BooleanEnabled - 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 booleanConnection - Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
- true
- false.
- connect
Bandwidth number - The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
- create
Time string - The time when the endpoint service was created.
- dry
Run 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.
- resource
Group stringId - The resource group ID.
- service
Business stringStatus - The service state of the endpoint service.
- service
Description string - The description of the endpoint service.
- service
Domain string - The domain name of the endpoint service.
- service
Resource stringType - 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 booleanIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- status string
- The state of the endpoint service.
- {[key: string]: string}
- The list of tags.
- vpc
Endpoint stringService Name - The name of the endpoint service.
- zone
Affinity booleanEnabled - 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_ boolconnection - 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_ strid - The resource group ID.
- service_
business_ strstatus - 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_ strtype - 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_ boolipv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- status str
- The state of the endpoint service.
- Mapping[str, str]
- The list of tags.
- vpc_
endpoint_ strservice_ name - The name of the endpoint service.
- zone_
affinity_ boolenabled - 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 BooleanConnection - Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
- true
- false.
- connect
Bandwidth Number - The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
- create
Time String - The time when the endpoint service was created.
- dry
Run 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.
- resource
Group StringId - The resource group ID.
- service
Business StringStatus - The service state of the endpoint service.
- service
Description String - The description of the endpoint service.
- service
Domain String - The domain name of the endpoint service.
- service
Resource StringType - 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 BooleanIpv6 - Specifies whether to enable IPv6 for the endpoint service. Valid values:
- true
- false (default).
- status String
- The state of the endpoint service.
- Map<String>
- The list of tags.
- vpc
Endpoint StringService Name - The name of the endpoint service.
- zone
Affinity BooleanEnabled - 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.