pulumi-confluentcloud 2.52.0a1763696172__py3-none-any.whl → 2.53.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3954,14 +3954,34 @@ class KafkaClientQuotaThroughputArgs:
3954
3954
 
3955
3955
  if not MYPY:
3956
3956
  class KafkaClusterBasicArgsDict(TypedDict):
3957
- pass
3957
+ max_ecku: NotRequired[pulumi.Input[_builtins.int]]
3958
+ """
3959
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3960
+ """
3958
3961
  elif False:
3959
3962
  KafkaClusterBasicArgsDict: TypeAlias = Mapping[str, Any]
3960
3963
 
3961
3964
  @pulumi.input_type
3962
3965
  class KafkaClusterBasicArgs:
3963
- def __init__(__self__):
3964
- pass
3966
+ def __init__(__self__, *,
3967
+ max_ecku: Optional[pulumi.Input[_builtins.int]] = None):
3968
+ """
3969
+ :param pulumi.Input[_builtins.int] max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3970
+ """
3971
+ if max_ecku is not None:
3972
+ pulumi.set(__self__, "max_ecku", max_ecku)
3973
+
3974
+ @_builtins.property
3975
+ @pulumi.getter(name="maxEcku")
3976
+ def max_ecku(self) -> Optional[pulumi.Input[_builtins.int]]:
3977
+ """
3978
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3979
+ """
3980
+ return pulumi.get(self, "max_ecku")
3981
+
3982
+ @max_ecku.setter
3983
+ def max_ecku(self, value: Optional[pulumi.Input[_builtins.int]]):
3984
+ pulumi.set(self, "max_ecku", value)
3965
3985
 
3966
3986
 
3967
3987
  if not MYPY:
@@ -4101,6 +4121,8 @@ if not MYPY:
4101
4121
  !> **Warning:** You can only upgrade clusters from `basic` to `standard`.
4102
4122
 
4103
4123
  > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
