1. Packages
  2. Packages
  3. Redpanda Provider
  4. API Docs
  5. getCluster
Viewing docs for redpanda 2.0.0
published on Wednesday, Jun 3, 2026 by redpanda-data
Viewing docs for redpanda 2.0.0
published on Wednesday, Jun 3, 2026 by redpanda-data

    Cluster data source

    Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as redpanda from "@pulumi/redpanda";
    
    const example = redpanda.getCluster({
        id: "cluster_id",
    });
    
    import pulumi
    import pulumi_redpanda as redpanda
    
    example = redpanda.get_cluster(id="cluster_id")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/redpanda/v2/redpanda"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := redpanda.LookupCluster(ctx, &redpanda.LookupClusterArgs{
    			Id: "cluster_id",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Redpanda = Pulumi.Redpanda;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Redpanda.GetCluster.Invoke(new()
        {
            Id = "cluster_id",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.redpanda.RedpandaFunctions;
    import com.pulumi.redpanda.inputs.GetClusterArgs;
    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 = RedpandaFunctions.getCluster(GetClusterArgs.builder()
                .id("cluster_id")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: redpanda:getCluster
          arguments:
            id: cluster_id
    
    Example coming soon!
    

    Example Usage of a data source BYOC to manage users and ACLs

    import * as pulumi from "@pulumi/pulumi";
    import * as redpanda from "@pulumi/redpanda";
    
    const test = redpanda.getCluster({
        id: clusterId,
    });
    const testTopic = new redpanda.Topic("test", {
        name: topicName,
        partitionCount: partitionCount,
        replicationFactor: replicationFactor,
        clusterApiUrl: test.then(test => test.clusterApiUrl),
        allowDeletion: true,
        configuration: topicConfig,
    });
    const testUser = new redpanda.User("test", {
        name: userName,
        password: userPw,
        mechanism: mechanism,
        clusterApiUrl: test.then(test => test.clusterApiUrl),
        allowDeletion: userAllowDeletion,
    });
    const testAcl = new redpanda.Acl("test", {
        resourceType: "CLUSTER",
        resourceName: "kafka-cluster",
        resourcePatternType: "LITERAL",
        principal: pulumi.interpolate`User:${testUser.name}`,
        host: "*",
        operation: "ALTER",
        permissionType: "ALLOW",
        clusterApiUrl: test.then(test => test.clusterApiUrl),
        allowDeletion: aclAllowDeletion,
    });
    
    import pulumi
    import pulumi_redpanda as redpanda
    
    test = redpanda.get_cluster(id=cluster_id)
    test_topic = redpanda.Topic("test",
        name=topic_name,
        partition_count=partition_count,
        replication_factor=replication_factor,
        cluster_api_url=test.cluster_api_url,
        allow_deletion=True,
        configuration=topic_config)
    test_user = redpanda.User("test",
        name=user_name,
        password=user_pw,
        mechanism=mechanism,
        cluster_api_url=test.cluster_api_url,
        allow_deletion=user_allow_deletion)
    test_acl = redpanda.Acl("test",
        resource_type="CLUSTER",
        resource_name_="kafka-cluster",
        resource_pattern_type="LITERAL",
        principal=test_user.name.apply(lambda name: f"User:{name}"),
        host="*",
        operation="ALTER",
        permission_type="ALLOW",
        cluster_api_url=test.cluster_api_url,
        allow_deletion=acl_allow_deletion)
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/redpanda/v2/redpanda"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		test, err := redpanda.LookupCluster(ctx, &redpanda.LookupClusterArgs{
    			Id: clusterId,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = redpanda.NewTopic(ctx, "test", &redpanda.TopicArgs{
    			Name:              pulumi.Any(topicName),
    			PartitionCount:    pulumi.Any(partitionCount),
    			ReplicationFactor: pulumi.Any(replicationFactor),
    			ClusterApiUrl:     pulumi.String(test.ClusterApiUrl),
    			AllowDeletion:     pulumi.Bool(true),
    			Configuration:     pulumi.Any(topicConfig),
    		})
    		if err != nil {
    			return err
    		}
    		testUser, err := redpanda.NewUser(ctx, "test", &redpanda.UserArgs{
    			Name:          pulumi.Any(userName),
    			Password:      pulumi.Any(userPw),
    			Mechanism:     pulumi.Any(mechanism),
    			ClusterApiUrl: pulumi.String(test.ClusterApiUrl),
    			AllowDeletion: pulumi.Any(userAllowDeletion),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = redpanda.NewAcl(ctx, "test", &redpanda.AclArgs{
    			ResourceType:        pulumi.String("CLUSTER"),
    			ResourceName:        pulumi.String("kafka-cluster"),
    			ResourcePatternType: pulumi.String("LITERAL"),
    			Principal: testUser.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("User:%v", name), nil
    			}).(pulumi.StringOutput),
    			Host:           pulumi.String("*"),
    			Operation:      pulumi.String("ALTER"),
    			PermissionType: pulumi.String("ALLOW"),
    			ClusterApiUrl:  pulumi.String(test.ClusterApiUrl),
    			AllowDeletion:  pulumi.Any(aclAllowDeletion),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Redpanda = Pulumi.Redpanda;
    
    return await Deployment.RunAsync(() => 
    {
        var test = Redpanda.GetCluster.Invoke(new()
        {
            Id = clusterId,
        });
    
        var testTopic = new Redpanda.Topic("test", new()
        {
            Name = topicName,
            PartitionCount = partitionCount,
            ReplicationFactor = replicationFactor,
            ClusterApiUrl = test.Apply(getClusterResult => getClusterResult.ClusterApiUrl),
            AllowDeletion = true,
            Configuration = topicConfig,
        });
    
        var testUser = new Redpanda.User("test", new()
        {
            Name = userName,
            Password = userPw,
            Mechanism = mechanism,
            ClusterApiUrl = test.Apply(getClusterResult => getClusterResult.ClusterApiUrl),
            AllowDeletion = userAllowDeletion,
        });
    
        var testAcl = new Redpanda.Acl("test", new()
        {
            ResourceType = "CLUSTER",
            ResourceName = "kafka-cluster",
            ResourcePatternType = "LITERAL",
            Principal = testUser.Name.Apply(name => $"User:{name}"),
            Host = "*",
            Operation = "ALTER",
            PermissionType = "ALLOW",
            ClusterApiUrl = test.Apply(getClusterResult => getClusterResult.ClusterApiUrl),
            AllowDeletion = aclAllowDeletion,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.redpanda.RedpandaFunctions;
    import com.pulumi.redpanda.inputs.GetClusterArgs;
    import com.pulumi.redpanda.Topic;
    import com.pulumi.redpanda.TopicArgs;
    import com.pulumi.redpanda.User;
    import com.pulumi.redpanda.UserArgs;
    import com.pulumi.redpanda.Acl;
    import com.pulumi.redpanda.AclArgs;
    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 test = RedpandaFunctions.getCluster(GetClusterArgs.builder()
                .id(clusterId)
                .build());
    
            var testTopic = new Topic("testTopic", TopicArgs.builder()
                .name(topicName)
                .partitionCount(partitionCount)
                .replicationFactor(replicationFactor)
                .clusterApiUrl(test.clusterApiUrl())
                .allowDeletion(true)
                .configuration(topicConfig)
                .build());
    
            var testUser = new User("testUser", UserArgs.builder()
                .name(userName)
                .password(userPw)
                .mechanism(mechanism)
                .clusterApiUrl(test.clusterApiUrl())
                .allowDeletion(userAllowDeletion)
                .build());
    
            var testAcl = new Acl("testAcl", AclArgs.builder()
                .resourceType("CLUSTER")
                .resourceName("kafka-cluster")
                .resourcePatternType("LITERAL")
                .principal(testUser.name().applyValue(_name -> String.format("User:%s", _name)))
                .host("*")
                .operation("ALTER")
                .permissionType("ALLOW")
                .clusterApiUrl(test.clusterApiUrl())
                .allowDeletion(aclAllowDeletion)
                .build());
    
        }
    }
    
    resources:
      testTopic:
        type: redpanda:Topic
        name: test
        properties:
          name: ${topicName}
          partitionCount: ${partitionCount}
          replicationFactor: ${replicationFactor}
          clusterApiUrl: ${test.clusterApiUrl}
          allowDeletion: true
          configuration: ${topicConfig}
      testUser:
        type: redpanda:User
        name: test
        properties:
          name: ${userName}
          password: ${userPw}
          mechanism: ${mechanism}
          clusterApiUrl: ${test.clusterApiUrl}
          allowDeletion: ${userAllowDeletion}
      testAcl:
        type: redpanda:Acl
        name: test
        properties:
          resourceType: CLUSTER
          resourceName: kafka-cluster
          resourcePatternType: LITERAL
          principal: User:${testUser.name}
          host: '*'
          operation: ALTER
          permissionType: ALLOW
          clusterApiUrl: ${test.clusterApiUrl}
          allowDeletion: ${aclAllowDeletion}
    variables:
      test:
        fn::invoke:
          function: redpanda:getCluster
          arguments:
            id: ${clusterId}
    
    Example coming soon!
    

    Limitations

    Can only be used with Redpanda Cloud Dedicated and BYOC clusters.

    Using getCluster

    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 getCluster(args: GetClusterArgs, opts?: InvokeOptions): Promise<GetClusterResult>
    function getClusterOutput(args: GetClusterOutputArgs, opts?: InvokeOptions): Output<GetClusterResult>
    def get_cluster(id: Optional[str] = None,
                    timeouts: Optional[GetClusterTimeouts] = None,
                    opts: Optional[InvokeOptions] = None) -> GetClusterResult
    def get_cluster_output(id: pulumi.Input[Optional[str]] = None,
                    timeouts: pulumi.Input[Optional[GetClusterTimeoutsArgs]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetClusterResult]
    func LookupCluster(ctx *Context, args *LookupClusterArgs, opts ...InvokeOption) (*LookupClusterResult, error)
    func LookupClusterOutput(ctx *Context, args *LookupClusterOutputArgs, opts ...InvokeOption) LookupClusterResultOutput

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

    public static class GetCluster 
    {
        public static Task<GetClusterResult> InvokeAsync(GetClusterArgs args, InvokeOptions? opts = null)
        public static Output<GetClusterResult> Invoke(GetClusterInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetClusterResult> getCluster(GetClusterArgs args, InvokeOptions options)
    public static Output<GetClusterResult> getCluster(GetClusterArgs args, InvokeOptions options)
    
    fn::invoke:
      function: redpanda:index/getCluster:getCluster
      arguments:
        # arguments dictionary
    data "redpanda_getcluster" "name" {
        # arguments
    }

    The following arguments are supported:

    Id string
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    Timeouts GetClusterTimeouts
    Id string
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    Timeouts GetClusterTimeouts
    id string
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    timeouts object
    id String
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    timeouts GetClusterTimeouts
    id string
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    timeouts GetClusterTimeouts
    id str
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    timeouts GetClusterTimeouts
    id String
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    timeouts Property Map

    getCluster Result

    The following output properties are available:

    AllowDeletion bool
    Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
    AwsPrivateLink GetClusterAwsPrivateLink
    AWS Private Link configuration
    AzurePrivateLink GetClusterAzurePrivateLink
    Azure Private Link configuration
    CloudProvider string
    Cloud provider where resources are created.
    ClusterApiUrl string
    The cluster API URL.
    ClusterConfiguration GetClusterClusterConfiguration
    Cluster Configuration configuration
    ClusterType string
    Cluster type. Type is immutable and can only be set on cluster creation. Can be either byoc or dedicated.
    ConnectionType string
    Cluster connection type. Private clusters are not exposed to the internet. For BYOC clusters, Private is best-practice.
    CustomerManagedResources GetClusterCustomerManagedResources
    The cloud resources created by user.
    GcpGlobalAccessApiGatewayEnabled bool
    gcpglobalaccessapigateway_enabled reports whether global access is enabled on the internal load balancer serving the Console/API Gateway endpoint. Applicable only for GCP.
    GcpGlobalAccessEnabled bool
    gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
    GcpPrivateServiceConnect GetClusterGcpPrivateServiceConnect
    GCP Private Service Connect configuration
    HttpProxy GetClusterHttpProxy
    HTTP Proxy properties.
    Id string
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    KafkaApi GetClusterKafkaApi
    Cluster's Kafka API properties.
    KafkaConnect GetClusterKafkaConnect
    Kafka Connect configuration
    MaintenanceWindowConfig GetClusterMaintenanceWindowConfig
    Resource describing the maintenance window configuration of a cluster.
    Name string
    Unique name of the cluster.
    NetworkId string
    Network ID where cluster is placed.
    Prometheus GetClusterPrometheus
    Prometheus metrics endpoint properties.
    ReadReplicaClusterIds List<string>
    IDs of clusters which may create read-only topics from this cluster.
    RedpandaConsole GetClusterRedpandaConsole
    Cluster's Redpanda Console properties.
    RedpandaVersion string
    Redpanda Version
    Region string
    Region represents the name of the region where the cluster will be provisioned.
    ResourceGroupId string
    Resource group ID of the cluster.
    SchemaRegistry GetClusterSchemaRegistry
    Cluster's Schema Registry properties.
    State string
    State describes the state of the cluster.
    StateDescription GetClusterStateDescription
    Describes errors
    Tags Dictionary<string, string>
    Tags placed on cloud resources. Server-managed keys (prefixed with redpanda-) are filtered out of state.
    ThroughputTier string
    Throughput tier of the cluster.
    Zones List<string>
    Zones of the cluster. Must be valid zones within the selected region. If multiple zones are used, the cluster is a multi-AZ cluster.
    Timeouts GetClusterTimeouts
    AllowDeletion bool
    Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
    AwsPrivateLink GetClusterAwsPrivateLink
    AWS Private Link configuration
    AzurePrivateLink GetClusterAzurePrivateLink
    Azure Private Link configuration
    CloudProvider string
    Cloud provider where resources are created.
    ClusterApiUrl string
    The cluster API URL.
    ClusterConfiguration GetClusterClusterConfiguration
    Cluster Configuration configuration
    ClusterType string
    Cluster type. Type is immutable and can only be set on cluster creation. Can be either byoc or dedicated.
    ConnectionType string
    Cluster connection type. Private clusters are not exposed to the internet. For BYOC clusters, Private is best-practice.
    CustomerManagedResources GetClusterCustomerManagedResources
    The cloud resources created by user.
    GcpGlobalAccessApiGatewayEnabled bool
    gcpglobalaccessapigateway_enabled reports whether global access is enabled on the internal load balancer serving the Console/API Gateway endpoint. Applicable only for GCP.
    GcpGlobalAccessEnabled bool
    gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
    GcpPrivateServiceConnect GetClusterGcpPrivateServiceConnect
    GCP Private Service Connect configuration
    HttpProxy GetClusterHttpProxy
    HTTP Proxy properties.
    Id string
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    KafkaApi GetClusterKafkaApi
    Cluster's Kafka API properties.
    KafkaConnect GetClusterKafkaConnect
    Kafka Connect configuration
    MaintenanceWindowConfig GetClusterMaintenanceWindowConfig
    Resource describing the maintenance window configuration of a cluster.
    Name string
    Unique name of the cluster.
    NetworkId string
    Network ID where cluster is placed.
    Prometheus GetClusterPrometheus
    Prometheus metrics endpoint properties.
    ReadReplicaClusterIds []string
    IDs of clusters which may create read-only topics from this cluster.
    RedpandaConsole GetClusterRedpandaConsole
    Cluster's Redpanda Console properties.
    RedpandaVersion string
    Redpanda Version
    Region string
    Region represents the name of the region where the cluster will be provisioned.
    ResourceGroupId string
    Resource group ID of the cluster.
    SchemaRegistry GetClusterSchemaRegistry
    Cluster's Schema Registry properties.
    State string
    State describes the state of the cluster.
    StateDescription GetClusterStateDescription
    Describes errors
    Tags map[string]string
    Tags placed on cloud resources. Server-managed keys (prefixed with redpanda-) are filtered out of state.
    ThroughputTier string
    Throughput tier of the cluster.
    Zones []string
    Zones of the cluster. Must be valid zones within the selected region. If multiple zones are used, the cluster is a multi-AZ cluster.
    Timeouts GetClusterTimeouts
    allow_deletion bool
    Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
    aws_private_link object
    AWS Private Link configuration
    azure_private_link object
    Azure Private Link configuration
    cloud_provider string
    Cloud provider where resources are created.
    cluster_api_url string
    The cluster API URL.
    cluster_configuration object
    Cluster Configuration configuration
    cluster_type string
    Cluster type. Type is immutable and can only be set on cluster creation. Can be either byoc or dedicated.
    connection_type string
    Cluster connection type. Private clusters are not exposed to the internet. For BYOC clusters, Private is best-practice.
    customer_managed_resources object
    The cloud resources created by user.
    gcp_global_access_api_gateway_enabled bool
    gcpglobalaccessapigateway_enabled reports whether global access is enabled on the internal load balancer serving the Console/API Gateway endpoint. Applicable only for GCP.
    gcp_global_access_enabled bool
    gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
    gcp_private_service_connect object
    GCP Private Service Connect configuration
    http_proxy object
    HTTP Proxy properties.
    id string
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    kafka_api object
    Cluster's Kafka API properties.
    kafka_connect object
    Kafka Connect configuration
    maintenance_window_config object
    Resource describing the maintenance window configuration of a cluster.
    name string
    Unique name of the cluster.
    network_id string
    Network ID where cluster is placed.
    prometheus object
    Prometheus metrics endpoint properties.
    read_replica_cluster_ids list(string)
    IDs of clusters which may create read-only topics from this cluster.
    redpanda_console object
    Cluster's Redpanda Console properties.
    redpanda_version string
    Redpanda Version
    region string
    Region represents the name of the region where the cluster will be provisioned.
    resource_group_id string
    Resource group ID of the cluster.
    schema_registry object
    Cluster's Schema Registry properties.
    state string
    State describes the state of the cluster.
    state_description object
    Describes errors
    tags map(string)
    Tags placed on cloud resources. Server-managed keys (prefixed with redpanda-) are filtered out of state.
    throughput_tier string
    Throughput tier of the cluster.
    zones list(string)
    Zones of the cluster. Must be valid zones within the selected region. If multiple zones are used, the cluster is a multi-AZ cluster.
    timeouts object
    allowDeletion Boolean
    Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
    awsPrivateLink GetClusterAwsPrivateLink
    AWS Private Link configuration
    azurePrivateLink GetClusterAzurePrivateLink
    Azure Private Link configuration
    cloudProvider String
    Cloud provider where resources are created.
    clusterApiUrl String
    The cluster API URL.
    clusterConfiguration GetClusterClusterConfiguration
    Cluster Configuration configuration
    clusterType String
    Cluster type. Type is immutable and can only be set on cluster creation. Can be either byoc or dedicated.
    connectionType String
    Cluster connection type. Private clusters are not exposed to the internet. For BYOC clusters, Private is best-practice.
    customerManagedResources GetClusterCustomerManagedResources
    The cloud resources created by user.
    gcpGlobalAccessApiGatewayEnabled Boolean
    gcpglobalaccessapigateway_enabled reports whether global access is enabled on the internal load balancer serving the Console/API Gateway endpoint. Applicable only for GCP.
    gcpGlobalAccessEnabled Boolean
    gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
    gcpPrivateServiceConnect GetClusterGcpPrivateServiceConnect
    GCP Private Service Connect configuration
    httpProxy GetClusterHttpProxy
    HTTP Proxy properties.
    id String
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    kafkaApi GetClusterKafkaApi
    Cluster's Kafka API properties.
    kafkaConnect GetClusterKafkaConnect
    Kafka Connect configuration
    maintenanceWindowConfig GetClusterMaintenanceWindowConfig
    Resource describing the maintenance window configuration of a cluster.
    name String
    Unique name of the cluster.
    networkId String
    Network ID where cluster is placed.
    prometheus GetClusterPrometheus
    Prometheus metrics endpoint properties.
    readReplicaClusterIds List<String>
    IDs of clusters which may create read-only topics from this cluster.
    redpandaConsole GetClusterRedpandaConsole
    Cluster's Redpanda Console properties.
    redpandaVersion String
    Redpanda Version
    region String
    Region represents the name of the region where the cluster will be provisioned.
    resourceGroupId String
    Resource group ID of the cluster.
    schemaRegistry GetClusterSchemaRegistry
    Cluster's Schema Registry properties.
    state String
    State describes the state of the cluster.
    stateDescription GetClusterStateDescription
    Describes errors
    tags Map<String,String>
    Tags placed on cloud resources. Server-managed keys (prefixed with redpanda-) are filtered out of state.
    throughputTier String
    Throughput tier of the cluster.
    zones List<String>
    Zones of the cluster. Must be valid zones within the selected region. If multiple zones are used, the cluster is a multi-AZ cluster.
    timeouts GetClusterTimeouts
    allowDeletion boolean
    Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
    awsPrivateLink GetClusterAwsPrivateLink
    AWS Private Link configuration
    azurePrivateLink GetClusterAzurePrivateLink
    Azure Private Link configuration
    cloudProvider string
    Cloud provider where resources are created.
    clusterApiUrl string
    The cluster API URL.
    clusterConfiguration GetClusterClusterConfiguration
    Cluster Configuration configuration
    clusterType string
    Cluster type. Type is immutable and can only be set on cluster creation. Can be either byoc or dedicated.
    connectionType string
    Cluster connection type. Private clusters are not exposed to the internet. For BYOC clusters, Private is best-practice.
    customerManagedResources GetClusterCustomerManagedResources
    The cloud resources created by user.
    gcpGlobalAccessApiGatewayEnabled boolean
    gcpglobalaccessapigateway_enabled reports whether global access is enabled on the internal load balancer serving the Console/API Gateway endpoint. Applicable only for GCP.
    gcpGlobalAccessEnabled boolean
    gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
    gcpPrivateServiceConnect GetClusterGcpPrivateServiceConnect
    GCP Private Service Connect configuration
    httpProxy GetClusterHttpProxy
    HTTP Proxy properties.
    id string
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    kafkaApi GetClusterKafkaApi
    Cluster's Kafka API properties.
    kafkaConnect GetClusterKafkaConnect
    Kafka Connect configuration
    maintenanceWindowConfig GetClusterMaintenanceWindowConfig
    Resource describing the maintenance window configuration of a cluster.
    name string
    Unique name of the cluster.
    networkId string
    Network ID where cluster is placed.
    prometheus GetClusterPrometheus
    Prometheus metrics endpoint properties.
    readReplicaClusterIds string[]
    IDs of clusters which may create read-only topics from this cluster.
    redpandaConsole GetClusterRedpandaConsole
    Cluster's Redpanda Console properties.
    redpandaVersion string
    Redpanda Version
    region string
    Region represents the name of the region where the cluster will be provisioned.
    resourceGroupId string
    Resource group ID of the cluster.
    schemaRegistry GetClusterSchemaRegistry
    Cluster's Schema Registry properties.
    state string
    State describes the state of the cluster.
    stateDescription GetClusterStateDescription
    Describes errors
    tags {[key: string]: string}
    Tags placed on cloud resources. Server-managed keys (prefixed with redpanda-) are filtered out of state.
    throughputTier string
    Throughput tier of the cluster.
    zones string[]
    Zones of the cluster. Must be valid zones within the selected region. If multiple zones are used, the cluster is a multi-AZ cluster.
    timeouts GetClusterTimeouts
    allow_deletion bool
    Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
    aws_private_link GetClusterAwsPrivateLink
    AWS Private Link configuration
    azure_private_link GetClusterAzurePrivateLink
    Azure Private Link configuration
    cloud_provider str
    Cloud provider where resources are created.
    cluster_api_url str
    The cluster API URL.
    cluster_configuration GetClusterClusterConfiguration
    Cluster Configuration configuration
    cluster_type str
    Cluster type. Type is immutable and can only be set on cluster creation. Can be either byoc or dedicated.
    connection_type str
    Cluster connection type. Private clusters are not exposed to the internet. For BYOC clusters, Private is best-practice.
    customer_managed_resources GetClusterCustomerManagedResources
    The cloud resources created by user.
    gcp_global_access_api_gateway_enabled bool
    gcpglobalaccessapigateway_enabled reports whether global access is enabled on the internal load balancer serving the Console/API Gateway endpoint. Applicable only for GCP.
    gcp_global_access_enabled bool
    gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
    gcp_private_service_connect GetClusterGcpPrivateServiceConnect
    GCP Private Service Connect configuration
    http_proxy GetClusterHttpProxy
    HTTP Proxy properties.
    id str
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    kafka_api GetClusterKafkaApi
    Cluster's Kafka API properties.
    kafka_connect GetClusterKafkaConnect
    Kafka Connect configuration
    maintenance_window_config GetClusterMaintenanceWindowConfig
    Resource describing the maintenance window configuration of a cluster.
    name str
    Unique name of the cluster.
    network_id str
    Network ID where cluster is placed.
    prometheus GetClusterPrometheus
    Prometheus metrics endpoint properties.
    read_replica_cluster_ids Sequence[str]
    IDs of clusters which may create read-only topics from this cluster.
    redpanda_console GetClusterRedpandaConsole
    Cluster's Redpanda Console properties.
    redpanda_version str
    Redpanda Version
    region str
    Region represents the name of the region where the cluster will be provisioned.
    resource_group_id str
    Resource group ID of the cluster.
    schema_registry GetClusterSchemaRegistry
    Cluster's Schema Registry properties.
    state str
    State describes the state of the cluster.
    state_description GetClusterStateDescription
    Describes errors
    tags Mapping[str, str]
    Tags placed on cloud resources. Server-managed keys (prefixed with redpanda-) are filtered out of state.
    throughput_tier str
    Throughput tier of the cluster.
    zones Sequence[str]
    Zones of the cluster. Must be valid zones within the selected region. If multiple zones are used, the cluster is a multi-AZ cluster.
    timeouts GetClusterTimeouts
    allowDeletion Boolean
    Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
    awsPrivateLink Property Map
    AWS Private Link configuration
    azurePrivateLink Property Map
    Azure Private Link configuration
    cloudProvider String
    Cloud provider where resources are created.
    clusterApiUrl String
    The cluster API URL.
    clusterConfiguration Property Map
    Cluster Configuration configuration
    clusterType String
    Cluster type. Type is immutable and can only be set on cluster creation. Can be either byoc or dedicated.
    connectionType String
    Cluster connection type. Private clusters are not exposed to the internet. For BYOC clusters, Private is best-practice.
    customerManagedResources Property Map
    The cloud resources created by user.
    gcpGlobalAccessApiGatewayEnabled Boolean
    gcpglobalaccessapigateway_enabled reports whether global access is enabled on the internal load balancer serving the Console/API Gateway endpoint. Applicable only for GCP.
    gcpGlobalAccessEnabled Boolean
    gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
    gcpPrivateServiceConnect Property Map
    GCP Private Service Connect configuration
    httpProxy Property Map
    HTTP Proxy properties.
    id String
    ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
    kafkaApi Property Map
    Cluster's Kafka API properties.
    kafkaConnect Property Map
    Kafka Connect configuration
    maintenanceWindowConfig Property Map
    Resource describing the maintenance window configuration of a cluster.
    name String
    Unique name of the cluster.
    networkId String
    Network ID where cluster is placed.
    prometheus Property Map
    Prometheus metrics endpoint properties.
    readReplicaClusterIds List<String>
    IDs of clusters which may create read-only topics from this cluster.
    redpandaConsole Property Map
    Cluster's Redpanda Console properties.
    redpandaVersion String
    Redpanda Version
    region String
    Region represents the name of the region where the cluster will be provisioned.
    resourceGroupId String
    Resource group ID of the cluster.
    schemaRegistry Property Map
    Cluster's Schema Registry properties.
    state String
    State describes the state of the cluster.
    stateDescription Property Map
    Describes errors
    tags Map<String>
    Tags placed on cloud resources. Server-managed keys (prefixed with redpanda-) are filtered out of state.
    throughputTier String
    Throughput tier of the cluster.
    zones List<String>
    Zones of the cluster. Must be valid zones within the selected region. If multiple zones are used, the cluster is a multi-AZ cluster.
    timeouts Property Map

    Supporting Types

    AllowedPrincipals List<string>
    The ARN of the principals that can access the Redpanda AWS PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    ConnectConsole bool
    Whether Console is connected in Redpanda AWS Private Link Service.
    Enabled bool
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    Status GetClusterAwsPrivateLinkStatus
    Status configuration
    SupportedRegions List<string>
    List of supported regions in cross-region AWS PrivateLink.
    AllowedPrincipals []string
    The ARN of the principals that can access the Redpanda AWS PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    ConnectConsole bool
    Whether Console is connected in Redpanda AWS Private Link Service.
    Enabled bool
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    Status GetClusterAwsPrivateLinkStatus
    Status configuration
    SupportedRegions []string
    List of supported regions in cross-region AWS PrivateLink.
    allowed_principals list(string)
    The ARN of the principals that can access the Redpanda AWS PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connect_console bool
    Whether Console is connected in Redpanda AWS Private Link Service.
    enabled bool
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status object
    Status configuration
    supported_regions list(string)
    List of supported regions in cross-region AWS PrivateLink.
    allowedPrincipals List<String>
    The ARN of the principals that can access the Redpanda AWS PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connectConsole Boolean
    Whether Console is connected in Redpanda AWS Private Link Service.
    enabled Boolean
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status GetClusterAwsPrivateLinkStatus
    Status configuration
    supportedRegions List<String>
    List of supported regions in cross-region AWS PrivateLink.
    allowedPrincipals string[]
    The ARN of the principals that can access the Redpanda AWS PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connectConsole boolean
    Whether Console is connected in Redpanda AWS Private Link Service.
    enabled boolean
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status GetClusterAwsPrivateLinkStatus
    Status configuration
    supportedRegions string[]
    List of supported regions in cross-region AWS PrivateLink.
    allowed_principals Sequence[str]
    The ARN of the principals that can access the Redpanda AWS PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connect_console bool
    Whether Console is connected in Redpanda AWS Private Link Service.
    enabled bool
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status GetClusterAwsPrivateLinkStatus
    Status configuration
    supported_regions Sequence[str]
    List of supported regions in cross-region AWS PrivateLink.
    allowedPrincipals List<String>
    The ARN of the principals that can access the Redpanda AWS PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connectConsole Boolean
    Whether Console is connected in Redpanda AWS Private Link Service.
    enabled Boolean
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status Property Map
    Status configuration
    supportedRegions List<String>
    List of supported regions in cross-region AWS PrivateLink.

    GetClusterAwsPrivateLinkStatus

    ConsolePort double
    The port of Redpanda Console.
    KafkaApiNodeBasePort double
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    KafkaApiSeedPort double
    Kafka API seed service port.
    RedpandaProxyNodeBasePort double
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    RedpandaProxySeedPort double
    HTTP Proxy seed service port.
    SchemaRegistrySeedPort double
    Schema Registry seed service port.
    ServiceId string
    ID of Redpanda AWS PrivateLink Endpoint Service.
    ServiceName string
    Name of Redpanda AWS PrivateLink Endpoint Service.
    ServiceState string
    State of Redpanda AWS PrivateLink Endpoint Service.
    VpcEndpointConnections List<GetClusterAwsPrivateLinkStatusVpcEndpointConnection>
    List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
    ConsolePort float64
    The port of Redpanda Console.
    KafkaApiNodeBasePort float64
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    KafkaApiSeedPort float64
    Kafka API seed service port.
    RedpandaProxyNodeBasePort float64
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    RedpandaProxySeedPort float64
    HTTP Proxy seed service port.
    SchemaRegistrySeedPort float64
    Schema Registry seed service port.
    ServiceId string
    ID of Redpanda AWS PrivateLink Endpoint Service.
    ServiceName string
    Name of Redpanda AWS PrivateLink Endpoint Service.
    ServiceState string
    State of Redpanda AWS PrivateLink Endpoint Service.
    VpcEndpointConnections []GetClusterAwsPrivateLinkStatusVpcEndpointConnection
    List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
    console_port number
    The port of Redpanda Console.
    kafka_api_node_base_port number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafka_api_seed_port number
    Kafka API seed service port.
    redpanda_proxy_node_base_port number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpanda_proxy_seed_port number
    HTTP Proxy seed service port.
    schema_registry_seed_port number
    Schema Registry seed service port.
    service_id string
    ID of Redpanda AWS PrivateLink Endpoint Service.
    service_name string
    Name of Redpanda AWS PrivateLink Endpoint Service.
    service_state string
    State of Redpanda AWS PrivateLink Endpoint Service.
    vpc_endpoint_connections list(object)
    List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
    consolePort Double
    The port of Redpanda Console.
    kafkaApiNodeBasePort Double
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort Double
    Kafka API seed service port.
    redpandaProxyNodeBasePort Double
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort Double
    HTTP Proxy seed service port.
    schemaRegistrySeedPort Double
    Schema Registry seed service port.
    serviceId String
    ID of Redpanda AWS PrivateLink Endpoint Service.
    serviceName String
    Name of Redpanda AWS PrivateLink Endpoint Service.
    serviceState String
    State of Redpanda AWS PrivateLink Endpoint Service.
    vpcEndpointConnections List<GetClusterAwsPrivateLinkStatusVpcEndpointConnection>
    List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
    consolePort number
    The port of Redpanda Console.
    kafkaApiNodeBasePort number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort number
    Kafka API seed service port.
    redpandaProxyNodeBasePort number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort number
    HTTP Proxy seed service port.
    schemaRegistrySeedPort number
    Schema Registry seed service port.
    serviceId string
    ID of Redpanda AWS PrivateLink Endpoint Service.
    serviceName string
    Name of Redpanda AWS PrivateLink Endpoint Service.
    serviceState string
    State of Redpanda AWS PrivateLink Endpoint Service.
    vpcEndpointConnections GetClusterAwsPrivateLinkStatusVpcEndpointConnection[]
    List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
    console_port float
    The port of Redpanda Console.
    kafka_api_node_base_port float
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafka_api_seed_port float
    Kafka API seed service port.
    redpanda_proxy_node_base_port float
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpanda_proxy_seed_port float
    HTTP Proxy seed service port.
    schema_registry_seed_port float
    Schema Registry seed service port.
    service_id str
    ID of Redpanda AWS PrivateLink Endpoint Service.
    service_name str
    Name of Redpanda AWS PrivateLink Endpoint Service.
    service_state str
    State of Redpanda AWS PrivateLink Endpoint Service.
    vpc_endpoint_connections Sequence[GetClusterAwsPrivateLinkStatusVpcEndpointConnection]
    List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
    consolePort Number
    The port of Redpanda Console.
    kafkaApiNodeBasePort Number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort Number
    Kafka API seed service port.
    redpandaProxyNodeBasePort Number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort Number
    HTTP Proxy seed service port.
    schemaRegistrySeedPort Number
    Schema Registry seed service port.
    serviceId String
    ID of Redpanda AWS PrivateLink Endpoint Service.
    serviceName String
    Name of Redpanda AWS PrivateLink Endpoint Service.
    serviceState String
    State of Redpanda AWS PrivateLink Endpoint Service.
    vpcEndpointConnections List<Property Map>
    List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.

    GetClusterAwsPrivateLinkStatusVpcEndpointConnection

    ConnectionId string
    Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    DnsEntries List<GetClusterAwsPrivateLinkStatusVpcEndpointConnectionDnsEntry>
    The list of DNS entries associated with VPC endpoint.
    Id string
    The ID of VPC endpoint.
    LoadBalancerArns List<string>
    List of load balancer ARNs.
    Owner string
    The owner of VPC endpoint.
    State string
    The state of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    ConnectionId string
    Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    DnsEntries []GetClusterAwsPrivateLinkStatusVpcEndpointConnectionDnsEntry
    The list of DNS entries associated with VPC endpoint.
    Id string
    The ID of VPC endpoint.
    LoadBalancerArns []string
    List of load balancer ARNs.
    Owner string
    The owner of VPC endpoint.
    State string
    The state of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    connection_id string
    Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    dns_entries list(object)
    The list of DNS entries associated with VPC endpoint.
    id string
    The ID of VPC endpoint.
    load_balancer_arns list(string)
    List of load balancer ARNs.
    owner string
    The owner of VPC endpoint.
    state string
    The state of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    connectionId String
    Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    dnsEntries List<GetClusterAwsPrivateLinkStatusVpcEndpointConnectionDnsEntry>
    The list of DNS entries associated with VPC endpoint.
    id String
    The ID of VPC endpoint.
    loadBalancerArns List<String>
    List of load balancer ARNs.
    owner String
    The owner of VPC endpoint.
    state String
    The state of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    connectionId string
    Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    dnsEntries GetClusterAwsPrivateLinkStatusVpcEndpointConnectionDnsEntry[]
    The list of DNS entries associated with VPC endpoint.
    id string
    The ID of VPC endpoint.
    loadBalancerArns string[]
    List of load balancer ARNs.
    owner string
    The owner of VPC endpoint.
    state string
    The state of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    connection_id str
    Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    dns_entries Sequence[GetClusterAwsPrivateLinkStatusVpcEndpointConnectionDnsEntry]
    The list of DNS entries associated with VPC endpoint.
    id str
    The ID of VPC endpoint.
    load_balancer_arns Sequence[str]
    List of load balancer ARNs.
    owner str
    The owner of VPC endpoint.
    state str
    The state of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    connectionId String
    Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    dnsEntries List<Property Map>
    The list of DNS entries associated with VPC endpoint.
    id String
    The ID of VPC endpoint.
    loadBalancerArns List<String>
    List of load balancer ARNs.
    owner String
    The owner of VPC endpoint.
    state String
    The state of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.

    GetClusterAwsPrivateLinkStatusVpcEndpointConnectionDnsEntry

    DnsName string
    DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    HostedZoneId string
    The ID of Route53 DNS zone.
    DnsName string
    DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    HostedZoneId string
    The ID of Route53 DNS zone.
    dns_name string
    DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    hosted_zone_id string
    The ID of Route53 DNS zone.
    dnsName String
    DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    hostedZoneId String
    The ID of Route53 DNS zone.
    dnsName string
    DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    hostedZoneId string
    The ID of Route53 DNS zone.
    dns_name str
    DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    hosted_zone_id str
    The ID of Route53 DNS zone.
    dnsName String
    DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
    hostedZoneId String
    The ID of Route53 DNS zone.
    AllowedSubscriptions List<string>
    The subscriptions that can access the Redpanda Azure PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    ConnectConsole bool
    Whether Console is connected in Redpanda Azure Private Link Service.
    Enabled bool
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    Status GetClusterAzurePrivateLinkStatus
    Status configuration
    AllowedSubscriptions []string
    The subscriptions that can access the Redpanda Azure PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    ConnectConsole bool
    Whether Console is connected in Redpanda Azure Private Link Service.
    Enabled bool
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    Status GetClusterAzurePrivateLinkStatus
    Status configuration
    allowed_subscriptions list(string)
    The subscriptions that can access the Redpanda Azure PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connect_console bool
    Whether Console is connected in Redpanda Azure Private Link Service.
    enabled bool
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status object
    Status configuration
    allowedSubscriptions List<String>
    The subscriptions that can access the Redpanda Azure PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connectConsole Boolean
    Whether Console is connected in Redpanda Azure Private Link Service.
    enabled Boolean
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status GetClusterAzurePrivateLinkStatus
    Status configuration
    allowedSubscriptions string[]
    The subscriptions that can access the Redpanda Azure PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connectConsole boolean
    Whether Console is connected in Redpanda Azure Private Link Service.
    enabled boolean
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status GetClusterAzurePrivateLinkStatus
    Status configuration
    allowed_subscriptions Sequence[str]
    The subscriptions that can access the Redpanda Azure PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connect_console bool
    Whether Console is connected in Redpanda Azure Private Link Service.
    enabled bool
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status GetClusterAzurePrivateLinkStatus
    Status configuration
    allowedSubscriptions List<String>
    The subscriptions that can access the Redpanda Azure PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
    connectConsole Boolean
    Whether Console is connected in Redpanda Azure Private Link Service.
    enabled Boolean
    Whether Redpanda AWS Private Link Endpoint Service is enabled.
    status Property Map
    Status configuration

    GetClusterAzurePrivateLinkStatus

    ApprovedSubscriptions List<string>
    These are the approved subscriptions on the private link
    ConsolePort double
    The port of Redpanda Console.
    DnsARecord string
    dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
    KafkaApiNodeBasePort double
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    KafkaApiSeedPort double
    Kafka API seed service port.
    PrivateEndpointConnections List<GetClusterAzurePrivateLinkStatusPrivateEndpointConnection>
    List of private endpoint connections to Redpanda Azure Private Link Service.
    RedpandaProxyNodeBasePort double
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    RedpandaProxySeedPort double
    HTTP Proxy seed service port.
    SchemaRegistrySeedPort double
    Schema Registry seed service port.
    ServiceId string
    ID of Redpanda Azure PrivateLink Endpoint Service.
    ServiceName string
    Name of Redpanda Azure PrivateLink Endpoint Service.
    ApprovedSubscriptions []string
    These are the approved subscriptions on the private link
    ConsolePort float64
    The port of Redpanda Console.
    DnsARecord string
    dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
    KafkaApiNodeBasePort float64
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    KafkaApiSeedPort float64
    Kafka API seed service port.
    PrivateEndpointConnections []GetClusterAzurePrivateLinkStatusPrivateEndpointConnection
    List of private endpoint connections to Redpanda Azure Private Link Service.
    RedpandaProxyNodeBasePort float64
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    RedpandaProxySeedPort float64
    HTTP Proxy seed service port.
    SchemaRegistrySeedPort float64
    Schema Registry seed service port.
    ServiceId string
    ID of Redpanda Azure PrivateLink Endpoint Service.
    ServiceName string
    Name of Redpanda Azure PrivateLink Endpoint Service.
    approved_subscriptions list(string)
    These are the approved subscriptions on the private link
    console_port number
    The port of Redpanda Console.
    dns_a_record string
    dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
    kafka_api_node_base_port number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafka_api_seed_port number
    Kafka API seed service port.
    private_endpoint_connections list(object)
    List of private endpoint connections to Redpanda Azure Private Link Service.
    redpanda_proxy_node_base_port number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpanda_proxy_seed_port number
    HTTP Proxy seed service port.
    schema_registry_seed_port number
    Schema Registry seed service port.
    service_id string
    ID of Redpanda Azure PrivateLink Endpoint Service.
    service_name string
    Name of Redpanda Azure PrivateLink Endpoint Service.
    approvedSubscriptions List<String>
    These are the approved subscriptions on the private link
    consolePort Double
    The port of Redpanda Console.
    dnsARecord String
    dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
    kafkaApiNodeBasePort Double
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort Double
    Kafka API seed service port.
    privateEndpointConnections List<GetClusterAzurePrivateLinkStatusPrivateEndpointConnection>
    List of private endpoint connections to Redpanda Azure Private Link Service.
    redpandaProxyNodeBasePort Double
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort Double
    HTTP Proxy seed service port.
    schemaRegistrySeedPort Double
    Schema Registry seed service port.
    serviceId String
    ID of Redpanda Azure PrivateLink Endpoint Service.
    serviceName String
    Name of Redpanda Azure PrivateLink Endpoint Service.
    approvedSubscriptions string[]
    These are the approved subscriptions on the private link
    consolePort number
    The port of Redpanda Console.
    dnsARecord string
    dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
    kafkaApiNodeBasePort number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort number
    Kafka API seed service port.
    privateEndpointConnections GetClusterAzurePrivateLinkStatusPrivateEndpointConnection[]
    List of private endpoint connections to Redpanda Azure Private Link Service.
    redpandaProxyNodeBasePort number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort number
    HTTP Proxy seed service port.
    schemaRegistrySeedPort number
    Schema Registry seed service port.
    serviceId string
    ID of Redpanda Azure PrivateLink Endpoint Service.
    serviceName string
    Name of Redpanda Azure PrivateLink Endpoint Service.
    approved_subscriptions Sequence[str]
    These are the approved subscriptions on the private link
    console_port float
    The port of Redpanda Console.
    dns_a_record str
    dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
    kafka_api_node_base_port float
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafka_api_seed_port float
    Kafka API seed service port.
    private_endpoint_connections Sequence[GetClusterAzurePrivateLinkStatusPrivateEndpointConnection]
    List of private endpoint connections to Redpanda Azure Private Link Service.
    redpanda_proxy_node_base_port float
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpanda_proxy_seed_port float
    HTTP Proxy seed service port.
    schema_registry_seed_port float
    Schema Registry seed service port.
    service_id str
    ID of Redpanda Azure PrivateLink Endpoint Service.
    service_name str
    Name of Redpanda Azure PrivateLink Endpoint Service.
    approvedSubscriptions List<String>
    These are the approved subscriptions on the private link
    consolePort Number
    The port of Redpanda Console.
    dnsARecord String
    dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
    kafkaApiNodeBasePort Number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort Number
    Kafka API seed service port.
    privateEndpointConnections List<Property Map>
    List of private endpoint connections to Redpanda Azure Private Link Service.
    redpandaProxyNodeBasePort Number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort Number
    HTTP Proxy seed service port.
    schemaRegistrySeedPort Number
    Schema Registry seed service port.
    serviceId String
    ID of Redpanda Azure PrivateLink Endpoint Service.
    serviceName String
    Name of Redpanda Azure PrivateLink Endpoint Service.

    GetClusterAzurePrivateLinkStatusPrivateEndpointConnection

    ConnectionId string
    ConnectionID is the id of the connection between the private endpoint and the private link service
    ConnectionName string
    ConnectionName is the name of the connection between the private endpoint and the private link service
    PrivateEndpointId string
    Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
    PrivateEndpointName string
    The name of the PrivateEndpointConnection.
    Status string
    The status of private endpoint connected to Redpanda Azure PrivateLink Endpoint Service.
    ConnectionId string
    ConnectionID is the id of the connection between the private endpoint and the private link service
    ConnectionName string
    ConnectionName is the name of the connection between the private endpoint and the private link service
    PrivateEndpointId string
    Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
    PrivateEndpointName string
    The name of the PrivateEndpointConnection.
    Status string
    The status of private endpoint connected to Redpanda Azure PrivateLink Endpoint Service.
    connection_id string
    ConnectionID is the id of the connection between the private endpoint and the private link service
    connection_name string
    ConnectionName is the name of the connection between the private endpoint and the private link service
    private_endpoint_id string
    Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
    private_endpoint_name string
    The name of the PrivateEndpointConnection.
    status string
    The status of private endpoint connected to Redpanda Azure PrivateLink Endpoint Service.
    connectionId String
    ConnectionID is the id of the connection between the private endpoint and the private link service
    connectionName String
    ConnectionName is the name of the connection between the private endpoint and the private link service
    privateEndpointId String
    Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
    privateEndpointName String
    The name of the PrivateEndpointConnection.
    status String
    The status of private endpoint connected to Redpanda Azure PrivateLink Endpoint Service.
    connectionId string
    ConnectionID is the id of the connection between the private endpoint and the private link service
    connectionName string
    ConnectionName is the name of the connection between the private endpoint and the private link service
    privateEndpointId string
    Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
    privateEndpointName string
    The name of the PrivateEndpointConnection.
    status string
    The status of private endpoint connected to Redpanda Azure PrivateLink Endpoint Service.
    connection_id str
    ConnectionID is the id of the connection between the private endpoint and the private link service
    connection_name str
    ConnectionName is the name of the connection between the private endpoint and the private link service
    private_endpoint_id str
    Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
    private_endpoint_name str
    The name of the PrivateEndpointConnection.
    status str
    The status of private endpoint connected to Redpanda Azure PrivateLink Endpoint Service.
    connectionId String
    ConnectionID is the id of the connection between the private endpoint and the private link service
    connectionName String
    ConnectionName is the name of the connection between the private endpoint and the private link service
    privateEndpointId String
    Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
    privateEndpointName String
    The name of the PrivateEndpointConnection.
    status String
    The status of private endpoint connected to Redpanda Azure PrivateLink Endpoint Service.

    GetClusterClusterConfiguration

    CustomPropertiesJson string
    Custom Properties JSON
    CustomPropertiesJson string
    Custom Properties JSON
    custom_properties_json string
    Custom Properties JSON
    customPropertiesJson String
    Custom Properties JSON
    customPropertiesJson string
    Custom Properties JSON
    custom_properties_json str
    Custom Properties JSON
    customPropertiesJson String
    Custom Properties JSON

    GetClusterCustomerManagedResources

    Aws GetClusterCustomerManagedResourcesAws
    AWS resources created and managed by user, and required to deploy the Redpanda cluster.
    Gcp GetClusterCustomerManagedResourcesGcp
    GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
    Aws GetClusterCustomerManagedResourcesAws
    AWS resources created and managed by user, and required to deploy the Redpanda cluster.
    Gcp GetClusterCustomerManagedResourcesGcp
    GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
    aws object
    AWS resources created and managed by user, and required to deploy the Redpanda cluster.
    gcp object
    GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
    aws GetClusterCustomerManagedResourcesAws
    AWS resources created and managed by user, and required to deploy the Redpanda cluster.
    gcp GetClusterCustomerManagedResourcesGcp
    GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
    aws GetClusterCustomerManagedResourcesAws
    AWS resources created and managed by user, and required to deploy the Redpanda cluster.
    gcp GetClusterCustomerManagedResourcesGcp
    GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
    aws GetClusterCustomerManagedResourcesAws
    AWS resources created and managed by user, and required to deploy the Redpanda cluster.
    gcp GetClusterCustomerManagedResourcesGcp
    GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
    aws Property Map
    AWS resources created and managed by user, and required to deploy the Redpanda cluster.
    gcp Property Map
    GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.

    GetClusterCustomerManagedResourcesAws

    AgentInstanceProfile GetClusterCustomerManagedResourcesAwsAgentInstanceProfile
    AWS instance profile.
    CloudStorageBucket GetClusterCustomerManagedResourcesAwsCloudStorageBucket
    AWS storage bucket properties by ARN.
    ClusterSecurityGroup GetClusterCustomerManagedResourcesAwsClusterSecurityGroup
    Security Group identifies AWS security group.
    ConnectorsNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsConnectorsNodeGroupInstanceProfile
    AWS instance profile.
    ConnectorsSecurityGroup GetClusterCustomerManagedResourcesAwsConnectorsSecurityGroup
    Security Group identifies AWS security group.
    K8sClusterRole GetClusterCustomerManagedResourcesAwsK8sClusterRole
    Role identifies AWS role.
    NodeSecurityGroup GetClusterCustomerManagedResourcesAwsNodeSecurityGroup
    Security Group identifies AWS security group.
    PermissionsBoundaryPolicy GetClusterCustomerManagedResourcesAwsPermissionsBoundaryPolicy
    Policy identifies an AWS policy.
    RedpandaAgentSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaAgentSecurityGroup
    Security Group identifies AWS security group.
    RedpandaConnectNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsRedpandaConnectNodeGroupInstanceProfile
    AWS instance profile.
    RedpandaConnectSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaConnectSecurityGroup
    Security Group identifies AWS security group.
    RedpandaNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupInstanceProfile
    AWS instance profile.
    RedpandaNodeGroupSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupSecurityGroup
    Security Group identifies AWS security group.
    UtilityNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsUtilityNodeGroupInstanceProfile
    AWS instance profile.
    UtilitySecurityGroup GetClusterCustomerManagedResourcesAwsUtilitySecurityGroup
    Security Group identifies AWS security group.
    AgentInstanceProfile GetClusterCustomerManagedResourcesAwsAgentInstanceProfile
    AWS instance profile.
    CloudStorageBucket GetClusterCustomerManagedResourcesAwsCloudStorageBucket
    AWS storage bucket properties by ARN.
    ClusterSecurityGroup GetClusterCustomerManagedResourcesAwsClusterSecurityGroup
    Security Group identifies AWS security group.
    ConnectorsNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsConnectorsNodeGroupInstanceProfile
    AWS instance profile.
    ConnectorsSecurityGroup GetClusterCustomerManagedResourcesAwsConnectorsSecurityGroup
    Security Group identifies AWS security group.
    K8sClusterRole GetClusterCustomerManagedResourcesAwsK8sClusterRole
    Role identifies AWS role.
    NodeSecurityGroup GetClusterCustomerManagedResourcesAwsNodeSecurityGroup
    Security Group identifies AWS security group.
    PermissionsBoundaryPolicy GetClusterCustomerManagedResourcesAwsPermissionsBoundaryPolicy
    Policy identifies an AWS policy.
    RedpandaAgentSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaAgentSecurityGroup
    Security Group identifies AWS security group.
    RedpandaConnectNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsRedpandaConnectNodeGroupInstanceProfile
    AWS instance profile.
    RedpandaConnectSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaConnectSecurityGroup
    Security Group identifies AWS security group.
    RedpandaNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupInstanceProfile
    AWS instance profile.
    RedpandaNodeGroupSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupSecurityGroup
    Security Group identifies AWS security group.
    UtilityNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsUtilityNodeGroupInstanceProfile
    AWS instance profile.
    UtilitySecurityGroup GetClusterCustomerManagedResourcesAwsUtilitySecurityGroup
    Security Group identifies AWS security group.
    agent_instance_profile object
    AWS instance profile.
    cloud_storage_bucket object
    AWS storage bucket properties by ARN.
    cluster_security_group object
    Security Group identifies AWS security group.
    connectors_node_group_instance_profile object
    AWS instance profile.
    connectors_security_group object
    Security Group identifies AWS security group.
    k8s_cluster_role object
    Role identifies AWS role.
    node_security_group object
    Security Group identifies AWS security group.
    permissions_boundary_policy object
    Policy identifies an AWS policy.
    redpanda_agent_security_group object
    Security Group identifies AWS security group.
    redpanda_connect_node_group_instance_profile object
    AWS instance profile.
    redpanda_connect_security_group object
    Security Group identifies AWS security group.
    redpanda_node_group_instance_profile object
    AWS instance profile.
    redpanda_node_group_security_group object
    Security Group identifies AWS security group.
    utility_node_group_instance_profile object
    AWS instance profile.
    utility_security_group object
    Security Group identifies AWS security group.
    agentInstanceProfile GetClusterCustomerManagedResourcesAwsAgentInstanceProfile
    AWS instance profile.
    cloudStorageBucket GetClusterCustomerManagedResourcesAwsCloudStorageBucket
    AWS storage bucket properties by ARN.
    clusterSecurityGroup GetClusterCustomerManagedResourcesAwsClusterSecurityGroup
    Security Group identifies AWS security group.
    connectorsNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsConnectorsNodeGroupInstanceProfile
    AWS instance profile.
    connectorsSecurityGroup GetClusterCustomerManagedResourcesAwsConnectorsSecurityGroup
    Security Group identifies AWS security group.
    k8sClusterRole GetClusterCustomerManagedResourcesAwsK8sClusterRole
    Role identifies AWS role.
    nodeSecurityGroup GetClusterCustomerManagedResourcesAwsNodeSecurityGroup
    Security Group identifies AWS security group.
    permissionsBoundaryPolicy GetClusterCustomerManagedResourcesAwsPermissionsBoundaryPolicy
    Policy identifies an AWS policy.
    redpandaAgentSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaAgentSecurityGroup
    Security Group identifies AWS security group.
    redpandaConnectNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsRedpandaConnectNodeGroupInstanceProfile
    AWS instance profile.
    redpandaConnectSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaConnectSecurityGroup
    Security Group identifies AWS security group.
    redpandaNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupInstanceProfile
    AWS instance profile.
    redpandaNodeGroupSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupSecurityGroup
    Security Group identifies AWS security group.
    utilityNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsUtilityNodeGroupInstanceProfile
    AWS instance profile.
    utilitySecurityGroup GetClusterCustomerManagedResourcesAwsUtilitySecurityGroup
    Security Group identifies AWS security group.
    agentInstanceProfile GetClusterCustomerManagedResourcesAwsAgentInstanceProfile
    AWS instance profile.
    cloudStorageBucket GetClusterCustomerManagedResourcesAwsCloudStorageBucket
    AWS storage bucket properties by ARN.
    clusterSecurityGroup GetClusterCustomerManagedResourcesAwsClusterSecurityGroup
    Security Group identifies AWS security group.
    connectorsNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsConnectorsNodeGroupInstanceProfile
    AWS instance profile.
    connectorsSecurityGroup GetClusterCustomerManagedResourcesAwsConnectorsSecurityGroup
    Security Group identifies AWS security group.
    k8sClusterRole GetClusterCustomerManagedResourcesAwsK8sClusterRole
    Role identifies AWS role.
    nodeSecurityGroup GetClusterCustomerManagedResourcesAwsNodeSecurityGroup
    Security Group identifies AWS security group.
    permissionsBoundaryPolicy GetClusterCustomerManagedResourcesAwsPermissionsBoundaryPolicy
    Policy identifies an AWS policy.
    redpandaAgentSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaAgentSecurityGroup
    Security Group identifies AWS security group.
    redpandaConnectNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsRedpandaConnectNodeGroupInstanceProfile
    AWS instance profile.
    redpandaConnectSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaConnectSecurityGroup
    Security Group identifies AWS security group.
    redpandaNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupInstanceProfile
    AWS instance profile.
    redpandaNodeGroupSecurityGroup GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupSecurityGroup
    Security Group identifies AWS security group.
    utilityNodeGroupInstanceProfile GetClusterCustomerManagedResourcesAwsUtilityNodeGroupInstanceProfile
    AWS instance profile.
    utilitySecurityGroup GetClusterCustomerManagedResourcesAwsUtilitySecurityGroup
    Security Group identifies AWS security group.
    agent_instance_profile GetClusterCustomerManagedResourcesAwsAgentInstanceProfile
    AWS instance profile.
    cloud_storage_bucket GetClusterCustomerManagedResourcesAwsCloudStorageBucket
    AWS storage bucket properties by ARN.
    cluster_security_group GetClusterCustomerManagedResourcesAwsClusterSecurityGroup
    Security Group identifies AWS security group.
    connectors_node_group_instance_profile GetClusterCustomerManagedResourcesAwsConnectorsNodeGroupInstanceProfile
    AWS instance profile.
    connectors_security_group GetClusterCustomerManagedResourcesAwsConnectorsSecurityGroup
    Security Group identifies AWS security group.
    k8s_cluster_role GetClusterCustomerManagedResourcesAwsK8sClusterRole
    Role identifies AWS role.
    node_security_group GetClusterCustomerManagedResourcesAwsNodeSecurityGroup
    Security Group identifies AWS security group.
    permissions_boundary_policy GetClusterCustomerManagedResourcesAwsPermissionsBoundaryPolicy
    Policy identifies an AWS policy.
    redpanda_agent_security_group GetClusterCustomerManagedResourcesAwsRedpandaAgentSecurityGroup
    Security Group identifies AWS security group.
    redpanda_connect_node_group_instance_profile GetClusterCustomerManagedResourcesAwsRedpandaConnectNodeGroupInstanceProfile
    AWS instance profile.
    redpanda_connect_security_group GetClusterCustomerManagedResourcesAwsRedpandaConnectSecurityGroup
    Security Group identifies AWS security group.
    redpanda_node_group_instance_profile GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupInstanceProfile
    AWS instance profile.
    redpanda_node_group_security_group GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupSecurityGroup
    Security Group identifies AWS security group.
    utility_node_group_instance_profile GetClusterCustomerManagedResourcesAwsUtilityNodeGroupInstanceProfile
    AWS instance profile.
    utility_security_group GetClusterCustomerManagedResourcesAwsUtilitySecurityGroup
    Security Group identifies AWS security group.
    agentInstanceProfile Property Map
    AWS instance profile.
    cloudStorageBucket Property Map
    AWS storage bucket properties by ARN.
    clusterSecurityGroup Property Map
    Security Group identifies AWS security group.
    connectorsNodeGroupInstanceProfile Property Map
    AWS instance profile.
    connectorsSecurityGroup Property Map
    Security Group identifies AWS security group.
    k8sClusterRole Property Map
    Role identifies AWS role.
    nodeSecurityGroup Property Map
    Security Group identifies AWS security group.
    permissionsBoundaryPolicy Property Map
    Policy identifies an AWS policy.
    redpandaAgentSecurityGroup Property Map
    Security Group identifies AWS security group.
    redpandaConnectNodeGroupInstanceProfile Property Map
    AWS instance profile.
    redpandaConnectSecurityGroup Property Map
    Security Group identifies AWS security group.
    redpandaNodeGroupInstanceProfile Property Map
    AWS instance profile.
    redpandaNodeGroupSecurityGroup Property Map
    Security Group identifies AWS security group.
    utilityNodeGroupInstanceProfile Property Map
    AWS instance profile.
    utilitySecurityGroup Property Map
    Security Group identifies AWS security group.

    GetClusterCustomerManagedResourcesAwsAgentInstanceProfile

    Arn string
    AWS instance profile ARN.
    Arn string
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn str
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.

    GetClusterCustomerManagedResourcesAwsCloudStorageBucket

    Arn string
    AWS storage bucket identifier.
    Arn string
    AWS storage bucket identifier.
    arn string
    AWS storage bucket identifier.
    arn String
    AWS storage bucket identifier.
    arn string
    AWS storage bucket identifier.
    arn str
    AWS storage bucket identifier.
    arn String
    AWS storage bucket identifier.

    GetClusterCustomerManagedResourcesAwsClusterSecurityGroup

    Arn string
    AWS security group ARN.
    Arn string
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn String
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn str
    AWS security group ARN.
    arn String
    AWS security group ARN.

    GetClusterCustomerManagedResourcesAwsConnectorsNodeGroupInstanceProfile

    Arn string
    AWS instance profile ARN.
    Arn string
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn str
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.

    GetClusterCustomerManagedResourcesAwsConnectorsSecurityGroup

    Arn string
    AWS security group ARN.
    Arn string
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn String
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn str
    AWS security group ARN.
    arn String
    AWS security group ARN.

    GetClusterCustomerManagedResourcesAwsK8sClusterRole

    Arn string
    AWS role ARN.
    Arn string
    AWS role ARN.
    arn string
    AWS role ARN.
    arn String
    AWS role ARN.
    arn string
    AWS role ARN.
    arn str
    AWS role ARN.
    arn String
    AWS role ARN.

    GetClusterCustomerManagedResourcesAwsNodeSecurityGroup

    Arn string
    AWS security group ARN.
    Arn string
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn String
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn str
    AWS security group ARN.
    arn String
    AWS security group ARN.

    GetClusterCustomerManagedResourcesAwsPermissionsBoundaryPolicy

    Arn string
    AWS policy ARN.
    Arn string
    AWS policy ARN.
    arn string
    AWS policy ARN.
    arn String
    AWS policy ARN.
    arn string
    AWS policy ARN.
    arn str
    AWS policy ARN.
    arn String
    AWS policy ARN.

    GetClusterCustomerManagedResourcesAwsRedpandaAgentSecurityGroup

    Arn string
    AWS security group ARN.
    Arn string
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn String
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn str
    AWS security group ARN.
    arn String
    AWS security group ARN.

    GetClusterCustomerManagedResourcesAwsRedpandaConnectNodeGroupInstanceProfile

    Arn string
    AWS instance profile ARN.
    Arn string
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn str
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.

    GetClusterCustomerManagedResourcesAwsRedpandaConnectSecurityGroup

    Arn string
    AWS security group ARN.
    Arn string
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn String
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn str
    AWS security group ARN.
    arn String
    AWS security group ARN.

    GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupInstanceProfile

    Arn string
    AWS instance profile ARN.
    Arn string
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn str
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.

    GetClusterCustomerManagedResourcesAwsRedpandaNodeGroupSecurityGroup

    Arn string
    AWS security group ARN.
    Arn string
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn String
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn str
    AWS security group ARN.
    arn String
    AWS security group ARN.

    GetClusterCustomerManagedResourcesAwsUtilityNodeGroupInstanceProfile

    Arn string
    AWS instance profile ARN.
    Arn string
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.
    arn string
    AWS instance profile ARN.
    arn str
    AWS instance profile ARN.
    arn String
    AWS instance profile ARN.

    GetClusterCustomerManagedResourcesAwsUtilitySecurityGroup

    Arn string
    AWS security group ARN.
    Arn string
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn String
    AWS security group ARN.
    arn string
    AWS security group ARN.
    arn str
    AWS security group ARN.
    arn String
    AWS security group ARN.

    GetClusterCustomerManagedResourcesGcp

    AgentServiceAccount GetClusterCustomerManagedResourcesGcpAgentServiceAccount
    GCP service account.
    ConnectorServiceAccount GetClusterCustomerManagedResourcesGcpConnectorServiceAccount
    GCP service account.
    ConsoleServiceAccount GetClusterCustomerManagedResourcesGcpConsoleServiceAccount
    GCP service account.
    GkeServiceAccount GetClusterCustomerManagedResourcesGcpGkeServiceAccount
    GCP service account.
    PscNatSubnetName string
    NAT subnet name if GCP Private Service Connect (a.k.a Private Link) is enabled. If it is used for PSC v1, use pscv2natsubnetname to set NAT subnet name for PSC v2.
    RedpandaClusterServiceAccount GetClusterCustomerManagedResourcesGcpRedpandaClusterServiceAccount
    GCP service account.
    Subnet GetClusterCustomerManagedResourcesGcpSubnet
    GCP subnet properties. See the official GCP API reference.
    TieredStorageBucket GetClusterCustomerManagedResourcesGcpTieredStorageBucket
    GCP storage bucket properties.
    AgentServiceAccount GetClusterCustomerManagedResourcesGcpAgentServiceAccount
    GCP service account.
    ConnectorServiceAccount GetClusterCustomerManagedResourcesGcpConnectorServiceAccount
    GCP service account.
    ConsoleServiceAccount GetClusterCustomerManagedResourcesGcpConsoleServiceAccount
    GCP service account.
    GkeServiceAccount GetClusterCustomerManagedResourcesGcpGkeServiceAccount
    GCP service account.
    PscNatSubnetName string
    NAT subnet name if GCP Private Service Connect (a.k.a Private Link) is enabled. If it is used for PSC v1, use pscv2natsubnetname to set NAT subnet name for PSC v2.
    RedpandaClusterServiceAccount GetClusterCustomerManagedResourcesGcpRedpandaClusterServiceAccount
    GCP service account.
    Subnet GetClusterCustomerManagedResourcesGcpSubnet
    GCP subnet properties. See the official GCP API reference.
    TieredStorageBucket GetClusterCustomerManagedResourcesGcpTieredStorageBucket
    GCP storage bucket properties.
    agent_service_account object
    GCP service account.
    connector_service_account object
    GCP service account.
    console_service_account object
    GCP service account.
    gke_service_account object
    GCP service account.
    psc_nat_subnet_name string
    NAT subnet name if GCP Private Service Connect (a.k.a Private Link) is enabled. If it is used for PSC v1, use pscv2natsubnetname to set NAT subnet name for PSC v2.
    redpanda_cluster_service_account object
    GCP service account.
    subnet object
    GCP subnet properties. See the official GCP API reference.
    tiered_storage_bucket object
    GCP storage bucket properties.
    agentServiceAccount GetClusterCustomerManagedResourcesGcpAgentServiceAccount
    GCP service account.
    connectorServiceAccount GetClusterCustomerManagedResourcesGcpConnectorServiceAccount
    GCP service account.
    consoleServiceAccount GetClusterCustomerManagedResourcesGcpConsoleServiceAccount
    GCP service account.
    gkeServiceAccount GetClusterCustomerManagedResourcesGcpGkeServiceAccount
    GCP service account.
    pscNatSubnetName String
    NAT subnet name if GCP Private Service Connect (a.k.a Private Link) is enabled. If it is used for PSC v1, use pscv2natsubnetname to set NAT subnet name for PSC v2.
    redpandaClusterServiceAccount GetClusterCustomerManagedResourcesGcpRedpandaClusterServiceAccount
    GCP service account.
    subnet GetClusterCustomerManagedResourcesGcpSubnet
    GCP subnet properties. See the official GCP API reference.
    tieredStorageBucket GetClusterCustomerManagedResourcesGcpTieredStorageBucket
    GCP storage bucket properties.
    agentServiceAccount GetClusterCustomerManagedResourcesGcpAgentServiceAccount
    GCP service account.
    connectorServiceAccount GetClusterCustomerManagedResourcesGcpConnectorServiceAccount
    GCP service account.
    consoleServiceAccount GetClusterCustomerManagedResourcesGcpConsoleServiceAccount
    GCP service account.
    gkeServiceAccount GetClusterCustomerManagedResourcesGcpGkeServiceAccount
    GCP service account.
    pscNatSubnetName string
    NAT subnet name if GCP Private Service Connect (a.k.a Private Link) is enabled. If it is used for PSC v1, use pscv2natsubnetname to set NAT subnet name for PSC v2.
    redpandaClusterServiceAccount GetClusterCustomerManagedResourcesGcpRedpandaClusterServiceAccount
    GCP service account.
    subnet GetClusterCustomerManagedResourcesGcpSubnet
    GCP subnet properties. See the official GCP API reference.
    tieredStorageBucket GetClusterCustomerManagedResourcesGcpTieredStorageBucket
    GCP storage bucket properties.
    agent_service_account GetClusterCustomerManagedResourcesGcpAgentServiceAccount
    GCP service account.
    connector_service_account GetClusterCustomerManagedResourcesGcpConnectorServiceAccount
    GCP service account.
    console_service_account GetClusterCustomerManagedResourcesGcpConsoleServiceAccount
    GCP service account.
    gke_service_account GetClusterCustomerManagedResourcesGcpGkeServiceAccount
    GCP service account.
    psc_nat_subnet_name str
    NAT subnet name if GCP Private Service Connect (a.k.a Private Link) is enabled. If it is used for PSC v1, use pscv2natsubnetname to set NAT subnet name for PSC v2.
    redpanda_cluster_service_account GetClusterCustomerManagedResourcesGcpRedpandaClusterServiceAccount
    GCP service account.
    subnet GetClusterCustomerManagedResourcesGcpSubnet
    GCP subnet properties. See the official GCP API reference.
    tiered_storage_bucket GetClusterCustomerManagedResourcesGcpTieredStorageBucket
    GCP storage bucket properties.
    agentServiceAccount Property Map
    GCP service account.
    connectorServiceAccount Property Map
    GCP service account.
    consoleServiceAccount Property Map
    GCP service account.
    gkeServiceAccount Property Map
    GCP service account.
    pscNatSubnetName String
    NAT subnet name if GCP Private Service Connect (a.k.a Private Link) is enabled. If it is used for PSC v1, use pscv2natsubnetname to set NAT subnet name for PSC v2.
    redpandaClusterServiceAccount Property Map
    GCP service account.
    subnet Property Map
    GCP subnet properties. See the official GCP API reference.
    tieredStorageBucket Property Map
    GCP storage bucket properties.

    GetClusterCustomerManagedResourcesGcpAgentServiceAccount

    Email string
    GCP service account email.
    Email string
    GCP service account email.
    email string
    GCP service account email.
    email String
    GCP service account email.
    email string
    GCP service account email.
    email str
    GCP service account email.
    email String
    GCP service account email.

    GetClusterCustomerManagedResourcesGcpConnectorServiceAccount

    Email string
    GCP service account email.
    Email string
    GCP service account email.
    email string
    GCP service account email.
    email String
    GCP service account email.
    email string
    GCP service account email.
    email str
    GCP service account email.
    email String
    GCP service account email.

    GetClusterCustomerManagedResourcesGcpConsoleServiceAccount

    Email string
    GCP service account email.
    Email string
    GCP service account email.
    email string
    GCP service account email.
    email String
    GCP service account email.
    email string
    GCP service account email.
    email str
    GCP service account email.
    email String
    GCP service account email.

    GetClusterCustomerManagedResourcesGcpGkeServiceAccount

    Email string
    GCP service account email.
    Email string
    GCP service account email.
    email string
    GCP service account email.
    email String
    GCP service account email.
    email string
    GCP service account email.
    email str
    GCP service account email.
    email String
    GCP service account email.

    GetClusterCustomerManagedResourcesGcpRedpandaClusterServiceAccount

    Email string
    GCP service account email.
    Email string
    GCP service account email.
    email string
    GCP service account email.
    email String
    GCP service account email.
    email string
    GCP service account email.
    email str
    GCP service account email.
    email String
    GCP service account email.

    GetClusterCustomerManagedResourcesGcpSubnet

    k8s_master_ipv4_range string
    Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
    name string
    Subnet name.
    secondary_ipv4_range_pods object
    Secondary IPv4 range.
    secondary_ipv4_range_services object
    Secondary IPv4 range.
    k8sMasterIpv4Range String
    Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
    name String
    Subnet name.
    secondaryIpv4RangePods Property Map
    Secondary IPv4 range.
    secondaryIpv4RangeServices Property Map
    Secondary IPv4 range.

    GetClusterCustomerManagedResourcesGcpSubnetSecondaryIpv4RangePods

    Name string
    Name of the secondary IPv4 Range Pods
    Name string
    Name of the secondary IPv4 Range Pods
    name string
    Name of the secondary IPv4 Range Pods
    name String
    Name of the secondary IPv4 Range Pods
    name string
    Name of the secondary IPv4 Range Pods
    name str
    Name of the secondary IPv4 Range Pods
    name String
    Name of the secondary IPv4 Range Pods

    GetClusterCustomerManagedResourcesGcpSubnetSecondaryIpv4RangeServices

    Name string
    Name of the secondary IPv4 Range Services
    Name string
    Name of the secondary IPv4 Range Services
    name string
    Name of the secondary IPv4 Range Services
    name String
    Name of the secondary IPv4 Range Services
    name string
    Name of the secondary IPv4 Range Services
    name str
    Name of the secondary IPv4 Range Services
    name String
    Name of the secondary IPv4 Range Services

    GetClusterCustomerManagedResourcesGcpTieredStorageBucket

    Name string
    Name of GCP storage bucket. See the official GCP documentation for naming restrictions.
    Name string
    Name of GCP storage bucket. See the official GCP documentation for naming restrictions.
    name string
    Name of GCP storage bucket. See the official GCP documentation for naming restrictions.
    name String
    Name of GCP storage bucket. See the official GCP documentation for naming restrictions.
    name string
    Name of GCP storage bucket. See the official GCP documentation for naming restrictions.
    name str
    Name of GCP storage bucket. See the official GCP documentation for naming restrictions.
    name String
    Name of GCP storage bucket. See the official GCP documentation for naming restrictions.

    GetClusterGcpPrivateServiceConnect

    ConsumerAcceptLists List<GetClusterGcpPrivateServiceConnectConsumerAcceptList>
    List of consumers that are allowed to connect to Redpanda GCP PSC (Private Service Connect) service attachment.
    Enabled bool
    Whether Redpanda GCP Private Service Connect is enabled.
    GlobalAccessEnabled bool
    Whether global access is enabled.
    Status GetClusterGcpPrivateServiceConnectStatus
    Status configuration
    ConsumerAcceptLists []GetClusterGcpPrivateServiceConnectConsumerAcceptList
    List of consumers that are allowed to connect to Redpanda GCP PSC (Private Service Connect) service attachment.
    Enabled bool
    Whether Redpanda GCP Private Service Connect is enabled.
    GlobalAccessEnabled bool
    Whether global access is enabled.
    Status GetClusterGcpPrivateServiceConnectStatus
    Status configuration
    consumer_accept_lists list(object)
    List of consumers that are allowed to connect to Redpanda GCP PSC (Private Service Connect) service attachment.
    enabled bool
    Whether Redpanda GCP Private Service Connect is enabled.
    global_access_enabled bool
    Whether global access is enabled.
    status object
    Status configuration
    consumerAcceptLists List<GetClusterGcpPrivateServiceConnectConsumerAcceptList>
    List of consumers that are allowed to connect to Redpanda GCP PSC (Private Service Connect) service attachment.
    enabled Boolean
    Whether Redpanda GCP Private Service Connect is enabled.
    globalAccessEnabled Boolean
    Whether global access is enabled.
    status GetClusterGcpPrivateServiceConnectStatus
    Status configuration
    consumerAcceptLists GetClusterGcpPrivateServiceConnectConsumerAcceptList[]
    List of consumers that are allowed to connect to Redpanda GCP PSC (Private Service Connect) service attachment.
    enabled boolean
    Whether Redpanda GCP Private Service Connect is enabled.
    globalAccessEnabled boolean
    Whether global access is enabled.
    status GetClusterGcpPrivateServiceConnectStatus
    Status configuration
    consumer_accept_lists Sequence[GetClusterGcpPrivateServiceConnectConsumerAcceptList]
    List of consumers that are allowed to connect to Redpanda GCP PSC (Private Service Connect) service attachment.
    enabled bool
    Whether Redpanda GCP Private Service Connect is enabled.
    global_access_enabled bool
    Whether global access is enabled.
    status GetClusterGcpPrivateServiceConnectStatus
    Status configuration
    consumerAcceptLists List<Property Map>
    List of consumers that are allowed to connect to Redpanda GCP PSC (Private Service Connect) service attachment.
    enabled Boolean
    Whether Redpanda GCP Private Service Connect is enabled.
    globalAccessEnabled Boolean
    Whether global access is enabled.
    status Property Map
    Status configuration

    GetClusterGcpPrivateServiceConnectConsumerAcceptList

    Source string
    Either the GCP project number or its alphanumeric ID.
    Source string
    Either the GCP project number or its alphanumeric ID.
    source string
    Either the GCP project number or its alphanumeric ID.
    source String
    Either the GCP project number or its alphanumeric ID.
    source string
    Either the GCP project number or its alphanumeric ID.
    source str
    Either the GCP project number or its alphanumeric ID.
    source String
    Either the GCP project number or its alphanumeric ID.

    GetClusterGcpPrivateServiceConnectStatus

    ConnectedEndpoints List<GetClusterGcpPrivateServiceConnectStatusConnectedEndpoint>
    List of VPC endpoints with established connections to GCP Private Service Connect.
    DnsARecords List<string>
    Customer-created DNS A records that point at the PSC endpoint on the consumer side.
    KafkaApiNodeBasePort double
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    KafkaApiSeedPort double
    Kafka API seed service port.
    RedpandaProxyNodeBasePort double
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    RedpandaProxySeedPort double
    HTTP Proxy seed service port.
    SchemaRegistrySeedPort double
    Schema Registry seed service port.
    SeedHostname string
    Hostname for clients to initiate connections to the APIs exposed through Private Service Connect.
    ServiceAttachment string
    Service attachment used by consumers to create endpoint connections to Redpanda GCP Private Service Connect service.
    ConnectedEndpoints []GetClusterGcpPrivateServiceConnectStatusConnectedEndpoint
    List of VPC endpoints with established connections to GCP Private Service Connect.
    DnsARecords []string
    Customer-created DNS A records that point at the PSC endpoint on the consumer side.
    KafkaApiNodeBasePort float64
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    KafkaApiSeedPort float64
    Kafka API seed service port.
    RedpandaProxyNodeBasePort float64
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    RedpandaProxySeedPort float64
    HTTP Proxy seed service port.
    SchemaRegistrySeedPort float64
    Schema Registry seed service port.
    SeedHostname string
    Hostname for clients to initiate connections to the APIs exposed through Private Service Connect.
    ServiceAttachment string
    Service attachment used by consumers to create endpoint connections to Redpanda GCP Private Service Connect service.
    connected_endpoints list(object)
    List of VPC endpoints with established connections to GCP Private Service Connect.
    dns_a_records list(string)
    Customer-created DNS A records that point at the PSC endpoint on the consumer side.
    kafka_api_node_base_port number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafka_api_seed_port number
    Kafka API seed service port.
    redpanda_proxy_node_base_port number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpanda_proxy_seed_port number
    HTTP Proxy seed service port.
    schema_registry_seed_port number
    Schema Registry seed service port.
    seed_hostname string
    Hostname for clients to initiate connections to the APIs exposed through Private Service Connect.
    service_attachment string
    Service attachment used by consumers to create endpoint connections to Redpanda GCP Private Service Connect service.
    connectedEndpoints List<GetClusterGcpPrivateServiceConnectStatusConnectedEndpoint>
    List of VPC endpoints with established connections to GCP Private Service Connect.
    dnsARecords List<String>
    Customer-created DNS A records that point at the PSC endpoint on the consumer side.
    kafkaApiNodeBasePort Double
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort Double
    Kafka API seed service port.
    redpandaProxyNodeBasePort Double
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort Double
    HTTP Proxy seed service port.
    schemaRegistrySeedPort Double
    Schema Registry seed service port.
    seedHostname String
    Hostname for clients to initiate connections to the APIs exposed through Private Service Connect.
    serviceAttachment String
    Service attachment used by consumers to create endpoint connections to Redpanda GCP Private Service Connect service.
    connectedEndpoints GetClusterGcpPrivateServiceConnectStatusConnectedEndpoint[]
    List of VPC endpoints with established connections to GCP Private Service Connect.
    dnsARecords string[]
    Customer-created DNS A records that point at the PSC endpoint on the consumer side.
    kafkaApiNodeBasePort number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort number
    Kafka API seed service port.
    redpandaProxyNodeBasePort number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort number
    HTTP Proxy seed service port.
    schemaRegistrySeedPort number
    Schema Registry seed service port.
    seedHostname string
    Hostname for clients to initiate connections to the APIs exposed through Private Service Connect.
    serviceAttachment string
    Service attachment used by consumers to create endpoint connections to Redpanda GCP Private Service Connect service.
    connected_endpoints Sequence[GetClusterGcpPrivateServiceConnectStatusConnectedEndpoint]
    List of VPC endpoints with established connections to GCP Private Service Connect.
    dns_a_records Sequence[str]
    Customer-created DNS A records that point at the PSC endpoint on the consumer side.
    kafka_api_node_base_port float
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafka_api_seed_port float
    Kafka API seed service port.
    redpanda_proxy_node_base_port float
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpanda_proxy_seed_port float
    HTTP Proxy seed service port.
    schema_registry_seed_port float
    Schema Registry seed service port.
    seed_hostname str
    Hostname for clients to initiate connections to the APIs exposed through Private Service Connect.
    service_attachment str
    Service attachment used by consumers to create endpoint connections to Redpanda GCP Private Service Connect service.
    connectedEndpoints List<Property Map>
    List of VPC endpoints with established connections to GCP Private Service Connect.
    dnsARecords List<String>
    Customer-created DNS A records that point at the PSC endpoint on the consumer side.
    kafkaApiNodeBasePort Number
    Kafka API node service base port. The port for node i (0 .. nodecount-1) is kafkaapinodebase_port + i.
    kafkaApiSeedPort Number
    Kafka API seed service port.
    redpandaProxyNodeBasePort Number
    HTTP Proxy node service base port. The port for node i (0 .. nodecount-1) is redpandaproxynodebase_port + i.
    redpandaProxySeedPort Number
    HTTP Proxy seed service port.
    schemaRegistrySeedPort Number
    Schema Registry seed service port.
    seedHostname String
    Hostname for clients to initiate connections to the APIs exposed through Private Service Connect.
    serviceAttachment String
    Service attachment used by consumers to create endpoint connections to Redpanda GCP Private Service Connect service.

    GetClusterGcpPrivateServiceConnectStatusConnectedEndpoint

    ConnectionId string
    Connection ID of the endpoint.
    ConsumerNetwork string
    Network of the consumer connecting to Redpanda GCP Private Service Connect service. See the official GCP documentation for Private Service Connect.
    Endpoint string
    Connection endpoint. See the official GCP API reference for Private Service Connect.
    Status string
    ConnectionId string
    Connection ID of the endpoint.
    ConsumerNetwork string
    Network of the consumer connecting to Redpanda GCP Private Service Connect service. See the official GCP documentation for Private Service Connect.
    Endpoint string
    Connection endpoint. See the official GCP API reference for Private Service Connect.
    Status string
    connection_id string
    Connection ID of the endpoint.
    consumer_network string
    Network of the consumer connecting to Redpanda GCP Private Service Connect service. See the official GCP documentation for Private Service Connect.
    endpoint string
    Connection endpoint. See the official GCP API reference for Private Service Connect.
    status string
    connectionId String
    Connection ID of the endpoint.
    consumerNetwork String
    Network of the consumer connecting to Redpanda GCP Private Service Connect service. See the official GCP documentation for Private Service Connect.
    endpoint String
    Connection endpoint. See the official GCP API reference for Private Service Connect.
    status String
    connectionId string
    Connection ID of the endpoint.
    consumerNetwork string
    Network of the consumer connecting to Redpanda GCP Private Service Connect service. See the official GCP documentation for Private Service Connect.
    endpoint string
    Connection endpoint. See the official GCP API reference for Private Service Connect.
    status string
    connection_id str
    Connection ID of the endpoint.
    consumer_network str
    Network of the consumer connecting to Redpanda GCP Private Service Connect service. See the official GCP documentation for Private Service Connect.
    endpoint str
    Connection endpoint. See the official GCP API reference for Private Service Connect.
    status str
    connectionId String
    Connection ID of the endpoint.
    consumerNetwork String
    Network of the consumer connecting to Redpanda GCP Private Service Connect service. See the official GCP documentation for Private Service Connect.
    endpoint String
    Connection endpoint. See the official GCP API reference for Private Service Connect.
    status String

    GetClusterHttpProxy

    AllUrls GetClusterHttpProxyAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    Mtls GetClusterHttpProxyMtls
    mTLS configuration.
    Sasl GetClusterHttpProxySasl
    SASL configuration
    Url string
    HTTP Proxy URL of cluster.
    AllUrls GetClusterHttpProxyAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    Mtls GetClusterHttpProxyMtls
    mTLS configuration.
    Sasl GetClusterHttpProxySasl
    SASL configuration
    Url string
    HTTP Proxy URL of cluster.
    all_urls object
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls object
    mTLS configuration.
    sasl object
    SASL configuration
    url string
    HTTP Proxy URL of cluster.
    allUrls GetClusterHttpProxyAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls GetClusterHttpProxyMtls
    mTLS configuration.
    sasl GetClusterHttpProxySasl
    SASL configuration
    url String
    HTTP Proxy URL of cluster.
    allUrls GetClusterHttpProxyAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls GetClusterHttpProxyMtls
    mTLS configuration.
    sasl GetClusterHttpProxySasl
    SASL configuration
    url string
    HTTP Proxy URL of cluster.
    all_urls GetClusterHttpProxyAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls GetClusterHttpProxyMtls
    mTLS configuration.
    sasl GetClusterHttpProxySasl
    SASL configuration
    url str
    HTTP Proxy URL of cluster.
    allUrls Property Map
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls Property Map
    mTLS configuration.
    sasl Property Map
    SASL configuration
    url String
    HTTP Proxy URL of cluster.

    GetClusterHttpProxyAllUrls

    Mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    PrivateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    PrivateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    Sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    Mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    PrivateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    PrivateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    Sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    private_link_mtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    private_link_sasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls String
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls String
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl String
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl String
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls str
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    private_link_mtls str
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    private_link_sasl str
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl str
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls String
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls String
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl String
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl String
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.

    GetClusterHttpProxyMtls

    CaCertificatesPems List<string>
    CA certificate in PEM format.
    Enabled bool
    Whether mTLS is enabled.
    PrincipalMappingRules List<string>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    CaCertificatesPems []string
    CA certificate in PEM format.
    Enabled bool
    Whether mTLS is enabled.
    PrincipalMappingRules []string
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    ca_certificates_pems list(string)
    CA certificate in PEM format.
    enabled bool
    Whether mTLS is enabled.
    principal_mapping_rules list(string)
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems List<String>
    CA certificate in PEM format.
    enabled Boolean
    Whether mTLS is enabled.
    principalMappingRules List<String>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems string[]
    CA certificate in PEM format.
    enabled boolean
    Whether mTLS is enabled.
    principalMappingRules string[]
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    ca_certificates_pems Sequence[str]
    CA certificate in PEM format.
    enabled bool
    Whether mTLS is enabled.
    principal_mapping_rules Sequence[str]
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems List<String>
    CA certificate in PEM format.
    enabled Boolean
    Whether mTLS is enabled.
    principalMappingRules List<String>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.

    GetClusterHttpProxySasl

    Enabled bool
    Whether SASL is enabled.
    Enabled bool
    Whether SASL is enabled.
    enabled bool
    Whether SASL is enabled.
    enabled Boolean
    Whether SASL is enabled.
    enabled boolean
    Whether SASL is enabled.
    enabled bool
    Whether SASL is enabled.
    enabled Boolean
    Whether SASL is enabled.

    GetClusterKafkaApi

    AllSeedBrokers GetClusterKafkaApiAllSeedBrokers
    Seed brokers of Redpanda Kafka API.
    Mtls GetClusterKafkaApiMtls
    mTLS configuration.
    Sasl GetClusterKafkaApiSasl
    SASL configuration
    SeedBrokers List<string>
    Kafka API Seed Brokers (also known as Bootstrap servers).
    AllSeedBrokers GetClusterKafkaApiAllSeedBrokers
    Seed brokers of Redpanda Kafka API.
    Mtls GetClusterKafkaApiMtls
    mTLS configuration.
    Sasl GetClusterKafkaApiSasl
    SASL configuration
    SeedBrokers []string
    Kafka API Seed Brokers (also known as Bootstrap servers).
    all_seed_brokers object
    Seed brokers of Redpanda Kafka API.
    mtls object
    mTLS configuration.
    sasl object
    SASL configuration
    seed_brokers list(string)
    Kafka API Seed Brokers (also known as Bootstrap servers).
    allSeedBrokers GetClusterKafkaApiAllSeedBrokers
    Seed brokers of Redpanda Kafka API.
    mtls GetClusterKafkaApiMtls
    mTLS configuration.
    sasl GetClusterKafkaApiSasl
    SASL configuration
    seedBrokers List<String>
    Kafka API Seed Brokers (also known as Bootstrap servers).
    allSeedBrokers GetClusterKafkaApiAllSeedBrokers
    Seed brokers of Redpanda Kafka API.
    mtls GetClusterKafkaApiMtls
    mTLS configuration.
    sasl GetClusterKafkaApiSasl
    SASL configuration
    seedBrokers string[]
    Kafka API Seed Brokers (also known as Bootstrap servers).
    all_seed_brokers GetClusterKafkaApiAllSeedBrokers
    Seed brokers of Redpanda Kafka API.
    mtls GetClusterKafkaApiMtls
    mTLS configuration.
    sasl GetClusterKafkaApiSasl
    SASL configuration
    seed_brokers Sequence[str]
    Kafka API Seed Brokers (also known as Bootstrap servers).
    allSeedBrokers Property Map
    Seed brokers of Redpanda Kafka API.
    mtls Property Map
    mTLS configuration.
    sasl Property Map
    SASL configuration
    seedBrokers List<String>
    Kafka API Seed Brokers (also known as Bootstrap servers).

    GetClusterKafkaApiAllSeedBrokers

    Mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    PrivateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    PrivateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    Sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    Mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    PrivateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    PrivateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    Sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    private_link_mtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    private_link_sasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls String
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls String
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl String
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl String
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls str
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    private_link_mtls str
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    private_link_sasl str
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl str
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls String
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls String
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl String
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl String
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.

    GetClusterKafkaApiMtls

    CaCertificatesPems List<string>
    CA certificate in PEM format.
    Enabled bool
    Whether mTLS is enabled.
    PrincipalMappingRules List<string>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    CaCertificatesPems []string
    CA certificate in PEM format.
    Enabled bool
    Whether mTLS is enabled.
    PrincipalMappingRules []string
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    ca_certificates_pems list(string)
    CA certificate in PEM format.
    enabled bool
    Whether mTLS is enabled.
    principal_mapping_rules list(string)
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems List<String>
    CA certificate in PEM format.
    enabled Boolean
    Whether mTLS is enabled.
    principalMappingRules List<String>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems string[]
    CA certificate in PEM format.
    enabled boolean
    Whether mTLS is enabled.
    principalMappingRules string[]
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    ca_certificates_pems Sequence[str]
    CA certificate in PEM format.
    enabled bool
    Whether mTLS is enabled.
    principal_mapping_rules Sequence[str]
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems List<String>
    CA certificate in PEM format.
    enabled Boolean
    Whether mTLS is enabled.
    principalMappingRules List<String>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.

    GetClusterKafkaApiSasl

    Enabled bool
    Whether SASL is enabled.
    Enabled bool
    Whether SASL is enabled.
    enabled bool
    Whether SASL is enabled.
    enabled Boolean
    Whether SASL is enabled.
    enabled boolean
    Whether SASL is enabled.
    enabled bool
    Whether SASL is enabled.
    enabled Boolean
    Whether SASL is enabled.

    GetClusterKafkaConnect

    Enabled bool
    Whether Kafka Connect is enabled
    Enabled bool
    Whether Kafka Connect is enabled
    enabled bool
    Whether Kafka Connect is enabled
    enabled Boolean
    Whether Kafka Connect is enabled
    enabled boolean
    Whether Kafka Connect is enabled
    enabled bool
    Whether Kafka Connect is enabled
    enabled Boolean
    Whether Kafka Connect is enabled

    GetClusterMaintenanceWindowConfig

    Anytime bool
    Anytime configuration
    DayHour GetClusterMaintenanceWindowConfigDayHour
    Day Hour configuration
    Unspecified bool
    Unspecified configuration
    Anytime bool
    Anytime configuration
    DayHour GetClusterMaintenanceWindowConfigDayHour
    Day Hour configuration
    Unspecified bool
    Unspecified configuration
    anytime bool
    Anytime configuration
    day_hour object
    Day Hour configuration
    unspecified bool
    Unspecified configuration
    anytime Boolean
    Anytime configuration
    dayHour GetClusterMaintenanceWindowConfigDayHour
    Day Hour configuration
    unspecified Boolean
    Unspecified configuration
    anytime boolean
    Anytime configuration
    dayHour GetClusterMaintenanceWindowConfigDayHour
    Day Hour configuration
    unspecified boolean
    Unspecified configuration
    anytime bool
    Anytime configuration
    day_hour GetClusterMaintenanceWindowConfigDayHour
    Day Hour configuration
    unspecified bool
    Unspecified configuration
    anytime Boolean
    Anytime configuration
    dayHour Property Map
    Day Hour configuration
    unspecified Boolean
    Unspecified configuration

    GetClusterMaintenanceWindowConfigDayHour

    DayOfWeek string
    Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
    HourOfDay double
    always UTC
    DayOfWeek string
    Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
    HourOfDay float64
    always UTC
    day_of_week string
    Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
    hour_of_day number
    always UTC
    dayOfWeek String
    Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
    hourOfDay Double
    always UTC
    dayOfWeek string
    Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
    hourOfDay number
    always UTC
    day_of_week str
    Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
    hour_of_day float
    always UTC
    dayOfWeek String
    Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
    hourOfDay Number
    always UTC

    GetClusterPrometheus

    Url string
    Prometheus API URL.
    Url string
    Prometheus API URL.
    url string
    Prometheus API URL.
    url String
    Prometheus API URL.
    url string
    Prometheus API URL.
    url str
    Prometheus API URL.
    url String
    Prometheus API URL.

    GetClusterRedpandaConsole

    Url string
    Redpanda Console API URL.
    Url string
    Redpanda Console API URL.
    url string
    Redpanda Console API URL.
    url String
    Redpanda Console API URL.
    url string
    Redpanda Console API URL.
    url str
    Redpanda Console API URL.
    url String
    Redpanda Console API URL.

    GetClusterSchemaRegistry

    AllUrls GetClusterSchemaRegistryAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    Mtls GetClusterSchemaRegistryMtls
    mTLS configuration.
    Url string
    Schema Registry URL.
    AllUrls GetClusterSchemaRegistryAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    Mtls GetClusterSchemaRegistryMtls
    mTLS configuration.
    Url string
    Schema Registry URL.
    all_urls object
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls object
    mTLS configuration.
    url string
    Schema Registry URL.
    allUrls GetClusterSchemaRegistryAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls GetClusterSchemaRegistryMtls
    mTLS configuration.
    url String
    Schema Registry URL.
    allUrls GetClusterSchemaRegistryAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls GetClusterSchemaRegistryMtls
    mTLS configuration.
    url string
    Schema Registry URL.
    all_urls GetClusterSchemaRegistryAllUrls
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls GetClusterSchemaRegistryMtls
    mTLS configuration.
    url str
    Schema Registry URL.
    allUrls Property Map
    The endpoints of Redpanda HTTP Proxy or Schema Registry.
    mtls Property Map
    mTLS configuration.
    url String
    Schema Registry URL.

    GetClusterSchemaRegistryAllUrls

    Mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    PrivateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    PrivateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    Sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    Mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    PrivateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    PrivateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    Sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    private_link_mtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    private_link_sasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls String
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls String
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl String
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl String
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls string
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls string
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl string
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl string
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls str
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    private_link_mtls str
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    private_link_sasl str
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl str
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.
    mtls String
    URL of the seed broker for mTLS. If mTLS is not enabled, the field is empty.
    privateLinkMtls String
    URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
    privateLinkSasl String
    URL of the seed broker for private link with SASL. If private link with SASL is not enabled, the field is empty.
    sasl String
    URL of the seed broker for SASL. If SASL is not enabled, the field is empty.

    GetClusterSchemaRegistryMtls

    CaCertificatesPems List<string>
    CA certificate in PEM format.
    Enabled bool
    Whether mTLS is enabled.
    PrincipalMappingRules List<string>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    CaCertificatesPems []string
    CA certificate in PEM format.
    Enabled bool
    Whether mTLS is enabled.
    PrincipalMappingRules []string
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    ca_certificates_pems list(string)
    CA certificate in PEM format.
    enabled bool
    Whether mTLS is enabled.
    principal_mapping_rules list(string)
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems List<String>
    CA certificate in PEM format.
    enabled Boolean
    Whether mTLS is enabled.
    principalMappingRules List<String>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems string[]
    CA certificate in PEM format.
    enabled boolean
    Whether mTLS is enabled.
    principalMappingRules string[]
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    ca_certificates_pems Sequence[str]
    CA certificate in PEM format.
    enabled bool
    Whether mTLS is enabled.
    principal_mapping_rules Sequence[str]
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
    caCertificatesPems List<String>
    CA certificate in PEM format.
    enabled Boolean
    Whether mTLS is enabled.
    principalMappingRules List<String>
    Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.

    GetClusterStateDescription

    Code double
    RPC status code, as described here.
    Message string
    Detailed error message. No compatibility guarantees are given for the text contained in this message.
    Code float64
    RPC status code, as described here.
    Message string
    Detailed error message. No compatibility guarantees are given for the text contained in this message.
    code number
    RPC status code, as described here.
    message string
    Detailed error message. No compatibility guarantees are given for the text contained in this message.
    code Double
    RPC status code, as described here.
    message String
    Detailed error message. No compatibility guarantees are given for the text contained in this message.
    code number
    RPC status code, as described here.
    message string
    Detailed error message. No compatibility guarantees are given for the text contained in this message.
    code float
    RPC status code, as described here.
    message str
    Detailed error message. No compatibility guarantees are given for the text contained in this message.
    code Number
    RPC status code, as described here.
    message String
    Detailed error message. No compatibility guarantees are given for the text contained in this message.

    GetClusterTimeouts

    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Package Details

    Repository
    redpanda redpanda-data/terraform-provider-redpanda
    License
    Notes
    This Pulumi package is based on the redpanda Terraform Provider.
    Viewing docs for redpanda 2.0.0
    published on Wednesday, Jun 3, 2026 by redpanda-data

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial