Viewing docs for redpanda 2.0.0
published on Wednesday, Jun 3, 2026 by redpanda-data
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
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 dictionarydata "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
Get
Cluster Timeouts
- Id string
- ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
- Timeouts
Get
Cluster Timeouts
- id String
- ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
- timeouts
Get
Cluster Timeouts
- id string
- ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
- timeouts
Get
Cluster Timeouts
- id str
- ID of the cluster. ID is an output from the Create Cluster endpoint and cannot be set by the caller.
- timeouts
Get
Cluster Timeouts
- 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:
- 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 GetLink Cluster Aws Private Link - AWS Private Link configuration
- Azure
Private GetLink Cluster Azure Private Link - Azure Private Link configuration
- Cloud
Provider string - Cloud provider where resources are created.
- Cluster
Api stringUrl - The cluster API URL.
- Cluster
Configuration GetCluster Cluster Configuration - 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 GetResources Cluster Customer Managed Resources - The cloud resources created by user.
- Gcp
Global boolAccess Api Gateway Enabled - 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 boolAccess Enabled - gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
- Gcp
Private GetService Connect Cluster Gcp Private Service Connect - GCP Private Service Connect configuration
- Http
Proxy GetCluster Http Proxy - 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 GetCluster Kafka Api - Cluster's Kafka API properties.
- Kafka
Connect GetCluster Kafka Connect - Kafka Connect configuration
- Maintenance
Window GetConfig Cluster Maintenance Window Config - 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
Get
Cluster Prometheus - Prometheus metrics endpoint properties.
- Read
Replica List<string>Cluster Ids - IDs of clusters which may create read-only topics from this cluster.
- Redpanda
Console GetCluster Redpanda Console - 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 stringId - Resource group ID of the cluster.
- Schema
Registry GetCluster Schema Registry - Cluster's Schema Registry properties.
- State string
- State describes the state of the cluster.
- State
Description GetCluster State Description - Describes errors
- Dictionary<string, 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
Get
Cluster Timeouts
- 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 GetLink Cluster Aws Private Link - AWS Private Link configuration
- Azure
Private GetLink Cluster Azure Private Link - Azure Private Link configuration
- Cloud
Provider string - Cloud provider where resources are created.
- Cluster
Api stringUrl - The cluster API URL.
- Cluster
Configuration GetCluster Cluster Configuration - 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 GetResources Cluster Customer Managed Resources - The cloud resources created by user.
- Gcp
Global boolAccess Api Gateway Enabled - 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 boolAccess Enabled - gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
- Gcp
Private GetService Connect Cluster Gcp Private Service Connect - GCP Private Service Connect configuration
- Http
Proxy GetCluster Http Proxy - 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 GetCluster Kafka Api - Cluster's Kafka API properties.
- Kafka
Connect GetCluster Kafka Connect - Kafka Connect configuration
- Maintenance
Window GetConfig Cluster Maintenance Window Config - 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
Get
Cluster Prometheus - Prometheus metrics endpoint properties.
- Read
Replica []stringCluster Ids - IDs of clusters which may create read-only topics from this cluster.
- Redpanda
Console GetCluster Redpanda Console - 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 stringId - Resource group ID of the cluster.
- Schema
Registry GetCluster Schema Registry - Cluster's Schema Registry properties.
- State string
- State describes the state of the cluster.
- State
Description GetCluster State Description - Describes errors
- map[string]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 []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
Get
Cluster Timeouts
- 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_ objectlink - AWS Private Link configuration
- azure_
private_ objectlink - Azure Private Link configuration
- cloud_
provider string - Cloud provider where resources are created.
- cluster_
api_ stringurl - 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_ objectresources - The cloud resources created by user.
- gcp_
global_ boolaccess_ api_ gateway_ enabled - 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_ boolaccess_ enabled - gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
- gcp_
private_ objectservice_ connect - 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_ objectconfig - 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_ list(string)cluster_ ids - 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_ stringid - 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
- 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
- allow
Deletion Boolean - Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
- aws
Private GetLink Cluster Aws Private Link - AWS Private Link configuration
- azure
Private GetLink Cluster Azure Private Link - Azure Private Link configuration
- cloud
Provider String - Cloud provider where resources are created.
- cluster
Api StringUrl - The cluster API URL.
- cluster
Configuration GetCluster Cluster Configuration - 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 GetResources Cluster Customer Managed Resources - The cloud resources created by user.
- gcp
Global BooleanAccess Api Gateway Enabled - 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 BooleanAccess Enabled - gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
- gcp
Private GetService Connect Cluster Gcp Private Service Connect - GCP Private Service Connect configuration
- http
Proxy GetCluster Http Proxy - 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 GetCluster Kafka Api - Cluster's Kafka API properties.
- kafka
Connect GetCluster Kafka Connect - Kafka Connect configuration
- maintenance
Window GetConfig Cluster Maintenance Window Config - 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
Get
Cluster Prometheus - Prometheus metrics endpoint properties.
- read
Replica List<String>Cluster Ids - IDs of clusters which may create read-only topics from this cluster.
- redpanda
Console GetCluster Redpanda Console - 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 StringId - Resource group ID of the cluster.
- schema
Registry GetCluster Schema Registry - Cluster's Schema Registry properties.
- state String
- State describes the state of the cluster.
- state
Description GetCluster State Description - Describes errors
- Map<String,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
Get
Cluster Timeouts
- allow
Deletion boolean - Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
- aws
Private GetLink Cluster Aws Private Link - AWS Private Link configuration
- azure
Private GetLink Cluster Azure Private Link - Azure Private Link configuration
- cloud
Provider string - Cloud provider where resources are created.
- cluster
Api stringUrl - The cluster API URL.
- cluster
Configuration GetCluster Cluster Configuration - 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 GetResources Cluster Customer Managed Resources - The cloud resources created by user.
- gcp
Global booleanAccess Api Gateway Enabled - 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 booleanAccess Enabled - gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
- gcp
Private GetService Connect Cluster Gcp Private Service Connect - GCP Private Service Connect configuration
- http
Proxy GetCluster Http Proxy - 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 GetCluster Kafka Api - Cluster's Kafka API properties.
- kafka
Connect GetCluster Kafka Connect - Kafka Connect configuration
- maintenance
Window GetConfig Cluster Maintenance Window Config - 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
Get
Cluster Prometheus - Prometheus metrics endpoint properties.
- read
Replica string[]Cluster Ids - IDs of clusters which may create read-only topics from this cluster.
- redpanda
Console GetCluster Redpanda Console - 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 stringId - Resource group ID of the cluster.
- schema
Registry GetCluster Schema Registry - Cluster's Schema Registry properties.
- state string
- State describes the state of the cluster.
- state
Description GetCluster State Description - Describes errors
- {[key: string]: 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 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
Get
Cluster Timeouts
- 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_ Getlink Cluster Aws Private Link - AWS Private Link configuration
- azure_
private_ Getlink Cluster Azure Private Link - Azure Private Link configuration
- cloud_
provider str - Cloud provider where resources are created.
- cluster_
api_ strurl - The cluster API URL.
- cluster_
configuration GetCluster Cluster Configuration - 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_ Getresources Cluster Customer Managed Resources - The cloud resources created by user.
- gcp_
global_ boolaccess_ api_ gateway_ enabled - 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_ boolaccess_ enabled - gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
- gcp_
private_ Getservice_ connect Cluster Gcp Private Service Connect - GCP Private Service Connect configuration
- http_
proxy GetCluster Http Proxy - 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 GetCluster Kafka Api - Cluster's Kafka API properties.
- kafka_
connect GetCluster Kafka Connect - Kafka Connect configuration
- maintenance_
window_ Getconfig Cluster Maintenance Window Config - 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
Get
Cluster Prometheus - Prometheus metrics endpoint properties.
- read_
replica_ Sequence[str]cluster_ ids - IDs of clusters which may create read-only topics from this cluster.
- redpanda_
console GetCluster Redpanda Console - 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_ strid - Resource group ID of the cluster.
- schema_
registry GetCluster Schema Registry - Cluster's Schema Registry properties.
- state str
- State describes the state of the cluster.
- state_
description GetCluster State Description - Describes errors
- 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
Get
Cluster Timeouts
- allow
Deletion Boolean - Resource will only be deleted when allow_deletion is set to true. Otherwise deletion will fail with a related error.
- aws
Private Property MapLink - AWS Private Link configuration
- azure
Private Property MapLink - Azure Private Link configuration
- cloud
Provider String - Cloud provider where resources are created.
- cluster
Api StringUrl - The cluster API URL.
- cluster
Configuration Property Map - 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 Property MapResources - The cloud resources created by user.
- gcp
Global BooleanAccess Api Gateway Enabled - 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 BooleanAccess Enabled - gcpenableglobal_access control if global access is enabled on the seed load balancer, applicable only for GCP. Default is false
- gcp
Private Property MapService Connect - GCP Private Service Connect configuration
- http
Proxy 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.
- kafka
Api Property Map - Cluster's Kafka API properties.
- kafka
Connect Property Map - Kafka Connect configuration
- maintenance
Window Property MapConfig - 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 Property Map
- Prometheus metrics endpoint properties.
- read
Replica List<String>Cluster Ids - IDs of clusters which may create read-only topics from this cluster.
- redpanda
Console Property Map - 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 StringId - Resource group ID of the cluster.
- schema
Registry Property Map - Cluster's Schema Registry properties.
- state String
- State describes the state of the cluster.
- state
Description Property Map - Describes errors
- 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 Property Map
Supporting Types
GetClusterAwsPrivateLink
- 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
Get
Cluster Aws Private Link Status - Status configuration
- Supported
Regions List<string> - List of supported regions in cross-region AWS PrivateLink.
- Allowed
Principals []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
Get
Cluster Aws Private Link Status - Status configuration
- Supported
Regions []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.
- 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 Boolean - Whether Console is connected in Redpanda AWS Private Link Service.
- enabled Boolean
- Whether Redpanda AWS Private Link Endpoint Service is enabled.
- status
Get
Cluster Aws Private Link Status - Status configuration
- supported
Regions List<String> - List of supported regions in cross-region AWS PrivateLink.
- allowed
Principals 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 boolean - Whether Console is connected in Redpanda AWS Private Link Service.
- enabled boolean
- Whether Redpanda AWS Private Link Endpoint Service is enabled.
- status
Get
Cluster Aws Private Link Status - Status configuration
- supported
Regions 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
Get
Cluster Aws Private Link Status - Status configuration
- supported_
regions Sequence[str] - 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 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
- supported
Regions List<String> - List of supported regions in cross-region AWS PrivateLink.
GetClusterAwsPrivateLinkStatus
- Console
Port double - The port of Redpanda Console.
- Kafka
Api doubleNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - Kafka
Api doubleSeed Port - Kafka API seed service port.
- Redpanda
Proxy doubleNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - Redpanda
Proxy doubleSeed Port - HTTP Proxy seed service port.
- Schema
Registry doubleSeed Port - 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 List<GetConnections Cluster Aws Private Link Status Vpc Endpoint Connection> - List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
- Console
Port float64 - The port of Redpanda Console.
- Kafka
Api float64Node Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - Kafka
Api float64Seed Port - Kafka API seed service port.
- Redpanda
Proxy float64Node Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - Redpanda
Proxy float64Seed Port - HTTP Proxy seed service port.
- Schema
Registry float64Seed Port - 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 []GetConnections Cluster Aws Private Link Status Vpc Endpoint Connection - List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
- console_
port number - The port of Redpanda Console.
- kafka_
api_ numbernode_ base_ port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka_
api_ numberseed_ port - Kafka API seed service port.
- redpanda_
proxy_ numbernode_ base_ port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda_
proxy_ numberseed_ port - HTTP Proxy seed service port.
- schema_
registry_ numberseed_ port - 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_ list(object)connections - List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
- console
Port Double - The port of Redpanda Console.
- kafka
Api DoubleNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api DoubleSeed Port - Kafka API seed service port.
- redpanda
Proxy DoubleNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda
Proxy DoubleSeed Port - HTTP Proxy seed service port.
- schema
Registry DoubleSeed Port - 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 List<GetConnections Cluster Aws Private Link Status Vpc Endpoint Connection> - List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
- console
Port number - The port of Redpanda Console.
- kafka
Api numberNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api numberSeed Port - Kafka API seed service port.
- redpanda
Proxy numberNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda
Proxy numberSeed Port - HTTP Proxy seed service port.
- schema
Registry numberSeed Port - 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 GetConnections Cluster Aws Private Link Status Vpc Endpoint Connection[] - List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
- console_
port float - The port of Redpanda Console.
- kafka_
api_ floatnode_ base_ port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka_
api_ floatseed_ port - Kafka API seed service port.
- redpanda_
proxy_ floatnode_ base_ port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda_
proxy_ floatseed_ port - HTTP Proxy seed service port.
- schema_
registry_ floatseed_ port - 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_ Sequence[Getconnections Cluster Aws Private Link Status Vpc Endpoint Connection] - List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
- console
Port Number - The port of Redpanda Console.
- kafka
Api NumberNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api NumberSeed Port - Kafka API seed service port.
- redpanda
Proxy NumberNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda
Proxy NumberSeed Port - HTTP Proxy seed service port.
- schema
Registry NumberSeed Port - 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 List<Property Map>Connections - List of VPC endpoints with established connections to Redpanda AWS PrivateLink Endpoint Service.
GetClusterAwsPrivateLinkStatusVpcEndpointConnection
- Connection
Id string - Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- Dns
Entries List<GetCluster Aws Private Link Status Vpc Endpoint Connection Dns Entry> - The list of DNS entries associated with VPC endpoint.
- Id string
- The ID of VPC endpoint.
- Load
Balancer List<string>Arns - 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 []GetCluster Aws Private Link Status Vpc Endpoint Connection Dns Entry - The list of DNS entries associated with VPC endpoint.
- Id string
- The ID of VPC endpoint.
- Load
Balancer []stringArns - 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_ list(string)arns - 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<GetCluster Aws Private Link Status Vpc Endpoint Connection Dns Entry> - The list of DNS entries associated with VPC endpoint.
- id String
- The ID of VPC endpoint.
- load
Balancer List<String>Arns - 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 GetCluster Aws Private Link Status Vpc Endpoint Connection Dns Entry[] - The list of DNS entries associated with VPC endpoint.
- id string
- The ID of VPC endpoint.
- load
Balancer string[]Arns - 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[GetCluster Aws Private Link Status Vpc Endpoint Connection Dns Entry] - The list of DNS entries associated with VPC endpoint.
- id str
- The ID of VPC endpoint.
- load_
balancer_ Sequence[str]arns - 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.
- connection
Id String - Connection ID of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- dns
Entries List<Property Map> - The list of DNS entries associated with VPC endpoint.
- id String
- The ID of VPC endpoint.
- load
Balancer List<String>Arns - 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
- Dns
Name string - DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- Hosted
Zone stringId - The ID of Route53 DNS zone.
- Dns
Name string - DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- Hosted
Zone stringId - The ID of Route53 DNS zone.
- dns_
name string - DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- hosted_
zone_ stringid - The ID of Route53 DNS zone.
- dns
Name String - DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- hosted
Zone StringId - The ID of Route53 DNS zone.
- dns
Name string - DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- hosted
Zone stringId - The ID of Route53 DNS zone.
- dns_
name str - DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- hosted_
zone_ strid - The ID of Route53 DNS zone.
- dns
Name String - DNS entry of VPC endpoint connected to Redpanda AWS PrivateLink Endpoint Service.
- hosted
Zone StringId - The ID of Route53 DNS zone.
GetClusterAzurePrivateLink
- 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
Get
Cluster Azure Private Link Status - Status configuration
- Allowed
Subscriptions []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
Get
Cluster Azure Private Link Status - 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
- 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 Boolean - Whether Console is connected in Redpanda Azure Private Link Service.
- enabled Boolean
- Whether Redpanda AWS Private Link Endpoint Service is enabled.
- status
Get
Cluster Azure Private Link Status - Status configuration
- allowed
Subscriptions string[] - The subscriptions that can access the Redpanda Azure PrivateLink Endpoint Service. To grant permissions to all principals, use an asterisk (*).
- connect
Console boolean - Whether Console is connected in Redpanda Azure Private Link Service.
- enabled boolean
- Whether Redpanda AWS Private Link Endpoint Service is enabled.
- status
Get
Cluster Azure Private Link Status - 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
Get
Cluster Azure Private Link Status - 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 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
- Approved
Subscriptions List<string> - These are the approved subscriptions on the private link
- Console
Port double - The port of Redpanda Console.
- Dns
ARecord string - dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
- Kafka
Api doubleNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - Kafka
Api doubleSeed Port - Kafka API seed service port.
- Private
Endpoint List<GetConnections Cluster Azure Private Link Status Private Endpoint Connection> - List of private endpoint connections to Redpanda Azure Private Link Service.
- Redpanda
Proxy doubleNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - Redpanda
Proxy doubleSeed Port - HTTP Proxy seed service port.
- Schema
Registry doubleSeed Port - 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.
- Approved
Subscriptions []string - These are the approved subscriptions on the private link
- Console
Port float64 - The port of Redpanda Console.
- Dns
ARecord string - dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
- Kafka
Api float64Node Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - Kafka
Api float64Seed Port - Kafka API seed service port.
- Private
Endpoint []GetConnections Cluster Azure Private Link Status Private Endpoint Connection - List of private endpoint connections to Redpanda Azure Private Link Service.
- Redpanda
Proxy float64Node Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - Redpanda
Proxy float64Seed Port - HTTP Proxy seed service port.
- Schema
Registry float64Seed Port - 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.
- approved_
subscriptions list(string) - These are the approved subscriptions on the private link
- console_
port number - The port of Redpanda Console.
- dns_
a_ stringrecord - dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
- kafka_
api_ numbernode_ base_ port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka_
api_ numberseed_ port - Kafka API seed service port.
- private_
endpoint_ list(object)connections - List of private endpoint connections to Redpanda Azure Private Link Service.
- redpanda_
proxy_ numbernode_ base_ port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda_
proxy_ numberseed_ port - HTTP Proxy seed service port.
- schema_
registry_ numberseed_ port - 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.
- approved
Subscriptions List<String> - These are the approved subscriptions on the private link
- console
Port Double - The port of Redpanda Console.
- dns
ARecord String - dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
- kafka
Api DoubleNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api DoubleSeed Port - Kafka API seed service port.
- private
Endpoint List<GetConnections Cluster Azure Private Link Status Private Endpoint Connection> - List of private endpoint connections to Redpanda Azure Private Link Service.
- redpanda
Proxy DoubleNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda
Proxy DoubleSeed Port - HTTP Proxy seed service port.
- schema
Registry DoubleSeed Port - 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.
- approved
Subscriptions string[] - These are the approved subscriptions on the private link
- console
Port number - The port of Redpanda Console.
- dns
ARecord string - dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
- kafka
Api numberNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api numberSeed Port - Kafka API seed service port.
- private
Endpoint GetConnections Cluster Azure Private Link Status Private Endpoint Connection[] - List of private endpoint connections to Redpanda Azure Private Link Service.
- redpanda
Proxy numberNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda
Proxy numberSeed Port - HTTP Proxy seed service port.
- schema
Registry numberSeed Port - 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.
- approved_
subscriptions Sequence[str] - These are the approved subscriptions on the private link
- console_
port float - The port of Redpanda Console.
- dns_
a_ strrecord - dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
- kafka_
api_ floatnode_ base_ port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka_
api_ floatseed_ port - Kafka API seed service port.
- private_
endpoint_ Sequence[Getconnections Cluster Azure Private Link Status Private Endpoint Connection] - List of private endpoint connections to Redpanda Azure Private Link Service.
- redpanda_
proxy_ floatnode_ base_ port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda_
proxy_ floatseed_ port - HTTP Proxy seed service port.
- schema_
registry_ floatseed_ port - 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.
- approved
Subscriptions List<String> - These are the approved subscriptions on the private link
- console
Port Number - The port of Redpanda Console.
- dns
ARecord String - dnsadnsarecordrecord is the DNS A record the customer will create pointing at the their PE
- kafka
Api NumberNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api NumberSeed Port - Kafka API seed service port.
- private
Endpoint List<Property Map>Connections - List of private endpoint connections to Redpanda Azure Private Link Service.
- redpanda
Proxy NumberNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port + i. - redpanda
Proxy NumberSeed Port - HTTP Proxy seed service port.
- schema
Registry NumberSeed Port - 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.
GetClusterAzurePrivateLinkStatusPrivateEndpointConnection
- 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 stringId - Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
- Private
Endpoint stringName - 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 stringId - Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
- Private
Endpoint stringName - 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_ stringid - Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
- private_
endpoint_ stringname - 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 StringId - Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
- private
Endpoint StringName - 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 stringId - Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
- private
Endpoint stringName - 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_ strid - Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
- private_
endpoint_ strname - The name of the PrivateEndpointConnection.
- status str
- 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 StringId - Resource ID of Private Endpoint to Redpanda Azure PrivateLink Endpoint Service.
- private
Endpoint StringName - The name of the PrivateEndpointConnection.
- status String
- The status of private endpoint connected to Redpanda Azure PrivateLink Endpoint Service.
GetClusterClusterConfiguration
- Custom
Properties stringJson - Custom Properties JSON
- Custom
Properties stringJson - Custom Properties JSON
- custom_
properties_ stringjson - Custom Properties JSON
- custom
Properties StringJson - Custom Properties JSON
- custom
Properties stringJson - Custom Properties JSON
- custom_
properties_ strjson - Custom Properties JSON
- custom
Properties StringJson - Custom Properties JSON
GetClusterCustomerManagedResources
- Aws
Get
Cluster Customer Managed Resources Aws - AWS resources created and managed by user, and required to deploy the Redpanda cluster.
- Gcp
Get
Cluster Customer Managed Resources Gcp - GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
- Aws
Get
Cluster Customer Managed Resources Aws - AWS resources created and managed by user, and required to deploy the Redpanda cluster.
- Gcp
Get
Cluster Customer Managed Resources Gcp - 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
Get
Cluster Customer Managed Resources Aws - AWS resources created and managed by user, and required to deploy the Redpanda cluster.
- gcp
Get
Cluster Customer Managed Resources Gcp - GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
- aws
Get
Cluster Customer Managed Resources Aws - AWS resources created and managed by user, and required to deploy the Redpanda cluster.
- gcp
Get
Cluster Customer Managed Resources Gcp - GCP resources created and managed by user, and required to deploy the Redpanda cluster. See Create a BYOVPC Cluster on GCP.
- aws
Get
Cluster Customer Managed Resources Aws - AWS resources created and managed by user, and required to deploy the Redpanda cluster.
- gcp
Get
Cluster Customer Managed Resources Gcp - 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
- Agent
Instance GetProfile Cluster Customer Managed Resources Aws Agent Instance Profile - AWS instance profile.
- Cloud
Storage GetBucket Cluster Customer Managed Resources Aws Cloud Storage Bucket - AWS storage bucket properties by ARN.
- Cluster
Security GetGroup Cluster Customer Managed Resources Aws Cluster Security Group - Security Group identifies AWS security group.
- Connectors
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Connectors Node Group Instance Profile - AWS instance profile.
- Connectors
Security GetGroup Cluster Customer Managed Resources Aws Connectors Security Group - Security Group identifies AWS security group.
- K8s
Cluster GetRole Cluster Customer Managed Resources Aws K8s Cluster Role - Role identifies AWS role.
- Node
Security GetGroup Cluster Customer Managed Resources Aws Node Security Group - Security Group identifies AWS security group.
- Permissions
Boundary GetPolicy Cluster Customer Managed Resources Aws Permissions Boundary Policy - Policy identifies an AWS policy.
- Redpanda
Agent GetSecurity Group Cluster Customer Managed Resources Aws Redpanda Agent Security Group - Security Group identifies AWS security group.
- Redpanda
Connect GetNode Group Instance Profile Cluster Customer Managed Resources Aws Redpanda Connect Node Group Instance Profile - AWS instance profile.
- Redpanda
Connect GetSecurity Group Cluster Customer Managed Resources Aws Redpanda Connect Security Group - Security Group identifies AWS security group.
- Redpanda
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Redpanda Node Group Instance Profile - AWS instance profile.
- Redpanda
Node GetGroup Security Group Cluster Customer Managed Resources Aws Redpanda Node Group Security Group - Security Group identifies AWS security group.
- Utility
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Utility Node Group Instance Profile - AWS instance profile.
- Utility
Security GetGroup Cluster Customer Managed Resources Aws Utility Security Group - Security Group identifies AWS security group.
- Agent
Instance GetProfile Cluster Customer Managed Resources Aws Agent Instance Profile - AWS instance profile.
- Cloud
Storage GetBucket Cluster Customer Managed Resources Aws Cloud Storage Bucket - AWS storage bucket properties by ARN.
- Cluster
Security GetGroup Cluster Customer Managed Resources Aws Cluster Security Group - Security Group identifies AWS security group.
- Connectors
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Connectors Node Group Instance Profile - AWS instance profile.
- Connectors
Security GetGroup Cluster Customer Managed Resources Aws Connectors Security Group - Security Group identifies AWS security group.
- K8s
Cluster GetRole Cluster Customer Managed Resources Aws K8s Cluster Role - Role identifies AWS role.
- Node
Security GetGroup Cluster Customer Managed Resources Aws Node Security Group - Security Group identifies AWS security group.
- Permissions
Boundary GetPolicy Cluster Customer Managed Resources Aws Permissions Boundary Policy - Policy identifies an AWS policy.
- Redpanda
Agent GetSecurity Group Cluster Customer Managed Resources Aws Redpanda Agent Security Group - Security Group identifies AWS security group.
- Redpanda
Connect GetNode Group Instance Profile Cluster Customer Managed Resources Aws Redpanda Connect Node Group Instance Profile - AWS instance profile.
- Redpanda
Connect GetSecurity Group Cluster Customer Managed Resources Aws Redpanda Connect Security Group - Security Group identifies AWS security group.
- Redpanda
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Redpanda Node Group Instance Profile - AWS instance profile.
- Redpanda
Node GetGroup Security Group Cluster Customer Managed Resources Aws Redpanda Node Group Security Group - Security Group identifies AWS security group.
- Utility
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Utility Node Group Instance Profile - AWS instance profile.
- Utility
Security GetGroup Cluster Customer Managed Resources Aws Utility Security Group - Security Group identifies AWS security group.
- agent_
instance_ objectprofile - AWS instance profile.
- cloud_
storage_ objectbucket - AWS storage bucket properties by ARN.
- cluster_
security_ objectgroup - Security Group identifies AWS security group.
- connectors_
node_ objectgroup_ instance_ profile - AWS instance profile.
- connectors_
security_ objectgroup - Security Group identifies AWS security group.
- k8s_
cluster_ objectrole - Role identifies AWS role.
- node_
security_ objectgroup - Security Group identifies AWS security group.
- permissions_
boundary_ objectpolicy - Policy identifies an AWS policy.
- redpanda_
agent_ objectsecurity_ group - Security Group identifies AWS security group.
- redpanda_
connect_ objectnode_ group_ instance_ profile - AWS instance profile.
- redpanda_
connect_ objectsecurity_ group - Security Group identifies AWS security group.
- redpanda_
node_ objectgroup_ instance_ profile - AWS instance profile.
- redpanda_
node_ objectgroup_ security_ group - Security Group identifies AWS security group.
- utility_
node_ objectgroup_ instance_ profile - AWS instance profile.
- utility_
security_ objectgroup - Security Group identifies AWS security group.
- agent
Instance GetProfile Cluster Customer Managed Resources Aws Agent Instance Profile - AWS instance profile.
- cloud
Storage GetBucket Cluster Customer Managed Resources Aws Cloud Storage Bucket - AWS storage bucket properties by ARN.
- cluster
Security GetGroup Cluster Customer Managed Resources Aws Cluster Security Group - Security Group identifies AWS security group.
- connectors
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Connectors Node Group Instance Profile - AWS instance profile.
- connectors
Security GetGroup Cluster Customer Managed Resources Aws Connectors Security Group - Security Group identifies AWS security group.
- k8s
Cluster GetRole Cluster Customer Managed Resources Aws K8s Cluster Role - Role identifies AWS role.
- node
Security GetGroup Cluster Customer Managed Resources Aws Node Security Group - Security Group identifies AWS security group.
- permissions
Boundary GetPolicy Cluster Customer Managed Resources Aws Permissions Boundary Policy - Policy identifies an AWS policy.
- redpanda
Agent GetSecurity Group Cluster Customer Managed Resources Aws Redpanda Agent Security Group - Security Group identifies AWS security group.
- redpanda
Connect GetNode Group Instance Profile Cluster Customer Managed Resources Aws Redpanda Connect Node Group Instance Profile - AWS instance profile.
- redpanda
Connect GetSecurity Group Cluster Customer Managed Resources Aws Redpanda Connect Security Group - Security Group identifies AWS security group.
- redpanda
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Redpanda Node Group Instance Profile - AWS instance profile.
- redpanda
Node GetGroup Security Group Cluster Customer Managed Resources Aws Redpanda Node Group Security Group - Security Group identifies AWS security group.
- utility
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Utility Node Group Instance Profile - AWS instance profile.
- utility
Security GetGroup Cluster Customer Managed Resources Aws Utility Security Group - Security Group identifies AWS security group.
- agent
Instance GetProfile Cluster Customer Managed Resources Aws Agent Instance Profile - AWS instance profile.
- cloud
Storage GetBucket Cluster Customer Managed Resources Aws Cloud Storage Bucket - AWS storage bucket properties by ARN.
- cluster
Security GetGroup Cluster Customer Managed Resources Aws Cluster Security Group - Security Group identifies AWS security group.
- connectors
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Connectors Node Group Instance Profile - AWS instance profile.
- connectors
Security GetGroup Cluster Customer Managed Resources Aws Connectors Security Group - Security Group identifies AWS security group.
- k8s
Cluster GetRole Cluster Customer Managed Resources Aws K8s Cluster Role - Role identifies AWS role.
- node
Security GetGroup Cluster Customer Managed Resources Aws Node Security Group - Security Group identifies AWS security group.
- permissions
Boundary GetPolicy Cluster Customer Managed Resources Aws Permissions Boundary Policy - Policy identifies an AWS policy.
- redpanda
Agent GetSecurity Group Cluster Customer Managed Resources Aws Redpanda Agent Security Group - Security Group identifies AWS security group.
- redpanda
Connect GetNode Group Instance Profile Cluster Customer Managed Resources Aws Redpanda Connect Node Group Instance Profile - AWS instance profile.
- redpanda
Connect GetSecurity Group Cluster Customer Managed Resources Aws Redpanda Connect Security Group - Security Group identifies AWS security group.
- redpanda
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Redpanda Node Group Instance Profile - AWS instance profile.
- redpanda
Node GetGroup Security Group Cluster Customer Managed Resources Aws Redpanda Node Group Security Group - Security Group identifies AWS security group.
- utility
Node GetGroup Instance Profile Cluster Customer Managed Resources Aws Utility Node Group Instance Profile - AWS instance profile.
- utility
Security GetGroup Cluster Customer Managed Resources Aws Utility Security Group - Security Group identifies AWS security group.
- agent_
instance_ Getprofile Cluster Customer Managed Resources Aws Agent Instance Profile - AWS instance profile.
- cloud_
storage_ Getbucket Cluster Customer Managed Resources Aws Cloud Storage Bucket - AWS storage bucket properties by ARN.
- cluster_
security_ Getgroup Cluster Customer Managed Resources Aws Cluster Security Group - Security Group identifies AWS security group.
- connectors_
node_ Getgroup_ instance_ profile Cluster Customer Managed Resources Aws Connectors Node Group Instance Profile - AWS instance profile.
- connectors_
security_ Getgroup Cluster Customer Managed Resources Aws Connectors Security Group - Security Group identifies AWS security group.
- k8s_
cluster_ Getrole Cluster Customer Managed Resources Aws K8s Cluster Role - Role identifies AWS role.
- node_
security_ Getgroup Cluster Customer Managed Resources Aws Node Security Group - Security Group identifies AWS security group.
- permissions_
boundary_ Getpolicy Cluster Customer Managed Resources Aws Permissions Boundary Policy - Policy identifies an AWS policy.
- redpanda_
agent_ Getsecurity_ group Cluster Customer Managed Resources Aws Redpanda Agent Security Group - Security Group identifies AWS security group.
- redpanda_
connect_ Getnode_ group_ instance_ profile Cluster Customer Managed Resources Aws Redpanda Connect Node Group Instance Profile - AWS instance profile.
- redpanda_
connect_ Getsecurity_ group Cluster Customer Managed Resources Aws Redpanda Connect Security Group - Security Group identifies AWS security group.
- redpanda_
node_ Getgroup_ instance_ profile Cluster Customer Managed Resources Aws Redpanda Node Group Instance Profile - AWS instance profile.
- redpanda_
node_ Getgroup_ security_ group Cluster Customer Managed Resources Aws Redpanda Node Group Security Group - Security Group identifies AWS security group.
- utility_
node_ Getgroup_ instance_ profile Cluster Customer Managed Resources Aws Utility Node Group Instance Profile - AWS instance profile.
- utility_
security_ Getgroup Cluster Customer Managed Resources Aws Utility Security Group - Security Group identifies AWS security group.
- agent
Instance Property MapProfile - AWS instance profile.
- cloud
Storage Property MapBucket - AWS storage bucket properties by ARN.
- cluster
Security Property MapGroup - Security Group identifies AWS security group.
- connectors
Node Property MapGroup Instance Profile - AWS instance profile.
- connectors
Security Property MapGroup - Security Group identifies AWS security group.
- k8s
Cluster Property MapRole - Role identifies AWS role.
- node
Security Property MapGroup - Security Group identifies AWS security group.
- permissions
Boundary Property MapPolicy - Policy identifies an AWS policy.
- redpanda
Agent Property MapSecurity Group - Security Group identifies AWS security group.
- redpanda
Connect Property MapNode Group Instance Profile - AWS instance profile.
- redpanda
Connect Property MapSecurity Group - Security Group identifies AWS security group.
- redpanda
Node Property MapGroup Instance Profile - AWS instance profile.
- redpanda
Node Property MapGroup Security Group - Security Group identifies AWS security group.
- utility
Node Property MapGroup Instance Profile - AWS instance profile.
- utility
Security Property MapGroup - 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
- Agent
Service GetAccount Cluster Customer Managed Resources Gcp Agent Service Account - GCP service account.
- Connector
Service GetAccount Cluster Customer Managed Resources Gcp Connector Service Account - GCP service account.
- Console
Service GetAccount Cluster Customer Managed Resources Gcp Console Service Account - GCP service account.
- Gke
Service GetAccount Cluster Customer Managed Resources Gcp Gke Service Account - GCP service account.
- Psc
Nat stringSubnet Name - 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 GetService Account Cluster Customer Managed Resources Gcp Redpanda Cluster Service Account - GCP service account.
- Subnet
Get
Cluster Customer Managed Resources Gcp Subnet - GCP subnet properties. See the official GCP API reference.
- Tiered
Storage GetBucket Cluster Customer Managed Resources Gcp Tiered Storage Bucket - GCP storage bucket properties.
- Agent
Service GetAccount Cluster Customer Managed Resources Gcp Agent Service Account - GCP service account.
- Connector
Service GetAccount Cluster Customer Managed Resources Gcp Connector Service Account - GCP service account.
- Console
Service GetAccount Cluster Customer Managed Resources Gcp Console Service Account - GCP service account.
- Gke
Service GetAccount Cluster Customer Managed Resources Gcp Gke Service Account - GCP service account.
- Psc
Nat stringSubnet Name - 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 GetService Account Cluster Customer Managed Resources Gcp Redpanda Cluster Service Account - GCP service account.
- Subnet
Get
Cluster Customer Managed Resources Gcp Subnet - GCP subnet properties. See the official GCP API reference.
- Tiered
Storage GetBucket Cluster Customer Managed Resources Gcp Tiered Storage Bucket - GCP storage bucket properties.
- agent_
service_ objectaccount - GCP service account.
- connector_
service_ objectaccount - GCP service account.
- console_
service_ objectaccount - GCP service account.
- gke_
service_ objectaccount - GCP service account.
- psc_
nat_ stringsubnet_ name - 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_ objectservice_ account - GCP service account.
- subnet object
- GCP subnet properties. See the official GCP API reference.
- tiered_
storage_ objectbucket - GCP storage bucket properties.
- agent
Service GetAccount Cluster Customer Managed Resources Gcp Agent Service Account - GCP service account.
- connector
Service GetAccount Cluster Customer Managed Resources Gcp Connector Service Account - GCP service account.
- console
Service GetAccount Cluster Customer Managed Resources Gcp Console Service Account - GCP service account.
- gke
Service GetAccount Cluster Customer Managed Resources Gcp Gke Service Account - GCP service account.
- psc
Nat StringSubnet Name - 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 GetService Account Cluster Customer Managed Resources Gcp Redpanda Cluster Service Account - GCP service account.
- subnet
Get
Cluster Customer Managed Resources Gcp Subnet - GCP subnet properties. See the official GCP API reference.
- tiered
Storage GetBucket Cluster Customer Managed Resources Gcp Tiered Storage Bucket - GCP storage bucket properties.
- agent
Service GetAccount Cluster Customer Managed Resources Gcp Agent Service Account - GCP service account.
- connector
Service GetAccount Cluster Customer Managed Resources Gcp Connector Service Account - GCP service account.
- console
Service GetAccount Cluster Customer Managed Resources Gcp Console Service Account - GCP service account.
- gke
Service GetAccount Cluster Customer Managed Resources Gcp Gke Service Account - GCP service account.
- psc
Nat stringSubnet Name - 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 GetService Account Cluster Customer Managed Resources Gcp Redpanda Cluster Service Account - GCP service account.
- subnet
Get
Cluster Customer Managed Resources Gcp Subnet - GCP subnet properties. See the official GCP API reference.
- tiered
Storage GetBucket Cluster Customer Managed Resources Gcp Tiered Storage Bucket - GCP storage bucket properties.
- agent_
service_ Getaccount Cluster Customer Managed Resources Gcp Agent Service Account - GCP service account.
- connector_
service_ Getaccount Cluster Customer Managed Resources Gcp Connector Service Account - GCP service account.
- console_
service_ Getaccount Cluster Customer Managed Resources Gcp Console Service Account - GCP service account.
- gke_
service_ Getaccount Cluster Customer Managed Resources Gcp Gke Service Account - GCP service account.
- psc_
nat_ strsubnet_ name - 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_ Getservice_ account Cluster Customer Managed Resources Gcp Redpanda Cluster Service Account - GCP service account.
- subnet
Get
Cluster Customer Managed Resources Gcp Subnet - GCP subnet properties. See the official GCP API reference.
- tiered_
storage_ Getbucket Cluster Customer Managed Resources Gcp Tiered Storage Bucket - GCP storage bucket properties.
- agent
Service Property MapAccount - GCP service account.
- connector
Service Property MapAccount - GCP service account.
- console
Service Property MapAccount - GCP service account.
- gke
Service Property MapAccount - GCP service account.
- psc
Nat StringSubnet Name - 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 Property MapService Account - GCP service account.
- subnet Property Map
- GCP subnet properties. See the official GCP API reference.
- tiered
Storage Property MapBucket - 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 stringIpv4Range - Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
- Name string
- Subnet name.
- Secondary
Ipv4Range GetPods Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Pods - Secondary IPv4 range.
- Secondary
Ipv4Range GetServices Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Services - Secondary IPv4 range.
- K8s
Master stringIpv4Range - Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
- Name string
- Subnet name.
- Secondary
Ipv4Range GetPods Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Pods - Secondary IPv4 range.
- Secondary
Ipv4Range GetServices Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Services - Secondary IPv4 range.
- k8s_
master_ stringipv4_ range - Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
- name string
- Subnet name.
- secondary_
ipv4_ objectrange_ pods - Secondary IPv4 range.
- secondary_
ipv4_ objectrange_ services - Secondary IPv4 range.
- k8s
Master StringIpv4Range - Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
- name String
- Subnet name.
- secondary
Ipv4Range GetPods Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Pods - Secondary IPv4 range.
- secondary
Ipv4Range GetServices Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Services - Secondary IPv4 range.
- k8s
Master stringIpv4Range - Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
- name string
- Subnet name.
- secondary
Ipv4Range GetPods Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Pods - Secondary IPv4 range.
- secondary
Ipv4Range GetServices Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Services - Secondary IPv4 range.
- k8s_
master_ stripv4_ range - Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
- name str
- Subnet name.
- secondary_
ipv4_ Getrange_ pods Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Pods - Secondary IPv4 range.
- secondary_
ipv4_ Getrange_ services Cluster Customer Managed Resources Gcp Subnet Secondary Ipv4Range Services - Secondary IPv4 range.
- k8s
Master StringIpv4Range - Kubernetes Master IPv4 range, e.g. 10.0.0.0/24.
- name String
- Subnet name.
- secondary
Ipv4Range Property MapPods - Secondary IPv4 range.
- secondary
Ipv4Range Property MapServices - 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
- Consumer
Accept List<GetLists Cluster Gcp Private Service Connect Consumer Accept List> - 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 boolEnabled - Whether global access is enabled.
- Status
Get
Cluster Gcp Private Service Connect Status - Status configuration
- Consumer
Accept []GetLists Cluster Gcp Private Service Connect Consumer Accept List - 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 boolEnabled - Whether global access is enabled.
- Status
Get
Cluster Gcp Private Service Connect Status - Status configuration
- consumer_
accept_ list(object)lists - 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_ boolenabled - Whether global access is enabled.
- status object
- Status configuration
- consumer
Accept List<GetLists Cluster Gcp Private Service Connect Consumer Accept List> - 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.
- global
Access BooleanEnabled - Whether global access is enabled.
- status
Get
Cluster Gcp Private Service Connect Status - Status configuration
- consumer
Accept GetLists Cluster Gcp Private Service Connect Consumer Accept List[] - 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.
- global
Access booleanEnabled - Whether global access is enabled.
- status
Get
Cluster Gcp Private Service Connect Status - Status configuration
- consumer_
accept_ Sequence[Getlists Cluster Gcp Private Service Connect Consumer Accept List] - 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_ boolenabled - Whether global access is enabled.
- status
Get
Cluster Gcp Private Service Connect Status - Status configuration
- consumer
Accept List<Property Map>Lists - 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.
- global
Access BooleanEnabled - 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
- Connected
Endpoints List<GetCluster Gcp Private Service Connect Status Connected Endpoint> - List of VPC endpoints with established connections to GCP Private Service Connect.
- Dns
ARecords List<string> - Customer-created DNS A records that point at the PSC endpoint on the consumer side.
- Kafka
Api doubleNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - Kafka
Api doubleSeed Port - Kafka API seed service port.
- Redpanda
Proxy doubleNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port +i. - Redpanda
Proxy doubleSeed Port - HTTP Proxy seed service port.
- Schema
Registry doubleSeed Port - 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.
- Connected
Endpoints []GetCluster Gcp Private Service Connect Status Connected Endpoint - List of VPC endpoints with established connections to GCP Private Service Connect.
- Dns
ARecords []string - Customer-created DNS A records that point at the PSC endpoint on the consumer side.
- Kafka
Api float64Node Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - Kafka
Api float64Seed Port - Kafka API seed service port.
- Redpanda
Proxy float64Node Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port +i. - Redpanda
Proxy float64Seed Port - HTTP Proxy seed service port.
- Schema
Registry float64Seed Port - 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.
- connected_
endpoints list(object) - List of VPC endpoints with established connections to GCP Private Service Connect.
- dns_
a_ list(string)records - Customer-created DNS A records that point at the PSC endpoint on the consumer side.
- kafka_
api_ numbernode_ base_ port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka_
api_ numberseed_ port - Kafka API seed service port.
- redpanda_
proxy_ numbernode_ base_ port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port +i. - redpanda_
proxy_ numberseed_ port - HTTP Proxy seed service port.
- schema_
registry_ numberseed_ port - 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.
- connected
Endpoints List<GetCluster Gcp Private Service Connect Status Connected Endpoint> - List of VPC endpoints with established connections to GCP Private Service Connect.
- dns
ARecords List<String> - Customer-created DNS A records that point at the PSC endpoint on the consumer side.
- kafka
Api DoubleNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api DoubleSeed Port - Kafka API seed service port.
- redpanda
Proxy DoubleNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port +i. - redpanda
Proxy DoubleSeed Port - HTTP Proxy seed service port.
- schema
Registry DoubleSeed Port - 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.
- connected
Endpoints GetCluster Gcp Private Service Connect Status Connected Endpoint[] - List of VPC endpoints with established connections to GCP Private Service Connect.
- dns
ARecords string[] - Customer-created DNS A records that point at the PSC endpoint on the consumer side.
- kafka
Api numberNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api numberSeed Port - Kafka API seed service port.
- redpanda
Proxy numberNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port +i. - redpanda
Proxy numberSeed Port - HTTP Proxy seed service port.
- schema
Registry numberSeed Port - 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.
- connected_
endpoints Sequence[GetCluster Gcp Private Service Connect Status Connected Endpoint] - List of VPC endpoints with established connections to GCP Private Service Connect.
- dns_
a_ Sequence[str]records - Customer-created DNS A records that point at the PSC endpoint on the consumer side.
- kafka_
api_ floatnode_ base_ port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka_
api_ floatseed_ port - Kafka API seed service port.
- redpanda_
proxy_ floatnode_ base_ port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port +i. - redpanda_
proxy_ floatseed_ port - HTTP Proxy seed service port.
- schema_
registry_ floatseed_ port - 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.
- connected
Endpoints List<Property Map> - List of VPC endpoints with established connections to GCP Private Service Connect.
- dns
ARecords List<String> - Customer-created DNS A records that point at the PSC endpoint on the consumer side.
- kafka
Api NumberNode Base Port - Kafka API node service base port. The port for node
i(0 .. nodecount-1) is kafkaapinodebase_port +i. - kafka
Api NumberSeed Port - Kafka API seed service port.
- redpanda
Proxy NumberNode Base Port - HTTP Proxy node service base port. The port for node
i(0 .. nodecount-1) is redpandaproxynodebase_port +i. - redpanda
Proxy NumberSeed Port - HTTP Proxy seed service port.
- schema
Registry NumberSeed Port - 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.
GetClusterGcpPrivateServiceConnectStatusConnectedEndpoint
- 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
- 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
- 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
- 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
- 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
- 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
- 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
GetClusterHttpProxy
- All
Urls GetCluster Http Proxy All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- Mtls
Get
Cluster Http Proxy Mtls - mTLS configuration.
- Sasl
Get
Cluster Http Proxy Sasl - SASL configuration
- Url string
- HTTP Proxy URL of cluster.
- All
Urls GetCluster Http Proxy All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- Mtls
Get
Cluster Http Proxy Mtls - mTLS configuration.
- Sasl
Get
Cluster Http Proxy Sasl - SASL configuration
- Url string
- HTTP Proxy URL of cluster.
- all
Urls GetCluster Http Proxy All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- mtls
Get
Cluster Http Proxy Mtls - mTLS configuration.
- sasl
Get
Cluster Http Proxy Sasl - SASL configuration
- url String
- HTTP Proxy URL of cluster.
- all
Urls GetCluster Http Proxy All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- mtls
Get
Cluster Http Proxy Mtls - mTLS configuration.
- sasl
Get
Cluster Http Proxy Sasl - SASL configuration
- url string
- HTTP Proxy URL of cluster.
- all_
urls GetCluster Http Proxy All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- mtls
Get
Cluster Http Proxy Mtls - mTLS configuration.
- sasl
Get
Cluster Http Proxy Sasl - SASL configuration
- url str
- HTTP Proxy URL of cluster.
- all
Urls 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.
- Private
Link stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- Private
Link stringSasl - 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 stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- Private
Link stringSasl - 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_ stringmtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private_
link_ stringsasl - 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 StringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link StringSasl - 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 stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link stringSasl - 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_ strmtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private_
link_ strsasl - 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.
- private
Link StringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link StringSasl - 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
- Ca
Certificates List<string>Pems - CA certificate in PEM format.
- Enabled bool
- Whether mTLS is enabled.
- Principal
Mapping List<string>Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- Ca
Certificates []stringPems - CA certificate in PEM format.
- Enabled bool
- Whether mTLS is enabled.
- Principal
Mapping []stringRules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca_
certificates_ list(string)pems - CA certificate in PEM format.
- enabled bool
- Whether mTLS is enabled.
- principal_
mapping_ list(string)rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates List<String>Pems - CA certificate in PEM format.
- enabled Boolean
- Whether mTLS is enabled.
- principal
Mapping List<String>Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates string[]Pems - CA certificate in PEM format.
- enabled boolean
- Whether mTLS is enabled.
- principal
Mapping string[]Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca_
certificates_ Sequence[str]pems - CA certificate in PEM format.
- enabled bool
- Whether mTLS is enabled.
- principal_
mapping_ Sequence[str]rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates List<String>Pems - CA certificate in PEM format.
- enabled Boolean
- Whether mTLS is enabled.
- principal
Mapping List<String>Rules - 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
- All
Seed GetBrokers Cluster Kafka Api All Seed Brokers - Seed brokers of Redpanda Kafka API.
- Mtls
Get
Cluster Kafka Api Mtls - mTLS configuration.
- Sasl
Get
Cluster Kafka Api Sasl - SASL configuration
- Seed
Brokers List<string> - Kafka API Seed Brokers (also known as Bootstrap servers).
- All
Seed GetBrokers Cluster Kafka Api All Seed Brokers - Seed brokers of Redpanda Kafka API.
- Mtls
Get
Cluster Kafka Api Mtls - mTLS configuration.
- Sasl
Get
Cluster Kafka Api Sasl - SASL configuration
- Seed
Brokers []string - Kafka API Seed Brokers (also known as Bootstrap servers).
- all_
seed_ objectbrokers - 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).
- all
Seed GetBrokers Cluster Kafka Api All Seed Brokers - Seed brokers of Redpanda Kafka API.
- mtls
Get
Cluster Kafka Api Mtls - mTLS configuration.
- sasl
Get
Cluster Kafka Api Sasl - SASL configuration
- seed
Brokers List<String> - Kafka API Seed Brokers (also known as Bootstrap servers).
- all
Seed GetBrokers Cluster Kafka Api All Seed Brokers - Seed brokers of Redpanda Kafka API.
- mtls
Get
Cluster Kafka Api Mtls - mTLS configuration.
- sasl
Get
Cluster Kafka Api Sasl - SASL configuration
- seed
Brokers string[] - Kafka API Seed Brokers (also known as Bootstrap servers).
- all_
seed_ Getbrokers Cluster Kafka Api All Seed Brokers - Seed brokers of Redpanda Kafka API.
- mtls
Get
Cluster Kafka Api Mtls - mTLS configuration.
- sasl
Get
Cluster Kafka Api Sasl - SASL configuration
- seed_
brokers Sequence[str] - Kafka API Seed Brokers (also known as Bootstrap servers).
- all
Seed Property MapBrokers - Seed brokers of Redpanda Kafka API.
- mtls Property Map
- mTLS configuration.
- sasl Property Map
- SASL configuration
- seed
Brokers 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.
- Private
Link stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- Private
Link stringSasl - 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 stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- Private
Link stringSasl - 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_ stringmtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private_
link_ stringsasl - 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 StringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link StringSasl - 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 stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link stringSasl - 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_ strmtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private_
link_ strsasl - 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.
- private
Link StringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link StringSasl - 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
- Ca
Certificates List<string>Pems - CA certificate in PEM format.
- Enabled bool
- Whether mTLS is enabled.
- Principal
Mapping List<string>Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- Ca
Certificates []stringPems - CA certificate in PEM format.
- Enabled bool
- Whether mTLS is enabled.
- Principal
Mapping []stringRules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca_
certificates_ list(string)pems - CA certificate in PEM format.
- enabled bool
- Whether mTLS is enabled.
- principal_
mapping_ list(string)rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates List<String>Pems - CA certificate in PEM format.
- enabled Boolean
- Whether mTLS is enabled.
- principal
Mapping List<String>Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates string[]Pems - CA certificate in PEM format.
- enabled boolean
- Whether mTLS is enabled.
- principal
Mapping string[]Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca_
certificates_ Sequence[str]pems - CA certificate in PEM format.
- enabled bool
- Whether mTLS is enabled.
- principal_
mapping_ Sequence[str]rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates List<String>Pems - CA certificate in PEM format.
- enabled Boolean
- Whether mTLS is enabled.
- principal
Mapping List<String>Rules - 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
- Day
Hour GetCluster Maintenance Window Config Day Hour - Day Hour configuration
- Unspecified bool
- Unspecified configuration
- Anytime bool
- Anytime configuration
- Day
Hour GetCluster Maintenance Window Config Day Hour - 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
- day
Hour GetCluster Maintenance Window Config Day Hour - Day Hour configuration
- unspecified Boolean
- Unspecified configuration
- anytime boolean
- Anytime configuration
- day
Hour GetCluster Maintenance Window Config Day Hour - Day Hour configuration
- unspecified boolean
- Unspecified configuration
- anytime bool
- Anytime configuration
- day_
hour GetCluster Maintenance Window Config Day Hour - Day Hour configuration
- unspecified bool
- Unspecified configuration
- anytime Boolean
- Anytime configuration
- day
Hour Property Map - Day Hour configuration
- unspecified Boolean
- Unspecified configuration
GetClusterMaintenanceWindowConfigDayHour
- day_
of_ stringweek - Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
- hour_
of_ numberday - always UTC
- day_
of_ strweek - Represents a day of the week. - MONDAY: Monday - TUESDAY: Tuesday - WEDNESDAY: Wednesday - THURSDAY: Thursday - FRIDAY: Friday - SATURDAY: Saturday - SUNDAY: Sunday
- hour_
of_ floatday - 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
- All
Urls GetCluster Schema Registry All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- Mtls
Get
Cluster Schema Registry Mtls - mTLS configuration.
- Url string
- Schema Registry URL.
- All
Urls GetCluster Schema Registry All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- Mtls
Get
Cluster Schema Registry Mtls - mTLS configuration.
- Url string
- Schema Registry URL.
- all
Urls GetCluster Schema Registry All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- mtls
Get
Cluster Schema Registry Mtls - mTLS configuration.
- url String
- Schema Registry URL.
- all
Urls GetCluster Schema Registry All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- mtls
Get
Cluster Schema Registry Mtls - mTLS configuration.
- url string
- Schema Registry URL.
- all_
urls GetCluster Schema Registry All Urls - The endpoints of Redpanda HTTP Proxy or Schema Registry.
- mtls
Get
Cluster Schema Registry Mtls - mTLS configuration.
- url str
- Schema Registry URL.
- all
Urls 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.
- Private
Link stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- Private
Link stringSasl - 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 stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- Private
Link stringSasl - 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_ stringmtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private_
link_ stringsasl - 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 StringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link StringSasl - 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 stringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link stringSasl - 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_ strmtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private_
link_ strsasl - 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.
- private
Link StringMtls - URL of the seed broker for private link with mTLS. If private link with mTLS is not enabled, the field is empty.
- private
Link StringSasl - 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
- Ca
Certificates List<string>Pems - CA certificate in PEM format.
- Enabled bool
- Whether mTLS is enabled.
- Principal
Mapping List<string>Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- Ca
Certificates []stringPems - CA certificate in PEM format.
- Enabled bool
- Whether mTLS is enabled.
- Principal
Mapping []stringRules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca_
certificates_ list(string)pems - CA certificate in PEM format.
- enabled bool
- Whether mTLS is enabled.
- principal_
mapping_ list(string)rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates List<String>Pems - CA certificate in PEM format.
- enabled Boolean
- Whether mTLS is enabled.
- principal
Mapping List<String>Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates string[]Pems - CA certificate in PEM format.
- enabled boolean
- Whether mTLS is enabled.
- principal
Mapping string[]Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca_
certificates_ Sequence[str]pems - CA certificate in PEM format.
- enabled bool
- Whether mTLS is enabled.
- principal_
mapping_ Sequence[str]rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
- ca
Certificates List<String>Pems - CA certificate in PEM format.
- enabled Boolean
- Whether mTLS is enabled.
- principal
Mapping List<String>Rules - Principal mapping rules for mTLS authentication. Only valid for Kafka API. See the Redpanda documentation on configuring authentication.
GetClusterStateDescription
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
redpandaTerraform Provider.
Viewing docs for redpanda 2.0.0
published on Wednesday, Jun 3, 2026 by redpanda-data
published on Wednesday, Jun 3, 2026 by redpanda-data