pulumi-aiven 6.37.0a1744182902__py3-none-any.whl → 6.38.0a1744261676__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/__init__.py +21 -0
- pulumi_aiven/_inputs.py +603 -15
- pulumi_aiven/alloydbomni.py +7 -15
- pulumi_aiven/cassandra.py +7 -15
- pulumi_aiven/clickhouse.py +7 -15
- pulumi_aiven/dragonfly.py +7 -15
- pulumi_aiven/flink.py +7 -15
- pulumi_aiven/get_alloydbomni.py +1 -4
- pulumi_aiven/get_cassanda.py +1 -4
- pulumi_aiven/get_cassandra.py +1 -4
- pulumi_aiven/get_clickhouse.py +1 -4
- pulumi_aiven/get_dragonfly.py +1 -4
- pulumi_aiven/get_flink.py +1 -4
- pulumi_aiven/get_grafana.py +1 -4
- pulumi_aiven/get_kafka.py +1 -4
- pulumi_aiven/get_kafka_connect.py +1 -4
- pulumi_aiven/get_kafka_mirror_maker.py +1 -4
- pulumi_aiven/get_m3_aggregator.py +1 -4
- pulumi_aiven/get_m3_db.py +1 -4
- pulumi_aiven/get_my_sql.py +1 -4
- pulumi_aiven/get_open_search.py +1 -4
- pulumi_aiven/get_organization.py +2 -2
- pulumi_aiven/get_organization_address.py +227 -0
- pulumi_aiven/get_organization_application_user.py +0 -20
- pulumi_aiven/get_organization_billing_group.py +241 -0
- pulumi_aiven/get_organization_billing_group_list.py +110 -0
- pulumi_aiven/get_organization_project.py +15 -1
- pulumi_aiven/get_organization_user_list.py +25 -13
- pulumi_aiven/get_pg.py +1 -4
- pulumi_aiven/get_redis.py +1 -4
- pulumi_aiven/get_service_component.py +15 -1
- pulumi_aiven/get_service_integration.py +2 -2
- pulumi_aiven/get_thanos.py +1 -4
- pulumi_aiven/get_valkey.py +1 -4
- pulumi_aiven/grafana.py +7 -15
- pulumi_aiven/influx_db.py +21 -15
- pulumi_aiven/kafka.py +7 -15
- pulumi_aiven/kafka_connect.py +7 -15
- pulumi_aiven/kafka_mirror_maker.py +7 -15
- pulumi_aiven/kafka_native_acl.py +1 -1
- pulumi_aiven/m3_aggregator.py +7 -15
- pulumi_aiven/m3_db.py +7 -15
- pulumi_aiven/my_sql.py +7 -15
- pulumi_aiven/open_search.py +7 -15
- pulumi_aiven/organization.py +2 -2
- pulumi_aiven/organization_address.py +557 -0
- pulumi_aiven/organization_application_user.py +4 -4
- pulumi_aiven/organization_billing_group.py +645 -0
- pulumi_aiven/organization_permission.py +2 -2
- pulumi_aiven/organization_project.py +47 -16
- pulumi_aiven/organization_user_group_member.py +0 -32
- pulumi_aiven/outputs.py +807 -42
- pulumi_aiven/pg.py +7 -15
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -15
- pulumi_aiven/service_integration.py +4 -4
- pulumi_aiven/thanos.py +7 -15
- pulumi_aiven/valkey.py +7 -15
- {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/RECORD +62 -57
- {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/top_level.txt +0 -0
pulumi_aiven/alloydbomni.py
CHANGED
|
@@ -44,7 +44,7 @@ class AlloydbomniArgs:
|
|
|
44
44
|
: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).
|
|
45
45
|
: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.
|
|
46
46
|
: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.
|
|
47
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
47
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
48
48
|
:param pulumi.Input['AlloydbomniAlloydbomniArgs'] alloydbomni: Values provided by the AlloyDB Omni server.
|
|
49
49
|
:param pulumi.Input['AlloydbomniAlloydbomniUserConfigArgs'] alloydbomni_user_config: Alloydbomni user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
50
50
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -134,7 +134,7 @@ class AlloydbomniArgs:
|
|
|
134
134
|
@pulumi.getter(name="additionalDiskSpace")
|
|
135
135
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
136
136
|
"""
|
|
137
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
137
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
138
138
|
"""
|
|
139
139
|
return pulumi.get(self, "additional_disk_space")
|
|
140
140
|
|
|
@@ -334,7 +334,7 @@ class _AlloydbomniState:
|
|
|
334
334
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
335
335
|
"""
|
|
336
336
|
Input properties used for looking up and filtering Alloydbomni resources.
|
|
337
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
337
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
338
338
|
:param pulumi.Input['AlloydbomniAlloydbomniArgs'] alloydbomni: Values provided by the AlloyDB Omni server.
|
|
339
339
|
:param pulumi.Input['AlloydbomniAlloydbomniUserConfigArgs'] alloydbomni_user_config: Alloydbomni user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
340
340
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -358,7 +358,6 @@ class _AlloydbomniState:
|
|
|
358
358
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
359
359
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
360
360
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
361
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
362
361
|
: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
|
|
363
362
|
:param pulumi.Input[Sequence[pulumi.Input['AlloydbomniTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
364
363
|
:param pulumi.Input[Sequence[pulumi.Input['AlloydbomniTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -433,7 +432,7 @@ class _AlloydbomniState:
|
|
|
433
432
|
@pulumi.getter(name="additionalDiskSpace")
|
|
434
433
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
435
434
|
"""
|
|
436
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
435
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
437
436
|
"""
|
|
438
437
|
return pulumi.get(self, "additional_disk_space")
|
|
439
438
|
|
|
@@ -722,9 +721,6 @@ class _AlloydbomniState:
|
|
|
722
721
|
@property
|
|
723
722
|
@pulumi.getter
|
|
724
723
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
725
|
-
"""
|
|
726
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
727
|
-
"""
|
|
728
724
|
return pulumi.get(self, "state")
|
|
729
725
|
|
|
730
726
|
@state.setter
|
|
@@ -846,7 +842,7 @@ class Alloydbomni(pulumi.CustomResource):
|
|
|
846
842
|
|
|
847
843
|
:param str resource_name: The name of the resource.
|
|
848
844
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
849
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
845
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
850
846
|
:param pulumi.Input[Union['AlloydbomniAlloydbomniArgs', 'AlloydbomniAlloydbomniArgsDict']] alloydbomni: Values provided by the AlloyDB Omni server.
|
|
851
847
|
:param pulumi.Input[Union['AlloydbomniAlloydbomniUserConfigArgs', 'AlloydbomniAlloydbomniUserConfigArgsDict']] alloydbomni_user_config: Alloydbomni user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
852
848
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -1035,7 +1031,7 @@ class Alloydbomni(pulumi.CustomResource):
|
|
|
1035
1031
|
:param str resource_name: The unique name of the resulting resource.
|
|
1036
1032
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1037
1033
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1038
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
1034
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1039
1035
|
:param pulumi.Input[Union['AlloydbomniAlloydbomniArgs', 'AlloydbomniAlloydbomniArgsDict']] alloydbomni: Values provided by the AlloyDB Omni server.
|
|
1040
1036
|
:param pulumi.Input[Union['AlloydbomniAlloydbomniUserConfigArgs', 'AlloydbomniAlloydbomniUserConfigArgsDict']] alloydbomni_user_config: Alloydbomni user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1041
1037
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -1059,7 +1055,6 @@ class Alloydbomni(pulumi.CustomResource):
|
|
|
1059
1055
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
1060
1056
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
1061
1057
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
1062
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1063
1058
|
: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
|
|
1064
1059
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AlloydbomniTagArgs', 'AlloydbomniTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
1065
1060
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AlloydbomniTechEmailArgs', 'AlloydbomniTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1104,7 +1099,7 @@ class Alloydbomni(pulumi.CustomResource):
|
|
|
1104
1099
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1105
1100
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1106
1101
|
"""
|
|
1107
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
1102
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1108
1103
|
"""
|
|
1109
1104
|
return pulumi.get(self, "additional_disk_space")
|
|
1110
1105
|
|
|
@@ -1297,9 +1292,6 @@ class Alloydbomni(pulumi.CustomResource):
|
|
|
1297
1292
|
@property
|
|
1298
1293
|
@pulumi.getter
|
|
1299
1294
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1300
|
-
"""
|
|
1301
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1302
|
-
"""
|
|
1303
1295
|
return pulumi.get(self, "state")
|
|
1304
1296
|
|
|
1305
1297
|
@property
|
pulumi_aiven/cassandra.py
CHANGED
|
@@ -43,7 +43,7 @@ class CassandraArgs:
|
|
|
43
43
|
: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).
|
|
44
44
|
: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.
|
|
45
45
|
: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.
|
|
46
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
46
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
47
47
|
:param pulumi.Input['CassandraCassandraArgs'] cassandra: Values provided by the Cassandra server.
|
|
48
48
|
:param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra 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] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -130,7 +130,7 @@ class CassandraArgs:
|
|
|
130
130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
131
131
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
132
132
|
"""
|
|
133
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
133
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "additional_disk_space")
|
|
136
136
|
|
|
@@ -317,7 +317,7 @@ class _CassandraState:
|
|
|
317
317
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
318
318
|
"""
|
|
319
319
|
Input properties used for looking up and filtering Cassandra resources.
|
|
320
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
320
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
321
321
|
:param pulumi.Input['CassandraCassandraArgs'] cassandra: Values provided by the Cassandra server.
|
|
322
322
|
:param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
323
323
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -340,7 +340,6 @@ class _CassandraState:
|
|
|
340
340
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
341
341
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
342
342
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
343
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
344
343
|
: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
|
|
345
344
|
:param pulumi.Input[Sequence[pulumi.Input['CassandraTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
346
345
|
:param pulumi.Input[Sequence[pulumi.Input['CassandraTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -413,7 +412,7 @@ class _CassandraState:
|
|
|
413
412
|
@pulumi.getter(name="additionalDiskSpace")
|
|
414
413
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
415
414
|
"""
|
|
416
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
415
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
417
416
|
"""
|
|
418
417
|
return pulumi.get(self, "additional_disk_space")
|
|
419
418
|
|
|
@@ -690,9 +689,6 @@ class _CassandraState:
|
|
|
690
689
|
@property
|
|
691
690
|
@pulumi.getter
|
|
692
691
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
693
|
-
"""
|
|
694
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
695
|
-
"""
|
|
696
692
|
return pulumi.get(self, "state")
|
|
697
693
|
|
|
698
694
|
@state.setter
|
|
@@ -809,7 +805,7 @@ class Cassandra(pulumi.CustomResource):
|
|
|
809
805
|
|
|
810
806
|
:param str resource_name: The name of the resource.
|
|
811
807
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
812
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
808
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
813
809
|
:param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Values provided by the Cassandra server.
|
|
814
810
|
:param pulumi.Input[Union['CassandraCassandraUserConfigArgs', 'CassandraCassandraUserConfigArgsDict']] cassandra_user_config: Cassandra user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
815
811
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -990,7 +986,7 @@ class Cassandra(pulumi.CustomResource):
|
|
|
990
986
|
:param str resource_name: The unique name of the resulting resource.
|
|
991
987
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
992
988
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
993
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
989
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
994
990
|
:param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Values provided by the Cassandra server.
|
|
995
991
|
:param pulumi.Input[Union['CassandraCassandraUserConfigArgs', 'CassandraCassandraUserConfigArgsDict']] cassandra_user_config: Cassandra user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
996
992
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -1013,7 +1009,6 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1013
1009
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
1014
1010
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
1015
1011
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
1016
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1017
1012
|
: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
|
|
1018
1013
|
:param pulumi.Input[Sequence[pulumi.Input[Union['CassandraTagArgs', 'CassandraTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
1019
1014
|
:param pulumi.Input[Sequence[pulumi.Input[Union['CassandraTechEmailArgs', 'CassandraTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1057,7 +1052,7 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1057
1052
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1058
1053
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1059
1054
|
"""
|
|
1060
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
1055
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1061
1056
|
"""
|
|
1062
1057
|
return pulumi.get(self, "additional_disk_space")
|
|
1063
1058
|
|
|
@@ -1242,9 +1237,6 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1242
1237
|
@property
|
|
1243
1238
|
@pulumi.getter
|
|
1244
1239
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1245
|
-
"""
|
|
1246
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1247
|
-
"""
|
|
1248
1240
|
return pulumi.get(self, "state")
|
|
1249
1241
|
|
|
1250
1242
|
@property
|
pulumi_aiven/clickhouse.py
CHANGED
|
@@ -43,7 +43,7 @@ class ClickhouseArgs:
|
|
|
43
43
|
: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).
|
|
44
44
|
: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.
|
|
45
45
|
: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.
|
|
46
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
46
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
47
47
|
:param pulumi.Input['ClickhouseClickhouseArgs'] clickhouse: Values provided by the ClickHouse server.
|
|
48
48
|
:param pulumi.Input['ClickhouseClickhouseUserConfigArgs'] clickhouse_user_config: Clickhouse 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] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -130,7 +130,7 @@ class ClickhouseArgs:
|
|
|
130
130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
131
131
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
132
132
|
"""
|
|
133
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
133
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "additional_disk_space")
|
|
136
136
|
|
|
@@ -317,7 +317,7 @@ class _ClickhouseState:
|
|
|
317
317
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
318
318
|
"""
|
|
319
319
|
Input properties used for looking up and filtering Clickhouse resources.
|
|
320
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
320
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
321
321
|
:param pulumi.Input['ClickhouseClickhouseArgs'] clickhouse: Values provided by the ClickHouse server.
|
|
322
322
|
:param pulumi.Input['ClickhouseClickhouseUserConfigArgs'] clickhouse_user_config: Clickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
323
323
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -340,7 +340,6 @@ class _ClickhouseState:
|
|
|
340
340
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
341
341
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
342
342
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
343
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
344
343
|
: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
|
|
345
344
|
:param pulumi.Input[Sequence[pulumi.Input['ClickhouseTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
346
345
|
:param pulumi.Input[Sequence[pulumi.Input['ClickhouseTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -413,7 +412,7 @@ class _ClickhouseState:
|
|
|
413
412
|
@pulumi.getter(name="additionalDiskSpace")
|
|
414
413
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
415
414
|
"""
|
|
416
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
415
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
417
416
|
"""
|
|
418
417
|
return pulumi.get(self, "additional_disk_space")
|
|
419
418
|
|
|
@@ -690,9 +689,6 @@ class _ClickhouseState:
|
|
|
690
689
|
@property
|
|
691
690
|
@pulumi.getter
|
|
692
691
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
693
|
-
"""
|
|
694
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
695
|
-
"""
|
|
696
692
|
return pulumi.get(self, "state")
|
|
697
693
|
|
|
698
694
|
@state.setter
|
|
@@ -796,7 +792,7 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
796
792
|
|
|
797
793
|
:param str resource_name: The name of the resource.
|
|
798
794
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
799
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
795
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
800
796
|
:param pulumi.Input[Union['ClickhouseClickhouseArgs', 'ClickhouseClickhouseArgsDict']] clickhouse: Values provided by the ClickHouse server.
|
|
801
797
|
:param pulumi.Input[Union['ClickhouseClickhouseUserConfigArgs', 'ClickhouseClickhouseUserConfigArgsDict']] clickhouse_user_config: Clickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
802
798
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -964,7 +960,7 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
964
960
|
:param str resource_name: The unique name of the resulting resource.
|
|
965
961
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
966
962
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
967
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
963
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
968
964
|
:param pulumi.Input[Union['ClickhouseClickhouseArgs', 'ClickhouseClickhouseArgsDict']] clickhouse: Values provided by the ClickHouse server.
|
|
969
965
|
:param pulumi.Input[Union['ClickhouseClickhouseUserConfigArgs', 'ClickhouseClickhouseUserConfigArgsDict']] clickhouse_user_config: Clickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
970
966
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
@@ -987,7 +983,6 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
987
983
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
988
984
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
989
985
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
990
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
991
986
|
: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
|
|
992
987
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClickhouseTagArgs', 'ClickhouseTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
993
988
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClickhouseTechEmailArgs', 'ClickhouseTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1031,7 +1026,7 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
1031
1026
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1032
1027
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1033
1028
|
"""
|
|
1034
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
1029
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1035
1030
|
"""
|
|
1036
1031
|
return pulumi.get(self, "additional_disk_space")
|
|
1037
1032
|
|
|
@@ -1216,9 +1211,6 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
1216
1211
|
@property
|
|
1217
1212
|
@pulumi.getter
|
|
1218
1213
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1219
|
-
"""
|
|
1220
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1221
|
-
"""
|
|
1222
1214
|
return pulumi.get(self, "state")
|
|
1223
1215
|
|
|
1224
1216
|
@property
|
pulumi_aiven/dragonfly.py
CHANGED
|
@@ -43,7 +43,7 @@ class DragonflyArgs:
|
|
|
43
43
|
: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).
|
|
44
44
|
: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.
|
|
45
45
|
: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.
|
|
46
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
46
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
47
47
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
48
48
|
: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.
|
|
49
49
|
:param pulumi.Input['DragonflyDragonflyArgs'] dragonfly: Dragonfly server provided values
|
|
@@ -130,7 +130,7 @@ class DragonflyArgs:
|
|
|
130
130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
131
131
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
132
132
|
"""
|
|
133
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
133
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "additional_disk_space")
|
|
136
136
|
|
|
@@ -317,7 +317,7 @@ class _DragonflyState:
|
|
|
317
317
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
318
318
|
"""
|
|
319
319
|
Input properties used for looking up and filtering Dragonfly resources.
|
|
320
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
320
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
321
321
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
322
322
|
:param pulumi.Input[Sequence[pulumi.Input['DragonflyComponentArgs']]] components: Service component information objects
|
|
323
323
|
: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.
|
|
@@ -340,7 +340,6 @@ class _DragonflyState:
|
|
|
340
340
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
341
341
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
342
342
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
343
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
344
343
|
: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
|
|
345
344
|
:param pulumi.Input[Sequence[pulumi.Input['DragonflyTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
346
345
|
:param pulumi.Input[Sequence[pulumi.Input['DragonflyTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -413,7 +412,7 @@ class _DragonflyState:
|
|
|
413
412
|
@pulumi.getter(name="additionalDiskSpace")
|
|
414
413
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
415
414
|
"""
|
|
416
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
415
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
417
416
|
"""
|
|
418
417
|
return pulumi.get(self, "additional_disk_space")
|
|
419
418
|
|
|
@@ -690,9 +689,6 @@ class _DragonflyState:
|
|
|
690
689
|
@property
|
|
691
690
|
@pulumi.getter
|
|
692
691
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
693
|
-
"""
|
|
694
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
695
|
-
"""
|
|
696
692
|
return pulumi.get(self, "state")
|
|
697
693
|
|
|
698
694
|
@state.setter
|
|
@@ -797,7 +793,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
797
793
|
|
|
798
794
|
:param str resource_name: The name of the resource.
|
|
799
795
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
800
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
796
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
801
797
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
802
798
|
: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.
|
|
803
799
|
:param pulumi.Input[Union['DragonflyDragonflyArgs', 'DragonflyDragonflyArgsDict']] dragonfly: Dragonfly server provided values
|
|
@@ -966,7 +962,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
966
962
|
:param str resource_name: The unique name of the resulting resource.
|
|
967
963
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
968
964
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
969
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
965
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
970
966
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
971
967
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DragonflyComponentArgs', 'DragonflyComponentArgsDict']]]] components: Service component information objects
|
|
972
968
|
: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.
|
|
@@ -989,7 +985,6 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
989
985
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
990
986
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
991
987
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
992
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
993
988
|
: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
|
|
994
989
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DragonflyTagArgs', 'DragonflyTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
995
990
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DragonflyTechEmailArgs', 'DragonflyTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1033,7 +1028,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1033
1028
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1034
1029
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1035
1030
|
"""
|
|
1036
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
1031
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1037
1032
|
"""
|
|
1038
1033
|
return pulumi.get(self, "additional_disk_space")
|
|
1039
1034
|
|
|
@@ -1218,9 +1213,6 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1218
1213
|
@property
|
|
1219
1214
|
@pulumi.getter
|
|
1220
1215
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1221
|
-
"""
|
|
1222
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1223
|
-
"""
|
|
1224
1216
|
return pulumi.get(self, "state")
|
|
1225
1217
|
|
|
1226
1218
|
@property
|
pulumi_aiven/flink.py
CHANGED
|
@@ -43,7 +43,7 @@ class FlinkArgs:
|
|
|
43
43
|
: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).
|
|
44
44
|
: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.
|
|
45
45
|
: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.
|
|
46
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
46
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
47
47
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
48
48
|
: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.
|
|
49
49
|
:param pulumi.Input['FlinkFlinkArgs'] flink: Values provided by the Flink server.
|
|
@@ -130,7 +130,7 @@ class FlinkArgs:
|
|
|
130
130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
131
131
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
132
132
|
"""
|
|
133
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
133
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "additional_disk_space")
|
|
136
136
|
|
|
@@ -317,7 +317,7 @@ class _FlinkState:
|
|
|
317
317
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
318
318
|
"""
|
|
319
319
|
Input properties used for looking up and filtering Flink resources.
|
|
320
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
320
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
321
321
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
322
322
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkComponentArgs']]] components: Service component information objects
|
|
323
323
|
: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.
|
|
@@ -340,7 +340,6 @@ class _FlinkState:
|
|
|
340
340
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
341
341
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
342
342
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
343
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
344
343
|
: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
|
|
345
344
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
346
345
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -413,7 +412,7 @@ class _FlinkState:
|
|
|
413
412
|
@pulumi.getter(name="additionalDiskSpace")
|
|
414
413
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
415
414
|
"""
|
|
416
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
415
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
417
416
|
"""
|
|
418
417
|
return pulumi.get(self, "additional_disk_space")
|
|
419
418
|
|
|
@@ -690,9 +689,6 @@ class _FlinkState:
|
|
|
690
689
|
@property
|
|
691
690
|
@pulumi.getter
|
|
692
691
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
693
|
-
"""
|
|
694
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
695
|
-
"""
|
|
696
692
|
return pulumi.get(self, "state")
|
|
697
693
|
|
|
698
694
|
@state.setter
|
|
@@ -799,7 +795,7 @@ class Flink(pulumi.CustomResource):
|
|
|
799
795
|
|
|
800
796
|
:param str resource_name: The name of the resource.
|
|
801
797
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
802
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
798
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
803
799
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
804
800
|
: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.
|
|
805
801
|
:param pulumi.Input[Union['FlinkFlinkArgs', 'FlinkFlinkArgsDict']] flink: Values provided by the Flink server.
|
|
@@ -970,7 +966,7 @@ class Flink(pulumi.CustomResource):
|
|
|
970
966
|
:param str resource_name: The unique name of the resulting resource.
|
|
971
967
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
972
968
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
973
|
-
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
969
|
+
:param pulumi.Input[builtins.str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
974
970
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
975
971
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkComponentArgs', 'FlinkComponentArgsDict']]]] components: Service component information objects
|
|
976
972
|
: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.
|
|
@@ -993,7 +989,6 @@ class Flink(pulumi.CustomResource):
|
|
|
993
989
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
994
990
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
995
991
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
996
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
997
992
|
: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
|
|
998
993
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkTagArgs', 'FlinkTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
999
994
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkTechEmailArgs', 'FlinkTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1037,7 +1032,7 @@ class Flink(pulumi.CustomResource):
|
|
|
1037
1032
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1038
1033
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1039
1034
|
"""
|
|
1040
|
-
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services
|
|
1035
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1041
1036
|
"""
|
|
1042
1037
|
return pulumi.get(self, "additional_disk_space")
|
|
1043
1038
|
|
|
@@ -1222,9 +1217,6 @@ class Flink(pulumi.CustomResource):
|
|
|
1222
1217
|
@property
|
|
1223
1218
|
@pulumi.getter
|
|
1224
1219
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1225
|
-
"""
|
|
1226
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1227
|
-
"""
|
|
1228
1220
|
return pulumi.get(self, "state")
|
|
1229
1221
|
|
|
1230
1222
|
@property
|