1. Packages
  2. Confluent Cloud
  3. API Docs
  4. KafkaClientQuota
Confluent v1.26.0 published on Thursday, Sep 28, 2023 by Pulumi

confluentcloud.KafkaClientQuota

Explore with Pulumi AI

confluentcloud logo
Confluent v1.26.0 published on Thursday, Sep 28, 2023 by Pulumi

    Import

    You can import a Kafka Client Quota by using Kafka Client Quota ID. The following example shows how to import a Kafka Client Quota ID$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"

     $ pulumi import confluentcloud:index/kafkaClientQuota:KafkaClientQuota example cq-abc123
    

    !> Warning: Do not forget to delete terminal command history afterwards for security purposes.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using ConfluentCloud = Pulumi.ConfluentCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new ConfluentCloud.KafkaClientQuota("example", new()
        {
            DisplayName = "test-quota",
            Description = "Test Quota",
            Throughput = new ConfluentCloud.Inputs.KafkaClientQuotaThroughputArgs
            {
                IngressByteRate = "100",
                EgressByteRate = "200",
            },
            Principals = new[]
            {
                confluent_service_account.App_manager.Id,
                confluent_service_account.App_manager_2.Id,
            },
            KafkaCluster = new ConfluentCloud.Inputs.KafkaClientQuotaKafkaClusterArgs
            {
                Id = confluent_kafka_cluster.Dedicated.Id,
            },
            Environment = new ConfluentCloud.Inputs.KafkaClientQuotaEnvironmentArgs
            {
                Id = confluent_environment.Development.Id,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-confluentcloud/sdk/go/confluentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := confluentcloud.NewKafkaClientQuota(ctx, "example", &confluentcloud.KafkaClientQuotaArgs{
    			DisplayName: pulumi.String("test-quota"),
    			Description: pulumi.String("Test Quota"),
    			Throughput: &confluentcloud.KafkaClientQuotaThroughputArgs{
    				IngressByteRate: pulumi.String("100"),
    				EgressByteRate:  pulumi.String("200"),
    			},
    			Principals: pulumi.StringArray{
    				confluent_service_account.App_manager.Id,
    				confluent_service_account.App_manager_2.Id,
    			},
    			KafkaCluster: &confluentcloud.KafkaClientQuotaKafkaClusterArgs{
    				Id: pulumi.Any(confluent_kafka_cluster.Dedicated.Id),
    			},
    			Environment: &confluentcloud.KafkaClientQuotaEnvironmentArgs{
    				Id: pulumi.Any(confluent_environment.Development.Id),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.confluentcloud.KafkaClientQuota;
    import com.pulumi.confluentcloud.KafkaClientQuotaArgs;
    import com.pulumi.confluentcloud.inputs.KafkaClientQuotaThroughputArgs;
    import com.pulumi.confluentcloud.inputs.KafkaClientQuotaKafkaClusterArgs;
    import com.pulumi.confluentcloud.inputs.KafkaClientQuotaEnvironmentArgs;
    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) {
            var example = new KafkaClientQuota("example", KafkaClientQuotaArgs.builder()        
                .displayName("test-quota")
                .description("Test Quota")
                .throughput(KafkaClientQuotaThroughputArgs.builder()
                    .ingressByteRate("100")
                    .egressByteRate("200")
                    .build())
                .principals(            
                    confluent_service_account.app_manager().id(),
                    confluent_service_account.app_manager_2().id())
                .kafkaCluster(KafkaClientQuotaKafkaClusterArgs.builder()
                    .id(confluent_kafka_cluster.dedicated().id())
                    .build())
                .environment(KafkaClientQuotaEnvironmentArgs.builder()
                    .id(confluent_environment.development().id())
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_confluentcloud as confluentcloud
    
    example = confluentcloud.KafkaClientQuota("example",
        display_name="test-quota",
        description="Test Quota",
        throughput=confluentcloud.KafkaClientQuotaThroughputArgs(
            ingress_byte_rate="100",
            egress_byte_rate="200",
        ),
        principals=[
            confluent_service_account["app_manager"]["id"],
            confluent_service_account["app_manager_2"]["id"],
        ],
        kafka_cluster=confluentcloud.KafkaClientQuotaKafkaClusterArgs(
            id=confluent_kafka_cluster["dedicated"]["id"],
        ),
        environment=confluentcloud.KafkaClientQuotaEnvironmentArgs(
            id=confluent_environment["development"]["id"],
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as confluentcloud from "@pulumi/confluentcloud";
    
    const example = new confluentcloud.KafkaClientQuota("example", {
        displayName: "test-quota",
        description: "Test Quota",
        throughput: {
            ingressByteRate: "100",
            egressByteRate: "200",
        },
        principals: [
            confluent_service_account.app_manager.id,
            confluent_service_account.app_manager_2.id,
        ],
        kafkaCluster: {
            id: confluent_kafka_cluster.dedicated.id,
        },
        environment: {
            id: confluent_environment.development.id,
        },
    });
    
    resources:
      example:
        type: confluentcloud:KafkaClientQuota
        properties:
          displayName: test-quota
          description: Test Quota
          throughput:
            ingressByteRate: '100'
            egressByteRate: '200'
          principals:
            - ${confluent_service_account.app_manager.id}
            - ${confluent_service_account.app_manager_2.id}
          kafkaCluster:
            id: ${confluent_kafka_cluster.dedicated.id}
          environment:
            id: ${confluent_environment.development.id}
    

    Create KafkaClientQuota Resource

    new KafkaClientQuota(name: string, args: KafkaClientQuotaArgs, opts?: CustomResourceOptions);
    @overload
    def KafkaClientQuota(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         description: Optional[str] = None,
                         display_name: Optional[str] = None,
                         environment: Optional[KafkaClientQuotaEnvironmentArgs] = None,
                         kafka_cluster: Optional[KafkaClientQuotaKafkaClusterArgs] = None,
                         principals: Optional[Sequence[str]] = None,
                         throughput: Optional[KafkaClientQuotaThroughputArgs] = None)
    @overload
    def KafkaClientQuota(resource_name: str,
                         args: KafkaClientQuotaArgs,
                         opts: Optional[ResourceOptions] = None)
    func NewKafkaClientQuota(ctx *Context, name string, args KafkaClientQuotaArgs, opts ...ResourceOption) (*KafkaClientQuota, error)
    public KafkaClientQuota(string name, KafkaClientQuotaArgs args, CustomResourceOptions? opts = null)
    public KafkaClientQuota(String name, KafkaClientQuotaArgs args)
    public KafkaClientQuota(String name, KafkaClientQuotaArgs args, CustomResourceOptions options)
    
    type: confluentcloud:KafkaClientQuota
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args KafkaClientQuotaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args KafkaClientQuotaArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args KafkaClientQuotaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KafkaClientQuotaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KafkaClientQuotaArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    KafkaClientQuota Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The KafkaClientQuota resource accepts the following input properties:

    DisplayName string

    The name of the Kafka Client Quota.

    Environment Pulumi.ConfluentCloud.Inputs.KafkaClientQuotaEnvironment

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    KafkaCluster Pulumi.ConfluentCloud.Inputs.KafkaClientQuotaKafkaCluster
    Principals List<string>

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    Throughput Pulumi.ConfluentCloud.Inputs.KafkaClientQuotaThroughput

    Block for representing a Kafka Quota.

    Description string

    The description of the Kafka Client Quota.

    DisplayName string

    The name of the Kafka Client Quota.

    Environment KafkaClientQuotaEnvironmentArgs

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    KafkaCluster KafkaClientQuotaKafkaClusterArgs
    Principals []string

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    Throughput KafkaClientQuotaThroughputArgs

    Block for representing a Kafka Quota.

    Description string

    The description of the Kafka Client Quota.

    displayName String

    The name of the Kafka Client Quota.

    environment KafkaClientQuotaEnvironment

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    kafkaCluster KafkaClientQuotaKafkaCluster
    principals List<String>

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    throughput KafkaClientQuotaThroughput

    Block for representing a Kafka Quota.

    description String

    The description of the Kafka Client Quota.

    displayName string

    The name of the Kafka Client Quota.

    environment KafkaClientQuotaEnvironment

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    kafkaCluster KafkaClientQuotaKafkaCluster
    principals string[]

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    throughput KafkaClientQuotaThroughput

    Block for representing a Kafka Quota.

    description string

    The description of the Kafka Client Quota.

    display_name str

    The name of the Kafka Client Quota.

    environment KafkaClientQuotaEnvironmentArgs

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    kafka_cluster KafkaClientQuotaKafkaClusterArgs
    principals Sequence[str]

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    throughput KafkaClientQuotaThroughputArgs

    Block for representing a Kafka Quota.

    description str

    The description of the Kafka Client Quota.

    displayName String

    The name of the Kafka Client Quota.

    environment Property Map

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    kafkaCluster Property Map
    principals List<String>

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    throughput Property Map

    Block for representing a Kafka Quota.

    description String

    The description of the Kafka Client Quota.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the KafkaClientQuota resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing KafkaClientQuota Resource

    Get an existing KafkaClientQuota resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: KafkaClientQuotaState, opts?: CustomResourceOptions): KafkaClientQuota
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            environment: Optional[KafkaClientQuotaEnvironmentArgs] = None,
            kafka_cluster: Optional[KafkaClientQuotaKafkaClusterArgs] = None,
            principals: Optional[Sequence[str]] = None,
            throughput: Optional[KafkaClientQuotaThroughputArgs] = None) -> KafkaClientQuota
    func GetKafkaClientQuota(ctx *Context, name string, id IDInput, state *KafkaClientQuotaState, opts ...ResourceOption) (*KafkaClientQuota, error)
    public static KafkaClientQuota Get(string name, Input<string> id, KafkaClientQuotaState? state, CustomResourceOptions? opts = null)
    public static KafkaClientQuota get(String name, Output<String> id, KafkaClientQuotaState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string

    The description of the Kafka Client Quota.

    DisplayName string

    The name of the Kafka Client Quota.

    Environment Pulumi.ConfluentCloud.Inputs.KafkaClientQuotaEnvironment

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    KafkaCluster Pulumi.ConfluentCloud.Inputs.KafkaClientQuotaKafkaCluster
    Principals List<string>

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    Throughput Pulumi.ConfluentCloud.Inputs.KafkaClientQuotaThroughput

    Block for representing a Kafka Quota.

    Description string

    The description of the Kafka Client Quota.

    DisplayName string

    The name of the Kafka Client Quota.

    Environment KafkaClientQuotaEnvironmentArgs

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    KafkaCluster KafkaClientQuotaKafkaClusterArgs
    Principals []string

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    Throughput KafkaClientQuotaThroughputArgs

    Block for representing a Kafka Quota.

    description String

    The description of the Kafka Client Quota.

    displayName String

    The name of the Kafka Client Quota.

    environment KafkaClientQuotaEnvironment

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    kafkaCluster KafkaClientQuotaKafkaCluster
    principals List<String>

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    throughput KafkaClientQuotaThroughput

    Block for representing a Kafka Quota.

    description string

    The description of the Kafka Client Quota.

    displayName string

    The name of the Kafka Client Quota.

    environment KafkaClientQuotaEnvironment

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    kafkaCluster KafkaClientQuotaKafkaCluster
    principals string[]

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    throughput KafkaClientQuotaThroughput

    Block for representing a Kafka Quota.

    description str

    The description of the Kafka Client Quota.

    display_name str

    The name of the Kafka Client Quota.

    environment KafkaClientQuotaEnvironmentArgs

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    kafka_cluster KafkaClientQuotaKafkaClusterArgs
    principals Sequence[str]

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    throughput KafkaClientQuotaThroughputArgs

    Block for representing a Kafka Quota.

    description String

    The description of the Kafka Client Quota.

    displayName String

    The name of the Kafka Client Quota.

    environment Property Map

    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.

    kafkaCluster Property Map
    principals List<String>

    The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "", to represent the default quota for all users and service accounts.

    throughput Property Map

    Block for representing a Kafka Quota.

    Supporting Types

    KafkaClientQuotaEnvironment, KafkaClientQuotaEnvironmentArgs

    Id string

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    Id string

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    id String

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    id string

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    id str

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    id String

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    KafkaClientQuotaKafkaCluster, KafkaClientQuotaKafkaClusterArgs

    Id string

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    Id string

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    id String

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    id string

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    id str

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    id String

    The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, env-abc123.

    Note: Each principal assigned to a quota receives the full amount of the quota, meaning the quota is not shared by the principals it is assigned. For example, if a 10 MBps ingress quota is applied to Principals 1 and 2, Principal 1 can produce at most 10 MBps, independently of Principal 2.

    Note: Define a throughput maximum, but do not guarantee a throughput floor. Applications are rate-limited through the use of the Kafka throttling mechanism. Kafka asks the client to wait before sending more data and mutes the channel, which appears as latency to the client application.

    KafkaClientQuotaThroughput, KafkaClientQuotaThroughputArgs

    EgressByteRate string

    The egress throughput limit in bytes per second.

    IngressByteRate string

    The ingress throughput limit in bytes per second.

    EgressByteRate string

    The egress throughput limit in bytes per second.

    IngressByteRate string

    The ingress throughput limit in bytes per second.

    egressByteRate String

    The egress throughput limit in bytes per second.

    ingressByteRate String

    The ingress throughput limit in bytes per second.

    egressByteRate string

    The egress throughput limit in bytes per second.

    ingressByteRate string

    The ingress throughput limit in bytes per second.

    egress_byte_rate str

    The egress throughput limit in bytes per second.

    ingress_byte_rate str

    The ingress throughput limit in bytes per second.

    egressByteRate String

    The egress throughput limit in bytes per second.

    ingressByteRate String

    The ingress throughput limit in bytes per second.

    Package Details

    Repository
    Confluent Cloud pulumi/pulumi-confluentcloud
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the confluent Terraform Provider.

    confluentcloud logo
    Confluent v1.26.0 published on Thursday, Sep 28, 2023 by Pulumi