4124
+
4125
+ > **Note:** Refer to [eCKU/CKU comparison](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#ecku-cku-comparison) documentation for the minimum/maximum eCKU requirements for each cluster type.
4104
4126
  """
4105
4127
  encryption_key: NotRequired[pulumi.Input[_builtins.str]]
4106
4128
  """
@@ -4130,6 +4152,8 @@ class KafkaClusterDedicatedArgs:
4130
4152
  !> **Warning:** You can only upgrade clusters from `basic` to `standard`.
4131
4153
 
4132
4154
  > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
4155
+
4156
+ > **Note:** Refer to [eCKU/CKU comparison](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#ecku-cku-comparison) documentation for the minimum/maximum eCKU requirements for each cluster type.
4133
4157
  :param pulumi.Input[_builtins.str] encryption_key: The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
4134
4158
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] zones: (Required List of String) The list of zones the cluster is in.
4135
4159
  - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
@@ -4153,6 +4177,8 @@ class KafkaClusterDedicatedArgs:
4153
4177
  !> **Warning:** You can only upgrade clusters from `basic` to `standard`.
4154
4178
 
4155
4179
  > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
4180
+
4181
+ > **Note:** Refer to [eCKU/CKU comparison](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#ecku-cku-comparison) documentation for the minimum/maximum eCKU requirements for each cluster type.
4156
4182
  """
4157
4183
  return pulumi.get(self, "cku")
4158
4184
 
@@ -4280,14 +4306,34 @@ class KafkaClusterEndpointArgs:
4280
4306
 
4281
4307
  if not MYPY:
4282
4308
  class KafkaClusterEnterpriseArgsDict(TypedDict):
4283
- pass
4309
+ max_ecku: NotRequired[pulumi.Input[_builtins.int]]
4310
+ """
4311
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4312
+ """
4284
4313
  elif False:
4285
4314
  KafkaClusterEnterpriseArgsDict: TypeAlias = Mapping[str, Any]
4286
4315
 
4287
4316
  @pulumi.input_type
4288
4317
  class KafkaClusterEnterpriseArgs:
4289
- def __init__(__self__):
4290
- pass
4318
+ def __init__(__self__, *,
4319
+ max_ecku: Optional[pulumi.Input[_builtins.int]] = None):
4320
+ """
4321
+ :param pulumi.Input[_builtins.int] max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4322
+ """
4323
+ if max_ecku is not None:
4324
+ pulumi.set(__self__, "max_ecku", max_ecku)
4325
+
4326
+ @_builtins.property
4327
+ @pulumi.getter(name="maxEcku")
4328
+ def max_ecku(self) -> Optional[pulumi.Input[_builtins.int]]:
4329
+ """
4330
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4331
+ """
4332
+ return pulumi.get(self, "max_ecku")
4333
+
4334
+ @max_ecku.setter
4335
+ def max_ecku(self, value: Optional[pulumi.Input[_builtins.int]]):
4336
+ pulumi.set(self, "max_ecku", value)
4291
4337
 
4292
4338
 
4293
4339
  if not MYPY:
@@ -4323,6 +4369,10 @@ class KafkaClusterEnvironmentArgs:
4323
4369
 
4324
4370
  if not MYPY:
4325
4371
  class KafkaClusterFreightArgsDict(TypedDict):
4372
+ max_ecku: NotRequired[pulumi.Input[_builtins.int]]
4373
+ """
4374
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4375
+ """
4326
4376
  zones: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
4327
4377
  """
4328
4378
  (Required List of String) The list of zones the cluster is in.
@@ -4334,14 +4384,30 @@ elif False:
4334
4384
  @pulumi.input_type
4335
4385
  class KafkaClusterFreightArgs:
4336
4386
  def __init__(__self__, *,
4387
+ max_ecku: Optional[pulumi.Input[_builtins.int]] = None,
4337
4388
  zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
4338
4389
  """
4390
+ :param pulumi.Input[_builtins.int] max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4339
4391
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] zones: (Required List of String) The list of zones the cluster is in.
4340
4392
  - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
4341
4393
  """
4394
+ if max_ecku is not None:
4395
+ pulumi.set(__self__, "max_ecku", max_ecku)
4342
4396
  if zones is not None:
4343
4397
  pulumi.set(__self__, "zones", zones)
4344
4398
 
4399
+ @_builtins.property
4400
+ @pulumi.getter(name="maxEcku")
4401
+ def max_ecku(self) -> Optional[pulumi.Input[_builtins.int]]:
4402
+ """
4403
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4404
+ """
4405
+ return pulumi.get(self, "max_ecku")
4406
+
4407
+ @max_ecku.setter
4408
+ def max_ecku(self, value: Optional[pulumi.Input[_builtins.int]]):
4409
+ pulumi.set(self, "max_ecku", value)
4410
+
4345
4411
  @_builtins.property
4346
4412
  @pulumi.getter
4347
4413
  def zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
@@ -4389,14 +4455,34 @@ class KafkaClusterNetworkArgs:
4389
4455
 
4390
4456
  if not MYPY:
4391
4457
  class KafkaClusterStandardArgsDict(TypedDict):
4392
- pass
4458
+ max_ecku: NotRequired[pulumi.Input[_builtins.int]]
4459
+ """
4460
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4461
+ """
4393
4462
  elif False:
4394
4463
  KafkaClusterStandardArgsDict: TypeAlias = Mapping[str, Any]
4395
4464
 
4396
4465
  @pulumi.input_type
4397
4466
  class KafkaClusterStandardArgs:
4398
- def __init__(__self__):
4399
- pass
4467
+ def __init__(__self__, *,
4468
+ max_ecku: Optional[pulumi.Input[_builtins.int]] = None):
4469
+ """
4470
+ :param pulumi.Input[_builtins.int] max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4471
+ """
4472
+ if max_ecku is not None:
4473
+ pulumi.set(__self__, "max_ecku", max_ecku)
4474
+
4475
+ @_builtins.property
4476
+ @pulumi.getter(name="maxEcku")
4477
+ def max_ecku(self) -> Optional[pulumi.Input[_builtins.int]]:
4478
+ """
4479
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
4480
+ """
4481
+ return pulumi.get(self, "max_ecku")
4482
+
4483
+ @max_ecku.setter
4484
+ def max_ecku(self, value: Optional[pulumi.Input[_builtins.int]]):
4485
+ pulumi.set(self, "max_ecku", value)
4400
4486
 
4401
4487
 
4402
4488
  if not MYPY:
@@ -9516,14 +9602,33 @@ class GetIpAddressesFilterArgs:
9516
9602
 
9517
9603
  if not MYPY:
9518
9604
  class GetKafkaClusterBasicArgsDict(TypedDict):
9519
- pass
9605
+ max_ecku: _builtins.int
9606
+ """
9607
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9608
+ """
9520
9609
  elif False:
9521
9610
  GetKafkaClusterBasicArgsDict: TypeAlias = Mapping[str, Any]
9522
9611
 
9523
9612
  @pulumi.input_type
9524
9613
  class GetKafkaClusterBasicArgs:
9525
- def __init__(__self__):
9526
- pass
9614
+ def __init__(__self__, *,
9615
+ max_ecku: _builtins.int):
9616
+ """
9617
+ :param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9618
+ """
9619
+ pulumi.set(__self__, "max_ecku", max_ecku)
9620
+
9621
+ @_builtins.property
9622
+ @pulumi.getter(name="maxEcku")
9623
+ def max_ecku(self) -> _builtins.int:
9624
+ """
9625
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9626
+ """
9627
+ return pulumi.get(self, "max_ecku")
9628
+
9629
+ @max_ecku.setter
9630
+ def max_ecku(self, value: _builtins.int):
9631
+ pulumi.set(self, "max_ecku", value)
9527
9632
 
9528
9633
 
9529
9634
  if not MYPY:
@@ -9606,14 +9711,33 @@ class GetKafkaClusterDedicatedArgs:
9606
9711
 
9607
9712
  if not MYPY:
9608
9713
  class GetKafkaClusterEnterpriseArgsDict(TypedDict):
9609
- pass
9714
+ max_ecku: _builtins.int
9715
+ """
9716
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9717
+ """
9610
9718
  elif False:
9611
9719
  GetKafkaClusterEnterpriseArgsDict: TypeAlias = Mapping[str, Any]
9612
9720
 
9613
9721
  @pulumi.input_type
9614
9722
  class GetKafkaClusterEnterpriseArgs:
9615
- def __init__(__self__):
9616
- pass
9723
+ def __init__(__self__, *,
9724
+ max_ecku: _builtins.int):
9725
+ """
9726
+ :param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9727
+ """
9728
+ pulumi.set(__self__, "max_ecku", max_ecku)
9729
+
9730
+ @_builtins.property
9731
+ @pulumi.getter(name="maxEcku")
9732
+ def max_ecku(self) -> _builtins.int:
9733
+ """
9734
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9735
+ """
9736
+ return pulumi.get(self, "max_ecku")
9737
+
9738
+ @max_ecku.setter
9739
+ def max_ecku(self, value: _builtins.int):
9740
+ pulumi.set(self, "max_ecku", value)
9617
9741
 
9618
9742
 
9619
9743
  if not MYPY:
@@ -9655,6 +9779,10 @@ class GetKafkaClusterEnvironmentArgs:
9655
9779
 
9656
9780
  if not MYPY:
9657
9781
  class GetKafkaClusterFreightArgsDict(TypedDict):
9782
+ max_ecku: _builtins.int
9783
+ """
9784
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9785
+ """
9658
9786
  zones: Sequence[_builtins.str]
9659
9787
  """
9660
9788
  (Required List of String) The list of zones the cluster is in.
@@ -9668,15 +9796,30 @@ elif False:
9668
9796
  @pulumi.input_type
9669
9797
  class GetKafkaClusterFreightArgs:
9670
9798
  def __init__(__self__, *,
9799
+ max_ecku: _builtins.int,
9671
9800
  zones: Sequence[_builtins.str]):
9672
9801
  """
9802
+ :param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9673
9803
  :param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
9674
9804
  - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
9675
9805
  - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
9676
9806
  - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
9677
9807
  """
9808
+ pulumi.set(__self__, "max_ecku", max_ecku)
9678
9809
  pulumi.set(__self__, "zones", zones)
9679
9810
 
9811
+ @_builtins.property
9812
+ @pulumi.getter(name="maxEcku")
9813
+ def max_ecku(self) -> _builtins.int:
9814
+ """
9815
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9816
+ """
9817
+ return pulumi.get(self, "max_ecku")
9818
+
9819
+ @max_ecku.setter
9820
+ def max_ecku(self, value: _builtins.int):
9821
+ pulumi.set(self, "max_ecku", value)
9822
+
9680
9823
  @_builtins.property
9681
9824
  @pulumi.getter
9682
9825
  def zones(self) -> Sequence[_builtins.str]:
@@ -9695,14 +9838,33 @@ class GetKafkaClusterFreightArgs:
9695
9838
 
9696
9839
  if not MYPY:
9697
9840
  class GetKafkaClusterStandardArgsDict(TypedDict):
9698
- pass
9841
+ max_ecku: _builtins.int
9842
+ """
9843
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9844
+ """
9699
9845
  elif False:
9700
9846
  GetKafkaClusterStandardArgsDict: TypeAlias = Mapping[str, Any]
9701
9847
 
9702
9848
  @pulumi.input_type
9703
9849
  class GetKafkaClusterStandardArgs:
9704
- def __init__(__self__):
9705
- pass
9850
+ def __init__(__self__, *,
9851
+ max_ecku: _builtins.int):
9852
+ """
9853
+ :param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9854
+ """
9855
+ pulumi.set(__self__, "max_ecku", max_ecku)
9856
+
9857
+ @_builtins.property
9858
+ @pulumi.getter(name="maxEcku")
9859
+ def max_ecku(self) -> _builtins.int:
9860
+ """
9861
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
9862
+ """
9863
+ return pulumi.get(self, "max_ecku")
9864
+
9865
+ @max_ecku.setter
9866
+ def max_ecku(self, value: _builtins.int):
9867
+ pulumi.set(self, "max_ecku", value)
9706
9868
 
9707
9869
 
9708
9870
  if not MYPY:
@@ -2757,8 +2757,38 @@ class KafkaClientQuotaThroughput(dict):
2757
2757
 
2758
2758
  @pulumi.output_type
2759
2759
  class KafkaClusterBasic(dict):
2760
- def __init__(__self__):
2761
- pass
2760
+ @staticmethod
2761
+ def __key_warning(key: str):
2762
+ suggest = None
2763
+ if key == "maxEcku":
2764
+ suggest = "max_ecku"
2765
+
2766
+ if suggest:
2767
+ pulumi.log.warn(f"Key '{key}' not found in KafkaClusterBasic. Access the value via the '{suggest}' property getter instead.")
2768
+
2769
+ def __getitem__(self, key: str) -> Any:
2770
+ KafkaClusterBasic.__key_warning(key)
2771
+ return super().__getitem__(key)
2772
+
2773
+ def get(self, key: str, default = None) -> Any:
2774
+ KafkaClusterBasic.__key_warning(key)
2775
+ return super().get(key, default)
2776
+
2777
+ def __init__(__self__, *,
2778
+ max_ecku: Optional[_builtins.int] = None):
2779
+ """
2780
+ :param _builtins.int max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
2781
+ """
2782
+ if max_ecku is not None:
2783
+ pulumi.set(__self__, "max_ecku", max_ecku)
2784
+
2785
+ @_builtins.property
2786
+ @pulumi.getter(name="maxEcku")
2787
+ def max_ecku(self) -> Optional[_builtins.int]:
2788
+ """
2789
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
2790
+ """
2791
+ return pulumi.get(self, "max_ecku")
2762
2792
 
2763
2793
 
2764
2794
  @pulumi.output_type
@@ -2867,6 +2897,8 @@ class KafkaClusterDedicated(dict):
2867
2897
  !> **Warning:** You can only upgrade clusters from `basic` to `standard`.
2868
2898
 
2869
2899
  > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
2900
+
2901
+ > **Note:** Refer to [eCKU/CKU comparison](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#ecku-cku-comparison) documentation for the minimum/maximum eCKU requirements for each cluster type.
2870
2902
  :param _builtins.str encryption_key: The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
2871
2903
  :param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
2872
2904
  - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
@@ -2890,6 +2922,8 @@ class KafkaClusterDedicated(dict):
2890
2922
  !> **Warning:** You can only upgrade clusters from `basic` to `standard`.
2891
2923
 
2892
2924
  > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
2925
+
2926
+ > **Note:** Refer to [eCKU/CKU comparison](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#ecku-cku-comparison) documentation for the minimum/maximum eCKU requirements for each cluster type.
2893
2927
  """
2894
2928
  return pulumi.get(self, "cku")
2895
2929
 
@@ -2991,8 +3025,38 @@ class KafkaClusterEndpoint(dict):
2991
3025
 
2992
3026
  @pulumi.output_type
2993
3027
  class KafkaClusterEnterprise(dict):
2994
- def __init__(__self__):
2995
- pass
3028
+ @staticmethod
3029
+ def __key_warning(key: str):
3030
+ suggest = None
3031
+ if key == "maxEcku":
3032
+ suggest = "max_ecku"
3033
+
3034
+ if suggest:
3035
+ pulumi.log.warn(f"Key '{key}' not found in KafkaClusterEnterprise. Access the value via the '{suggest}' property getter instead.")
3036
+
3037
+ def __getitem__(self, key: str) -> Any:
3038
+ KafkaClusterEnterprise.__key_warning(key)
3039
+ return super().__getitem__(key)
3040
+
3041
+ def get(self, key: str, default = None) -> Any:
3042
+ KafkaClusterEnterprise.__key_warning(key)
3043
+ return super().get(key, default)
3044
+
3045
+ def __init__(__self__, *,
3046
+ max_ecku: Optional[_builtins.int] = None):
3047
+ """
3048
+ :param _builtins.int max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3049
+ """
3050
+ if max_ecku is not None:
3051
+ pulumi.set(__self__, "max_ecku", max_ecku)
3052
+
3053
+ @_builtins.property
3054
+ @pulumi.getter(name="maxEcku")
3055
+ def max_ecku(self) -> Optional[_builtins.int]:
3056
+ """
3057
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3058
+ """
3059
+ return pulumi.get(self, "max_ecku")
2996
3060
 
2997
3061
 
2998
3062
  @pulumi.output_type
@@ -3015,15 +3079,44 @@ class KafkaClusterEnvironment(dict):
3015
3079
 
3016
3080
  @pulumi.output_type
3017
3081
  class KafkaClusterFreight(dict):
3082
+ @staticmethod
3083
+ def __key_warning(key: str):
3084
+ suggest = None
3085
+ if key == "maxEcku":
3086
+ suggest = "max_ecku"
3087
+
3088
+ if suggest:
3089
+ pulumi.log.warn(f"Key '{key}' not found in KafkaClusterFreight. Access the value via the '{suggest}' property getter instead.")
3090
+
3091
+ def __getitem__(self, key: str) -> Any:
3092
+ KafkaClusterFreight.__key_warning(key)
3093
+ return super().__getitem__(key)
3094
+
3095
+ def get(self, key: str, default = None) -> Any:
3096
+ KafkaClusterFreight.__key_warning(key)
3097
+ return super().get(key, default)
3098
+
3018
3099
  def __init__(__self__, *,
3100
+ max_ecku: Optional[_builtins.int] = None,
3019
3101
  zones: Optional[Sequence[_builtins.str]] = None):
3020
3102
  """
3103
+ :param _builtins.int max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3021
3104
  :param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
3022
3105
  - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
3023
3106
  """
3107
+ if max_ecku is not None:
3108
+ pulumi.set(__self__, "max_ecku", max_ecku)
3024
3109
  if zones is not None:
3025
3110
  pulumi.set(__self__, "zones", zones)
3026
3111
 
3112
+ @_builtins.property
3113
+ @pulumi.getter(name="maxEcku")
3114
+ def max_ecku(self) -> Optional[_builtins.int]:
3115
+ """
3116
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3117
+ """
3118
+ return pulumi.get(self, "max_ecku")
3119
+
3027
3120
  @_builtins.property
3028
3121
  @pulumi.getter
3029
3122
  def zones(self) -> Optional[Sequence[_builtins.str]]:
@@ -3054,8 +3147,38 @@ class KafkaClusterNetwork(dict):
3054
3147
 
3055
3148
  @pulumi.output_type
3056
3149
  class KafkaClusterStandard(dict):
3057
- def __init__(__self__):
3058
- pass
3150
+ @staticmethod
3151
+ def __key_warning(key: str):
3152
+ suggest = None
3153
+ if key == "maxEcku":
3154
+ suggest = "max_ecku"
3155
+
3156
+ if suggest:
3157
+ pulumi.log.warn(f"Key '{key}' not found in KafkaClusterStandard. Access the value via the '{suggest}' property getter instead.")
3158
+
3159
+ def __getitem__(self, key: str) -> Any:
3160
+ KafkaClusterStandard.__key_warning(key)
3161
+ return super().__getitem__(key)
3162
+
3163
+ def get(self, key: str, default = None) -> Any:
3164
+ KafkaClusterStandard.__key_warning(key)
3165
+ return super().get(key, default)
3166
+
3167
+ def __init__(__self__, *,
3168
+ max_ecku: Optional[_builtins.int] = None):
3169
+ """
3170
+ :param _builtins.int max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3171
+ """
3172
+ if max_ecku is not None:
3173
+ pulumi.set(__self__, "max_ecku", max_ecku)
3174
+
3175
+ @_builtins.property
3176
+ @pulumi.getter(name="maxEcku")
3177
+ def max_ecku(self) -> Optional[_builtins.int]:
3178
+ """
3179
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
3180
+ """
3181
+ return pulumi.get(self, "max_ecku")
3059
3182
 
3060
3183
 
3061
3184
  @pulumi.output_type
@@ -7331,8 +7454,20 @@ class GetKafkaClientQuotaThroughputResult(dict):
7331
7454
 
7332
7455
  @pulumi.output_type
7333
7456
  class GetKafkaClusterBasicResult(dict):
7334
- def __init__(__self__):
7335
- pass
7457
+ def __init__(__self__, *,
7458
+ max_ecku: _builtins.int):
7459
+ """
7460
+ :param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
7461
+ """
7462
+ pulumi.set(__self__, "max_ecku", max_ecku)
7463
+
7464
+ @_builtins.property
7465
+ @pulumi.getter(name="maxEcku")
7466
+ def max_ecku(self) -> _builtins.int:
7467
+ """
7468
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
7469
+ """
7470
+ return pulumi.get(self, "max_ecku")
7336
7471
 
7337
7472
 
7338
7473
  @pulumi.output_type
@@ -7452,8 +7587,20 @@ class GetKafkaClusterEndpointResult(dict):
7452
7587
 
7453
7588
  @pulumi.output_type
7454
7589
  class GetKafkaClusterEnterpriseResult(dict):
7455
- def __init__(__self__):
7456
- pass
7590
+ def __init__(__self__, *,
7591
+ max_ecku: _builtins.int):
7592
+ """
7593
+ :param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
7594
+ """
7595
+ pulumi.set(__self__, "max_ecku", max_ecku)
7596
+
7597
+ @_builtins.property
7598
+ @pulumi.getter(name="maxEcku")
7599
+ def max_ecku(self) -> _builtins.int:
7600
+ """
7601
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
7602
+ """
7603
+ return pulumi.get(self, "max_ecku")
7457
7604
 
7458
7605
 
7459
7606
  @pulumi.output_type
@@ -7481,15 +7628,26 @@ class GetKafkaClusterEnvironmentResult(dict):
7481
7628
  @pulumi.output_type
7482
7629
  class GetKafkaClusterFreightResult(dict):
7483
7630
  def __init__(__self__, *,
7631
+ max_ecku: _builtins.int,
7484
7632
  zones: Sequence[_builtins.str]):
7485
7633
  """
7634
+ :param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
7486
7635
  :param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
7487
7636
  - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
7488
7637
  - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
7489
7638
  - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
7490
7639
  """
7640
+ pulumi.set(__self__, "max_ecku", max_ecku)
7491
7641
  pulumi.set(__self__, "zones", zones)
7492
7642
 
7643
+ @_builtins.property
7644
+ @pulumi.getter(name="maxEcku")
7645
+ def max_ecku(self) -> _builtins.int:
7646
+ """
7647
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
7648
+ """
7649
+ return pulumi.get(self, "max_ecku")
7650
+
7493
7651
  @_builtins.property
7494
7652
  @pulumi.getter
7495
7653
  def zones(self) -> Sequence[_builtins.str]:
@@ -7522,8 +7680,20 @@ class GetKafkaClusterNetworkResult(dict):
7522
7680
 
7523
7681
  @pulumi.output_type
7524
7682
  class GetKafkaClusterStandardResult(dict):
7525
- def __init__(__self__):
7526
- pass
7683
+ def __init__(__self__, *,
7684
+ max_ecku: _builtins.int):
7685
+ """
7686
+ :param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
7687
+ """
7688
+ pulumi.set(__self__, "max_ecku", max_ecku)
7689
+
7690
+ @_builtins.property
7691
+ @pulumi.getter(name="maxEcku")
7692
+ def max_ecku(self) -> _builtins.int:
7693
+ """
7694
+ (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
7695
+ """
7696
+ return pulumi.get(self, "max_ecku")
7527
7697
 
7528
7698
 
7529
7699
  @pulumi.output_type
@@ -7749,8 +7919,20 @@ class GetKafkaClustersClusterResult(dict):
7749
7919
 
7750
7920
  @pulumi.output_type
7751
7921
  class GetKafkaClustersClusterBasicResult(dict):
7752
- def __init__(__self__):
7753
- pass
7922
+ def __init__(__self__, *,
7923
+ max_ecku: _builtins.int):
7924
+ """
7925
+ :param _builtins.int max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with HIGH availability must have at least two eCKUs.
7926
+ """
7927
+ pulumi.set(__self__, "max_ecku", max_ecku)
7928
+
7929
+ @_builtins.property
7930
+ @pulumi.getter(name="maxEcku")
7931
+ def max_ecku(self) -> _builtins.int:
7932
+ """
7933
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with HIGH availability must have at least two eCKUs.
7934
+ """
7935
+ return pulumi.get(self, "max_ecku")
7754
7936
 
7755
7937
 
7756
7938
  @pulumi.output_type
@@ -7870,8 +8052,20 @@ class GetKafkaClustersClusterEndpointResult(dict):
7870
8052
 
7871
8053
  @pulumi.output_type
7872
8054
  class GetKafkaClustersClusterEnterpriseResult(dict):
7873
- def __init__(__self__):
7874
- pass
8055
+ def __init__(__self__, *,
8056
+ max_ecku: _builtins.int):
8057
+ """
8058
+ :param _builtins.int max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with HIGH availability must have at least two eCKUs.
8059
+ """
8060
+ pulumi.set(__self__, "max_ecku", max_ecku)
8061
+
8062
+ @_builtins.property
8063
+ @pulumi.getter(name="maxEcku")
8064
+ def max_ecku(self) -> _builtins.int:
8065
+ """
8066
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with HIGH availability must have at least two eCKUs.
8067
+ """
8068
+ return pulumi.get(self, "max_ecku")
7875
8069
 
7876
8070
 
7877
8071
  @pulumi.output_type
@@ -7895,15 +8089,26 @@ class GetKafkaClustersClusterEnvironmentResult(dict):
7895
8089
  @pulumi.output_type
7896
8090
  class GetKafkaClustersClusterFreightResult(dict):
7897
8091
  def __init__(__self__, *,
8092
+ max_ecku: _builtins.int,
7898
8093
  zones: Sequence[_builtins.str]):
7899
8094
  """
8095
+ :param _builtins.int max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with HIGH availability must have at least two eCKUs.
7900
8096
  :param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
7901
8097
  - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
7902
8098
  - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
7903
8099
  - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
7904
8100
  """
8101
+ pulumi.set(__self__, "max_ecku", max_ecku)
7905
8102
  pulumi.set(__self__, "zones", zones)
7906
8103
 
8104
+ @_builtins.property
8105
+ @pulumi.getter(name="maxEcku")
8106
+ def max_ecku(self) -> _builtins.int:
8107
+ """
8108
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with HIGH availability must have at least two eCKUs.
8109
+ """
8110
+ return pulumi.get(self, "max_ecku")
8111
+
7907
8112
  @_builtins.property
7908
8113
  @pulumi.getter
7909
8114
  def zones(self) -> Sequence[_builtins.str]:
@@ -7936,8 +8141,20 @@ class GetKafkaClustersClusterNetworkResult(dict):
7936
8141
 
7937
8142
  @pulumi.output_type
7938
8143
  class GetKafkaClustersClusterStandardResult(dict):
7939
- def __init__(__self__):
7940
- pass
8144
+ def __init__(__self__, *,
8145
+ max_ecku: _builtins.int):
8146
+ """
8147
+ :param _builtins.int max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with HIGH availability must have at least two eCKUs.
8148
+ """
8149
+ pulumi.set(__self__, "max_ecku", max_ecku)
8150
+
8151
+ @_builtins.property
8152
+ @pulumi.getter(name="maxEcku")
8153
+ def max_ecku(self) -> _builtins.int:
8154
+ """
8155
+ The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with HIGH availability must have at least two eCKUs.
8156
+ """
8157
+ return pulumi.get(self, "max_ecku")
7941
8158
 
7942
8159
 
7943
8160
  @pulumi.output_type
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "confluentcloud",
4
- "version": "2.52.0-alpha.1763696172"
4
+ "version": "2.53.0"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_confluentcloud
3
- Version: 2.52.0a1763696172
3
+ Version: 2.53.0
4
4
  Summary: A Pulumi package for creating and managing Confluent cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -1,5 +1,5 @@
1
1
  pulumi_confluentcloud/__init__.py,sha256=njoOocldDmVmxvwjY0h3gDa9vLDo_vpJsKmu8LK1Uks,16765
2
- pulumi_confluentcloud/_inputs.py,sha256=T1lZNvkdO0i2ujq__I58IvunwXp20PRcKUxNNWzPywg,479260
2
+ pulumi_confluentcloud/_inputs.py,sha256=yoo6vKQAeNBel1RiUSwlgNnrQr6QE_VmGXOh3AtsQ7c,490648
3
3
  pulumi_confluentcloud/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_confluentcloud/access_point.py,sha256=EWjw5oS5Zvch3deV4n8oUv9AV73aYy7qUrEJ6ji0Db0,32976
5
5
  pulumi_confluentcloud/api_key.py,sha256=-jTRJ8ztmZQoqb3T9IzR7bhBdV9PxwUHDj8sG4O93Dc,36850
@@ -97,7 +97,7 @@ pulumi_confluentcloud/ksql_cluster.py,sha256=2iHuwHft1nFCJHHUZ_OQ6za0Wwhc01VyfdV
97
97
  pulumi_confluentcloud/network.py,sha256=8CtwHx8oTbnbgX7F4WLcmyFHUR5v-d6mt4XtcYdGShw,65777
98
98
  pulumi_confluentcloud/network_link_endpoint.py,sha256=mIDIlsxhKa5wwaLJzBn9aMGGl_lYRcZvUDjLFEh5aYI,21019
99
99
  pulumi_confluentcloud/network_link_service.py,sha256=1EYvdSSxGVyf9EYUb9KQEGF_d7ct74B4BTQcy5VvTto,21597
100
- pulumi_confluentcloud/outputs.py,sha256=i-3OrQV2Ld-zbySmJLDY0gBrXVIpesxx3X2uczhrI68,422261
100
+ pulumi_confluentcloud/outputs.py,sha256=1iYkIO1caI4h3izic5HCj_pSmiUPc_-WekBVxGJjRnc,434591
101
101
  pulumi_confluentcloud/peering.py,sha256=JLZhrSeVal5O2KcWqgKjcA_NVxm4jCgdmKkeVqEcLAI,26219
102
102
  pulumi_confluentcloud/plugin.py,sha256=CKzFzVS27r-z8IC6uQKg6JMTAY-58RfRp9WZfybQC9c,19241
103
103
  pulumi_confluentcloud/private_link_access.py,sha256=RXRS63n0MtU1rqscLqDiZXCPTyB6Agn4CwKu5BEg6BY,26465
@@ -107,7 +107,7 @@ pulumi_confluentcloud/provider.py,sha256=sN-VlTRE0cOeq78IKZopdjt1JLVRJpXA3LYYbYi
107
107
  pulumi_confluentcloud/provider_integration.py,sha256=RmBOJN9EFsKlRiBAEP2_hXl-LR0FMWA6_qC61HWocPQ,16497
108
108
  pulumi_confluentcloud/provider_integration_authorization.py,sha256=iESH7OhbtppHB3wY8oBgpWAl9mrvp6Iar9vWtuXjHso,17537
109
109
  pulumi_confluentcloud/provider_integration_setup.py,sha256=q06Qw844J2N0uoctoACyySDy9piyuqjHzAjZS_WsHIc,19706
110
- pulumi_confluentcloud/pulumi-plugin.json,sha256=aFQPflYWaZG07Lbr8ZIR0vy4CHVEow3pPB4MnVhFnxk,91
110
+ pulumi_confluentcloud/pulumi-plugin.json,sha256=D_DqYBDIACo_GBFRRe7eopvXz-qTerwzUgq4UYwVMI4,74
111
111
  pulumi_confluentcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
112
  pulumi_confluentcloud/role_binding.py,sha256=MbeRwcuWNj_KSnNP2zEqNSthGBV1z1haBjbk97pvMZk,20463
113
113
  pulumi_confluentcloud/schema.py,sha256=CYdHdFIw-VYplimUSaTWGittfo5wUOEWuFYfD_kUbvI,49055
@@ -128,7 +128,7 @@ pulumi_confluentcloud/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJ
128
128
  pulumi_confluentcloud/config/__init__.pyi,sha256=wUpGQFTVXK9rFefT-KLKGEPtajQG_D4Due_TzbOT5jE,2151
129
129
  pulumi_confluentcloud/config/outputs.py,sha256=j9KabfxdzVhzLBDXzRsfQbM3kPvizCnfA4jT1GiYu7I,5369
130
130
  pulumi_confluentcloud/config/vars.py,sha256=a6jklkyhkLNyX1ZeL2snOeaA6uX4dqwUZl5fUDp3wMQ,4915
131
- pulumi_confluentcloud-2.52.0a1763696172.dist-info/METADATA,sha256=2RuXvjNlKfz7rx97oKZwZ7d76W_WSEOv2710edU4zRo,2898
132
- pulumi_confluentcloud-2.52.0a1763696172.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
- pulumi_confluentcloud-2.52.0a1763696172.dist-info/top_level.txt,sha256=0spb6Wqsv3xa9v5poWmP3cWll3tbfOwOKwneN7S2DjM,22
134
- pulumi_confluentcloud-2.52.0a1763696172.dist-info/RECORD,,
131
+ pulumi_confluentcloud-2.53.0.dist-info/METADATA,sha256=GpL5GDkQHWCUcALqsvwQzHoRXIFXBsrC6K6De-956pk,2887
132
+ pulumi_confluentcloud-2.53.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
+ pulumi_confluentcloud-2.53.0.dist-info/top_level.txt,sha256=0spb6Wqsv3xa9v5poWmP3cWll3tbfOwOKwneN7S2DjM,22
134
+ pulumi_confluentcloud-2.53.0.dist-info/RECORD,,