1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getOceanusClusters
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getOceanusClusters

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query detailed information of oceanus clusters

    Example Usage

    Query all clusters

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getOceanusClusters({});
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_oceanus_clusters()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.GetOceanusClusters(ctx, &tencentcloud.GetOceanusClustersArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Tencentcloud.GetOceanusClusters.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetOceanusClustersArgs;
    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 example = TencentcloudFunctions.getOceanusClusters();
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getOceanusClusters
          arguments: {}
    

    Query the specified cluster

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getOceanusClusters({
        clusterIds: ["cluster-5c42n3a5"],
        filters: [{
            name: "name",
            values: ["tf_example"],
        }],
        orderType: 1,
        workSpaceId: "space-2idq8wbr",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_oceanus_clusters(cluster_ids=["cluster-5c42n3a5"],
        filters=[{
            "name": "name",
            "values": ["tf_example"],
        }],
        order_type=1,
        work_space_id="space-2idq8wbr")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.GetOceanusClusters(ctx, &tencentcloud.GetOceanusClustersArgs{
    			ClusterIds: []string{
    				"cluster-5c42n3a5",
    			},
    			Filters: []tencentcloud.GetOceanusClustersFilter{
    				{
    					Name: "name",
    					Values: []string{
    						"tf_example",
    					},
    				},
    			},
    			OrderType:   pulumi.Float64Ref(1),
    			WorkSpaceId: pulumi.StringRef("space-2idq8wbr"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Tencentcloud.GetOceanusClusters.Invoke(new()
        {
            ClusterIds = new[]
            {
                "cluster-5c42n3a5",
            },
            Filters = new[]
            {
                new Tencentcloud.Inputs.GetOceanusClustersFilterInputArgs
                {
                    Name = "name",
                    Values = new[]
                    {
                        "tf_example",
                    },
                },
            },
            OrderType = 1,
            WorkSpaceId = "space-2idq8wbr",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetOceanusClustersArgs;
    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 example = TencentcloudFunctions.getOceanusClusters(GetOceanusClustersArgs.builder()
                .clusterIds("cluster-5c42n3a5")
                .filters(GetOceanusClustersFilterArgs.builder()
                    .name("name")
                    .values("tf_example")
                    .build())
                .orderType(1)
                .workSpaceId("space-2idq8wbr")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getOceanusClusters
          arguments:
            clusterIds:
              - cluster-5c42n3a5
            filters:
              - name: name
                values:
                  - tf_example
            orderType: 1
            workSpaceId: space-2idq8wbr
    

    Using getOceanusClusters

    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 getOceanusClusters(args: GetOceanusClustersArgs, opts?: InvokeOptions): Promise<GetOceanusClustersResult>
    function getOceanusClustersOutput(args: GetOceanusClustersOutputArgs, opts?: InvokeOptions): Output<GetOceanusClustersResult>
    def get_oceanus_clusters(cluster_ids: Optional[Sequence[str]] = None,
                             filters: Optional[Sequence[GetOceanusClustersFilter]] = None,
                             id: Optional[str] = None,
                             order_type: Optional[float] = None,
                             result_output_file: Optional[str] = None,
                             work_space_id: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetOceanusClustersResult
    def get_oceanus_clusters_output(cluster_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetOceanusClustersFilterArgs]]]] = None,
                             id: Optional[pulumi.Input[str]] = None,
                             order_type: Optional[pulumi.Input[float]] = None,
                             result_output_file: Optional[pulumi.Input[str]] = None,
                             work_space_id: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetOceanusClustersResult]
    func GetOceanusClusters(ctx *Context, args *GetOceanusClustersArgs, opts ...InvokeOption) (*GetOceanusClustersResult, error)
    func GetOceanusClustersOutput(ctx *Context, args *GetOceanusClustersOutputArgs, opts ...InvokeOption) GetOceanusClustersResultOutput

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

    public static class GetOceanusClusters 
    {
        public static Task<GetOceanusClustersResult> InvokeAsync(GetOceanusClustersArgs args, InvokeOptions? opts = null)
        public static Output<GetOceanusClustersResult> Invoke(GetOceanusClustersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOceanusClustersResult> getOceanusClusters(GetOceanusClustersArgs args, InvokeOptions options)
    public static Output<GetOceanusClustersResult> getOceanusClusters(GetOceanusClustersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getOceanusClusters:getOceanusClusters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ClusterIds List<string>
    Query one or more clusters by their ID. The maximum number of clusters that can be queried at once is 100.
    Filters List<GetOceanusClustersFilter>
    The filtering rules.
    Id string
    OrderType double
    The sorting rule of the cluster information results. Possible values are 1 (sort by time in descending order), 2 (sort by time in ascending order), and 3 (sort by status).
    ResultOutputFile string
    Used to save results.
    WorkSpaceId string
    Workspace SerialId.
    ClusterIds []string
    Query one or more clusters by their ID. The maximum number of clusters that can be queried at once is 100.
    Filters []GetOceanusClustersFilter
    The filtering rules.
    Id string
    OrderType float64
    The sorting rule of the cluster information results. Possible values are 1 (sort by time in descending order), 2 (sort by time in ascending order), and 3 (sort by status).
    ResultOutputFile string
    Used to save results.
    WorkSpaceId string
    Workspace SerialId.
    clusterIds List<String>
    Query one or more clusters by their ID. The maximum number of clusters that can be queried at once is 100.
    filters List<GetOceanusClustersFilter>
    The filtering rules.
    id String
    orderType Double
    The sorting rule of the cluster information results. Possible values are 1 (sort by time in descending order), 2 (sort by time in ascending order), and 3 (sort by status).
    resultOutputFile String
    Used to save results.
    workSpaceId String
    Workspace SerialId.
    clusterIds string[]
    Query one or more clusters by their ID. The maximum number of clusters that can be queried at once is 100.
    filters GetOceanusClustersFilter[]
    The filtering rules.
    id string
    orderType number
    The sorting rule of the cluster information results. Possible values are 1 (sort by time in descending order), 2 (sort by time in ascending order), and 3 (sort by status).
    resultOutputFile string
    Used to save results.
    workSpaceId string
    Workspace SerialId.
    cluster_ids Sequence[str]
    Query one or more clusters by their ID. The maximum number of clusters that can be queried at once is 100.
    filters Sequence[GetOceanusClustersFilter]
    The filtering rules.
    id str
    order_type float
    The sorting rule of the cluster information results. Possible values are 1 (sort by time in descending order), 2 (sort by time in ascending order), and 3 (sort by status).
    result_output_file str
    Used to save results.
    work_space_id str
    Workspace SerialId.
    clusterIds List<String>
    Query one or more clusters by their ID. The maximum number of clusters that can be queried at once is 100.
    filters List<Property Map>
    The filtering rules.
    id String
    orderType Number
    The sorting rule of the cluster information results. Possible values are 1 (sort by time in descending order), 2 (sort by time in ascending order), and 3 (sort by status).
    resultOutputFile String
    Used to save results.
    workSpaceId String
    Workspace SerialId.

    getOceanusClusters Result

    The following output properties are available:

    clusterSets List<Property Map>
    Cluster list.
    id String
    clusterIds List<String>
    filters List<Property Map>
    orderType Number
    resultOutputFile String
    workSpaceId String
    Workspace SerialId.

    Supporting Types

    GetOceanusClustersClusterSet

    AppId double
    The user AppID.
    ArchGeneration double
    V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
    AutoRenewFlag double
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    Ccns List<GetOceanusClustersClusterSetCcn>
    The network.
    ClsLogName string
    The name of the CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ClsLogSet string
    The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ClsTopicId string
    The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ClsTopicName string
    The name of the CLS topic of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterId string
    The ID of the cluster.
    ClusterSessions List<GetOceanusClustersClusterSetClusterSession>
    Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterType double
    0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
    Correlations List<GetOceanusClustersClusterSetCorrelation>
    Space information.Note: This field may return null, indicating that no valid values can be obtained.
    CreateTime string
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    CreatorUin string
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    CuMem double
    The memory specification of the CU.
    CuNum double
    The number of CUs.
    CustomizedDnsEnabled double
    Value: 0 - not set, 1 - set, 2 - not allowed to set.Note: This field may return null, indicating that no valid values can be obtained.
    DefaultCosBucket string
    The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    DefaultLogCollectConf string
    The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ExpireTime string
    The expiration time of the cluster. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    FreeCu double
    The number of free CUs at the granularity level.Note: This field may return null, indicating that no valid values can be obtained.
    FreeCuNum double
    The number of free CUs.
    IsNeedManageNode double
    Front-end distinguishes whether the cluster needs 2CU logic, because historical clusters do not need to be changed. Default is 1. All new clusters need to be changed.Note: This field may return null, indicating that no valid values can be obtained.
    IsolatedTime string
    The time when the cluster was isolated. If the cluster has not been isolated, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    Name string
    The name of the cluster.
    NetEnvironmentType double
    The network.
    Orders List<GetOceanusClustersClusterSetOrder>
    Order information.Note: This field may return null, indicating that no valid values can be obtained.
    OwnerUin string
    The main account UIN.
    PayMode double
    0 - postpaid, 1 - prepaid.Note: This field may return null, indicating that no valid values can be obtained.
    Region string
    The region where the cluster is located.
    Remark string
    A description of the cluster.
    RunningCu double
    Running CU.Note: This field may return null, indicating that no valid values can be obtained.
    SecondsUntilExpiry string
    The number of seconds until the cluster expires. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    SqlGateways List<GetOceanusClustersClusterSetSqlGateway>
    Gateway information.Note: This field may return null, indicating that no valid values can be obtained.
    Status double
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    StatusDesc string
    The status description.
    Tags List<GetOceanusClustersClusterSetTag>
    The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    UpdateTime string
    The time of the last operation on the cluster.
    Versions List<GetOceanusClustersClusterSetVersion>
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    Zone string
    The availability zone.
    AppId float64
    The user AppID.
    ArchGeneration float64
    V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
    AutoRenewFlag float64
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    Ccns []GetOceanusClustersClusterSetCcn
    The network.
    ClsLogName string
    The name of the CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ClsLogSet string
    The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ClsTopicId string
    The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ClsTopicName string
    The name of the CLS topic of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterId string
    The ID of the cluster.
    ClusterSessions []GetOceanusClustersClusterSetClusterSession
    Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterType float64
    0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
    Correlations []GetOceanusClustersClusterSetCorrelation
    Space information.Note: This field may return null, indicating that no valid values can be obtained.
    CreateTime string
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    CreatorUin string
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    CuMem float64
    The memory specification of the CU.
    CuNum float64
    The number of CUs.
    CustomizedDnsEnabled float64
    Value: 0 - not set, 1 - set, 2 - not allowed to set.Note: This field may return null, indicating that no valid values can be obtained.
    DefaultCosBucket string
    The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    DefaultLogCollectConf string
    The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    ExpireTime string
    The expiration time of the cluster. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    FreeCu float64
    The number of free CUs at the granularity level.Note: This field may return null, indicating that no valid values can be obtained.
    FreeCuNum float64
    The number of free CUs.
    IsNeedManageNode float64
    Front-end distinguishes whether the cluster needs 2CU logic, because historical clusters do not need to be changed. Default is 1. All new clusters need to be changed.Note: This field may return null, indicating that no valid values can be obtained.
    IsolatedTime string
    The time when the cluster was isolated. If the cluster has not been isolated, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    Name string
    The name of the cluster.
    NetEnvironmentType float64
    The network.
    Orders []GetOceanusClustersClusterSetOrder
    Order information.Note: This field may return null, indicating that no valid values can be obtained.
    OwnerUin string
    The main account UIN.
    PayMode float64
    0 - postpaid, 1 - prepaid.Note: This field may return null, indicating that no valid values can be obtained.
    Region string
    The region where the cluster is located.
    Remark string
    A description of the cluster.
    RunningCu float64
    Running CU.Note: This field may return null, indicating that no valid values can be obtained.
    SecondsUntilExpiry string
    The number of seconds until the cluster expires. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    SqlGateways []GetOceanusClustersClusterSetSqlGateway
    Gateway information.Note: This field may return null, indicating that no valid values can be obtained.
    Status float64
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    StatusDesc string
    The status description.
    Tags []GetOceanusClustersClusterSetTag
    The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    UpdateTime string
    The time of the last operation on the cluster.
    Versions []GetOceanusClustersClusterSetVersion
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    Zone string
    The availability zone.
    appId Double
    The user AppID.
    archGeneration Double
    V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
    autoRenewFlag Double
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    ccns List<GetOceanusClustersClusterSetCcn>
    The network.
    clsLogName String
    The name of the CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsLogSet String
    The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsTopicId String
    The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsTopicName String
    The name of the CLS topic of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clusterId String
    The ID of the cluster.
    clusterSessions List<GetOceanusClustersClusterSetClusterSession>
    Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
    clusterType Double
    0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
    correlations List<GetOceanusClustersClusterSetCorrelation>
    Space information.Note: This field may return null, indicating that no valid values can be obtained.
    createTime String
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    creatorUin String
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    cuMem Double
    The memory specification of the CU.
    cuNum Double
    The number of CUs.
    customizedDnsEnabled Double
    Value: 0 - not set, 1 - set, 2 - not allowed to set.Note: This field may return null, indicating that no valid values can be obtained.
    defaultCosBucket String
    The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    defaultLogCollectConf String
    The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    expireTime String
    The expiration time of the cluster. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    freeCu Double
    The number of free CUs at the granularity level.Note: This field may return null, indicating that no valid values can be obtained.
    freeCuNum Double
    The number of free CUs.
    isNeedManageNode Double
    Front-end distinguishes whether the cluster needs 2CU logic, because historical clusters do not need to be changed. Default is 1. All new clusters need to be changed.Note: This field may return null, indicating that no valid values can be obtained.
    isolatedTime String
    The time when the cluster was isolated. If the cluster has not been isolated, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    name String
    The name of the cluster.
    netEnvironmentType Double
    The network.
    orders List<GetOceanusClustersClusterSetOrder>
    Order information.Note: This field may return null, indicating that no valid values can be obtained.
    ownerUin String
    The main account UIN.
    payMode Double
    0 - postpaid, 1 - prepaid.Note: This field may return null, indicating that no valid values can be obtained.
    region String
    The region where the cluster is located.
    remark String
    A description of the cluster.
    runningCu Double
    Running CU.Note: This field may return null, indicating that no valid values can be obtained.
    secondsUntilExpiry String
    The number of seconds until the cluster expires. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    sqlGateways List<GetOceanusClustersClusterSetSqlGateway>
    Gateway information.Note: This field may return null, indicating that no valid values can be obtained.
    status Double
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    statusDesc String
    The status description.
    tags List<GetOceanusClustersClusterSetTag>
    The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    updateTime String
    The time of the last operation on the cluster.
    versions List<GetOceanusClustersClusterSetVersion>
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    zone String
    The availability zone.
    appId number
    The user AppID.
    archGeneration number
    V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
    autoRenewFlag number
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    ccns GetOceanusClustersClusterSetCcn[]
    The network.
    clsLogName string
    The name of the CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsLogSet string
    The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsTopicId string
    The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsTopicName string
    The name of the CLS topic of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clusterId string
    The ID of the cluster.
    clusterSessions GetOceanusClustersClusterSetClusterSession[]
    Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
    clusterType number
    0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
    correlations GetOceanusClustersClusterSetCorrelation[]
    Space information.Note: This field may return null, indicating that no valid values can be obtained.
    createTime string
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    creatorUin string
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    cuMem number
    The memory specification of the CU.
    cuNum number
    The number of CUs.
    customizedDnsEnabled number
    Value: 0 - not set, 1 - set, 2 - not allowed to set.Note: This field may return null, indicating that no valid values can be obtained.
    defaultCosBucket string
    The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    defaultLogCollectConf string
    The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    expireTime string
    The expiration time of the cluster. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    freeCu number
    The number of free CUs at the granularity level.Note: This field may return null, indicating that no valid values can be obtained.
    freeCuNum number
    The number of free CUs.
    isNeedManageNode number
    Front-end distinguishes whether the cluster needs 2CU logic, because historical clusters do not need to be changed. Default is 1. All new clusters need to be changed.Note: This field may return null, indicating that no valid values can be obtained.
    isolatedTime string
    The time when the cluster was isolated. If the cluster has not been isolated, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    name string
    The name of the cluster.
    netEnvironmentType number
    The network.
    orders GetOceanusClustersClusterSetOrder[]
    Order information.Note: This field may return null, indicating that no valid values can be obtained.
    ownerUin string
    The main account UIN.
    payMode number
    0 - postpaid, 1 - prepaid.Note: This field may return null, indicating that no valid values can be obtained.
    region string
    The region where the cluster is located.
    remark string
    A description of the cluster.
    runningCu number
    Running CU.Note: This field may return null, indicating that no valid values can be obtained.
    secondsUntilExpiry string
    The number of seconds until the cluster expires. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    sqlGateways GetOceanusClustersClusterSetSqlGateway[]
    Gateway information.Note: This field may return null, indicating that no valid values can be obtained.
    status number
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    statusDesc string
    The status description.
    tags GetOceanusClustersClusterSetTag[]
    The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    updateTime string
    The time of the last operation on the cluster.
    versions GetOceanusClustersClusterSetVersion[]
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    zone string
    The availability zone.
    app_id float
    The user AppID.
    arch_generation float
    V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
    auto_renew_flag float
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    ccns Sequence[GetOceanusClustersClusterSetCcn]
    The network.
    cls_log_name str
    The name of the CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    cls_log_set str
    The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    cls_topic_id str
    The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    cls_topic_name str
    The name of the CLS topic of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    cluster_id str
    The ID of the cluster.
    cluster_sessions Sequence[GetOceanusClustersClusterSetClusterSession]
    Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
    cluster_type float
    0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
    correlations Sequence[GetOceanusClustersClusterSetCorrelation]
    Space information.Note: This field may return null, indicating that no valid values can be obtained.
    create_time str
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    creator_uin str
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    cu_mem float
    The memory specification of the CU.
    cu_num float
    The number of CUs.
    customized_dns_enabled float
    Value: 0 - not set, 1 - set, 2 - not allowed to set.Note: This field may return null, indicating that no valid values can be obtained.
    default_cos_bucket str
    The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    default_log_collect_conf str
    The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    expire_time str
    The expiration time of the cluster. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    free_cu float
    The number of free CUs at the granularity level.Note: This field may return null, indicating that no valid values can be obtained.
    free_cu_num float
    The number of free CUs.
    is_need_manage_node float
    Front-end distinguishes whether the cluster needs 2CU logic, because historical clusters do not need to be changed. Default is 1. All new clusters need to be changed.Note: This field may return null, indicating that no valid values can be obtained.
    isolated_time str
    The time when the cluster was isolated. If the cluster has not been isolated, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    name str
    The name of the cluster.
    net_environment_type float
    The network.
    orders Sequence[GetOceanusClustersClusterSetOrder]
    Order information.Note: This field may return null, indicating that no valid values can be obtained.
    owner_uin str
    The main account UIN.
    pay_mode float
    0 - postpaid, 1 - prepaid.Note: This field may return null, indicating that no valid values can be obtained.
    region str
    The region where the cluster is located.
    remark str
    A description of the cluster.
    running_cu float
    Running CU.Note: This field may return null, indicating that no valid values can be obtained.
    seconds_until_expiry str
    The number of seconds until the cluster expires. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    sql_gateways Sequence[GetOceanusClustersClusterSetSqlGateway]
    Gateway information.Note: This field may return null, indicating that no valid values can be obtained.
    status float
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    status_desc str
    The status description.
    tags Sequence[GetOceanusClustersClusterSetTag]
    The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    update_time str
    The time of the last operation on the cluster.
    versions Sequence[GetOceanusClustersClusterSetVersion]
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    zone str
    The availability zone.
    appId Number
    The user AppID.
    archGeneration Number
    V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
    autoRenewFlag Number
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    ccns List<Property Map>
    The network.
    clsLogName String
    The name of the CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsLogSet String
    The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsTopicId String
    The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clsTopicName String
    The name of the CLS topic of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    clusterId String
    The ID of the cluster.
    clusterSessions List<Property Map>
    Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
    clusterType Number
    0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
    correlations List<Property Map>
    Space information.Note: This field may return null, indicating that no valid values can be obtained.
    createTime String
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    creatorUin String
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    cuMem Number
    The memory specification of the CU.
    cuNum Number
    The number of CUs.
    customizedDnsEnabled Number
    Value: 0 - not set, 1 - set, 2 - not allowed to set.Note: This field may return null, indicating that no valid values can be obtained.
    defaultCosBucket String
    The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    defaultLogCollectConf String
    The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    expireTime String
    The expiration time of the cluster. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    freeCu Number
    The number of free CUs at the granularity level.Note: This field may return null, indicating that no valid values can be obtained.
    freeCuNum Number
    The number of free CUs.
    isNeedManageNode Number
    Front-end distinguishes whether the cluster needs 2CU logic, because historical clusters do not need to be changed. Default is 1. All new clusters need to be changed.Note: This field may return null, indicating that no valid values can be obtained.
    isolatedTime String
    The time when the cluster was isolated. If the cluster has not been isolated, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    name String
    The name of the cluster.
    netEnvironmentType Number
    The network.
    orders List<Property Map>
    Order information.Note: This field may return null, indicating that no valid values can be obtained.
    ownerUin String
    The main account UIN.
    payMode Number
    0 - postpaid, 1 - prepaid.Note: This field may return null, indicating that no valid values can be obtained.
    region String
    The region where the cluster is located.
    remark String
    A description of the cluster.
    runningCu Number
    Running CU.Note: This field may return null, indicating that no valid values can be obtained.
    secondsUntilExpiry String
    The number of seconds until the cluster expires. If the cluster does not have an expiration time, this field will be -.Note: This field may return null, indicating that no valid values can be obtained.
    sqlGateways List<Property Map>
    Gateway information.Note: This field may return null, indicating that no valid values can be obtained.
    status Number
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    statusDesc String
    The status description.
    tags List<Property Map>
    The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    updateTime String
    The time of the last operation on the cluster.
    versions List<Property Map>
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    zone String
    The availability zone.

    GetOceanusClustersClusterSetCcn

    CcnId string
    The ID of the Cloud Connect Network (CCN), such as ccn-rahigzjd.
    SubnetId string
    The ID of the subnet.
    VpcId string
    The ID of the VPC.
    CcnId string
    The ID of the Cloud Connect Network (CCN), such as ccn-rahigzjd.
    SubnetId string
    The ID of the subnet.
    VpcId string
    The ID of the VPC.
    ccnId String
    The ID of the Cloud Connect Network (CCN), such as ccn-rahigzjd.
    subnetId String
    The ID of the subnet.
    vpcId String
    The ID of the VPC.
    ccnId string
    The ID of the Cloud Connect Network (CCN), such as ccn-rahigzjd.
    subnetId string
    The ID of the subnet.
    vpcId string
    The ID of the VPC.
    ccn_id str
    The ID of the Cloud Connect Network (CCN), such as ccn-rahigzjd.
    subnet_id str
    The ID of the subnet.
    vpc_id str
    The ID of the VPC.
    ccnId String
    The ID of the Cloud Connect Network (CCN), such as ccn-rahigzjd.
    subnetId String
    The ID of the subnet.
    vpcId String
    The ID of the VPC.

    GetOceanusClustersClusterSetCorrelation

    ClusterGroupId double
    Cluster ID.
    ClusterGroupSerialId string
    Cluster SerialId.
    ClusterName string
    Cluster name.
    ProjectId double
    Project ID.
    ProjectIdStr string
    Project ID in string format.Note: This field may return null, indicating that no valid values can be obtained.
    Status double
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    WorkSpaceId string
    Workspace SerialId.
    WorkSpaceName string
    Workspace name.
    ClusterGroupId float64
    Cluster ID.
    ClusterGroupSerialId string
    Cluster SerialId.
    ClusterName string
    Cluster name.
    ProjectId float64
    Project ID.
    ProjectIdStr string
    Project ID in string format.Note: This field may return null, indicating that no valid values can be obtained.
    Status float64
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    WorkSpaceId string
    Workspace SerialId.
    WorkSpaceName string
    Workspace name.
    clusterGroupId Double
    Cluster ID.
    clusterGroupSerialId String
    Cluster SerialId.
    clusterName String
    Cluster name.
    projectId Double
    Project ID.
    projectIdStr String
    Project ID in string format.Note: This field may return null, indicating that no valid values can be obtained.
    status Double
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    workSpaceId String
    Workspace SerialId.
    workSpaceName String
    Workspace name.
    clusterGroupId number
    Cluster ID.
    clusterGroupSerialId string
    Cluster SerialId.
    clusterName string
    Cluster name.
    projectId number
    Project ID.
    projectIdStr string
    Project ID in string format.Note: This field may return null, indicating that no valid values can be obtained.
    status number
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    workSpaceId string
    Workspace SerialId.
    workSpaceName string
    Workspace name.
    cluster_group_id float
    Cluster ID.
    cluster_group_serial_id str
    Cluster SerialId.
    cluster_name str
    Cluster name.
    project_id float
    Project ID.
    project_id_str str
    Project ID in string format.Note: This field may return null, indicating that no valid values can be obtained.
    status float
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    work_space_id str
    Workspace SerialId.
    work_space_name str
    Workspace name.
    clusterGroupId Number
    Cluster ID.
    clusterGroupSerialId String
    Cluster SerialId.
    clusterName String
    Cluster name.
    projectId Number
    Project ID.
    projectIdStr String
    Project ID in string format.Note: This field may return null, indicating that no valid values can be obtained.
    status Number
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    workSpaceId String
    Workspace SerialId.
    workSpaceName String
    Workspace name.

    GetOceanusClustersClusterSetOrder

    AutoRenewFlag double
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    ComputeCu double
    The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
    OperateUin string
    UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
    OrderTime string
    The time of the order.Note: This field may return null, indicating that no valid values can be obtained.
    Type double
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    AutoRenewFlag float64
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    ComputeCu float64
    The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
    OperateUin string
    UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
    OrderTime string
    The time of the order.Note: This field may return null, indicating that no valid values can be obtained.
    Type float64
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    autoRenewFlag Double
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    computeCu Double
    The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
    operateUin String
    UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
    orderTime String
    The time of the order.Note: This field may return null, indicating that no valid values can be obtained.
    type Double
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    autoRenewFlag number
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    computeCu number
    The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
    operateUin string
    UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
    orderTime string
    The time of the order.Note: This field may return null, indicating that no valid values can be obtained.
    type number
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    auto_renew_flag float
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    compute_cu float
    The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
    operate_uin str
    UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
    order_time str
    The time of the order.Note: This field may return null, indicating that no valid values can be obtained.
    type float
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    autoRenewFlag Number
    1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
    computeCu Number
    The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
    operateUin String
    UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
    orderTime String
    The time of the order.Note: This field may return null, indicating that no valid values can be obtained.
    type Number
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.

    GetOceanusClustersClusterSetSqlGateway

    CreateTime string
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    CreatorUin string
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    CuSpec double
    CU specification.Note: This field may return null, indicating that no valid values can be obtained.
    FlinkVersion string
    Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
    Properties List<GetOceanusClustersClusterSetSqlGatewayProperty>
    Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
    ResourceRefs List<GetOceanusClustersClusterSetSqlGatewayResourceRef>
    Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
    SerialId string
    Unique identifier.Note: This field may return null, indicating that no valid values can be obtained.
    Status double
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    UpdateTime string
    The time of the last operation on the cluster.
    CreateTime string
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    CreatorUin string
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    CuSpec float64
    CU specification.Note: This field may return null, indicating that no valid values can be obtained.
    FlinkVersion string
    Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
    Properties []GetOceanusClustersClusterSetSqlGatewayProperty
    Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
    ResourceRefs []GetOceanusClustersClusterSetSqlGatewayResourceRef
    Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
    SerialId string
    Unique identifier.Note: This field may return null, indicating that no valid values can be obtained.
    Status float64
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    UpdateTime string
    The time of the last operation on the cluster.
    createTime String
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    creatorUin String
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    cuSpec Double
    CU specification.Note: This field may return null, indicating that no valid values can be obtained.
    flinkVersion String
    Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
    properties List<GetOceanusClustersClusterSetSqlGatewayProperty>
    Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
    resourceRefs List<GetOceanusClustersClusterSetSqlGatewayResourceRef>
    Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
    serialId String
    Unique identifier.Note: This field may return null, indicating that no valid values can be obtained.
    status Double
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    updateTime String
    The time of the last operation on the cluster.
    createTime string
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    creatorUin string
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    cuSpec number
    CU specification.Note: This field may return null, indicating that no valid values can be obtained.
    flinkVersion string
    Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
    properties GetOceanusClustersClusterSetSqlGatewayProperty[]
    Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
    resourceRefs GetOceanusClustersClusterSetSqlGatewayResourceRef[]
    Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
    serialId string
    Unique identifier.Note: This field may return null, indicating that no valid values can be obtained.
    status number
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    updateTime string
    The time of the last operation on the cluster.
    create_time str
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    creator_uin str
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    cu_spec float
    CU specification.Note: This field may return null, indicating that no valid values can be obtained.
    flink_version str
    Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
    properties Sequence[GetOceanusClustersClusterSetSqlGatewayProperty]
    Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
    resource_refs Sequence[GetOceanusClustersClusterSetSqlGatewayResourceRef]
    Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
    serial_id str
    Unique identifier.Note: This field may return null, indicating that no valid values can be obtained.
    status float
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    update_time str
    The time of the last operation on the cluster.
    createTime String
    Creation time.Note: This field may return null, indicating that no valid values can be obtained.
    creatorUin String
    Creator.Note: This field may return null, indicating that no valid values can be obtained.
    cuSpec Number
    CU specification.Note: This field may return null, indicating that no valid values can be obtained.
    flinkVersion String
    Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
    properties List<Property Map>
    Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
    resourceRefs List<Property Map>
    Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
    serialId String
    Unique identifier.Note: This field may return null, indicating that no valid values can be obtained.
    status Number
    The status of the cluster. Possible values are 1 (uninitialized), 3 (initializing), and 2 (running).
    updateTime String
    The time of the last operation on the cluster.

    GetOceanusClustersClusterSetSqlGatewayProperty

    Key string
    Key of the system configuration.
    Value string
    Value of the system configuration.
    Key string
    Key of the system configuration.
    Value string
    Value of the system configuration.
    key String
    Key of the system configuration.
    value String
    Value of the system configuration.
    key string
    Key of the system configuration.
    value string
    Value of the system configuration.
    key str
    Key of the system configuration.
    value str
    Value of the system configuration.
    key String
    Key of the system configuration.
    value String
    Value of the system configuration.

    GetOceanusClustersClusterSetSqlGatewayResourceRef

    ResourceId string
    Unique identifier of the resource.
    Type double
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    Version double
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    WorkspaceId string
    Unique identifier of the space.
    ResourceId string
    Unique identifier of the resource.
    Type float64
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    Version float64
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    WorkspaceId string
    Unique identifier of the space.
    resourceId String
    Unique identifier of the resource.
    type Double
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    version Double
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    workspaceId String
    Unique identifier of the space.
    resourceId string
    Unique identifier of the resource.
    type number
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    version number
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    workspaceId string
    Unique identifier of the space.
    resource_id str
    Unique identifier of the resource.
    type float
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    version float
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    workspace_id str
    Unique identifier of the space.
    resourceId String
    Unique identifier of the resource.
    type Number
    Reference type. 0: user resource.Note: This field may return null, indicating that no valid values can be obtained.
    version Number
    The version information of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    workspaceId String
    Unique identifier of the space.

    GetOceanusClustersClusterSetTag

    TagKey string
    The tag key.Note: This field may return null, indicating that no valid values can be obtained.
    TagValue string
    The tag value.Note: This field may return null, indicating that no valid values can be obtained.
    TagKey string
    The tag key.Note: This field may return null, indicating that no valid values can be obtained.
    TagValue string
    The tag value.Note: This field may return null, indicating that no valid values can be obtained.
    tagKey String
    The tag key.Note: This field may return null, indicating that no valid values can be obtained.
    tagValue String
    The tag value.Note: This field may return null, indicating that no valid values can be obtained.
    tagKey string
    The tag key.Note: This field may return null, indicating that no valid values can be obtained.
    tagValue string
    The tag value.Note: This field may return null, indicating that no valid values can be obtained.
    tag_key str
    The tag key.Note: This field may return null, indicating that no valid values can be obtained.
    tag_value str
    The tag value.Note: This field may return null, indicating that no valid values can be obtained.
    tagKey String
    The tag key.Note: This field may return null, indicating that no valid values can be obtained.
    tagValue String
    The tag value.Note: This field may return null, indicating that no valid values can be obtained.

    GetOceanusClustersClusterSetVersion

    Flink string
    The Flink version of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    SupportedFlinks List<string>
    The Flink versions supported by the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    Flink string
    The Flink version of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    SupportedFlinks []string
    The Flink versions supported by the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    flink String
    The Flink version of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    supportedFlinks List<String>
    The Flink versions supported by the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    flink string
    The Flink version of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    supportedFlinks string[]
    The Flink versions supported by the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    flink str
    The Flink version of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    supported_flinks Sequence[str]
    The Flink versions supported by the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    flink String
    The Flink version of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
    supportedFlinks List<String>
    The Flink versions supported by the cluster.Note: This field may return null, indicating that no valid values can be obtained.

    GetOceanusClustersFilter

    Name string
    The field to be filtered.
    Values List<string>
    The filtering values of the field.
    Name string
    The field to be filtered.
    Values []string
    The filtering values of the field.
    name String
    The field to be filtered.
    values List<String>
    The filtering values of the field.
    name string
    The field to be filtered.
    values string[]
    The filtering values of the field.
    name str
    The field to be filtered.
    values Sequence[str]
    The filtering values of the field.
    name String
    The field to be filtered.
    values List<String>
    The filtering values of the field.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack