published on Thursday, Apr 2, 2026 by Byteplus
published on Thursday, Apr 2, 2026 by Byteplus
In scenarios where external DNS query requests are forwarded to the resolver, you need to create an endpoint. After receiving DNS query requests forwarded by the resolver, outbound endpoints forward DNS queries to external DNS servers. After receiving DNS query requests from external sources, inbound endpoints forward DNS queries to the resolver
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
resources:
privateZoneResolverEndpointDemo:
type: bytepluscc:privatezone:ResolverEndpoint
name: PrivateZoneResolverEndpointDemo
properties:
name: PrivateZoneResolverEndpointDemo
vpcId: vpc-3nrh1tqschwcg931eaqxxxxx
endpointType: IPv4
ipConfigs:
- az_id: cn-beijing-a
subnet_id: subnet-bt50na0bf6kg5h0b2u1xxxxx
ip: 192.168.xx.44
- az_id: cn-beijing-b
subnet_id: subnet-1a14u8n59jdvk8nvepjyxxxxx
ip: 192.168.xx.154
projectName: default
tags:
- key: env
value: test
vpcRegion: cn-beijing
direction: OUTBOUND
Create ResolverEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResolverEndpoint(name: string, args: ResolverEndpointArgs, opts?: CustomResourceOptions);@overload
def ResolverEndpoint(resource_name: str,
args: ResolverEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResolverEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
vpc_id: Optional[str] = None,
vpc_region: Optional[str] = None,
direction: Optional[str] = None,
endpoint_type: Optional[str] = None,
ip_configs: Optional[Sequence[ResolverEndpointIpConfigArgs]] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[ResolverEndpointTagArgs]] = None)func NewResolverEndpoint(ctx *Context, name string, args ResolverEndpointArgs, opts ...ResourceOption) (*ResolverEndpoint, error)public ResolverEndpoint(string name, ResolverEndpointArgs args, CustomResourceOptions? opts = null)
public ResolverEndpoint(String name, ResolverEndpointArgs args)
public ResolverEndpoint(String name, ResolverEndpointArgs args, CustomResourceOptions options)
type: bytepluscc:privatezone:ResolverEndpoint
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 ResolverEndpointArgs
- 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 ResolverEndpointArgs
- 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 ResolverEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResolverEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResolverEndpointArgs
- 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 resolverEndpointResource = new Bytepluscc.Privatezone.ResolverEndpoint("resolverEndpointResource", new()
{
Name = "string",
VpcId = "string",
VpcRegion = "string",
Direction = "string",
EndpointType = "string",
IpConfigs = new[]
{
new Bytepluscc.Privatezone.Inputs.ResolverEndpointIpConfigArgs
{
AzId = "string",
Ip = "string",
Ipv6 = "string",
SubnetId = "string",
},
},
ProjectName = "string",
Tags = new[]
{
new Bytepluscc.Privatezone.Inputs.ResolverEndpointTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := privatezone.NewResolverEndpoint(ctx, "resolverEndpointResource", &privatezone.ResolverEndpointArgs{
Name: pulumi.String("string"),
VpcId: pulumi.String("string"),
VpcRegion: pulumi.String("string"),
Direction: pulumi.String("string"),
EndpointType: pulumi.String("string"),
IpConfigs: privatezone.ResolverEndpointIpConfigArray{
&privatezone.ResolverEndpointIpConfigArgs{
AzId: pulumi.String("string"),
Ip: pulumi.String("string"),
Ipv6: pulumi.String("string"),
SubnetId: pulumi.String("string"),
},
},
ProjectName: pulumi.String("string"),
Tags: privatezone.ResolverEndpointTagArray{
&privatezone.ResolverEndpointTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var resolverEndpointResource = new ResolverEndpoint("resolverEndpointResource", ResolverEndpointArgs.builder()
.name("string")
.vpcId("string")
.vpcRegion("string")
.direction("string")
.endpointType("string")
.ipConfigs(ResolverEndpointIpConfigArgs.builder()
.azId("string")
.ip("string")
.ipv6("string")
.subnetId("string")
.build())
.projectName("string")
.tags(ResolverEndpointTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
resolver_endpoint_resource = bytepluscc.privatezone.ResolverEndpoint("resolverEndpointResource",
name="string",
vpc_id="string",
vpc_region="string",
direction="string",
endpoint_type="string",
ip_configs=[{
"az_id": "string",
"ip": "string",
"ipv6": "string",
"subnet_id": "string",
}],
project_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const resolverEndpointResource = new bytepluscc.privatezone.ResolverEndpoint("resolverEndpointResource", {
name: "string",
vpcId: "string",
vpcRegion: "string",
direction: "string",
endpointType: "string",
ipConfigs: [{
azId: "string",
ip: "string",
ipv6: "string",
subnetId: "string",
}],
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: bytepluscc:privatezone:ResolverEndpoint
properties:
direction: string
endpointType: string
ipConfigs:
- azId: string
ip: string
ipv6: string
subnetId: string
name: string
projectName: string
tags:
- key: string
value: string
vpcId: string
vpcRegion: string
ResolverEndpoint 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 ResolverEndpoint resource accepts the following input properties:
- Name string
- Endpoint name. Supports UTF-8 format
- Vpc
Id string - VPC ID where the endpoint is located
- Vpc
Region string - Region of the VPC where the endpoint is located
- Direction string
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- Endpoint
Type string - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- Ip
Configs List<Byteplus.Resolver Endpoint Ip Config> - Project
Name string - Project name to which the endpoint belongs. Default is default
-
List<Byteplus.
Resolver Endpoint Tag>
- Name string
- Endpoint name. Supports UTF-8 format
- Vpc
Id string - VPC ID where the endpoint is located
- Vpc
Region string - Region of the VPC where the endpoint is located
- Direction string
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- Endpoint
Type string - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- Ip
Configs []ResolverEndpoint Ip Config Args - Project
Name string - Project name to which the endpoint belongs. Default is default
-
[]Resolver
Endpoint Tag Args
- name String
- Endpoint name. Supports UTF-8 format
- vpc
Id String - VPC ID where the endpoint is located
- vpc
Region String - Region of the VPC where the endpoint is located
- direction String
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- endpoint
Type String - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- ip
Configs List<ResolverEndpoint Ip Config> - project
Name String - Project name to which the endpoint belongs. Default is default
-
List<Resolver
Endpoint Tag>
- name string
- Endpoint name. Supports UTF-8 format
- vpc
Id string - VPC ID where the endpoint is located
- vpc
Region string - Region of the VPC where the endpoint is located
- direction string
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- endpoint
Type string - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- ip
Configs ResolverEndpoint Ip Config[] - project
Name string - Project name to which the endpoint belongs. Default is default
-
Resolver
Endpoint Tag[]
- name str
- Endpoint name. Supports UTF-8 format
- vpc_
id str - VPC ID where the endpoint is located
- vpc_
region str - Region of the VPC where the endpoint is located
- direction str
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- endpoint_
type str - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- ip_
configs Sequence[ResolverEndpoint Ip Config Args] - project_
name str - Project name to which the endpoint belongs. Default is default
-
Sequence[Resolver
Endpoint Tag Args]
- name String
- Endpoint name. Supports UTF-8 format
- vpc
Id String - VPC ID where the endpoint is located
- vpc
Region String - Region of the VPC where the endpoint is located
- direction String
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- endpoint
Type String - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- ip
Configs List<Property Map> - project
Name String - Project name to which the endpoint belongs. Default is default
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the ResolverEndpoint resource produces the following output properties:
- Created
Time string - Creation time
- Endpoint
Id string - Endpoint ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Group stringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- Status string
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
- Updated
Time string - Update time
- Created
Time string - Creation time
- Endpoint
Id string - Endpoint ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Group stringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- Status string
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
- Updated
Time string - Update time
- created
Time String - Creation time
- endpoint
Id String - Endpoint ID
- id String
- The provider-assigned unique ID for this managed resource.
- security
Group StringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- status String
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
- updated
Time String - Update time
- created
Time string - Creation time
- endpoint
Id string - Endpoint ID
- id string
- The provider-assigned unique ID for this managed resource.
- security
Group stringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- status string
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
- updated
Time string - Update time
- created_
time str - Creation time
- endpoint_
id str - Endpoint ID
- id str
- The provider-assigned unique ID for this managed resource.
- security_
group_ strid - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- status str
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
- updated_
time str - Update time
- created
Time String - Creation time
- endpoint
Id String - Endpoint ID
- id String
- The provider-assigned unique ID for this managed resource.
- security
Group StringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- status String
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
- updated
Time String - Update time
Look up Existing ResolverEndpoint Resource
Get an existing ResolverEndpoint 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?: ResolverEndpointState, opts?: CustomResourceOptions): ResolverEndpoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_time: Optional[str] = None,
direction: Optional[str] = None,
endpoint_id: Optional[str] = None,
endpoint_type: Optional[str] = None,
ip_configs: Optional[Sequence[ResolverEndpointIpConfigArgs]] = None,
name: Optional[str] = None,
project_name: Optional[str] = None,
security_group_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[ResolverEndpointTagArgs]] = None,
updated_time: Optional[str] = None,
vpc_id: Optional[str] = None,
vpc_region: Optional[str] = None) -> ResolverEndpointfunc GetResolverEndpoint(ctx *Context, name string, id IDInput, state *ResolverEndpointState, opts ...ResourceOption) (*ResolverEndpoint, error)public static ResolverEndpoint Get(string name, Input<string> id, ResolverEndpointState? state, CustomResourceOptions? opts = null)public static ResolverEndpoint get(String name, Output<String> id, ResolverEndpointState state, CustomResourceOptions options)resources: _: type: bytepluscc:privatezone:ResolverEndpoint get: id: ${id}- 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.
- Created
Time string - Creation time
- Direction string
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- Endpoint
Id string - Endpoint ID
- Endpoint
Type string - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- Ip
Configs List<Byteplus.Resolver Endpoint Ip Config> - Name string
- Endpoint name. Supports UTF-8 format
- Project
Name string - Project name to which the endpoint belongs. Default is default
- Security
Group stringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- Status string
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
-
List<Byteplus.
Resolver Endpoint Tag> - Updated
Time string - Update time
- Vpc
Id string - VPC ID where the endpoint is located
- Vpc
Region string - Region of the VPC where the endpoint is located
- Created
Time string - Creation time
- Direction string
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- Endpoint
Id string - Endpoint ID
- Endpoint
Type string - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- Ip
Configs []ResolverEndpoint Ip Config Args - Name string
- Endpoint name. Supports UTF-8 format
- Project
Name string - Project name to which the endpoint belongs. Default is default
- Security
Group stringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- Status string
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
-
[]Resolver
Endpoint Tag Args - Updated
Time string - Update time
- Vpc
Id string - VPC ID where the endpoint is located
- Vpc
Region string - Region of the VPC where the endpoint is located
- created
Time String - Creation time
- direction String
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- endpoint
Id String - Endpoint ID
- endpoint
Type String - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- ip
Configs List<ResolverEndpoint Ip Config> - name String
- Endpoint name. Supports UTF-8 format
- project
Name String - Project name to which the endpoint belongs. Default is default
- security
Group StringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- status String
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
-
List<Resolver
Endpoint Tag> - updated
Time String - Update time
- vpc
Id String - VPC ID where the endpoint is located
- vpc
Region String - Region of the VPC where the endpoint is located
- created
Time string - Creation time
- direction string
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- endpoint
Id string - Endpoint ID
- endpoint
Type string - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- ip
Configs ResolverEndpoint Ip Config[] - name string
- Endpoint name. Supports UTF-8 format
- project
Name string - Project name to which the endpoint belongs. Default is default
- security
Group stringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- status string
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
-
Resolver
Endpoint Tag[] - updated
Time string - Update time
- vpc
Id string - VPC ID where the endpoint is located
- vpc
Region string - Region of the VPC where the endpoint is located
- created_
time str - Creation time
- direction str
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- endpoint_
id str - Endpoint ID
- endpoint_
type str - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- ip_
configs Sequence[ResolverEndpoint Ip Config Args] - name str
- Endpoint name. Supports UTF-8 format
- project_
name str - Project name to which the endpoint belongs. Default is default
- security_
group_ strid - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- status str
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
-
Sequence[Resolver
Endpoint Tag Args] - updated_
time str - Update time
- vpc_
id str - VPC ID where the endpoint is located
- vpc_
region str - Region of the VPC where the endpoint is located
- created
Time String - Creation time
- direction String
- DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver
- endpoint
Id String - Endpoint ID
- endpoint
Type String - Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint
- ip
Configs List<Property Map> - name String
- Endpoint name. Supports UTF-8 format
- project
Name String - Project name to which the endpoint belongs. Default is default
- security
Group StringId - Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied
- status String
- Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation
- List<Property Map>
- updated
Time String - Update time
- vpc
Id String - VPC ID where the endpoint is located
- vpc
Region String - Region of the VPC where the endpoint is located
Supporting Types
ResolverEndpointIpConfig, ResolverEndpointIpConfigArgs
- Az
Id string - Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
- Ip string
- IPv4 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- Ipv6 string
- IPv6 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- Subnet
Id string - Subnet ID for the endpoint IP address
- Az
Id string - Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
- Ip string
- IPv4 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- Ipv6 string
- IPv6 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- Subnet
Id string - Subnet ID for the endpoint IP address
- az
Id String - Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
- ip String
- IPv4 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- ipv6 String
- IPv6 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- subnet
Id String - Subnet ID for the endpoint IP address
- az
Id string - Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
- ip string
- IPv4 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- ipv6 string
- IPv6 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- subnet
Id string - Subnet ID for the endpoint IP address
- az_
id str - Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
- ip str
- IPv4 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- ipv6 str
- IPv6 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- subnet_
id str - Subnet ID for the endpoint IP address
- az
Id String - Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
- ip String
- IPv4 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- ipv6 String
- IPv6 address of the endpoint. If you do not set this parameter, the system automatically assigns an IP address. You can add up to 6 IP addresses
- subnet
Id String - Subnet ID for the endpoint IP address
ResolverEndpointTag, ResolverEndpointTagArgs
Import
$ pulumi import bytepluscc:privatezone/resolverEndpoint:ResolverEndpoint example "endpoint_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- bytepluscc byteplus-sdk/pulumi-bytepluscc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
byteplusccTerraform Provider.
published on Thursday, Apr 2, 2026 by Byteplus
