pulumi-aiven 6.43.0a1758777024__py3-none-any.whl → 6.43.1__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 +660 -186
- pulumi_aiven/account_team.py +6 -12
- pulumi_aiven/account_team_member.py +6 -12
- pulumi_aiven/account_team_project.py +6 -12
- pulumi_aiven/alloydbomni.py +44 -23
- pulumi_aiven/alloydbomni_database.py +26 -0
- pulumi_aiven/alloydbomni_user.py +26 -0
- pulumi_aiven/cassandra.py +18 -23
- pulumi_aiven/clickhouse.py +18 -23
- pulumi_aiven/dragonfly.py +18 -23
- pulumi_aiven/flink.py +18 -23
- pulumi_aiven/get_account_team.py +6 -12
- pulumi_aiven/get_account_team_member.py +6 -12
- pulumi_aiven/get_account_team_project.py +6 -12
- pulumi_aiven/get_alloydbomni.py +28 -2
- pulumi_aiven/get_alloydbomni_database.py +26 -0
- pulumi_aiven/get_alloydbomni_user.py +26 -0
- pulumi_aiven/get_cassanda.py +2 -2
- pulumi_aiven/get_cassandra.py +2 -2
- pulumi_aiven/get_clickhouse.py +2 -2
- pulumi_aiven/get_dragonfly.py +2 -2
- pulumi_aiven/get_flink.py +2 -2
- pulumi_aiven/get_grafana.py +2 -2
- pulumi_aiven/get_kafka.py +2 -2
- pulumi_aiven/get_kafka_connect.py +2 -2
- pulumi_aiven/get_kafka_mirror_maker.py +2 -2
- pulumi_aiven/get_m3_aggregator.py +2 -111
- pulumi_aiven/get_m3_db.py +2 -123
- pulumi_aiven/get_m3db_user.py +2 -61
- pulumi_aiven/get_my_sql.py +2 -2
- pulumi_aiven/get_open_search.py +2 -2
- pulumi_aiven/get_organization_application_user.py +29 -11
- pulumi_aiven/get_organization_project.py +0 -6
- pulumi_aiven/get_pg.py +2 -2
- pulumi_aiven/get_redis.py +2 -2
- pulumi_aiven/get_redis_user.py +3 -3
- pulumi_aiven/get_thanos.py +2 -2
- pulumi_aiven/get_valkey.py +2 -2
- pulumi_aiven/get_valkey_user.py +3 -3
- pulumi_aiven/grafana.py +18 -23
- pulumi_aiven/influx_db.py +18 -23
- pulumi_aiven/kafka.py +18 -23
- pulumi_aiven/kafka_connect.py +20 -25
- pulumi_aiven/kafka_mirror_maker.py +18 -23
- pulumi_aiven/m3_aggregator.py +20 -75
- pulumi_aiven/m3_db.py +20 -95
- pulumi_aiven/m3db_user.py +2 -54
- pulumi_aiven/my_sql.py +18 -23
- pulumi_aiven/open_search.py +18 -23
- pulumi_aiven/organization_application_user.py +69 -41
- pulumi_aiven/organization_application_user_token.py +127 -91
- pulumi_aiven/organization_billing_group.py +7 -7
- pulumi_aiven/organization_permission.py +80 -47
- pulumi_aiven/organization_project.py +0 -6
- pulumi_aiven/organization_user.py +8 -8
- pulumi_aiven/outputs.py +620 -238
- pulumi_aiven/pg.py +18 -23
- pulumi_aiven/project.py +2 -24
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +18 -23
- pulumi_aiven/redis_user.py +21 -21
- pulumi_aiven/thanos.py +18 -23
- pulumi_aiven/valkey.py +18 -23
- pulumi_aiven/valkey_user.py +21 -21
- {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.43.1.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.43.1.dist-info}/RECORD +68 -68
- {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.43.1.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.43.1.dist-info}/top_level.txt +0 -0
pulumi_aiven/get_thanos.py
CHANGED
|
@@ -144,7 +144,7 @@ class GetThanosResult:
|
|
|
144
144
|
@pulumi.getter(name="diskSpace")
|
|
145
145
|
def disk_space(self) -> _builtins.str:
|
|
146
146
|
"""
|
|
147
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
147
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
148
148
|
"""
|
|
149
149
|
return pulumi.get(self, "disk_space")
|
|
150
150
|
|
|
@@ -176,7 +176,7 @@ class GetThanosResult:
|
|
|
176
176
|
@pulumi.getter(name="diskSpaceUsed")
|
|
177
177
|
def disk_space_used(self) -> _builtins.str:
|
|
178
178
|
"""
|
|
179
|
-
|
|
179
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
180
180
|
"""
|
|
181
181
|
return pulumi.get(self, "disk_space_used")
|
|
182
182
|
|
pulumi_aiven/get_valkey.py
CHANGED
|
@@ -144,7 +144,7 @@ class GetValkeyResult:
|
|
|
144
144
|
@pulumi.getter(name="diskSpace")
|
|
145
145
|
def disk_space(self) -> _builtins.str:
|
|
146
146
|
"""
|
|
147
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
147
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
148
148
|
"""
|
|
149
149
|
return pulumi.get(self, "disk_space")
|
|
150
150
|
|
|
@@ -176,7 +176,7 @@ class GetValkeyResult:
|
|
|
176
176
|
@pulumi.getter(name="diskSpaceUsed")
|
|
177
177
|
def disk_space_used(self) -> _builtins.str:
|
|
178
178
|
"""
|
|
179
|
-
|
|
179
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
180
180
|
"""
|
|
181
181
|
return pulumi.get(self, "disk_space_used")
|
|
182
182
|
|
pulumi_aiven/get_valkey_user.py
CHANGED
|
@@ -110,7 +110,7 @@ class GetValkeyUserResult:
|
|
|
110
110
|
@pulumi.getter(name="valkeyAclCategories")
|
|
111
111
|
def valkey_acl_categories(self) -> Sequence[_builtins.str]:
|
|
112
112
|
"""
|
|
113
|
-
Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
113
|
+
Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. The field is required with `valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "valkey_acl_categories")
|
|
116
116
|
|
|
@@ -126,7 +126,7 @@ class GetValkeyUserResult:
|
|
|
126
126
|
@pulumi.getter(name="valkeyAclCommands")
|
|
127
127
|
def valkey_acl_commands(self) -> Sequence[_builtins.str]:
|
|
128
128
|
"""
|
|
129
|
-
Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
129
|
+
Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. The field is required with `valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
130
130
|
"""
|
|
131
131
|
return pulumi.get(self, "valkey_acl_commands")
|
|
132
132
|
|
|
@@ -134,7 +134,7 @@ class GetValkeyUserResult:
|
|
|
134
134
|
@pulumi.getter(name="valkeyAclKeys")
|
|
135
135
|
def valkey_acl_keys(self) -> Sequence[_builtins.str]:
|
|
136
136
|
"""
|
|
137
|
-
Key access rules. Entries are defined as standard glob patterns. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
137
|
+
Key access rules. Entries are defined as standard glob patterns. The field is required with `valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
138
138
|
"""
|
|
139
139
|
return pulumi.get(self, "valkey_acl_keys")
|
|
140
140
|
|
pulumi_aiven/grafana.py
CHANGED
|
@@ -43,7 +43,7 @@ class GrafanaArgs:
|
|
|
43
43
|
: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.
|
|
44
44
|
: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.
|
|
45
45
|
: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.
|
|
46
|
-
: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.
|
|
46
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
47
47
|
:param pulumi.Input['GrafanaGrafanaArgs'] grafana: Values provided by the Grafana server.
|
|
48
48
|
:param pulumi.Input['GrafanaGrafanaUserConfigArgs'] grafana_user_config: Grafana 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.
|
|
@@ -63,8 +63,8 @@ class GrafanaArgs:
|
|
|
63
63
|
if cloud_name is not None:
|
|
64
64
|
pulumi.set(__self__, "cloud_name", cloud_name)
|
|
65
65
|
if disk_space is not None:
|
|
66
|
-
warnings.warn("""
|
|
67
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
66
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
67
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
68
68
|
if disk_space is not None:
|
|
69
69
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
70
70
|
if grafana is not None:
|
|
@@ -140,10 +140,10 @@ class GrafanaArgs:
|
|
|
140
140
|
|
|
141
141
|
@_builtins.property
|
|
142
142
|
@pulumi.getter(name="diskSpace")
|
|
143
|
-
@_utilities.deprecated("""
|
|
143
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
144
144
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
145
145
|
"""
|
|
146
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
146
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
147
147
|
"""
|
|
148
148
|
return pulumi.get(self, "disk_space")
|
|
149
149
|
|
|
@@ -320,11 +320,11 @@ class _GrafanaState:
|
|
|
320
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['GrafanaComponentArgs']]] components: Service component information objects
|
|
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.
|
|
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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
324
324
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
325
325
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
326
326
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
327
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
327
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
328
328
|
:param pulumi.Input['GrafanaGrafanaArgs'] grafana: Values provided by the Grafana server.
|
|
329
329
|
:param pulumi.Input['GrafanaGrafanaUserConfigArgs'] grafana_user_config: Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
330
330
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -352,8 +352,8 @@ class _GrafanaState:
|
|
|
352
352
|
if components is not None:
|
|
353
353
|
pulumi.set(__self__, "components", components)
|
|
354
354
|
if disk_space is not None:
|
|
355
|
-
warnings.warn("""
|
|
356
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
355
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
356
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
357
357
|
if disk_space is not None:
|
|
358
358
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
359
359
|
if disk_space_cap is not None:
|
|
@@ -362,9 +362,6 @@ class _GrafanaState:
|
|
|
362
362
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
363
363
|
if disk_space_step is not None:
|
|
364
364
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
365
|
-
if disk_space_used is not None:
|
|
366
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
367
|
-
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
368
365
|
if disk_space_used is not None:
|
|
369
366
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
370
367
|
if grafana is not None:
|
|
@@ -446,10 +443,10 @@ class _GrafanaState:
|
|
|
446
443
|
|
|
447
444
|
@_builtins.property
|
|
448
445
|
@pulumi.getter(name="diskSpace")
|
|
449
|
-
@_utilities.deprecated("""
|
|
446
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
450
447
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
451
448
|
"""
|
|
452
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
449
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
453
450
|
"""
|
|
454
451
|
return pulumi.get(self, "disk_space")
|
|
455
452
|
|
|
@@ -495,10 +492,9 @@ class _GrafanaState:
|
|
|
495
492
|
|
|
496
493
|
@_builtins.property
|
|
497
494
|
@pulumi.getter(name="diskSpaceUsed")
|
|
498
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
499
495
|
def disk_space_used(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
500
496
|
"""
|
|
501
|
-
|
|
497
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
502
498
|
"""
|
|
503
499
|
return pulumi.get(self, "disk_space_used")
|
|
504
500
|
|
|
@@ -801,7 +797,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
801
797
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
802
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
|
-
: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.
|
|
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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
805
801
|
:param pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']] grafana: Values provided by the Grafana server.
|
|
806
802
|
:param pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']] grafana_user_config: Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
807
803
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -974,11 +970,11 @@ class Grafana(pulumi.CustomResource):
|
|
|
974
970
|
: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.
|
|
975
971
|
: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.
|
|
976
972
|
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaComponentArgs', 'GrafanaComponentArgsDict']]]] components: Service component information objects
|
|
977
|
-
: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.
|
|
973
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
978
974
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
979
975
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
980
976
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
981
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
977
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
982
978
|
:param pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']] grafana: Values provided by the Grafana server.
|
|
983
979
|
:param pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']] grafana_user_config: Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
984
980
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -1059,10 +1055,10 @@ class Grafana(pulumi.CustomResource):
|
|
|
1059
1055
|
|
|
1060
1056
|
@_builtins.property
|
|
1061
1057
|
@pulumi.getter(name="diskSpace")
|
|
1062
|
-
@_utilities.deprecated("""
|
|
1058
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
1063
1059
|
def disk_space(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1064
1060
|
"""
|
|
1065
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1061
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
1066
1062
|
"""
|
|
1067
1063
|
return pulumi.get(self, "disk_space")
|
|
1068
1064
|
|
|
@@ -1092,10 +1088,9 @@ class Grafana(pulumi.CustomResource):
|
|
|
1092
1088
|
|
|
1093
1089
|
@_builtins.property
|
|
1094
1090
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1095
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1096
1091
|
def disk_space_used(self) -> pulumi.Output[_builtins.str]:
|
|
1097
1092
|
"""
|
|
1098
|
-
|
|
1093
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
1099
1094
|
"""
|
|
1100
1095
|
return pulumi.get(self, "disk_space_used")
|
|
1101
1096
|
|
pulumi_aiven/influx_db.py
CHANGED
|
@@ -44,7 +44,7 @@ class InfluxDbArgs:
|
|
|
44
44
|
: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.
|
|
45
45
|
: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.
|
|
46
46
|
: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.
|
|
47
|
-
: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.
|
|
47
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
48
48
|
:param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb 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[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
|
|
50
50
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -64,8 +64,8 @@ class InfluxDbArgs:
|
|
|
64
64
|
if cloud_name is not None:
|
|
65
65
|
pulumi.set(__self__, "cloud_name", cloud_name)
|
|
66
66
|
if disk_space is not None:
|
|
67
|
-
warnings.warn("""
|
|
68
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
67
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
68
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
69
69
|
if disk_space is not None:
|
|
70
70
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
71
71
|
if influxdb_user_config is not None:
|
|
@@ -151,10 +151,10 @@ class InfluxDbArgs:
|
|
|
151
151
|
|
|
152
152
|
@_builtins.property
|
|
153
153
|
@pulumi.getter(name="diskSpace")
|
|
154
|
-
@_utilities.deprecated("""
|
|
154
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
155
155
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
156
156
|
"""
|
|
157
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
157
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
158
158
|
"""
|
|
159
159
|
return pulumi.get(self, "disk_space")
|
|
160
160
|
|
|
@@ -319,11 +319,11 @@ class _InfluxDbState:
|
|
|
319
319
|
: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.
|
|
320
320
|
: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.
|
|
321
321
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbComponentArgs']]] components: Service component information objects
|
|
322
|
-
: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.
|
|
322
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
323
323
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
324
324
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
325
325
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
326
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
326
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
327
327
|
:param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
328
328
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
|
|
329
329
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -351,8 +351,8 @@ class _InfluxDbState:
|
|
|
351
351
|
if components is not None:
|
|
352
352
|
pulumi.set(__self__, "components", components)
|
|
353
353
|
if disk_space is not None:
|
|
354
|
-
warnings.warn("""
|
|
355
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
354
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
355
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
356
356
|
if disk_space is not None:
|
|
357
357
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
358
358
|
if disk_space_cap is not None:
|
|
@@ -361,9 +361,6 @@ class _InfluxDbState:
|
|
|
361
361
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
362
362
|
if disk_space_step is not None:
|
|
363
363
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
364
|
-
if disk_space_used is not None:
|
|
365
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
366
|
-
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
367
364
|
if disk_space_used is not None:
|
|
368
365
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
369
366
|
if influxdb_user_config is not None:
|
|
@@ -445,10 +442,10 @@ class _InfluxDbState:
|
|
|
445
442
|
|
|
446
443
|
@_builtins.property
|
|
447
444
|
@pulumi.getter(name="diskSpace")
|
|
448
|
-
@_utilities.deprecated("""
|
|
445
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
449
446
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
450
447
|
"""
|
|
451
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
448
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
452
449
|
"""
|
|
453
450
|
return pulumi.get(self, "disk_space")
|
|
454
451
|
|
|
@@ -494,10 +491,9 @@ class _InfluxDbState:
|
|
|
494
491
|
|
|
495
492
|
@_builtins.property
|
|
496
493
|
@pulumi.getter(name="diskSpaceUsed")
|
|
497
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
498
494
|
def disk_space_used(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
499
495
|
"""
|
|
500
|
-
|
|
496
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
501
497
|
"""
|
|
502
498
|
return pulumi.get(self, "disk_space_used")
|
|
503
499
|
|
|
@@ -772,7 +768,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
772
768
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
773
769
|
: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.
|
|
774
770
|
: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.
|
|
775
|
-
: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.
|
|
771
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
776
772
|
:param pulumi.Input[Union['InfluxDbInfluxdbUserConfigArgs', 'InfluxDbInfluxdbUserConfigArgsDict']] influxdb_user_config: Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
777
773
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbInfluxdbArgs', 'InfluxDbInfluxdbArgsDict']]]] influxdbs: InfluxDB server provided values
|
|
778
774
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -919,11 +915,11 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
919
915
|
: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.
|
|
920
916
|
: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.
|
|
921
917
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbComponentArgs', 'InfluxDbComponentArgsDict']]]] components: Service component information objects
|
|
922
|
-
: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.
|
|
918
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
923
919
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
924
920
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
925
921
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
926
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
922
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
927
923
|
:param pulumi.Input[Union['InfluxDbInfluxdbUserConfigArgs', 'InfluxDbInfluxdbUserConfigArgsDict']] influxdb_user_config: Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
928
924
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbInfluxdbArgs', 'InfluxDbInfluxdbArgsDict']]]] influxdbs: InfluxDB server provided values
|
|
929
925
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -1004,10 +1000,10 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1004
1000
|
|
|
1005
1001
|
@_builtins.property
|
|
1006
1002
|
@pulumi.getter(name="diskSpace")
|
|
1007
|
-
@_utilities.deprecated("""
|
|
1003
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
1008
1004
|
def disk_space(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1009
1005
|
"""
|
|
1010
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1006
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
1011
1007
|
"""
|
|
1012
1008
|
return pulumi.get(self, "disk_space")
|
|
1013
1009
|
|
|
@@ -1037,10 +1033,9 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1037
1033
|
|
|
1038
1034
|
@_builtins.property
|
|
1039
1035
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1040
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1041
1036
|
def disk_space_used(self) -> pulumi.Output[_builtins.str]:
|
|
1042
1037
|
"""
|
|
1043
|
-
|
|
1038
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
1044
1039
|
"""
|
|
1045
1040
|
return pulumi.get(self, "disk_space_used")
|
|
1046
1041
|
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -47,7 +47,7 @@ class KafkaArgs:
|
|
|
47
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[_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.
|
|
49
49
|
:param pulumi.Input[_builtins.bool] default_acl: Create a default wildcard Kafka ACL.
|
|
50
|
-
: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.
|
|
50
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
51
51
|
: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
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
53
53
|
: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.
|
|
@@ -70,8 +70,8 @@ class KafkaArgs:
|
|
|
70
70
|
if default_acl is not None:
|
|
71
71
|
pulumi.set(__self__, "default_acl", default_acl)
|
|
72
72
|
if disk_space is not None:
|
|
73
|
-
warnings.warn("""
|
|
74
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
73
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
74
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
75
75
|
if disk_space is not None:
|
|
76
76
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
77
77
|
if kafka_user_config is not None:
|
|
@@ -174,10 +174,10 @@ class KafkaArgs:
|
|
|
174
174
|
|
|
175
175
|
@_builtins.property
|
|
176
176
|
@pulumi.getter(name="diskSpace")
|
|
177
|
-
@_utilities.deprecated("""
|
|
177
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
178
178
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
179
179
|
"""
|
|
180
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
180
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
181
181
|
"""
|
|
182
182
|
return pulumi.get(self, "disk_space")
|
|
183
183
|
|
|
@@ -358,11 +358,11 @@ class _KafkaState:
|
|
|
358
358
|
: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.
|
|
359
359
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaComponentArgs']]] components: Service component information objects
|
|
360
360
|
:param pulumi.Input[_builtins.bool] default_acl: Create a default wildcard Kafka ACL.
|
|
361
|
-
: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.
|
|
361
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
362
362
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
363
363
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
364
364
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
365
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
365
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
366
366
|
: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
|
|
367
367
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
368
368
|
: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.
|
|
@@ -393,8 +393,8 @@ class _KafkaState:
|
|
|
393
393
|
if default_acl is not None:
|
|
394
394
|
pulumi.set(__self__, "default_acl", default_acl)
|
|
395
395
|
if disk_space is not None:
|
|
396
|
-
warnings.warn("""
|
|
397
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
396
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
397
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
398
398
|
if disk_space is not None:
|
|
399
399
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
400
400
|
if disk_space_cap is not None:
|
|
@@ -403,9 +403,6 @@ class _KafkaState:
|
|
|
403
403
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
404
404
|
if disk_space_step is not None:
|
|
405
405
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
406
|
-
if disk_space_used is not None:
|
|
407
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
408
|
-
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
409
406
|
if disk_space_used is not None:
|
|
410
407
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
411
408
|
if kafka_user_config is not None:
|
|
@@ -504,10 +501,10 @@ class _KafkaState:
|
|
|
504
501
|
|
|
505
502
|
@_builtins.property
|
|
506
503
|
@pulumi.getter(name="diskSpace")
|
|
507
|
-
@_utilities.deprecated("""
|
|
504
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
508
505
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
509
506
|
"""
|
|
510
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
507
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
511
508
|
"""
|
|
512
509
|
return pulumi.get(self, "disk_space")
|
|
513
510
|
|
|
@@ -553,10 +550,9 @@ class _KafkaState:
|
|
|
553
550
|
|
|
554
551
|
@_builtins.property
|
|
555
552
|
@pulumi.getter(name="diskSpaceUsed")
|
|
556
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
557
553
|
def disk_space_used(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
558
554
|
"""
|
|
559
|
-
|
|
555
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
560
556
|
"""
|
|
561
557
|
return pulumi.get(self, "disk_space_used")
|
|
562
558
|
|
|
@@ -883,7 +879,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
883
879
|
: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.
|
|
884
880
|
: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.
|
|
885
881
|
:param pulumi.Input[_builtins.bool] default_acl: Create a default wildcard Kafka ACL.
|
|
886
|
-
: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.
|
|
882
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
887
883
|
: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
|
|
888
884
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
|
|
889
885
|
: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.
|
|
@@ -1074,11 +1070,11 @@ class Kafka(pulumi.CustomResource):
|
|
|
1074
1070
|
: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.
|
|
1075
1071
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaComponentArgs', 'KafkaComponentArgsDict']]]] components: Service component information objects
|
|
1076
1072
|
:param pulumi.Input[_builtins.bool] default_acl: Create a default wildcard Kafka ACL.
|
|
1077
|
-
: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.
|
|
1073
|
+
: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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
1078
1074
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
1079
1075
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
1080
1076
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
1081
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
1077
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
1082
1078
|
: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
|
|
1083
1079
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
|
|
1084
1080
|
: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.
|
|
@@ -1170,10 +1166,10 @@ class Kafka(pulumi.CustomResource):
|
|
|
1170
1166
|
|
|
1171
1167
|
@_builtins.property
|
|
1172
1168
|
@pulumi.getter(name="diskSpace")
|
|
1173
|
-
@_utilities.deprecated("""
|
|
1169
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
1174
1170
|
def disk_space(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1175
1171
|
"""
|
|
1176
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1172
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
1177
1173
|
"""
|
|
1178
1174
|
return pulumi.get(self, "disk_space")
|
|
1179
1175
|
|
|
@@ -1203,10 +1199,9 @@ class Kafka(pulumi.CustomResource):
|
|
|
1203
1199
|
|
|
1204
1200
|
@_builtins.property
|
|
1205
1201
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1206
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1207
1202
|
def disk_space_used(self) -> pulumi.Output[_builtins.str]:
|
|
1208
1203
|
"""
|
|
1209
|
-
|
|
1204
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
1210
1205
|
"""
|
|
1211
1206
|
return pulumi.get(self, "disk_space_used")
|
|
1212
1207
|
|