pulumi-confluentcloud 2.53.0__py3-none-any.whl → 2.53.0a1763703542__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.
- pulumi_confluentcloud/_inputs.py +18 -180
- pulumi_confluentcloud/outputs.py +18 -235
- pulumi_confluentcloud/pulumi-plugin.json +1 -1
- {pulumi_confluentcloud-2.53.0.dist-info → pulumi_confluentcloud-2.53.0a1763703542.dist-info}/METADATA +1 -1
- {pulumi_confluentcloud-2.53.0.dist-info → pulumi_confluentcloud-2.53.0a1763703542.dist-info}/RECORD +7 -7
- {pulumi_confluentcloud-2.53.0.dist-info → pulumi_confluentcloud-2.53.0a1763703542.dist-info}/WHEEL +0 -0
- {pulumi_confluentcloud-2.53.0.dist-info → pulumi_confluentcloud-2.53.0a1763703542.dist-info}/top_level.txt +0 -0
pulumi_confluentcloud/_inputs.py
CHANGED
|
@@ -3954,34 +3954,14 @@ class KafkaClientQuotaThroughputArgs:
|
|
|
3954
3954
|
|
|
3955
3955
|
if not MYPY:
|
|
3956
3956
|
class KafkaClusterBasicArgsDict(TypedDict):
|
|
3957
|
-
|
|
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
|
-
"""
|
|
3957
|
+
pass
|
|
3961
3958
|
elif False:
|
|
3962
3959
|
KafkaClusterBasicArgsDict: TypeAlias = Mapping[str, Any]
|
|
3963
3960
|
|
|
3964
3961
|
@pulumi.input_type
|
|
3965
3962
|
class KafkaClusterBasicArgs:
|
|
3966
|
-
def __init__(__self__
|
|
3967
|
-
|
|
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)
|
|
3963
|
+
def __init__(__self__):
|
|
3964
|
+
pass
|
|
3985
3965
|
|
|
3986
3966
|
|
|
3987
3967
|
if not MYPY:
|
|
@@ -4121,8 +4101,6 @@ if not MYPY:
|
|
|
4121
4101
|
!> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
4122
4102
|
|
|
4123
4103
|
> **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.
|
|
4126
4104
|
"""
|
|
4127
4105
|
encryption_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
4128
4106
|
"""
|
|
@@ -4152,8 +4130,6 @@ class KafkaClusterDedicatedArgs:
|
|
|
4152
4130
|
!> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
4153
4131
|
|
|
4154
4132
|
> **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.
|
|
4157
4133
|
:param pulumi.Input[_builtins.str] encryption_key: The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
|
|
4158
4134
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] zones: (Required List of String) The list of zones the cluster is in.
|
|
4159
4135
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
@@ -4177,8 +4153,6 @@ class KafkaClusterDedicatedArgs:
|
|
|
4177
4153
|
!> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
4178
4154
|
|
|
4179
4155
|
> **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.
|
|
4182
4156
|
"""
|
|
4183
4157
|
return pulumi.get(self, "cku")
|
|
4184
4158
|
|
|
@@ -4306,34 +4280,14 @@ class KafkaClusterEndpointArgs:
|
|
|
4306
4280
|
|
|
4307
4281
|
if not MYPY:
|
|
4308
4282
|
class KafkaClusterEnterpriseArgsDict(TypedDict):
|
|
4309
|
-
|
|
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
|
-
"""
|
|
4283
|
+
pass
|
|
4313
4284
|
elif False:
|
|
4314
4285
|
KafkaClusterEnterpriseArgsDict: TypeAlias = Mapping[str, Any]
|
|
4315
4286
|
|
|
4316
4287
|
@pulumi.input_type
|
|
4317
4288
|
class KafkaClusterEnterpriseArgs:
|
|
4318
|
-
def __init__(__self__
|
|
4319
|
-
|
|
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)
|
|
4289
|
+
def __init__(__self__):
|
|
4290
|
+
pass
|
|
4337
4291
|
|
|
4338
4292
|
|
|
4339
4293
|
if not MYPY:
|
|
@@ -4369,10 +4323,6 @@ class KafkaClusterEnvironmentArgs:
|
|
|
4369
4323
|
|
|
4370
4324
|
if not MYPY:
|
|
4371
4325
|
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
|
-
"""
|
|
4376
4326
|
zones: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
4377
4327
|
"""
|
|
4378
4328
|
(Required List of String) The list of zones the cluster is in.
|
|
@@ -4384,30 +4334,14 @@ elif False:
|
|
|
4384
4334
|
@pulumi.input_type
|
|
4385
4335
|
class KafkaClusterFreightArgs:
|
|
4386
4336
|
def __init__(__self__, *,
|
|
4387
|
-
max_ecku: Optional[pulumi.Input[_builtins.int]] = None,
|
|
4388
4337
|
zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
4389
4338
|
"""
|
|
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.
|
|
4391
4339
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] zones: (Required List of String) The list of zones the cluster is in.
|
|
4392
4340
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
4393
4341
|
"""
|
|
4394
|
-
if max_ecku is not None:
|
|
4395
|
-
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
4396
4342
|
if zones is not None:
|
|
4397
4343
|
pulumi.set(__self__, "zones", zones)
|
|
4398
4344
|
|
|
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
|
-
|
|
4411
4345
|
@_builtins.property
|
|
4412
4346
|
@pulumi.getter
|
|
4413
4347
|
def zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -4455,34 +4389,14 @@ class KafkaClusterNetworkArgs:
|
|
|
4455
4389
|
|
|
4456
4390
|
if not MYPY:
|
|
4457
4391
|
class KafkaClusterStandardArgsDict(TypedDict):
|
|
4458
|
-
|
|
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
|
-
"""
|
|
4392
|
+
pass
|
|
4462
4393
|
elif False:
|
|
4463
4394
|
KafkaClusterStandardArgsDict: TypeAlias = Mapping[str, Any]
|
|
4464
4395
|
|
|
4465
4396
|
@pulumi.input_type
|
|
4466
4397
|
class KafkaClusterStandardArgs:
|
|
4467
|
-
def __init__(__self__
|
|
4468
|
-
|
|
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)
|
|
4398
|
+
def __init__(__self__):
|
|
4399
|
+
pass
|
|
4486
4400
|
|
|
4487
4401
|
|
|
4488
4402
|
if not MYPY:
|
|
@@ -9602,33 +9516,14 @@ class GetIpAddressesFilterArgs:
|
|
|
9602
9516
|
|
|
9603
9517
|
if not MYPY:
|
|
9604
9518
|
class GetKafkaClusterBasicArgsDict(TypedDict):
|
|
9605
|
-
|
|
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
|
-
"""
|
|
9519
|
+
pass
|
|
9609
9520
|
elif False:
|
|
9610
9521
|
GetKafkaClusterBasicArgsDict: TypeAlias = Mapping[str, Any]
|
|
9611
9522
|
|
|
9612
9523
|
@pulumi.input_type
|
|
9613
9524
|
class GetKafkaClusterBasicArgs:
|
|
9614
|
-
def __init__(__self__
|
|
9615
|
-
|
|
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)
|
|
9525
|
+
def __init__(__self__):
|
|
9526
|
+
pass
|
|
9632
9527
|
|
|
9633
9528
|
|
|
9634
9529
|
if not MYPY:
|
|
@@ -9711,33 +9606,14 @@ class GetKafkaClusterDedicatedArgs:
|
|
|
9711
9606
|
|
|
9712
9607
|
if not MYPY:
|
|
9713
9608
|
class GetKafkaClusterEnterpriseArgsDict(TypedDict):
|
|
9714
|
-
|
|
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
|
-
"""
|
|
9609
|
+
pass
|
|
9718
9610
|
elif False:
|
|
9719
9611
|
GetKafkaClusterEnterpriseArgsDict: TypeAlias = Mapping[str, Any]
|
|
9720
9612
|
|
|
9721
9613
|
@pulumi.input_type
|
|
9722
9614
|
class GetKafkaClusterEnterpriseArgs:
|
|
9723
|
-
def __init__(__self__
|
|
9724
|
-
|
|
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)
|
|
9615
|
+
def __init__(__self__):
|
|
9616
|
+
pass
|
|
9741
9617
|
|
|
9742
9618
|
|
|
9743
9619
|
if not MYPY:
|
|
@@ -9779,10 +9655,6 @@ class GetKafkaClusterEnvironmentArgs:
|
|
|
9779
9655
|
|
|
9780
9656
|
if not MYPY:
|
|
9781
9657
|
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
|
-
"""
|
|
9786
9658
|
zones: Sequence[_builtins.str]
|
|
9787
9659
|
"""
|
|
9788
9660
|
(Required List of String) The list of zones the cluster is in.
|
|
@@ -9796,30 +9668,15 @@ elif False:
|
|
|
9796
9668
|
@pulumi.input_type
|
|
9797
9669
|
class GetKafkaClusterFreightArgs:
|
|
9798
9670
|
def __init__(__self__, *,
|
|
9799
|
-
max_ecku: _builtins.int,
|
|
9800
9671
|
zones: Sequence[_builtins.str]):
|
|
9801
9672
|
"""
|
|
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).
|
|
9803
9673
|
:param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
|
|
9804
9674
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
9805
9675
|
- On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
|
|
9806
9676
|
- On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
|
|
9807
9677
|
"""
|
|
9808
|
-
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
9809
9678
|
pulumi.set(__self__, "zones", zones)
|
|
9810
9679
|
|
|
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
|
-
|
|
9823
9680
|
@_builtins.property
|
|
9824
9681
|
@pulumi.getter
|
|
9825
9682
|
def zones(self) -> Sequence[_builtins.str]:
|
|
@@ -9838,33 +9695,14 @@ class GetKafkaClusterFreightArgs:
|
|
|
9838
9695
|
|
|
9839
9696
|
if not MYPY:
|
|
9840
9697
|
class GetKafkaClusterStandardArgsDict(TypedDict):
|
|
9841
|
-
|
|
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
|
-
"""
|
|
9698
|
+
pass
|
|
9845
9699
|
elif False:
|
|
9846
9700
|
GetKafkaClusterStandardArgsDict: TypeAlias = Mapping[str, Any]
|
|
9847
9701
|
|
|
9848
9702
|
@pulumi.input_type
|
|
9849
9703
|
class GetKafkaClusterStandardArgs:
|
|
9850
|
-
def __init__(__self__
|
|
9851
|
-
|
|
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)
|
|
9704
|
+
def __init__(__self__):
|
|
9705
|
+
pass
|
|
9868
9706
|
|
|
9869
9707
|
|
|
9870
9708
|
if not MYPY:
|
pulumi_confluentcloud/outputs.py
CHANGED
|
@@ -2757,38 +2757,8 @@ class KafkaClientQuotaThroughput(dict):
|
|
|
2757
2757
|
|
|
2758
2758
|
@pulumi.output_type
|
|
2759
2759
|
class KafkaClusterBasic(dict):
|
|
2760
|
-
|
|
2761
|
-
|
|
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")
|
|
2760
|
+
def __init__(__self__):
|
|
2761
|
+
pass
|
|
2792
2762
|
|
|
2793
2763
|
|
|
2794
2764
|
@pulumi.output_type
|
|
@@ -2897,8 +2867,6 @@ class KafkaClusterDedicated(dict):
|
|
|
2897
2867
|
!> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
2898
2868
|
|
|
2899
2869
|
> **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.
|
|
2902
2870
|
:param _builtins.str encryption_key: The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
|
|
2903
2871
|
:param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
|
|
2904
2872
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
@@ -2922,8 +2890,6 @@ class KafkaClusterDedicated(dict):
|
|
|
2922
2890
|
!> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
2923
2891
|
|
|
2924
2892
|
> **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.
|
|
2927
2893
|
"""
|
|
2928
2894
|
return pulumi.get(self, "cku")
|
|
2929
2895
|
|
|
@@ -3025,38 +2991,8 @@ class KafkaClusterEndpoint(dict):
|
|
|
3025
2991
|
|
|
3026
2992
|
@pulumi.output_type
|
|
3027
2993
|
class KafkaClusterEnterprise(dict):
|
|
3028
|
-
|
|
3029
|
-
|
|
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")
|
|
2994
|
+
def __init__(__self__):
|
|
2995
|
+
pass
|
|
3060
2996
|
|
|
3061
2997
|
|
|
3062
2998
|
@pulumi.output_type
|
|
@@ -3079,44 +3015,15 @@ class KafkaClusterEnvironment(dict):
|
|
|
3079
3015
|
|
|
3080
3016
|
@pulumi.output_type
|
|
3081
3017
|
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
|
-
|
|
3099
3018
|
def __init__(__self__, *,
|
|
3100
|
-
max_ecku: Optional[_builtins.int] = None,
|
|
3101
3019
|
zones: Optional[Sequence[_builtins.str]] = None):
|
|
3102
3020
|
"""
|
|
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.
|
|
3104
3021
|
:param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
|
|
3105
3022
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
3106
3023
|
"""
|
|
3107
|
-
if max_ecku is not None:
|
|
3108
|
-
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
3109
3024
|
if zones is not None:
|
|
3110
3025
|
pulumi.set(__self__, "zones", zones)
|
|
3111
3026
|
|
|
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
|
-
|
|
3120
3027
|
@_builtins.property
|
|
3121
3028
|
@pulumi.getter
|
|
3122
3029
|
def zones(self) -> Optional[Sequence[_builtins.str]]:
|
|
@@ -3147,38 +3054,8 @@ class KafkaClusterNetwork(dict):
|
|
|
3147
3054
|
|
|
3148
3055
|
@pulumi.output_type
|
|
3149
3056
|
class KafkaClusterStandard(dict):
|
|
3150
|
-
|
|
3151
|
-
|
|
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")
|
|
3057
|
+
def __init__(__self__):
|
|
3058
|
+
pass
|
|
3182
3059
|
|
|
3183
3060
|
|
|
3184
3061
|
@pulumi.output_type
|
|
@@ -7454,20 +7331,8 @@ class GetKafkaClientQuotaThroughputResult(dict):
|
|
|
7454
7331
|
|
|
7455
7332
|
@pulumi.output_type
|
|
7456
7333
|
class GetKafkaClusterBasicResult(dict):
|
|
7457
|
-
def __init__(__self__
|
|
7458
|
-
|
|
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")
|
|
7334
|
+
def __init__(__self__):
|
|
7335
|
+
pass
|
|
7471
7336
|
|
|
7472
7337
|
|
|
7473
7338
|
@pulumi.output_type
|
|
@@ -7587,20 +7452,8 @@ class GetKafkaClusterEndpointResult(dict):
|
|
|
7587
7452
|
|
|
7588
7453
|
@pulumi.output_type
|
|
7589
7454
|
class GetKafkaClusterEnterpriseResult(dict):
|
|
7590
|
-
def __init__(__self__
|
|
7591
|
-
|
|
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")
|
|
7455
|
+
def __init__(__self__):
|
|
7456
|
+
pass
|
|
7604
7457
|
|
|
7605
7458
|
|
|
7606
7459
|
@pulumi.output_type
|
|
@@ -7628,26 +7481,15 @@ class GetKafkaClusterEnvironmentResult(dict):
|
|
|
7628
7481
|
@pulumi.output_type
|
|
7629
7482
|
class GetKafkaClusterFreightResult(dict):
|
|
7630
7483
|
def __init__(__self__, *,
|
|
7631
|
-
max_ecku: _builtins.int,
|
|
7632
7484
|
zones: Sequence[_builtins.str]):
|
|
7633
7485
|
"""
|
|
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).
|
|
7635
7486
|
:param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
|
|
7636
7487
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
7637
7488
|
- On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
|
|
7638
7489
|
- On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
|
|
7639
7490
|
"""
|
|
7640
|
-
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
7641
7491
|
pulumi.set(__self__, "zones", zones)
|
|
7642
7492
|
|
|
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
|
-
|
|
7651
7493
|
@_builtins.property
|
|
7652
7494
|
@pulumi.getter
|
|
7653
7495
|
def zones(self) -> Sequence[_builtins.str]:
|
|
@@ -7680,20 +7522,8 @@ class GetKafkaClusterNetworkResult(dict):
|
|
|
7680
7522
|
|
|
7681
7523
|
@pulumi.output_type
|
|
7682
7524
|
class GetKafkaClusterStandardResult(dict):
|
|
7683
|
-
def __init__(__self__
|
|
7684
|
-
|
|
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")
|
|
7525
|
+
def __init__(__self__):
|
|
7526
|
+
pass
|
|
7697
7527
|
|
|
7698
7528
|
|
|
7699
7529
|
@pulumi.output_type
|
|
@@ -7919,20 +7749,8 @@ class GetKafkaClustersClusterResult(dict):
|
|
|
7919
7749
|
|
|
7920
7750
|
@pulumi.output_type
|
|
7921
7751
|
class GetKafkaClustersClusterBasicResult(dict):
|
|
7922
|
-
def __init__(__self__
|
|
7923
|
-
|
|
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")
|
|
7752
|
+
def __init__(__self__):
|
|
7753
|
+
pass
|
|
7936
7754
|
|
|
7937
7755
|
|
|
7938
7756
|
@pulumi.output_type
|
|
@@ -8052,20 +7870,8 @@ class GetKafkaClustersClusterEndpointResult(dict):
|
|
|
8052
7870
|
|
|
8053
7871
|
@pulumi.output_type
|
|
8054
7872
|
class GetKafkaClustersClusterEnterpriseResult(dict):
|
|
8055
|
-
def __init__(__self__
|
|
8056
|
-
|
|
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")
|
|
7873
|
+
def __init__(__self__):
|
|
7874
|
+
pass
|
|
8069
7875
|
|
|
8070
7876
|
|
|
8071
7877
|
@pulumi.output_type
|
|
@@ -8089,26 +7895,15 @@ class GetKafkaClustersClusterEnvironmentResult(dict):
|
|
|
8089
7895
|
@pulumi.output_type
|
|
8090
7896
|
class GetKafkaClustersClusterFreightResult(dict):
|
|
8091
7897
|
def __init__(__self__, *,
|
|
8092
|
-
max_ecku: _builtins.int,
|
|
8093
7898
|
zones: Sequence[_builtins.str]):
|
|
8094
7899
|
"""
|
|
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.
|
|
8096
7900
|
:param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
|
|
8097
7901
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
8098
7902
|
- On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
|
|
8099
7903
|
- On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
|
|
8100
7904
|
"""
|
|
8101
|
-
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
8102
7905
|
pulumi.set(__self__, "zones", zones)
|
|
8103
7906
|
|
|
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
|
-
|
|
8112
7907
|
@_builtins.property
|
|
8113
7908
|
@pulumi.getter
|
|
8114
7909
|
def zones(self) -> Sequence[_builtins.str]:
|
|
@@ -8141,20 +7936,8 @@ class GetKafkaClustersClusterNetworkResult(dict):
|
|
|
8141
7936
|
|
|
8142
7937
|
@pulumi.output_type
|
|
8143
7938
|
class GetKafkaClustersClusterStandardResult(dict):
|
|
8144
|
-
def __init__(__self__
|
|
8145
|
-
|
|
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")
|
|
7939
|
+
def __init__(__self__):
|
|
7940
|
+
pass
|
|
8158
7941
|
|
|
8159
7942
|
|
|
8160
7943
|
@pulumi.output_type
|
{pulumi_confluentcloud-2.53.0.dist-info → pulumi_confluentcloud-2.53.0a1763703542.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_confluentcloud/__init__.py,sha256=njoOocldDmVmxvwjY0h3gDa9vLDo_vpJsKmu8LK1Uks,16765
|
|
2
|
-
pulumi_confluentcloud/_inputs.py,sha256=
|
|
2
|
+
pulumi_confluentcloud/_inputs.py,sha256=T1lZNvkdO0i2ujq__I58IvunwXp20PRcKUxNNWzPywg,479260
|
|
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=
|
|
100
|
+
pulumi_confluentcloud/outputs.py,sha256=i-3OrQV2Ld-zbySmJLDY0gBrXVIpesxx3X2uczhrI68,422261
|
|
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=
|
|
110
|
+
pulumi_confluentcloud/pulumi-plugin.json,sha256=oILVXPfdqRFFEEufO3-i9YgVuws7aJEVrakX_C91ahA,91
|
|
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.53.
|
|
132
|
-
pulumi_confluentcloud-2.53.
|
|
133
|
-
pulumi_confluentcloud-2.53.
|
|
134
|
-
pulumi_confluentcloud-2.53.
|
|
131
|
+
pulumi_confluentcloud-2.53.0a1763703542.dist-info/METADATA,sha256=42urJH6Lo4wjE8aJX1JDvNpQyvPnzZH15hYa5TZ0D-0,2898
|
|
132
|
+
pulumi_confluentcloud-2.53.0a1763703542.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
133
|
+
pulumi_confluentcloud-2.53.0a1763703542.dist-info/top_level.txt,sha256=0spb6Wqsv3xa9v5poWmP3cWll3tbfOwOKwneN7S2DjM,22
|
|
134
|
+
pulumi_confluentcloud-2.53.0a1763703542.dist-info/RECORD,,
|
{pulumi_confluentcloud-2.53.0.dist-info → pulumi_confluentcloud-2.53.0a1763703542.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|