pulumi-aiven 6.22.0a1724217730__py3-none-any.whl → 6.22.0a1724238465__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 +721 -67
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +7 -7
- pulumi_aiven/clickhouse.py +7 -7
- pulumi_aiven/dragonfly.py +7 -7
- pulumi_aiven/flink.py +7 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_mysql_user.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_pg.py +8 -8
- pulumi_aiven/get_pg_database.py +8 -8
- pulumi_aiven/get_pg_user.py +16 -16
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_project_vpc.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_integration.py +3 -3
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +7 -7
- pulumi_aiven/influx_db.py +21 -14
- pulumi_aiven/kafka.py +7 -7
- pulumi_aiven/kafka_connect.py +7 -7
- pulumi_aiven/kafka_mirror_maker.py +7 -7
- pulumi_aiven/m3_aggregator.py +7 -7
- pulumi_aiven/m3_db.py +7 -7
- pulumi_aiven/my_sql.py +7 -7
- pulumi_aiven/mysql_user.py +7 -7
- pulumi_aiven/open_search.py +7 -7
- pulumi_aiven/outputs.py +1252 -135
- pulumi_aiven/pg.py +18 -18
- pulumi_aiven/pg_database.py +12 -12
- pulumi_aiven/pg_user.py +47 -47
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/project_vpc.py +4 -4
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -7
- pulumi_aiven/service_integration.py +7 -7
- pulumi_aiven/thanos.py +7 -7
- pulumi_aiven/valkey.py +7 -7
- {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/RECORD +55 -55
- {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/top_level.txt +0 -0
pulumi_aiven/get_pg.py
CHANGED
|
@@ -115,7 +115,7 @@ class GetPgResult:
|
|
|
115
115
|
@pulumi.getter(name="additionalDiskSpace")
|
|
116
116
|
def additional_disk_space(self) -> str:
|
|
117
117
|
"""
|
|
118
|
-
|
|
118
|
+
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 with no HA capabilities.
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "additional_disk_space")
|
|
121
121
|
|
|
@@ -211,7 +211,7 @@ class GetPgResult:
|
|
|
211
211
|
@pulumi.getter
|
|
212
212
|
def pgs(self) -> Sequence['outputs.GetPgPgResult']:
|
|
213
213
|
"""
|
|
214
|
-
|
|
214
|
+
Values provided by the PostgreSQL server.
|
|
215
215
|
"""
|
|
216
216
|
return pulumi.get(self, "pgs")
|
|
217
217
|
|
|
@@ -385,7 +385,7 @@ def get_pg(project: Optional[str] = None,
|
|
|
385
385
|
service_name: Optional[str] = None,
|
|
386
386
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPgResult:
|
|
387
387
|
"""
|
|
388
|
-
|
|
388
|
+
Gets information about an Aiven for PostgreSQL® service.
|
|
389
389
|
|
|
390
390
|
## Example Usage
|
|
391
391
|
|
|
@@ -393,8 +393,8 @@ def get_pg(project: Optional[str] = None,
|
|
|
393
393
|
import pulumi
|
|
394
394
|
import pulumi_aiven as aiven
|
|
395
395
|
|
|
396
|
-
|
|
397
|
-
service_name="
|
|
396
|
+
example_postgres = aiven.get_pg(project=example_project["project"],
|
|
397
|
+
service_name="example-postgres-service")
|
|
398
398
|
```
|
|
399
399
|
|
|
400
400
|
|
|
@@ -444,7 +444,7 @@ def get_pg_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
444
444
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
445
445
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPgResult]:
|
|
446
446
|
"""
|
|
447
|
-
|
|
447
|
+
Gets information about an Aiven for PostgreSQL® service.
|
|
448
448
|
|
|
449
449
|
## Example Usage
|
|
450
450
|
|
|
@@ -452,8 +452,8 @@ def get_pg_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
452
452
|
import pulumi
|
|
453
453
|
import pulumi_aiven as aiven
|
|
454
454
|
|
|
455
|
-
|
|
456
|
-
service_name="
|
|
455
|
+
example_postgres = aiven.get_pg(project=example_project["project"],
|
|
456
|
+
service_name="example-postgres-service")
|
|
457
457
|
```
|
|
458
458
|
|
|
459
459
|
|
pulumi_aiven/get_pg_database.py
CHANGED
|
@@ -118,7 +118,7 @@ def get_pg_database(database_name: Optional[str] = None,
|
|
|
118
118
|
service_name: Optional[str] = None,
|
|
119
119
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPgDatabaseResult:
|
|
120
120
|
"""
|
|
121
|
-
|
|
121
|
+
Gets information about a database in an Aiven for PostgreSQL® service.
|
|
122
122
|
|
|
123
123
|
## Example Usage
|
|
124
124
|
|
|
@@ -126,9 +126,9 @@ def get_pg_database(database_name: Optional[str] = None,
|
|
|
126
126
|
import pulumi
|
|
127
127
|
import pulumi_aiven as aiven
|
|
128
128
|
|
|
129
|
-
|
|
130
|
-
service_name=
|
|
131
|
-
database_name="
|
|
129
|
+
main = aiven.get_pg_database(project=example_project["project"],
|
|
130
|
+
service_name=example_postgres["serviceName"],
|
|
131
|
+
database_name="example-database")
|
|
132
132
|
```
|
|
133
133
|
|
|
134
134
|
|
|
@@ -159,7 +159,7 @@ def get_pg_database_output(database_name: Optional[pulumi.Input[str]] = None,
|
|
|
159
159
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
160
160
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPgDatabaseResult]:
|
|
161
161
|
"""
|
|
162
|
-
|
|
162
|
+
Gets information about a database in an Aiven for PostgreSQL® service.
|
|
163
163
|
|
|
164
164
|
## Example Usage
|
|
165
165
|
|
|
@@ -167,9 +167,9 @@ def get_pg_database_output(database_name: Optional[pulumi.Input[str]] = None,
|
|
|
167
167
|
import pulumi
|
|
168
168
|
import pulumi_aiven as aiven
|
|
169
169
|
|
|
170
|
-
|
|
171
|
-
service_name=
|
|
172
|
-
database_name="
|
|
170
|
+
main = aiven.get_pg_database(project=example_project["project"],
|
|
171
|
+
service_name=example_postgres["serviceName"],
|
|
172
|
+
database_name="example-database")
|
|
173
173
|
```
|
|
174
174
|
|
|
175
175
|
|
pulumi_aiven/get_pg_user.py
CHANGED
|
@@ -54,7 +54,7 @@ class GetPgUserResult:
|
|
|
54
54
|
@pulumi.getter(name="accessCert")
|
|
55
55
|
def access_cert(self) -> str:
|
|
56
56
|
"""
|
|
57
|
-
|
|
57
|
+
The access certificate for the servie user.
|
|
58
58
|
"""
|
|
59
59
|
return pulumi.get(self, "access_cert")
|
|
60
60
|
|
|
@@ -62,7 +62,7 @@ class GetPgUserResult:
|
|
|
62
62
|
@pulumi.getter(name="accessKey")
|
|
63
63
|
def access_key(self) -> str:
|
|
64
64
|
"""
|
|
65
|
-
|
|
65
|
+
The access certificate key for the service user.
|
|
66
66
|
"""
|
|
67
67
|
return pulumi.get(self, "access_key")
|
|
68
68
|
|
|
@@ -78,7 +78,7 @@ class GetPgUserResult:
|
|
|
78
78
|
@pulumi.getter
|
|
79
79
|
def password(self) -> str:
|
|
80
80
|
"""
|
|
81
|
-
The password of the
|
|
81
|
+
The password of the service user.
|
|
82
82
|
"""
|
|
83
83
|
return pulumi.get(self, "password")
|
|
84
84
|
|
|
@@ -86,7 +86,7 @@ class GetPgUserResult:
|
|
|
86
86
|
@pulumi.getter(name="pgAllowReplication")
|
|
87
87
|
def pg_allow_replication(self) -> bool:
|
|
88
88
|
"""
|
|
89
|
-
|
|
89
|
+
Allows replication.
|
|
90
90
|
"""
|
|
91
91
|
return pulumi.get(self, "pg_allow_replication")
|
|
92
92
|
|
|
@@ -110,7 +110,7 @@ class GetPgUserResult:
|
|
|
110
110
|
@pulumi.getter
|
|
111
111
|
def type(self) -> str:
|
|
112
112
|
"""
|
|
113
|
-
|
|
113
|
+
The service user account type, either primary or regular.
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "type")
|
|
116
116
|
|
|
@@ -118,7 +118,7 @@ class GetPgUserResult:
|
|
|
118
118
|
@pulumi.getter
|
|
119
119
|
def username(self) -> str:
|
|
120
120
|
"""
|
|
121
|
-
The
|
|
121
|
+
The name of the service user for this service. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
122
122
|
"""
|
|
123
123
|
return pulumi.get(self, "username")
|
|
124
124
|
|
|
@@ -145,7 +145,7 @@ def get_pg_user(project: Optional[str] = None,
|
|
|
145
145
|
username: Optional[str] = None,
|
|
146
146
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPgUserResult:
|
|
147
147
|
"""
|
|
148
|
-
|
|
148
|
+
Gets information about an Aiven for PostgreSQL® service user.
|
|
149
149
|
|
|
150
150
|
## Example Usage
|
|
151
151
|
|
|
@@ -153,15 +153,15 @@ def get_pg_user(project: Optional[str] = None,
|
|
|
153
153
|
import pulumi
|
|
154
154
|
import pulumi_aiven as aiven
|
|
155
155
|
|
|
156
|
-
|
|
157
|
-
project="
|
|
158
|
-
username="
|
|
156
|
+
example_user = aiven.get_pg_user(service_name=example_postgres["serviceName"],
|
|
157
|
+
project=example_project["project"],
|
|
158
|
+
username="example-service-user")
|
|
159
159
|
```
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
:param 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.
|
|
163
163
|
:param str service_name: The name of the service that 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.
|
|
164
|
-
:param str username: The
|
|
164
|
+
:param str username: The name of the service user for this service. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
165
165
|
"""
|
|
166
166
|
__args__ = dict()
|
|
167
167
|
__args__['project'] = project
|
|
@@ -188,7 +188,7 @@ def get_pg_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
188
188
|
username: Optional[pulumi.Input[str]] = None,
|
|
189
189
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPgUserResult]:
|
|
190
190
|
"""
|
|
191
|
-
|
|
191
|
+
Gets information about an Aiven for PostgreSQL® service user.
|
|
192
192
|
|
|
193
193
|
## Example Usage
|
|
194
194
|
|
|
@@ -196,14 +196,14 @@ def get_pg_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
196
196
|
import pulumi
|
|
197
197
|
import pulumi_aiven as aiven
|
|
198
198
|
|
|
199
|
-
|
|
200
|
-
project="
|
|
201
|
-
username="
|
|
199
|
+
example_user = aiven.get_pg_user(service_name=example_postgres["serviceName"],
|
|
200
|
+
project=example_project["project"],
|
|
201
|
+
username="example-service-user")
|
|
202
202
|
```
|
|
203
203
|
|
|
204
204
|
|
|
205
205
|
:param 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.
|
|
206
206
|
:param str service_name: The name of the service that 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.
|
|
207
|
-
:param str username: The
|
|
207
|
+
:param str username: The name of the service user for this service. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
208
208
|
"""
|
|
209
209
|
...
|
pulumi_aiven/get_project_user.py
CHANGED
|
@@ -66,7 +66,7 @@ class GetProjectUserResult:
|
|
|
66
66
|
@pulumi.getter(name="memberType")
|
|
67
67
|
def member_type(self) -> str:
|
|
68
68
|
"""
|
|
69
|
-
Project membership type. The possible values are `admin`, `developer` and `
|
|
69
|
+
Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
70
70
|
"""
|
|
71
71
|
return pulumi.get(self, "member_type")
|
|
72
72
|
|
pulumi_aiven/get_project_vpc.py
CHANGED
|
@@ -77,7 +77,7 @@ class GetProjectVpcResult:
|
|
|
77
77
|
@pulumi.getter
|
|
78
78
|
def state(self) -> str:
|
|
79
79
|
"""
|
|
80
|
-
State of the VPC. The possible values are `
|
|
80
|
+
State of the VPC. The possible values are `ACTIVE`, `APPROVED`, `DELETED` and `DELETING`.
|
|
81
81
|
"""
|
|
82
82
|
return pulumi.get(self, "state")
|
|
83
83
|
|
pulumi_aiven/get_redis.py
CHANGED
|
@@ -115,7 +115,7 @@ class GetRedisResult:
|
|
|
115
115
|
@pulumi.getter(name="additionalDiskSpace")
|
|
116
116
|
def additional_disk_space(self) -> str:
|
|
117
117
|
"""
|
|
118
|
-
|
|
118
|
+
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 with no HA capabilities.
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "additional_disk_space")
|
|
121
121
|
|
|
@@ -179,7 +179,7 @@ class GetServiceIntegrationResult:
|
|
|
179
179
|
@pulumi.getter(name="integrationType")
|
|
180
180
|
def integration_type(self) -> str:
|
|
181
181
|
"""
|
|
182
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
182
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
183
183
|
"""
|
|
184
184
|
return pulumi.get(self, "integration_type")
|
|
185
185
|
|
|
@@ -307,7 +307,7 @@ def get_service_integration(destination_service_name: Optional[str] = None,
|
|
|
307
307
|
|
|
308
308
|
|
|
309
309
|
:param str destination_service_name: Destination service for the integration.
|
|
310
|
-
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
310
|
+
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
311
311
|
:param str project: Project the integration belongs to.
|
|
312
312
|
:param str source_service_name: Source service for the integration (if any)
|
|
313
313
|
"""
|
|
@@ -366,7 +366,7 @@ def get_service_integration_output(destination_service_name: Optional[pulumi.Inp
|
|
|
366
366
|
|
|
367
367
|
|
|
368
368
|
:param str destination_service_name: Destination service for the integration.
|
|
369
|
-
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
369
|
+
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
370
370
|
:param str project: Project the integration belongs to.
|
|
371
371
|
:param str source_service_name: Source service for the integration (if any)
|
|
372
372
|
"""
|
pulumi_aiven/get_thanos.py
CHANGED
|
@@ -115,7 +115,7 @@ class GetThanosResult:
|
|
|
115
115
|
@pulumi.getter(name="additionalDiskSpace")
|
|
116
116
|
def additional_disk_space(self) -> str:
|
|
117
117
|
"""
|
|
118
|
-
|
|
118
|
+
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 with no HA capabilities.
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "additional_disk_space")
|
|
121
121
|
|
pulumi_aiven/get_valkey.py
CHANGED
|
@@ -115,7 +115,7 @@ class GetValkeyResult:
|
|
|
115
115
|
@pulumi.getter(name="additionalDiskSpace")
|
|
116
116
|
def additional_disk_space(self) -> str:
|
|
117
117
|
"""
|
|
118
|
-
|
|
118
|
+
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 with no HA capabilities.
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "additional_disk_space")
|
|
121
121
|
|
pulumi_aiven/grafana.py
CHANGED
|
@@ -36,7 +36,7 @@ class GrafanaArgs:
|
|
|
36
36
|
The set of arguments for constructing a Grafana resource.
|
|
37
37
|
:param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
38
38
|
:param pulumi.Input[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.
|
|
39
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
39
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
40
40
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
41
41
|
:param pulumi.Input[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.
|
|
42
42
|
:param pulumi.Input['GrafanaGrafanaArgs'] grafana: Grafana server provided values
|
|
@@ -113,7 +113,7 @@ class GrafanaArgs:
|
|
|
113
113
|
@pulumi.getter(name="additionalDiskSpace")
|
|
114
114
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
115
115
|
"""
|
|
116
|
-
|
|
116
|
+
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 with no HA capabilities.
|
|
117
117
|
"""
|
|
118
118
|
return pulumi.get(self, "additional_disk_space")
|
|
119
119
|
|
|
@@ -312,7 +312,7 @@ class _GrafanaState:
|
|
|
312
312
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
313
313
|
"""
|
|
314
314
|
Input properties used for looking up and filtering Grafana resources.
|
|
315
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
315
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
316
316
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
317
317
|
:param pulumi.Input[Sequence[pulumi.Input['GrafanaComponentArgs']]] components: Service component information objects
|
|
318
318
|
:param pulumi.Input[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.
|
|
@@ -405,7 +405,7 @@ class _GrafanaState:
|
|
|
405
405
|
@pulumi.getter(name="additionalDiskSpace")
|
|
406
406
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
407
407
|
"""
|
|
408
|
-
|
|
408
|
+
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 with no HA capabilities.
|
|
409
409
|
"""
|
|
410
410
|
return pulumi.get(self, "additional_disk_space")
|
|
411
411
|
|
|
@@ -793,7 +793,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
793
793
|
|
|
794
794
|
:param str resource_name: The name of the resource.
|
|
795
795
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
796
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
796
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
797
797
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
798
798
|
:param pulumi.Input[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.
|
|
799
799
|
:param pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']] grafana: Grafana server provided values
|
|
@@ -965,7 +965,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
965
965
|
:param str resource_name: The unique name of the resulting resource.
|
|
966
966
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
967
967
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
968
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
968
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
969
969
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
970
970
|
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaComponentArgs', 'GrafanaComponentArgsDict']]]] components: Service component information objects
|
|
971
971
|
:param pulumi.Input[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.
|
|
@@ -1032,7 +1032,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1032
1032
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1033
1033
|
def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1034
1034
|
"""
|
|
1035
|
-
|
|
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 with no HA capabilities.
|
|
1036
1036
|
"""
|
|
1037
1037
|
return pulumi.get(self, "additional_disk_space")
|
|
1038
1038
|
|
pulumi_aiven/influx_db.py
CHANGED
|
@@ -44,8 +44,9 @@ class InfluxDbArgs:
|
|
|
44
44
|
reference. Changing this property forces recreation of the resource.
|
|
45
45
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the
|
|
46
46
|
service so name should be picked based on intended service usage rather than current attributes.
|
|
47
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
48
|
-
|
|
47
|
+
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your
|
|
48
|
+
service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the
|
|
49
|
+
service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
49
50
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
|
|
50
51
|
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
|
|
51
52
|
provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These
|
|
@@ -152,8 +153,9 @@ class InfluxDbArgs:
|
|
|
152
153
|
@pulumi.getter(name="additionalDiskSpace")
|
|
153
154
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
154
155
|
"""
|
|
155
|
-
|
|
156
|
-
|
|
156
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your
|
|
157
|
+
service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the
|
|
158
|
+
service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
157
159
|
"""
|
|
158
160
|
return pulumi.get(self, "additional_disk_space")
|
|
159
161
|
|
|
@@ -353,8 +355,9 @@ class _InfluxDbState:
|
|
|
353
355
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
354
356
|
"""
|
|
355
357
|
Input properties used for looking up and filtering InfluxDb resources.
|
|
356
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
357
|
-
|
|
358
|
+
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your
|
|
359
|
+
service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the
|
|
360
|
+
service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
358
361
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
|
|
359
362
|
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
|
|
360
363
|
provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These
|
|
@@ -469,8 +472,9 @@ class _InfluxDbState:
|
|
|
469
472
|
@pulumi.getter(name="additionalDiskSpace")
|
|
470
473
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
471
474
|
"""
|
|
472
|
-
|
|
473
|
-
|
|
475
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your
|
|
476
|
+
service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the
|
|
477
|
+
service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
474
478
|
"""
|
|
475
479
|
return pulumi.get(self, "additional_disk_space")
|
|
476
480
|
|
|
@@ -852,8 +856,9 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
852
856
|
Create a InfluxDb resource with the given unique name, props, and options.
|
|
853
857
|
:param str resource_name: The name of the resource.
|
|
854
858
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
855
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
856
|
-
|
|
859
|
+
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your
|
|
860
|
+
service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the
|
|
861
|
+
service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
857
862
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
|
|
858
863
|
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
|
|
859
864
|
provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These
|
|
@@ -1019,8 +1024,9 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1019
1024
|
:param str resource_name: The unique name of the resulting resource.
|
|
1020
1025
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1021
1026
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1022
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
1023
|
-
|
|
1027
|
+
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your
|
|
1028
|
+
service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the
|
|
1029
|
+
service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1024
1030
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
|
|
1025
1031
|
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
|
|
1026
1032
|
provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These
|
|
@@ -1109,8 +1115,9 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1109
1115
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1110
1116
|
def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1111
1117
|
"""
|
|
1112
|
-
|
|
1113
|
-
|
|
1118
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your
|
|
1119
|
+
service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the
|
|
1120
|
+
service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1114
1121
|
"""
|
|
1115
1122
|
return pulumi.get(self, "additional_disk_space")
|
|
1116
1123
|
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -39,7 +39,7 @@ class KafkaArgs:
|
|
|
39
39
|
:param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
40
40
|
:param pulumi.Input[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.
|
|
41
41
|
:param pulumi.Input[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.
|
|
42
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
42
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
43
43
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
44
44
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
45
45
|
:param pulumi.Input[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.
|
|
@@ -135,7 +135,7 @@ class KafkaArgs:
|
|
|
135
135
|
@pulumi.getter(name="additionalDiskSpace")
|
|
136
136
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
137
137
|
"""
|
|
138
|
-
|
|
138
|
+
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 with no HA capabilities.
|
|
139
139
|
"""
|
|
140
140
|
return pulumi.get(self, "additional_disk_space")
|
|
141
141
|
|
|
@@ -349,7 +349,7 @@ class _KafkaState:
|
|
|
349
349
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
350
350
|
"""
|
|
351
351
|
Input properties used for looking up and filtering Kafka resources.
|
|
352
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
352
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
353
353
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
354
354
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaComponentArgs']]] components: Service component information objects
|
|
355
355
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
@@ -451,7 +451,7 @@ class _KafkaState:
|
|
|
451
451
|
@pulumi.getter(name="additionalDiskSpace")
|
|
452
452
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
453
453
|
"""
|
|
454
|
-
|
|
454
|
+
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 with no HA capabilities.
|
|
455
455
|
"""
|
|
456
456
|
return pulumi.get(self, "additional_disk_space")
|
|
457
457
|
|
|
@@ -874,7 +874,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
874
874
|
|
|
875
875
|
:param str resource_name: The name of the resource.
|
|
876
876
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
877
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
877
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
878
878
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
879
879
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
880
880
|
:param pulumi.Input[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.
|
|
@@ -1064,7 +1064,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1064
1064
|
:param str resource_name: The unique name of the resulting resource.
|
|
1065
1065
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1066
1066
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1067
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
1067
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
1068
1068
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
1069
1069
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaComponentArgs', 'KafkaComponentArgsDict']]]] components: Service component information objects
|
|
1070
1070
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
@@ -1135,7 +1135,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1135
1135
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1136
1136
|
def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1137
1137
|
"""
|
|
1138
|
-
|
|
1138
|
+
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 with no HA capabilities.
|
|
1139
1139
|
"""
|
|
1140
1140
|
return pulumi.get(self, "additional_disk_space")
|
|
1141
1141
|
|