pulumi-aiven 6.40.0a1750223346__py3-none-any.whl → 6.41.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.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +605 -145
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/alloydbomni.py +8 -8
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +12 -12
- pulumi_aiven/clickhouse_database.py +0 -10
- pulumi_aiven/clickhouse_grant.py +0 -16
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_alloydbomni.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +2 -2
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +2 -2
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_organization_billing_group.py +15 -15
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_integration.py +15 -1
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +36 -29
- pulumi_aiven/kafka.py +15 -15
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_application_user.py +7 -7
- pulumi_aiven/organization_billing_group.py +41 -41
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/outputs.py +799 -159
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/service_integration.py +47 -0
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0.dist-info}/RECORD +55 -55
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/influx_db.py
CHANGED
|
@@ -68,10 +68,11 @@ class InfluxDbArgs:
|
|
|
68
68
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
|
|
69
69
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
70
70
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
71
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
72
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
73
|
-
as the service itself.
|
|
74
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
71
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
72
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
73
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
74
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
75
|
+
data.
|
|
75
76
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
76
77
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
|
|
77
78
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -258,10 +259,11 @@ class InfluxDbArgs:
|
|
|
258
259
|
@pulumi.getter(name="projectVpcId")
|
|
259
260
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
260
261
|
"""
|
|
261
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
262
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
263
|
-
as the service itself.
|
|
264
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
262
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
263
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
264
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
265
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
266
|
+
data.
|
|
265
267
|
"""
|
|
266
268
|
return pulumi.get(self, "project_vpc_id")
|
|
267
269
|
|
|
@@ -400,10 +402,11 @@ class _InfluxDbState:
|
|
|
400
402
|
options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
401
403
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
402
404
|
reference. Changing this property forces recreation of the resource.
|
|
403
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
404
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
405
|
-
as the service itself.
|
|
406
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
405
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
406
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
407
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
408
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
409
|
+
data.
|
|
407
410
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
408
411
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
409
412
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the
|
|
@@ -678,10 +681,11 @@ class _InfluxDbState:
|
|
|
678
681
|
@pulumi.getter(name="projectVpcId")
|
|
679
682
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
680
683
|
"""
|
|
681
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
682
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
683
|
-
as the service itself.
|
|
684
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
684
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
685
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
686
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
687
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
688
|
+
data.
|
|
685
689
|
"""
|
|
686
690
|
return pulumi.get(self, "project_vpc_id")
|
|
687
691
|
|
|
@@ -901,10 +905,11 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
901
905
|
options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
902
906
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
903
907
|
reference. Changing this property forces recreation of the resource.
|
|
904
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
905
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
906
|
-
as the service itself.
|
|
907
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
908
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
909
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
910
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
911
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
912
|
+
data.
|
|
908
913
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbServiceIntegrationArgs', 'InfluxDbServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
909
914
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the
|
|
910
915
|
service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1079,10 +1084,11 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1079
1084
|
options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1080
1085
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
1081
1086
|
reference. Changing this property forces recreation of the resource.
|
|
1082
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1083
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
1084
|
-
as the service itself.
|
|
1085
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
1087
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
1088
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
1089
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
1090
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
1091
|
+
data.
|
|
1086
1092
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
1087
1093
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbServiceIntegrationArgs', 'InfluxDbServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1088
1094
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the
|
|
@@ -1270,12 +1276,13 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1270
1276
|
|
|
1271
1277
|
@property
|
|
1272
1278
|
@pulumi.getter(name="projectVpcId")
|
|
1273
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1279
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1274
1280
|
"""
|
|
1275
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1276
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
1277
|
-
as the service itself.
|
|
1278
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
1281
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
1282
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
1283
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
1284
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
1285
|
+
data.
|
|
1279
1286
|
"""
|
|
1280
1287
|
return pulumi.get(self, "project_vpc_id")
|
|
1281
1288
|
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -51,10 +51,10 @@ class KafkaArgs:
|
|
|
51
51
|
:param pulumi.Input[builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
52
52
|
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
54
|
-
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
54
|
+
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
55
55
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
56
56
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
57
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
57
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
58
58
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
59
59
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
60
60
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -215,7 +215,7 @@ class KafkaArgs:
|
|
|
215
215
|
@_utilities.deprecated("""Usage of this field is discouraged.""")
|
|
216
216
|
def karapace(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
217
217
|
"""
|
|
218
|
-
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
218
|
+
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "karapace")
|
|
221
221
|
|
|
@@ -251,7 +251,7 @@ class KafkaArgs:
|
|
|
251
251
|
@pulumi.getter(name="projectVpcId")
|
|
252
252
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
253
253
|
"""
|
|
254
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
254
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
255
255
|
"""
|
|
256
256
|
return pulumi.get(self, "project_vpc_id")
|
|
257
257
|
|
|
@@ -366,12 +366,12 @@ class _KafkaState:
|
|
|
366
366
|
:param pulumi.Input[builtins.str] disk_space_used: Disk space that service is currently using
|
|
367
367
|
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
368
368
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
369
|
-
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
369
|
+
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
370
370
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
371
371
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
372
372
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
373
373
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
374
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
374
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
375
375
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
376
376
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
377
377
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -594,7 +594,7 @@ class _KafkaState:
|
|
|
594
594
|
@_utilities.deprecated("""Usage of this field is discouraged.""")
|
|
595
595
|
def karapace(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
596
596
|
"""
|
|
597
|
-
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
597
|
+
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
598
598
|
"""
|
|
599
599
|
return pulumi.get(self, "karapace")
|
|
600
600
|
|
|
@@ -654,7 +654,7 @@ class _KafkaState:
|
|
|
654
654
|
@pulumi.getter(name="projectVpcId")
|
|
655
655
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
656
656
|
"""
|
|
657
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
657
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
658
658
|
"""
|
|
659
659
|
return pulumi.get(self, "project_vpc_id")
|
|
660
660
|
|
|
@@ -887,12 +887,12 @@ class Kafka(pulumi.CustomResource):
|
|
|
887
887
|
:param pulumi.Input[builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
888
888
|
:param pulumi.Input[Union['KafkaKafkaUserConfigArgs', 'KafkaKafkaUserConfigArgsDict']] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
889
889
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
|
|
890
|
-
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
890
|
+
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
891
891
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
892
892
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
893
893
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
894
894
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
895
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
895
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
896
896
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaServiceIntegrationArgs', 'KafkaServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
897
897
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
898
898
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -1082,12 +1082,12 @@ class Kafka(pulumi.CustomResource):
|
|
|
1082
1082
|
:param pulumi.Input[builtins.str] disk_space_used: Disk space that service is currently using
|
|
1083
1083
|
:param pulumi.Input[Union['KafkaKafkaUserConfigArgs', 'KafkaKafkaUserConfigArgsDict']] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1084
1084
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
|
|
1085
|
-
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
1085
|
+
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
1086
1086
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
1087
1087
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1088
1088
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1089
1089
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
1090
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1090
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1091
1091
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
1092
1092
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaServiceIntegrationArgs', 'KafkaServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1093
1093
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1232,7 +1232,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1232
1232
|
@_utilities.deprecated("""Usage of this field is discouraged.""")
|
|
1233
1233
|
def karapace(self) -> pulumi.Output[Optional[builtins.bool]]:
|
|
1234
1234
|
"""
|
|
1235
|
-
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
1235
|
+
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
1236
1236
|
"""
|
|
1237
1237
|
return pulumi.get(self, "karapace")
|
|
1238
1238
|
|
|
@@ -1270,9 +1270,9 @@ class Kafka(pulumi.CustomResource):
|
|
|
1270
1270
|
|
|
1271
1271
|
@property
|
|
1272
1272
|
@pulumi.getter(name="projectVpcId")
|
|
1273
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1273
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1274
1274
|
"""
|
|
1275
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1275
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1276
1276
|
"""
|
|
1277
1277
|
return pulumi.get(self, "project_vpc_id")
|
|
1278
1278
|
|
pulumi_aiven/kafka_connect.py
CHANGED
|
@@ -48,7 +48,7 @@ class KafkaConnectArgs:
|
|
|
48
48
|
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
51
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaConnectServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaConnectTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -199,7 +199,7 @@ class KafkaConnectArgs:
|
|
|
199
199
|
@pulumi.getter(name="projectVpcId")
|
|
200
200
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
201
201
|
"""
|
|
202
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
202
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
203
203
|
"""
|
|
204
204
|
return pulumi.get(self, "project_vpc_id")
|
|
205
205
|
|
|
@@ -313,7 +313,7 @@ class _KafkaConnectState:
|
|
|
313
313
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
314
314
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
315
315
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
316
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
316
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
317
317
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
318
318
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaConnectServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
319
319
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -550,7 +550,7 @@ class _KafkaConnectState:
|
|
|
550
550
|
@pulumi.getter(name="projectVpcId")
|
|
551
551
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
552
552
|
"""
|
|
553
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
553
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
554
554
|
"""
|
|
555
555
|
return pulumi.get(self, "project_vpc_id")
|
|
556
556
|
|
|
@@ -802,7 +802,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
802
802
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
803
803
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
804
804
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
805
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
805
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
806
806
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaConnectServiceIntegrationArgs', 'KafkaConnectServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
807
807
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
808
808
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -1005,7 +1005,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1005
1005
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1006
1006
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1007
1007
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
1008
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1008
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1009
1009
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
1010
1010
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaConnectServiceIntegrationArgs', 'KafkaConnectServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1011
1011
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1160,9 +1160,9 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1160
1160
|
|
|
1161
1161
|
@property
|
|
1162
1162
|
@pulumi.getter(name="projectVpcId")
|
|
1163
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1163
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1164
1164
|
"""
|
|
1165
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1165
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1166
1166
|
"""
|
|
1167
1167
|
return pulumi.get(self, "project_vpc_id")
|
|
1168
1168
|
|
|
@@ -48,7 +48,7 @@ class KafkaMirrorMakerArgs:
|
|
|
48
48
|
:param pulumi.Input['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
51
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -199,7 +199,7 @@ class KafkaMirrorMakerArgs:
|
|
|
199
199
|
@pulumi.getter(name="projectVpcId")
|
|
200
200
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
201
201
|
"""
|
|
202
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
202
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
203
203
|
"""
|
|
204
204
|
return pulumi.get(self, "project_vpc_id")
|
|
205
205
|
|
|
@@ -313,7 +313,7 @@ class _KafkaMirrorMakerState:
|
|
|
313
313
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
314
314
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
315
315
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
316
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
316
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
317
317
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
318
318
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
319
319
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -550,7 +550,7 @@ class _KafkaMirrorMakerState:
|
|
|
550
550
|
@pulumi.getter(name="projectVpcId")
|
|
551
551
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
552
552
|
"""
|
|
553
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
553
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
554
554
|
"""
|
|
555
555
|
return pulumi.get(self, "project_vpc_id")
|
|
556
556
|
|
|
@@ -774,7 +774,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
774
774
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
775
775
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
776
776
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
777
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
777
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
778
778
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaMirrorMakerServiceIntegrationArgs', 'KafkaMirrorMakerServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
779
779
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
780
780
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -949,7 +949,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
949
949
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
950
950
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
951
951
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
952
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
952
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
953
953
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
954
954
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaMirrorMakerServiceIntegrationArgs', 'KafkaMirrorMakerServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
955
955
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1104,9 +1104,9 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1104
1104
|
|
|
1105
1105
|
@property
|
|
1106
1106
|
@pulumi.getter(name="projectVpcId")
|
|
1107
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1107
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1108
1108
|
"""
|
|
1109
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1109
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1110
1110
|
"""
|
|
1111
1111
|
return pulumi.get(self, "project_vpc_id")
|
|
1112
1112
|
|
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -50,7 +50,7 @@ class M3AggregatorArgs:
|
|
|
50
50
|
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
51
51
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
52
52
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
53
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
53
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['M3AggregatorServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['M3AggregatorTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -215,7 +215,7 @@ class M3AggregatorArgs:
|
|
|
215
215
|
@pulumi.getter(name="projectVpcId")
|
|
216
216
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
217
217
|
"""
|
|
218
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
218
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "project_vpc_id")
|
|
221
221
|
|
|
@@ -331,7 +331,7 @@ class _M3AggregatorState:
|
|
|
331
331
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
332
332
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
333
333
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
334
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
334
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
335
335
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
336
336
|
:param pulumi.Input[Sequence[pulumi.Input['M3AggregatorServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
337
337
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -582,7 +582,7 @@ class _M3AggregatorState:
|
|
|
582
582
|
@pulumi.getter(name="projectVpcId")
|
|
583
583
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
584
584
|
"""
|
|
585
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
585
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
586
586
|
"""
|
|
587
587
|
return pulumi.get(self, "project_vpc_id")
|
|
588
588
|
|
|
@@ -805,7 +805,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
805
805
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
806
806
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
807
807
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
808
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
808
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
809
809
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3AggregatorServiceIntegrationArgs', 'M3AggregatorServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
810
810
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
811
811
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -981,7 +981,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
981
981
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
982
982
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
983
983
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
984
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
984
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
985
985
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
986
986
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3AggregatorServiceIntegrationArgs', 'M3AggregatorServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
987
987
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1145,9 +1145,9 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1145
1145
|
|
|
1146
1146
|
@property
|
|
1147
1147
|
@pulumi.getter(name="projectVpcId")
|
|
1148
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1148
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1149
1149
|
"""
|
|
1150
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1150
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set, the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1151
1151
|
"""
|
|
1152
1152
|
return pulumi.get(self, "project_vpc_id")
|
|
1153
1153
|
|