1. Packages
  2. Packages
  3. Bytepluscc Provider
  4. API Docs
  5. rdsmysql
  6. EndpointPublicAddress
Viewing docs for bytepluscc v0.0.35
published on Monday, Jun 15, 2026 by Byteplus
bytepluscc logo
Viewing docs for bytepluscc v0.0.35
published on Monday, Jun 15, 2026 by Byteplus

    Instance connection endpoint public address.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
    
    const endpointPublicAddressDemo = new bytepluscc.rdsmysql.EndpointPublicAddress("EndpointPublicAddressDemo", {
        instanceId: "mysql-f9fe535xxxxx",
        endpointId: "mysql-f9fe53xxxxxa-cluster",
        eipId: "eip-37vr7k7r9t3b44etmwxxxxx",
        domainPrefix: "ccapi-terraform",
        port: "23306",
    });
    
    import pulumi
    import pulumi_bytepluscc as bytepluscc
    
    endpoint_public_address_demo = bytepluscc.rdsmysql.EndpointPublicAddress("EndpointPublicAddressDemo",
        instance_id="mysql-f9fe535xxxxx",
        endpoint_id="mysql-f9fe53xxxxxa-cluster",
        eip_id="eip-37vr7k7r9t3b44etmwxxxxx",
        domain_prefix="ccapi-terraform",
        port="23306")
    
    package main
    
    import (
    	"github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/rdsmysql"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rdsmysql.NewEndpointPublicAddress(ctx, "EndpointPublicAddressDemo", &rdsmysql.EndpointPublicAddressArgs{
    			InstanceId:   pulumi.String("mysql-f9fe535xxxxx"),
    			EndpointId:   pulumi.String("mysql-f9fe53xxxxxa-cluster"),
    			EipId:        pulumi.String("eip-37vr7k7r9t3b44etmwxxxxx"),
    			DomainPrefix: pulumi.String("ccapi-terraform"),
    			Port:         pulumi.String("23306"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Bytepluscc = Byteplus.Pulumi.Bytepluscc;
    
    return await Deployment.RunAsync(() => 
    {
        var endpointPublicAddressDemo = new Bytepluscc.Rdsmysql.EndpointPublicAddress("EndpointPublicAddressDemo", new()
        {
            InstanceId = "mysql-f9fe535xxxxx",
            EndpointId = "mysql-f9fe53xxxxxa-cluster",
            EipId = "eip-37vr7k7r9t3b44etmwxxxxx",
            DomainPrefix = "ccapi-terraform",
            Port = "23306",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.byteplus.bytepluscc.rdsmysql.EndpointPublicAddress;
    import com.byteplus.bytepluscc.rdsmysql.EndpointPublicAddressArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var endpointPublicAddressDemo = new EndpointPublicAddress("endpointPublicAddressDemo", EndpointPublicAddressArgs.builder()
                .instanceId("mysql-f9fe535xxxxx")
                .endpointId("mysql-f9fe53xxxxxa-cluster")
                .eipId("eip-37vr7k7r9t3b44etmwxxxxx")
                .domainPrefix("ccapi-terraform")
                .port("23306")
                .build());
    
        }
    }
    
    resources:
      endpointPublicAddressDemo:
        type: bytepluscc:rdsmysql:EndpointPublicAddress
        name: EndpointPublicAddressDemo
        properties:
          instanceId: mysql-f9fe535xxxxx
          endpointId: mysql-f9fe53xxxxxa-cluster
          eipId: eip-37vr7k7r9t3b44etmwxxxxx
          domainPrefix: ccapi-terraform
          port: 23306
    
    Example coming soon!
    

    Create EndpointPublicAddress Resource

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

    Constructor syntax

    new EndpointPublicAddress(name: string, args: EndpointPublicAddressArgs, opts?: CustomResourceOptions);
    @overload
    def EndpointPublicAddress(resource_name: str,
                              args: EndpointPublicAddressArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def EndpointPublicAddress(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              eip_id: Optional[str] = None,
                              endpoint_id: Optional[str] = None,
                              instance_id: Optional[str] = None,
                              domain_prefix: Optional[str] = None,
                              port: Optional[str] = None)
    func NewEndpointPublicAddress(ctx *Context, name string, args EndpointPublicAddressArgs, opts ...ResourceOption) (*EndpointPublicAddress, error)
    public EndpointPublicAddress(string name, EndpointPublicAddressArgs args, CustomResourceOptions? opts = null)
    public EndpointPublicAddress(String name, EndpointPublicAddressArgs args)
    public EndpointPublicAddress(String name, EndpointPublicAddressArgs args, CustomResourceOptions options)
    
    type: bytepluscc:rdsmysql:EndpointPublicAddress
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "bytepluscc_rdsmysql_endpointpublicaddress" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args EndpointPublicAddressArgs
    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 EndpointPublicAddressArgs
    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 EndpointPublicAddressArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EndpointPublicAddressArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EndpointPublicAddressArgs
    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 endpointPublicAddressResource = new Bytepluscc.Rdsmysql.EndpointPublicAddress("endpointPublicAddressResource", new()
    {
        EipId = "string",
        EndpointId = "string",
        InstanceId = "string",
        DomainPrefix = "string",
        Port = "string",
    });
    
    example, err := rdsmysql.NewEndpointPublicAddress(ctx, "endpointPublicAddressResource", &rdsmysql.EndpointPublicAddressArgs{
    	EipId:        pulumi.String("string"),
    	EndpointId:   pulumi.String("string"),
    	InstanceId:   pulumi.String("string"),
    	DomainPrefix: pulumi.String("string"),
    	Port:         pulumi.String("string"),
    })
    
    resource "bytepluscc_rdsmysql_endpointpublicaddress" "endpointPublicAddressResource" {
      eip_id        = "string"
      endpoint_id   = "string"
      instance_id   = "string"
      domain_prefix = "string"
      port          = "string"
    }
    
    var endpointPublicAddressResource = new com.byteplus.bytepluscc.rdsmysql.EndpointPublicAddress("endpointPublicAddressResource", com.byteplus.bytepluscc.rdsmysql.EndpointPublicAddressArgs.builder()
        .eipId("string")
        .endpointId("string")
        .instanceId("string")
        .domainPrefix("string")
        .port("string")
        .build());
    
    endpoint_public_address_resource = bytepluscc.rdsmysql.EndpointPublicAddress("endpointPublicAddressResource",
        eip_id="string",
        endpoint_id="string",
        instance_id="string",
        domain_prefix="string",
        port="string")
    
    const endpointPublicAddressResource = new bytepluscc.rdsmysql.EndpointPublicAddress("endpointPublicAddressResource", {
        eipId: "string",
        endpointId: "string",
        instanceId: "string",
        domainPrefix: "string",
        port: "string",
    });
    
    type: bytepluscc:rdsmysql:EndpointPublicAddress
    properties:
        domainPrefix: string
        eipId: string
        endpointId: string
        instanceId: string
        port: string
    

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

    EipId string
    EIP ID, valid only for Public addresses.
    EndpointId string
    Instance connection endpoint ID.
    InstanceId string
    Instance ID.
    DomainPrefix string
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    Port string
    Port.
    EipId string
    EIP ID, valid only for Public addresses.
    EndpointId string
    Instance connection endpoint ID.
    InstanceId string
    Instance ID.
    DomainPrefix string
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    Port string
    Port.
    eip_id string
    EIP ID, valid only for Public addresses.
    endpoint_id string
    Instance connection endpoint ID.
    instance_id string
    Instance ID.
    domain_prefix string
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    port string
    Port.
    eipId String
    EIP ID, valid only for Public addresses.
    endpointId String
    Instance connection endpoint ID.
    instanceId String
    Instance ID.
    domainPrefix String
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    port String
    Port.
    eipId string
    EIP ID, valid only for Public addresses.
    endpointId string
    Instance connection endpoint ID.
    instanceId string
    Instance ID.
    domainPrefix string
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    port string
    Port.
    eip_id str
    EIP ID, valid only for Public addresses.
    endpoint_id str
    Instance connection endpoint ID.
    instance_id str
    Instance ID.
    domain_prefix str
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    port str
    Port.
    eipId String
    EIP ID, valid only for Public addresses.
    endpointId String
    Instance connection endpoint ID.
    instanceId String
    Instance ID.
    domainPrefix String
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    port String
    Port.

    Outputs

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

    DnsVisibility bool
    • false: private network resolution (default) - true: private and public network resolution
    Domain string
    Connection domain name.
    EipLocked bool
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    Id string
    The provider-assigned unique ID for this managed resource.
    InternetProtocol string
    IP protocol version. Value: IPv4.
    IpAddress string
    IP address.
    NetworkType string
    Network address type. Valid values: Private: Private address. Public: Public address.
    SubnetId string
    Subnet ID, valid only for Private addresses.
    DnsVisibility bool
    • false: private network resolution (default) - true: private and public network resolution
    Domain string
    Connection domain name.
    EipLocked bool
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    Id string
    The provider-assigned unique ID for this managed resource.
    InternetProtocol string
    IP protocol version. Value: IPv4.
    IpAddress string
    IP address.
    NetworkType string
    Network address type. Valid values: Private: Private address. Public: Public address.
    SubnetId string
    Subnet ID, valid only for Private addresses.
    dns_visibility bool
    • false: private network resolution (default) - true: private and public network resolution
    domain string
    Connection domain name.
    eip_locked bool
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    id string
    The provider-assigned unique ID for this managed resource.
    internet_protocol string
    IP protocol version. Value: IPv4.
    ip_address string
    IP address.
    network_type string
    Network address type. Valid values: Private: Private address. Public: Public address.
    subnet_id string
    Subnet ID, valid only for Private addresses.
    dnsVisibility Boolean
    • false: private network resolution (default) - true: private and public network resolution
    domain String
    Connection domain name.
    eipLocked Boolean
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    id String
    The provider-assigned unique ID for this managed resource.
    internetProtocol String
    IP protocol version. Value: IPv4.
    ipAddress String
    IP address.
    networkType String
    Network address type. Valid values: Private: Private address. Public: Public address.
    subnetId String
    Subnet ID, valid only for Private addresses.
    dnsVisibility boolean
    • false: private network resolution (default) - true: private and public network resolution
    domain string
    Connection domain name.
    eipLocked boolean
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    id string
    The provider-assigned unique ID for this managed resource.
    internetProtocol string
    IP protocol version. Value: IPv4.
    ipAddress string
    IP address.
    networkType string
    Network address type. Valid values: Private: Private address. Public: Public address.
    subnetId string
    Subnet ID, valid only for Private addresses.
    dns_visibility bool
    • false: private network resolution (default) - true: private and public network resolution
    domain str
    Connection domain name.
    eip_locked bool
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    id str
    The provider-assigned unique ID for this managed resource.
    internet_protocol str
    IP protocol version. Value: IPv4.
    ip_address str
    IP address.
    network_type str
    Network address type. Valid values: Private: Private address. Public: Public address.
    subnet_id str
    Subnet ID, valid only for Private addresses.
    dnsVisibility Boolean
    • false: private network resolution (default) - true: private and public network resolution
    domain String
    Connection domain name.
    eipLocked Boolean
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    id String
    The provider-assigned unique ID for this managed resource.
    internetProtocol String
    IP protocol version. Value: IPv4.
    ipAddress String
    IP address.
    networkType String
    Network address type. Valid values: Private: Private address. Public: Public address.
    subnetId String
    Subnet ID, valid only for Private addresses.

    Look up Existing EndpointPublicAddress Resource

    Get an existing EndpointPublicAddress 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?: EndpointPublicAddressState, opts?: CustomResourceOptions): EndpointPublicAddress
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dns_visibility: Optional[bool] = None,
            domain: Optional[str] = None,
            domain_prefix: Optional[str] = None,
            eip_id: Optional[str] = None,
            eip_locked: Optional[bool] = None,
            endpoint_id: Optional[str] = None,
            instance_id: Optional[str] = None,
            internet_protocol: Optional[str] = None,
            ip_address: Optional[str] = None,
            network_type: Optional[str] = None,
            port: Optional[str] = None,
            subnet_id: Optional[str] = None) -> EndpointPublicAddress
    func GetEndpointPublicAddress(ctx *Context, name string, id IDInput, state *EndpointPublicAddressState, opts ...ResourceOption) (*EndpointPublicAddress, error)
    public static EndpointPublicAddress Get(string name, Input<string> id, EndpointPublicAddressState? state, CustomResourceOptions? opts = null)
    public static EndpointPublicAddress get(String name, Output<String> id, EndpointPublicAddressState state, CustomResourceOptions options)
    resources:  _:    type: bytepluscc:rdsmysql:EndpointPublicAddress    get:      id: ${id}
    import {
      to = bytepluscc_rdsmysql_endpointpublicaddress.example
      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.
    The following state arguments are supported:
    DnsVisibility bool
    • false: private network resolution (default) - true: private and public network resolution
    Domain string
    Connection domain name.
    DomainPrefix string
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    EipId string
    EIP ID, valid only for Public addresses.
    EipLocked bool
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    EndpointId string
    Instance connection endpoint ID.
    InstanceId string
    Instance ID.
    InternetProtocol string
    IP protocol version. Value: IPv4.
    IpAddress string
    IP address.
    NetworkType string
    Network address type. Valid values: Private: Private address. Public: Public address.
    Port string
    Port.
    SubnetId string
    Subnet ID, valid only for Private addresses.
    DnsVisibility bool
    • false: private network resolution (default) - true: private and public network resolution
    Domain string
    Connection domain name.
    DomainPrefix string
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    EipId string
    EIP ID, valid only for Public addresses.
    EipLocked bool
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    EndpointId string
    Instance connection endpoint ID.
    InstanceId string
    Instance ID.
    InternetProtocol string
    IP protocol version. Value: IPv4.
    IpAddress string
    IP address.
    NetworkType string
    Network address type. Valid values: Private: Private address. Public: Public address.
    Port string
    Port.
    SubnetId string
    Subnet ID, valid only for Private addresses.
    dns_visibility bool
    • false: private network resolution (default) - true: private and public network resolution
    domain string
    Connection domain name.
    domain_prefix string
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    eip_id string
    EIP ID, valid only for Public addresses.
    eip_locked bool
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    endpoint_id string
    Instance connection endpoint ID.
    instance_id string
    Instance ID.
    internet_protocol string
    IP protocol version. Value: IPv4.
    ip_address string
    IP address.
    network_type string
    Network address type. Valid values: Private: Private address. Public: Public address.
    port string
    Port.
    subnet_id string
    Subnet ID, valid only for Private addresses.
    dnsVisibility Boolean
    • false: private network resolution (default) - true: private and public network resolution
    domain String
    Connection domain name.
    domainPrefix String
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    eipId String
    EIP ID, valid only for Public addresses.
    eipLocked Boolean
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    endpointId String
    Instance connection endpoint ID.
    instanceId String
    Instance ID.
    internetProtocol String
    IP protocol version. Value: IPv4.
    ipAddress String
    IP address.
    networkType String
    Network address type. Valid values: Private: Private address. Public: Public address.
    port String
    Port.
    subnetId String
    Subnet ID, valid only for Private addresses.
    dnsVisibility boolean
    • false: private network resolution (default) - true: private and public network resolution
    domain string
    Connection domain name.
    domainPrefix string
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    eipId string
    EIP ID, valid only for Public addresses.
    eipLocked boolean
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    endpointId string
    Instance connection endpoint ID.
    instanceId string
    Instance ID.
    internetProtocol string
    IP protocol version. Value: IPv4.
    ipAddress string
    IP address.
    networkType string
    Network address type. Valid values: Private: Private address. Public: Public address.
    port string
    Port.
    subnetId string
    Subnet ID, valid only for Private addresses.
    dns_visibility bool
    • false: private network resolution (default) - true: private and public network resolution
    domain str
    Connection domain name.
    domain_prefix str
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    eip_id str
    EIP ID, valid only for Public addresses.
    eip_locked bool
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    endpoint_id str
    Instance connection endpoint ID.
    instance_id str
    Instance ID.
    internet_protocol str
    IP protocol version. Value: IPv4.
    ip_address str
    IP address.
    network_type str
    Network address type. Valid values: Private: Private address. Public: Public address.
    port str
    Port.
    subnet_id str
    Subnet ID, valid only for Private addresses.
    dnsVisibility Boolean
    • false: private network resolution (default) - true: private and public network resolution
    domain String
    Connection domain name.
    domainPrefix String
    Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
    eipId String
    EIP ID, valid only for Public addresses.
    eipLocked Boolean
    Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
    endpointId String
    Instance connection endpoint ID.
    instanceId String
    Instance ID.
    internetProtocol String
    IP protocol version. Value: IPv4.
    ipAddress String
    IP address.
    networkType String
    Network address type. Valid values: Private: Private address. Public: Public address.
    port String
    Port.
    subnetId String
    Subnet ID, valid only for Private addresses.

    Import

    $ pulumi import bytepluscc:rdsmysql/endpointPublicAddress:EndpointPublicAddress example "instance_id|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 bytepluscc Terraform Provider.
    bytepluscc logo
    Viewing docs for bytepluscc v0.0.35
    published on Monday, Jun 15, 2026 by Byteplus

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial