1. Packages
  2. Opentelekomcloud Provider
  3. API Docs
  4. getCceClustersV3
opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud

opentelekomcloud.getCceClustersV3

Explore with Pulumi AI

opentelekomcloud logo
opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud

    Up-to-date reference of API arguments for CCE cluster you can get at documentation portal

    Use this data source to get a list of CCE clusters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as opentelekomcloud from "@pulumi/opentelekomcloud";
    
    const config = new pulumi.Config();
    const clusterName = config.requireObject("clusterName");
    const clusters = opentelekomcloud.getCceClustersV3({
        name: clusterName,
        status: "Available",
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    config = pulumi.Config()
    cluster_name = config.require_object("clusterName")
    clusters = opentelekomcloud.get_cce_clusters_v3(name=cluster_name,
        status="Available")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		clusterName := cfg.RequireObject("clusterName")
    		_, err := opentelekomcloud.GetCceClustersV3(ctx, &opentelekomcloud.GetCceClustersV3Args{
    			Name:   pulumi.StringRef(clusterName),
    			Status: pulumi.StringRef("Available"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Opentelekomcloud = Pulumi.Opentelekomcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var clusterName = config.RequireObject<dynamic>("clusterName");
        var clusters = Opentelekomcloud.GetCceClustersV3.Invoke(new()
        {
            Name = clusterName,
            Status = "Available",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
    import com.pulumi.opentelekomcloud.inputs.GetCceClustersV3Args;
    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 clusterName = config.get("clusterName");
            final var clusters = OpentelekomcloudFunctions.getCceClustersV3(GetCceClustersV3Args.builder()
                .name(clusterName)
                .status("Available")
                .build());
    
        }
    }
    
    configuration:
      clusterName:
        type: dynamic
    variables:
      clusters:
        fn::invoke:
          function: opentelekomcloud:getCceClustersV3
          arguments:
            name: ${clusterName}
            status: Available
    

    Using getCceClustersV3

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCceClustersV3(args: GetCceClustersV3Args, opts?: InvokeOptions): Promise<GetCceClustersV3Result>
    function getCceClustersV3Output(args: GetCceClustersV3OutputArgs, opts?: InvokeOptions): Output<GetCceClustersV3Result>
    def get_cce_clusters_v3(cluster_id: Optional[str] = None,
                            cluster_type: Optional[str] = None,
                            enterprise_project_id: Optional[str] = None,
                            id: Optional[str] = None,
                            name: Optional[str] = None,
                            region: Optional[str] = None,
                            status: Optional[str] = None,
                            vpc_id: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetCceClustersV3Result
    def get_cce_clusters_v3_output(cluster_id: Optional[pulumi.Input[str]] = None,
                            cluster_type: Optional[pulumi.Input[str]] = None,
                            enterprise_project_id: Optional[pulumi.Input[str]] = None,
                            id: Optional[pulumi.Input[str]] = None,
                            name: Optional[pulumi.Input[str]] = None,
                            region: Optional[pulumi.Input[str]] = None,
                            status: Optional[pulumi.Input[str]] = None,
                            vpc_id: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetCceClustersV3Result]
    func GetCceClustersV3(ctx *Context, args *GetCceClustersV3Args, opts ...InvokeOption) (*GetCceClustersV3Result, error)
    func GetCceClustersV3Output(ctx *Context, args *GetCceClustersV3OutputArgs, opts ...InvokeOption) GetCceClustersV3ResultOutput

    > Note: This function is named GetCceClustersV3 in the Go SDK.

    public static class GetCceClustersV3 
    {
        public static Task<GetCceClustersV3Result> InvokeAsync(GetCceClustersV3Args args, InvokeOptions? opts = null)
        public static Output<GetCceClustersV3Result> Invoke(GetCceClustersV3InvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCceClustersV3Result> getCceClustersV3(GetCceClustersV3Args args, InvokeOptions options)
    public static Output<GetCceClustersV3Result> getCceClustersV3(GetCceClustersV3Args args, InvokeOptions options)
    
    fn::invoke:
      function: opentelekomcloud:index/getCceClustersV3:getCceClustersV3
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ClusterId string
    Specifies the ID of the cluster.
    ClusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    EnterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    Id string
    The ID of the cluster.
    Name string
    Specifies the name of the cluster.
    Region string
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    Status string
    Specifies the status of the cluster.
    VpcId string
    Specifies the VPC ID to which the cluster belongs.
    ClusterId string
    Specifies the ID of the cluster.
    ClusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    EnterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    Id string
    The ID of the cluster.
    Name string
    Specifies the name of the cluster.
    Region string
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    Status string
    Specifies the status of the cluster.
    VpcId string
    Specifies the VPC ID to which the cluster belongs.
    clusterId String
    Specifies the ID of the cluster.
    clusterType String
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    enterpriseProjectId String
    Specifies the enterprise project ID of the cluster.
    id String
    The ID of the cluster.
    name String
    Specifies the name of the cluster.
    region String
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    status String
    Specifies the status of the cluster.
    vpcId String
    Specifies the VPC ID to which the cluster belongs.
    clusterId string
    Specifies the ID of the cluster.
    clusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    enterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    id string
    The ID of the cluster.
    name string
    Specifies the name of the cluster.
    region string
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    status string
    Specifies the status of the cluster.
    vpcId string
    Specifies the VPC ID to which the cluster belongs.
    cluster_id str
    Specifies the ID of the cluster.
    cluster_type str
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    enterprise_project_id str
    Specifies the enterprise project ID of the cluster.
    id str
    The ID of the cluster.
    name str
    Specifies the name of the cluster.
    region str
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    status str
    Specifies the status of the cluster.
    vpc_id str
    Specifies the VPC ID to which the cluster belongs.
    clusterId String
    Specifies the ID of the cluster.
    clusterType String
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    enterpriseProjectId String
    Specifies the enterprise project ID of the cluster.
    id String
    The ID of the cluster.
    name String
    Specifies the name of the cluster.
    region String
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    status String
    Specifies the status of the cluster.
    vpcId String
    Specifies the VPC ID to which the cluster belongs.

    getCceClustersV3 Result

    The following output properties are available:

    Clusters List<GetCceClustersV3Cluster>
    Indicates a list of CCE clusters found. Structure is documented below.
    Id string
    The ID of the cluster.
    Ids List<string>
    Indicates a list of IDs of all CCE clusters found.
    Region string
    ClusterId string
    ClusterType string
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    EnterpriseProjectId string
    The enterprise project ID of the CCE cluster.
    Name string
    The user name.
    Status string
    The status of the cluster.
    VpcId string
    The vpc ID of the cluster.
    Clusters []GetCceClustersV3Cluster
    Indicates a list of CCE clusters found. Structure is documented below.
    Id string
    The ID of the cluster.
    Ids []string
    Indicates a list of IDs of all CCE clusters found.
    Region string
    ClusterId string
    ClusterType string
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    EnterpriseProjectId string
    The enterprise project ID of the CCE cluster.
    Name string
    The user name.
    Status string
    The status of the cluster.
    VpcId string
    The vpc ID of the cluster.
    clusters List<GetCceClustersV3Cluster>
    Indicates a list of CCE clusters found. Structure is documented below.
    id String
    The ID of the cluster.
    ids List<String>
    Indicates a list of IDs of all CCE clusters found.
    region String
    clusterId String
    clusterType String
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    enterpriseProjectId String
    The enterprise project ID of the CCE cluster.
    name String
    The user name.
    status String
    The status of the cluster.
    vpcId String
    The vpc ID of the cluster.
    clusters GetCceClustersV3Cluster[]
    Indicates a list of CCE clusters found. Structure is documented below.
    id string
    The ID of the cluster.
    ids string[]
    Indicates a list of IDs of all CCE clusters found.
    region string
    clusterId string
    clusterType string
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    enterpriseProjectId string
    The enterprise project ID of the CCE cluster.
    name string
    The user name.
    status string
    The status of the cluster.
    vpcId string
    The vpc ID of the cluster.
    clusters Sequence[GetCceClustersV3Cluster]
    Indicates a list of CCE clusters found. Structure is documented below.
    id str
    The ID of the cluster.
    ids Sequence[str]
    Indicates a list of IDs of all CCE clusters found.
    region str
    cluster_id str
    cluster_type str
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    enterprise_project_id str
    The enterprise project ID of the CCE cluster.
    name str
    The user name.
    status str
    The status of the cluster.
    vpc_id str
    The vpc ID of the cluster.
    clusters List<Property Map>
    Indicates a list of CCE clusters found. Structure is documented below.
    id String
    The ID of the cluster.
    ids List<String>
    Indicates a list of IDs of all CCE clusters found.
    region String
    clusterId String
    clusterType String
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    enterpriseProjectId String
    The enterprise project ID of the CCE cluster.
    name String
    The user name.
    status String
    The status of the cluster.
    vpcId String
    The vpc ID of the cluster.

    Supporting Types

    GetCceClustersV3Cluster

    AuthenticationMode string
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    BillingMode double
    The charging mode of the cluster.
    CertificateClusters List<GetCceClustersV3ClusterCertificateCluster>
    The certificate clusters. Structure is documented below.
    CertificateUsers List<GetCceClustersV3ClusterCertificateUser>
    The certificate users. Structure is documented below.
    ClusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    ClusterVersion string
    The version of the cluster.
    ContainerNetworkCidr string
    The container network segment.
    ContainerNetworkType string
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    Description string
    The description of the cluster.
    Endpoints List<GetCceClustersV3ClusterEndpoint>
    The access addresses of kube-apiserver in the cluster. Structure is documented below.
    EniSubnetCidr string
    The ENI network segment.
    EniSubnetId string
    The IPv4 subnet ID of the subnet where the ENI resides.
    EnterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    FlavorId string
    The specification of the cluster.
    Id string
    The ID of the cluster.
    KubeConfigRaw string
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    Masters List<GetCceClustersV3ClusterMaster>
    The advanced configuration of master nodes. Structure is documented below.
    Name string
    Specifies the name of the cluster.
    SecurityGroupId string
    The security group ID of the cluster.
    ServiceNetworkCidr string
    The service network segment.
    Status string
    Specifies the status of the cluster.
    SubnetId string
    The ID of the subnet used to create the node.
    VpcId string
    Specifies the VPC ID to which the cluster belongs.
    AuthenticationMode string
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    BillingMode float64
    The charging mode of the cluster.
    CertificateClusters []GetCceClustersV3ClusterCertificateCluster
    The certificate clusters. Structure is documented below.
    CertificateUsers []GetCceClustersV3ClusterCertificateUser
    The certificate users. Structure is documented below.
    ClusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    ClusterVersion string
    The version of the cluster.
    ContainerNetworkCidr string
    The container network segment.
    ContainerNetworkType string
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    Description string
    The description of the cluster.
    Endpoints []GetCceClustersV3ClusterEndpoint
    The access addresses of kube-apiserver in the cluster. Structure is documented below.
    EniSubnetCidr string
    The ENI network segment.
    EniSubnetId string
    The IPv4 subnet ID of the subnet where the ENI resides.
    EnterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    FlavorId string
    The specification of the cluster.
    Id string
    The ID of the cluster.
    KubeConfigRaw string
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    Masters []GetCceClustersV3ClusterMaster
    The advanced configuration of master nodes. Structure is documented below.
    Name string
    Specifies the name of the cluster.
    SecurityGroupId string
    The security group ID of the cluster.
    ServiceNetworkCidr string
    The service network segment.
    Status string
    Specifies the status of the cluster.
    SubnetId string
    The ID of the subnet used to create the node.
    VpcId string
    Specifies the VPC ID to which the cluster belongs.
    authenticationMode String
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    billingMode Double
    The charging mode of the cluster.
    certificateClusters List<GetCceClustersV3ClusterCertificateCluster>
    The certificate clusters. Structure is documented below.
    certificateUsers List<GetCceClustersV3ClusterCertificateUser>
    The certificate users. Structure is documented below.
    clusterType String
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    clusterVersion String
    The version of the cluster.
    containerNetworkCidr String
    The container network segment.
    containerNetworkType String
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    description String
    The description of the cluster.
    endpoints List<GetCceClustersV3ClusterEndpoint>
    The access addresses of kube-apiserver in the cluster. Structure is documented below.
    eniSubnetCidr String
    The ENI network segment.
    eniSubnetId String
    The IPv4 subnet ID of the subnet where the ENI resides.
    enterpriseProjectId String
    Specifies the enterprise project ID of the cluster.
    flavorId String
    The specification of the cluster.
    id String
    The ID of the cluster.
    kubeConfigRaw String
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    masters List<GetCceClustersV3ClusterMaster>
    The advanced configuration of master nodes. Structure is documented below.
    name String
    Specifies the name of the cluster.
    securityGroupId String
    The security group ID of the cluster.
    serviceNetworkCidr String
    The service network segment.
    status String
    Specifies the status of the cluster.
    subnetId String
    The ID of the subnet used to create the node.
    vpcId String
    Specifies the VPC ID to which the cluster belongs.
    authenticationMode string
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    billingMode number
    The charging mode of the cluster.
    certificateClusters GetCceClustersV3ClusterCertificateCluster[]
    The certificate clusters. Structure is documented below.
    certificateUsers GetCceClustersV3ClusterCertificateUser[]
    The certificate users. Structure is documented below.
    clusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    clusterVersion string
    The version of the cluster.
    containerNetworkCidr string
    The container network segment.
    containerNetworkType string
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    description string
    The description of the cluster.
    endpoints GetCceClustersV3ClusterEndpoint[]
    The access addresses of kube-apiserver in the cluster. Structure is documented below.
    eniSubnetCidr string
    The ENI network segment.
    eniSubnetId string
    The IPv4 subnet ID of the subnet where the ENI resides.
    enterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    flavorId string
    The specification of the cluster.
    id string
    The ID of the cluster.
    kubeConfigRaw string
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    masters GetCceClustersV3ClusterMaster[]
    The advanced configuration of master nodes. Structure is documented below.
    name string
    Specifies the name of the cluster.
    securityGroupId string
    The security group ID of the cluster.
    serviceNetworkCidr string
    The service network segment.
    status string
    Specifies the status of the cluster.
    subnetId string
    The ID of the subnet used to create the node.
    vpcId string
    Specifies the VPC ID to which the cluster belongs.
    authentication_mode str
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    billing_mode float
    The charging mode of the cluster.
    certificate_clusters Sequence[GetCceClustersV3ClusterCertificateCluster]
    The certificate clusters. Structure is documented below.
    certificate_users Sequence[GetCceClustersV3ClusterCertificateUser]
    The certificate users. Structure is documented below.
    cluster_type str
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    cluster_version str
    The version of the cluster.
    container_network_cidr str
    The container network segment.
    container_network_type str
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    description str
    The description of the cluster.
    endpoints Sequence[GetCceClustersV3ClusterEndpoint]
    The access addresses of kube-apiserver in the cluster. Structure is documented below.
    eni_subnet_cidr str
    The ENI network segment.
    eni_subnet_id str
    The IPv4 subnet ID of the subnet where the ENI resides.
    enterprise_project_id str
    Specifies the enterprise project ID of the cluster.
    flavor_id str
    The specification of the cluster.
    id str
    The ID of the cluster.
    kube_config_raw str
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    masters Sequence[GetCceClustersV3ClusterMaster]
    The advanced configuration of master nodes. Structure is documented below.
    name str
    Specifies the name of the cluster.
    security_group_id str
    The security group ID of the cluster.
    service_network_cidr str
    The service network segment.
    status str
    Specifies the status of the cluster.
    subnet_id str
    The ID of the subnet used to create the node.
    vpc_id str
    Specifies the VPC ID to which the cluster belongs.
    authenticationMode String
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    billingMode Number
    The charging mode of the cluster.
    certificateClusters List<Property Map>
    The certificate clusters. Structure is documented below.
    certificateUsers List<Property Map>
    The certificate users. Structure is documented below.
    clusterType String
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    clusterVersion String
    The version of the cluster.
    containerNetworkCidr String
    The container network segment.
    containerNetworkType String
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    description String
    The description of the cluster.
    endpoints List<Property Map>
    The access addresses of kube-apiserver in the cluster. Structure is documented below.
    eniSubnetCidr String
    The ENI network segment.
    eniSubnetId String
    The IPv4 subnet ID of the subnet where the ENI resides.
    enterpriseProjectId String
    Specifies the enterprise project ID of the cluster.
    flavorId String
    The specification of the cluster.
    id String
    The ID of the cluster.
    kubeConfigRaw String
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    masters List<Property Map>
    The advanced configuration of master nodes. Structure is documented below.
    name String
    Specifies the name of the cluster.
    securityGroupId String
    The security group ID of the cluster.
    serviceNetworkCidr String
    The service network segment.
    status String
    Specifies the status of the cluster.
    subnetId String
    The ID of the subnet used to create the node.
    vpcId String
    Specifies the VPC ID to which the cluster belongs.

    GetCceClustersV3ClusterCertificateCluster

    CertificateAuthorityData string
    The certificate data.
    Name string
    Specifies the name of the cluster.
    Server string
    The server IP address.
    CertificateAuthorityData string
    The certificate data.
    Name string
    Specifies the name of the cluster.
    Server string
    The server IP address.
    certificateAuthorityData String
    The certificate data.
    name String
    Specifies the name of the cluster.
    server String
    The server IP address.
    certificateAuthorityData string
    The certificate data.
    name string
    Specifies the name of the cluster.
    server string
    The server IP address.
    certificate_authority_data str
    The certificate data.
    name str
    Specifies the name of the cluster.
    server str
    The server IP address.
    certificateAuthorityData String
    The certificate data.
    name String
    Specifies the name of the cluster.
    server String
    The server IP address.

    GetCceClustersV3ClusterCertificateUser

    ClientCertificateData string
    The client certificate data.
    ClientKeyData string
    The client key data.
    Name string
    Specifies the name of the cluster.
    ClientCertificateData string
    The client certificate data.
    ClientKeyData string
    The client key data.
    Name string
    Specifies the name of the cluster.
    clientCertificateData String
    The client certificate data.
    clientKeyData String
    The client key data.
    name String
    Specifies the name of the cluster.
    clientCertificateData string
    The client certificate data.
    clientKeyData string
    The client key data.
    name string
    Specifies the name of the cluster.
    client_certificate_data str
    The client certificate data.
    client_key_data str
    The client key data.
    name str
    Specifies the name of the cluster.
    clientCertificateData String
    The client certificate data.
    clientKeyData String
    The client key data.
    name String
    Specifies the name of the cluster.

    GetCceClustersV3ClusterEndpoint

    Type string
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    Url string
    The URL of the cluster access address.
    Type string
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    Url string
    The URL of the cluster access address.
    type String
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    url String
    The URL of the cluster access address.
    type string
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    url string
    The URL of the cluster access address.
    type str
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    url str
    The URL of the cluster access address.
    type String
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    url String
    The URL of the cluster access address.

    GetCceClustersV3ClusterMaster

    AvailabilityZone string
    The availability zone (AZ) of the master node.
    AvailabilityZone string
    The availability zone (AZ) of the master node.
    availabilityZone String
    The availability zone (AZ) of the master node.
    availabilityZone string
    The availability zone (AZ) of the master node.
    availability_zone str
    The availability zone (AZ) of the master node.
    availabilityZone String
    The availability zone (AZ) of the master node.

    Package Details

    Repository
    opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
    License
    Notes
    This Pulumi package is based on the opentelekomcloud Terraform Provider.
    opentelekomcloud logo
    opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud