tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getOceanusClusters
Explore with Pulumi AI
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:
- Cluster
Ids 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<Get
Oceanus Clusters Filter> - The filtering rules.
- Id string
- Order
Type 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).
- Result
Output stringFile - Used to save results.
- Work
Space stringId - Workspace SerialId.
- Cluster
Ids []string - Query one or more clusters by their ID. The maximum number of clusters that can be queried at once is 100.
- Filters
[]Get
Oceanus Clusters Filter - The filtering rules.
- Id string
- Order
Type 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).
- Result
Output stringFile - Used to save results.
- Work
Space stringId - Workspace SerialId.
- cluster
Ids 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<Get
Oceanus Clusters Filter> - The filtering rules.
- id String
- order
Type 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).
- result
Output StringFile - Used to save results.
- work
Space StringId - Workspace SerialId.
- cluster
Ids string[] - Query one or more clusters by their ID. The maximum number of clusters that can be queried at once is 100.
- filters
Get
Oceanus Clusters Filter[] - The filtering rules.
- id string
- order
Type 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).
- result
Output stringFile - Used to save results.
- work
Space stringId - 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[Get
Oceanus Clusters Filter] - 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_ strfile - Used to save results.
- work_
space_ strid - Workspace SerialId.
- cluster
Ids 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
- order
Type 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).
- result
Output StringFile - Used to save results.
- work
Space StringId - Workspace SerialId.
getOceanusClusters Result
The following output properties are available:
- Cluster
Sets List<GetOceanus Clusters Cluster Set> - Cluster list.
- Id string
- Cluster
Ids List<string> - Filters
List<Get
Oceanus Clusters Filter> - Order
Type double - Result
Output stringFile - Work
Space stringId - Workspace SerialId.
- Cluster
Sets []GetOceanus Clusters Cluster Set - Cluster list.
- Id string
- Cluster
Ids []string - Filters
[]Get
Oceanus Clusters Filter - Order
Type float64 - Result
Output stringFile - Work
Space stringId - Workspace SerialId.
- cluster
Sets List<GetOceanus Clusters Cluster Set> - Cluster list.
- id String
- cluster
Ids List<String> - filters
List<Get
Oceanus Clusters Filter> - order
Type Double - result
Output StringFile - work
Space StringId - Workspace SerialId.
- cluster
Sets GetOceanus Clusters Cluster Set[] - Cluster list.
- id string
- cluster
Ids string[] - filters
Get
Oceanus Clusters Filter[] - order
Type number - result
Output stringFile - work
Space stringId - Workspace SerialId.
- cluster_
sets Sequence[GetOceanus Clusters Cluster Set] - Cluster list.
- id str
- cluster_
ids Sequence[str] - filters
Sequence[Get
Oceanus Clusters Filter] - order_
type float - result_
output_ strfile - work_
space_ strid - Workspace SerialId.
- cluster
Sets List<Property Map> - Cluster list.
- id String
- cluster
Ids List<String> - filters List<Property Map>
- order
Type Number - result
Output StringFile - work
Space StringId - Workspace SerialId.
Supporting Types
GetOceanusClustersClusterSet
- App
Id double - The user AppID.
- Arch
Generation double - V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
- Auto
Renew doubleFlag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- Ccns
List<Get
Oceanus Clusters Cluster Set Ccn> - The network.
- Cls
Log stringName - 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 stringSet - The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Cls
Topic stringId - The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Cls
Topic stringName - 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 string - The ID of the cluster.
- Cluster
Sessions List<GetOceanus Clusters Cluster Set Cluster Session> - Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
- Cluster
Type double - 0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
- Correlations
List<Get
Oceanus Clusters Cluster Set Correlation> - Space information.Note: This field may return null, indicating that no valid values can be obtained.
- Create
Time string - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- Creator
Uin string - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- Cu
Mem double - The memory specification of the CU.
- Cu
Num double - The number of CUs.
- Customized
Dns doubleEnabled - 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 stringBucket - The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Default
Log stringCollect Conf - The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Expire
Time 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.
- Free
Cu double - 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 doubleNum - The number of free CUs.
- Is
Need doubleManage Node - 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 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.
- Net
Environment doubleType - The network.
- Orders
List<Get
Oceanus Clusters Cluster Set Order> - Order information.Note: This field may return null, indicating that no valid values can be obtained.
- Owner
Uin string - The main account UIN.
- Pay
Mode 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.
- Running
Cu double - Running CU.Note: This field may return null, indicating that no valid values can be obtained.
- Seconds
Until stringExpiry - 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 List<GetOceanus Clusters Cluster Set Sql Gateway> - 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).
- Status
Desc string - The status description.
- List<Get
Oceanus Clusters Cluster Set Tag> - The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Update
Time string - The time of the last operation on the cluster.
- Versions
List<Get
Oceanus Clusters Cluster Set Version> - 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 float64 - The user AppID.
- Arch
Generation float64 - V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
- Auto
Renew float64Flag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- Ccns
[]Get
Oceanus Clusters Cluster Set Ccn - The network.
- Cls
Log stringName - 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 stringSet - The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Cls
Topic stringId - The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Cls
Topic stringName - 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 string - The ID of the cluster.
- Cluster
Sessions []GetOceanus Clusters Cluster Set Cluster Session - Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
- Cluster
Type float64 - 0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
- Correlations
[]Get
Oceanus Clusters Cluster Set Correlation - Space information.Note: This field may return null, indicating that no valid values can be obtained.
- Create
Time string - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- Creator
Uin string - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- Cu
Mem float64 - The memory specification of the CU.
- Cu
Num float64 - The number of CUs.
- Customized
Dns float64Enabled - 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 stringBucket - The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Default
Log stringCollect Conf - The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Expire
Time 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.
- Free
Cu float64 - 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 float64Num - The number of free CUs.
- Is
Need float64Manage Node - 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 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.
- Net
Environment float64Type - The network.
- Orders
[]Get
Oceanus Clusters Cluster Set Order - Order information.Note: This field may return null, indicating that no valid values can be obtained.
- Owner
Uin string - The main account UIN.
- Pay
Mode 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.
- Running
Cu float64 - Running CU.Note: This field may return null, indicating that no valid values can be obtained.
- Seconds
Until stringExpiry - 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 []GetOceanus Clusters Cluster Set Sql Gateway - 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).
- Status
Desc string - The status description.
- []Get
Oceanus Clusters Cluster Set Tag - The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Update
Time string - The time of the last operation on the cluster.
- Versions
[]Get
Oceanus Clusters Cluster Set Version - 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 Double - The user AppID.
- arch
Generation Double - V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
- auto
Renew DoubleFlag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- ccns
List<Get
Oceanus Clusters Cluster Set Ccn> - The network.
- cls
Log StringName - 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 StringSet - The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- cls
Topic StringId - The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- cls
Topic StringName - 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 String - The ID of the cluster.
- cluster
Sessions List<GetOceanus Clusters Cluster Set Cluster Session> - Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
- cluster
Type Double - 0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
- correlations
List<Get
Oceanus Clusters Cluster Set Correlation> - Space information.Note: This field may return null, indicating that no valid values can be obtained.
- create
Time String - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- creator
Uin String - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- cu
Mem Double - The memory specification of the CU.
- cu
Num Double - The number of CUs.
- customized
Dns DoubleEnabled - 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 StringBucket - The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- default
Log StringCollect Conf - The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- expire
Time 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.
- free
Cu Double - 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 DoubleNum - The number of free CUs.
- is
Need DoubleManage Node - 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 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.
- net
Environment DoubleType - The network.
- orders
List<Get
Oceanus Clusters Cluster Set Order> - Order information.Note: This field may return null, indicating that no valid values can be obtained.
- owner
Uin String - The main account UIN.
- pay
Mode 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.
- running
Cu Double - Running CU.Note: This field may return null, indicating that no valid values can be obtained.
- seconds
Until StringExpiry - 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 List<GetOceanus Clusters Cluster Set Sql Gateway> - 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).
- status
Desc String - The status description.
- List<Get
Oceanus Clusters Cluster Set Tag> - The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- update
Time String - The time of the last operation on the cluster.
- versions
List<Get
Oceanus Clusters Cluster Set Version> - 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 number - The user AppID.
- arch
Generation number - V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
- auto
Renew numberFlag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- ccns
Get
Oceanus Clusters Cluster Set Ccn[] - The network.
- cls
Log stringName - 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 stringSet - The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- cls
Topic stringId - The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- cls
Topic stringName - 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 string - The ID of the cluster.
- cluster
Sessions GetOceanus Clusters Cluster Set Cluster Session[] - Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
- cluster
Type number - 0: TKE, 1: EKS.Note: This field may return null, indicating that no valid values can be obtained.
- correlations
Get
Oceanus Clusters Cluster Set Correlation[] - Space information.Note: This field may return null, indicating that no valid values can be obtained.
- create
Time string - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- creator
Uin string - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- cu
Mem number - The memory specification of the CU.
- cu
Num number - The number of CUs.
- customized
Dns numberEnabled - 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 stringBucket - The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- default
Log stringCollect Conf - The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- expire
Time 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.
- free
Cu number - 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 numberNum - The number of free CUs.
- is
Need numberManage Node - 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 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.
- net
Environment numberType - The network.
- orders
Get
Oceanus Clusters Cluster Set Order[] - Order information.Note: This field may return null, indicating that no valid values can be obtained.
- owner
Uin string - The main account UIN.
- pay
Mode 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.
- running
Cu number - Running CU.Note: This field may return null, indicating that no valid values can be obtained.
- seconds
Until stringExpiry - 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 GetOceanus Clusters Cluster Set Sql Gateway[] - 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).
- status
Desc string - The status description.
- Get
Oceanus Clusters Cluster Set Tag[] - The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- update
Time string - The time of the last operation on the cluster.
- versions
Get
Oceanus Clusters Cluster Set Version[] - 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_ floatflag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- ccns
Sequence[Get
Oceanus Clusters Cluster Set Ccn] - The network.
- cls_
log_ strname - 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_ strset - The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- cls_
topic_ strid - The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- cls_
topic_ strname - 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[GetOceanus Clusters Cluster Set Cluster Session] - 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[Get
Oceanus Clusters Cluster Set Correlation] - 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_ floatenabled - 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_ strbucket - The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- default_
log_ strcollect_ conf - 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_ floatnum - The number of free CUs.
- is_
need_ floatmanage_ node - 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_ floattype - The network.
- orders
Sequence[Get
Oceanus Clusters Cluster Set Order] - 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_ strexpiry - 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[GetOceanus Clusters Cluster Set Sql Gateway] - 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.
- Sequence[Get
Oceanus Clusters Cluster Set Tag] - 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[Get
Oceanus Clusters Cluster Set Version] - 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.
- app
Id Number - The user AppID.
- arch
Generation Number - V3 version = 2.Note: This field may return null, indicating that no valid values can be obtained.
- auto
Renew NumberFlag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- ccns List<Property Map>
- The network.
- cls
Log StringName - 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 StringSet - The CLS logset of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- cls
Topic StringId - The CLS topic ID of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- cls
Topic StringName - 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 String - The ID of the cluster.
- cluster
Sessions List<Property Map> - Session cluster information.Note: This field may return null, indicating that no valid values can be obtained.
- cluster
Type 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.
- create
Time String - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- creator
Uin String - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- cu
Mem Number - The memory specification of the CU.
- cu
Num Number - The number of CUs.
- customized
Dns NumberEnabled - 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 StringBucket - The default COS bucket of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- default
Log StringCollect Conf - The default log collection configuration of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- expire
Time 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.
- free
Cu Number - 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 NumberNum - The number of free CUs.
- is
Need NumberManage Node - 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 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.
- net
Environment NumberType - The network.
- orders List<Property Map>
- Order information.Note: This field may return null, indicating that no valid values can be obtained.
- owner
Uin String - The main account UIN.
- pay
Mode 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.
- running
Cu Number - Running CU.Note: This field may return null, indicating that no valid values can be obtained.
- seconds
Until StringExpiry - 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 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).
- status
Desc String - The status description.
- List<Property Map>
- The tags bound to the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- update
Time 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
GetOceanusClustersClusterSetCorrelation
- Cluster
Group doubleId - Cluster ID.
- Cluster
Group stringSerial Id - Cluster SerialId.
- Cluster
Name string - Cluster name.
- Project
Id double - Project ID.
- Project
Id stringStr - 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).
- Work
Space stringId - Workspace SerialId.
- Work
Space stringName - Workspace name.
- Cluster
Group float64Id - Cluster ID.
- Cluster
Group stringSerial Id - Cluster SerialId.
- Cluster
Name string - Cluster name.
- Project
Id float64 - Project ID.
- Project
Id stringStr - 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).
- Work
Space stringId - Workspace SerialId.
- Work
Space stringName - Workspace name.
- cluster
Group DoubleId - Cluster ID.
- cluster
Group StringSerial Id - Cluster SerialId.
- cluster
Name String - Cluster name.
- project
Id Double - Project ID.
- project
Id StringStr - 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).
- work
Space StringId - Workspace SerialId.
- work
Space StringName - Workspace name.
- cluster
Group numberId - Cluster ID.
- cluster
Group stringSerial Id - Cluster SerialId.
- cluster
Name string - Cluster name.
- project
Id number - Project ID.
- project
Id stringStr - 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).
- work
Space stringId - Workspace SerialId.
- work
Space stringName - Workspace name.
- cluster_
group_ floatid - Cluster ID.
- cluster_
group_ strserial_ id - Cluster SerialId.
- cluster_
name str - Cluster name.
- project_
id float - Project ID.
- project_
id_ strstr - 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_ strid - Workspace SerialId.
- work_
space_ strname - Workspace name.
- cluster
Group NumberId - Cluster ID.
- cluster
Group StringSerial Id - Cluster SerialId.
- cluster
Name String - Cluster name.
- project
Id Number - Project ID.
- project
Id StringStr - 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).
- work
Space StringId - Workspace SerialId.
- work
Space StringName - Workspace name.
GetOceanusClustersClusterSetOrder
- Auto
Renew doubleFlag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- Compute
Cu double - The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Operate
Uin string - UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
- Order
Time 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.
- Auto
Renew float64Flag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- Compute
Cu float64 - The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Operate
Uin string - UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
- Order
Time 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.
- auto
Renew DoubleFlag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- compute
Cu Double - The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
- operate
Uin String - UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
- order
Time 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.
- auto
Renew numberFlag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- compute
Cu number - The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
- operate
Uin string - UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
- order
Time 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_ floatflag - 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.
- auto
Renew NumberFlag - 1 - auto-renewal.Note: This field may return null, indicating that no valid values can be obtained.
- compute
Cu Number - The number of CUs in the final cluster.Note: This field may return null, indicating that no valid values can be obtained.
- operate
Uin String - UIN of the operator.Note: This field may return null, indicating that no valid values can be obtained.
- order
Time 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
- Create
Time string - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- Creator
Uin string - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- Cu
Spec double - CU specification.Note: This field may return null, indicating that no valid values can be obtained.
- Flink
Version string - Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
- Properties
List<Get
Oceanus Clusters Cluster Set Sql Gateway Property> - Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
- Resource
Refs List<GetOceanus Clusters Cluster Set Sql Gateway Resource Ref> - Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
- Serial
Id 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).
- Update
Time string - The time of the last operation on the cluster.
- Create
Time string - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- Creator
Uin string - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- Cu
Spec float64 - CU specification.Note: This field may return null, indicating that no valid values can be obtained.
- Flink
Version string - Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
- Properties
[]Get
Oceanus Clusters Cluster Set Sql Gateway Property - Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
- Resource
Refs []GetOceanus Clusters Cluster Set Sql Gateway Resource Ref - Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
- Serial
Id 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).
- Update
Time string - The time of the last operation on the cluster.
- create
Time String - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- creator
Uin String - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- cu
Spec Double - CU specification.Note: This field may return null, indicating that no valid values can be obtained.
- flink
Version String - Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
- properties
List<Get
Oceanus Clusters Cluster Set Sql Gateway Property> - Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
- resource
Refs List<GetOceanus Clusters Cluster Set Sql Gateway Resource Ref> - Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
- serial
Id 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).
- update
Time String - The time of the last operation on the cluster.
- create
Time string - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- creator
Uin string - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- cu
Spec number - CU specification.Note: This field may return null, indicating that no valid values can be obtained.
- flink
Version string - Flink kernel version.Note: This field may return null, indicating that no valid values can be obtained.
- properties
Get
Oceanus Clusters Cluster Set Sql Gateway Property[] - Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
- resource
Refs GetOceanus Clusters Cluster Set Sql Gateway Resource Ref[] - Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
- serial
Id 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).
- update
Time 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[Get
Oceanus Clusters Cluster Set Sql Gateway Property] - Configuration parameters.Note: This field may return null, indicating that no valid values can be obtained.
- resource_
refs Sequence[GetOceanus Clusters Cluster Set Sql Gateway Resource Ref] - 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.
- create
Time String - Creation time.Note: This field may return null, indicating that no valid values can be obtained.
- creator
Uin String - Creator.Note: This field may return null, indicating that no valid values can be obtained.
- cu
Spec Number - CU specification.Note: This field may return null, indicating that no valid values can be obtained.
- flink
Version 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.
- resource
Refs List<Property Map> - Reference resources.Note: This field may return null, indicating that no valid values can be obtained.
- serial
Id 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).
- update
Time String - The time of the last operation on the cluster.
GetOceanusClustersClusterSetSqlGatewayProperty
GetOceanusClustersClusterSetSqlGatewayResourceRef
- Resource
Id 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.
- Workspace
Id string - Unique identifier of the space.
- Resource
Id 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.
- Workspace
Id string - Unique identifier of the space.
- resource
Id 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.
- workspace
Id String - Unique identifier of the space.
- resource
Id 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.
- workspace
Id 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.
- resource
Id 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.
- workspace
Id String - Unique identifier of the space.
GetOceanusClustersClusterSetTag
GetOceanusClustersClusterSetVersion
- Flink string
- The Flink version of the cluster.Note: This field may return null, indicating that no valid values can be obtained.
- Supported
Flinks 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.
- Supported
Flinks []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.
- supported
Flinks 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.
- supported
Flinks 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.
- supported
Flinks List<String> - The Flink versions supported by the cluster.Note: This field may return null, indicating that no valid values can be obtained.
GetOceanusClustersFilter
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack