pulumi-aiven 6.26.0__py3-none-any.whl → 6.26.0a1727846056__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/__init__.py +0 -1
- pulumi_aiven/_inputs.py +42 -202
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +2 -7
- pulumi_aiven/clickhouse.py +1 -6
- pulumi_aiven/dragonfly.py +2 -7
- pulumi_aiven/flink.py +2 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_integration.py +4 -17
- pulumi_aiven/get_thanos.py +6 -0
- pulumi_aiven/grafana.py +2 -7
- pulumi_aiven/influx_db.py +2 -7
- pulumi_aiven/kafka.py +2 -7
- pulumi_aiven/kafka_connect.py +2 -7
- pulumi_aiven/kafka_mirror_maker.py +2 -7
- pulumi_aiven/m3_aggregator.py +2 -7
- pulumi_aiven/m3_db.py +2 -7
- pulumi_aiven/my_sql.py +2 -7
- pulumi_aiven/open_search.py +2 -7
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/outputs.py +62 -334
- pulumi_aiven/pg.py +2 -7
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +2 -7
- pulumi_aiven/service_integration.py +7 -54
- pulumi_aiven/static_ip.py +2 -2
- pulumi_aiven/thanos.py +8 -7
- pulumi_aiven/valkey.py +2 -7
- {pulumi_aiven-6.26.0.dist-info → pulumi_aiven-6.26.0a1727846056.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.26.0.dist-info → pulumi_aiven-6.26.0a1727846056.dist-info}/RECORD +34 -35
- pulumi_aiven/get_external_identity.py +0 -146
- {pulumi_aiven-6.26.0.dist-info → pulumi_aiven-6.26.0a1727846056.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.26.0.dist-info → pulumi_aiven-6.26.0a1727846056.dist-info}/top_level.txt +0 -0
pulumi_aiven/clickhouse.py
CHANGED
|
@@ -361,9 +361,6 @@ class _ClickhouseState:
|
|
|
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 maintenance_window_dow is not None:
|
|
@@ -514,7 +511,6 @@ class _ClickhouseState:
|
|
|
514
511
|
|
|
515
512
|
@property
|
|
516
513
|
@pulumi.getter(name="diskSpaceUsed")
|
|
517
|
-
@_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.""")
|
|
518
514
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
519
515
|
"""
|
|
520
516
|
Disk space that service is currently using
|
|
@@ -1096,7 +1092,6 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
1096
1092
|
|
|
1097
1093
|
@property
|
|
1098
1094
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1099
|
-
@_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.""")
|
|
1100
1095
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1101
1096
|
"""
|
|
1102
1097
|
Disk space that service is currently using
|
|
@@ -1137,7 +1132,7 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
1137
1132
|
|
|
1138
1133
|
@property
|
|
1139
1134
|
@pulumi.getter(name="projectVpcId")
|
|
1140
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1135
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1141
1136
|
"""
|
|
1142
1137
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1143
1138
|
"""
|
pulumi_aiven/dragonfly.py
CHANGED
|
@@ -357,9 +357,6 @@ class _DragonflyState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
-
if disk_space_used is not None:
|
|
361
|
-
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)
|
|
362
|
-
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.""")
|
|
363
360
|
if disk_space_used is not None:
|
|
364
361
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
365
362
|
if dragonfly is not None:
|
|
@@ -490,7 +487,6 @@ class _DragonflyState:
|
|
|
490
487
|
|
|
491
488
|
@property
|
|
492
489
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
-
@_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.""")
|
|
494
490
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
495
491
|
"""
|
|
496
492
|
Disk space that service is currently using
|
|
@@ -1082,7 +1078,6 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1082
1078
|
|
|
1083
1079
|
@property
|
|
1084
1080
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1085
|
-
@_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.""")
|
|
1086
1081
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1087
1082
|
"""
|
|
1088
1083
|
Disk space that service is currently using
|
|
@@ -1139,7 +1134,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1139
1134
|
|
|
1140
1135
|
@property
|
|
1141
1136
|
@pulumi.getter(name="projectVpcId")
|
|
1142
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1137
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1143
1138
|
"""
|
|
1144
1139
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1145
1140
|
"""
|
|
@@ -1155,7 +1150,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1155
1150
|
|
|
1156
1151
|
@property
|
|
1157
1152
|
@pulumi.getter(name="serviceIntegrations")
|
|
1158
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.DragonflyServiceIntegration']]:
|
|
1153
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.DragonflyServiceIntegration']]]:
|
|
1159
1154
|
"""
|
|
1160
1155
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1161
1156
|
"""
|
pulumi_aiven/flink.py
CHANGED
|
@@ -357,9 +357,6 @@ class _FlinkState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
-
if disk_space_used is not None:
|
|
361
|
-
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)
|
|
362
|
-
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.""")
|
|
363
360
|
if disk_space_used is not None:
|
|
364
361
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
365
362
|
if flink is not None:
|
|
@@ -490,7 +487,6 @@ class _FlinkState:
|
|
|
490
487
|
|
|
491
488
|
@property
|
|
492
489
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
-
@_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.""")
|
|
494
490
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
495
491
|
"""
|
|
496
492
|
Disk space that service is currently using
|
|
@@ -1086,7 +1082,6 @@ class Flink(pulumi.CustomResource):
|
|
|
1086
1082
|
|
|
1087
1083
|
@property
|
|
1088
1084
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1089
|
-
@_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.""")
|
|
1090
1085
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1091
1086
|
"""
|
|
1092
1087
|
Disk space that service is currently using
|
|
@@ -1143,7 +1138,7 @@ class Flink(pulumi.CustomResource):
|
|
|
1143
1138
|
|
|
1144
1139
|
@property
|
|
1145
1140
|
@pulumi.getter(name="projectVpcId")
|
|
1146
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1141
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1147
1142
|
"""
|
|
1148
1143
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1149
1144
|
"""
|
|
@@ -1159,7 +1154,7 @@ class Flink(pulumi.CustomResource):
|
|
|
1159
1154
|
|
|
1160
1155
|
@property
|
|
1161
1156
|
@pulumi.getter(name="serviceIntegrations")
|
|
1162
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.FlinkServiceIntegration']]:
|
|
1157
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.FlinkServiceIntegration']]]:
|
|
1163
1158
|
"""
|
|
1164
1159
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1165
1160
|
"""
|
|
@@ -74,7 +74,7 @@ class GetAccountTeamProjectResult:
|
|
|
74
74
|
@pulumi.getter(name="teamType")
|
|
75
75
|
def team_type(self) -> str:
|
|
76
76
|
"""
|
|
77
|
-
The Account team project type. The possible values are `admin`, `operator`, `developer
|
|
77
|
+
The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
|
|
78
78
|
"""
|
|
79
79
|
return pulumi.get(self, "team_type")
|
|
80
80
|
|
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`, `operator
|
|
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
|
|
|
@@ -22,7 +22,7 @@ class GetServiceIntegrationResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getServiceIntegration.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, clickhouse_kafka_user_configs=None, clickhouse_postgresql_user_configs=None, datadog_user_configs=None, destination_endpoint_id=None, destination_service_name=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_opensearch_logs_user_configs=None,
|
|
25
|
+
def __init__(__self__, clickhouse_kafka_user_configs=None, clickhouse_postgresql_user_configs=None, datadog_user_configs=None, destination_endpoint_id=None, destination_service_name=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_opensearch_logs_user_configs=None, id=None, integration_id=None, integration_type=None, kafka_connect_user_configs=None, kafka_logs_user_configs=None, kafka_mirrormaker_user_configs=None, logs_user_configs=None, metrics_user_configs=None, project=None, prometheus_user_configs=None, source_endpoint_id=None, source_service_name=None):
|
|
26
26
|
if clickhouse_kafka_user_configs and not isinstance(clickhouse_kafka_user_configs, list):
|
|
27
27
|
raise TypeError("Expected argument 'clickhouse_kafka_user_configs' to be a list")
|
|
28
28
|
pulumi.set(__self__, "clickhouse_kafka_user_configs", clickhouse_kafka_user_configs)
|
|
@@ -50,9 +50,6 @@ class GetServiceIntegrationResult:
|
|
|
50
50
|
if external_opensearch_logs_user_configs and not isinstance(external_opensearch_logs_user_configs, list):
|
|
51
51
|
raise TypeError("Expected argument 'external_opensearch_logs_user_configs' to be a list")
|
|
52
52
|
pulumi.set(__self__, "external_opensearch_logs_user_configs", external_opensearch_logs_user_configs)
|
|
53
|
-
if flink_external_postgresql_user_configs and not isinstance(flink_external_postgresql_user_configs, list):
|
|
54
|
-
raise TypeError("Expected argument 'flink_external_postgresql_user_configs' to be a list")
|
|
55
|
-
pulumi.set(__self__, "flink_external_postgresql_user_configs", flink_external_postgresql_user_configs)
|
|
56
53
|
if id and not isinstance(id, str):
|
|
57
54
|
raise TypeError("Expected argument 'id' to be a str")
|
|
58
55
|
pulumi.set(__self__, "id", id)
|
|
@@ -162,14 +159,6 @@ class GetServiceIntegrationResult:
|
|
|
162
159
|
"""
|
|
163
160
|
return pulumi.get(self, "external_opensearch_logs_user_configs")
|
|
164
161
|
|
|
165
|
-
@property
|
|
166
|
-
@pulumi.getter(name="flinkExternalPostgresqlUserConfigs")
|
|
167
|
-
def flink_external_postgresql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationFlinkExternalPostgresqlUserConfigResult']:
|
|
168
|
-
"""
|
|
169
|
-
FlinkExternalPostgresql user configurable settings
|
|
170
|
-
"""
|
|
171
|
-
return pulumi.get(self, "flink_external_postgresql_user_configs")
|
|
172
|
-
|
|
173
162
|
@property
|
|
174
163
|
@pulumi.getter
|
|
175
164
|
def id(self) -> str:
|
|
@@ -190,7 +179,7 @@ class GetServiceIntegrationResult:
|
|
|
190
179
|
@pulumi.getter(name="integrationType")
|
|
191
180
|
def integration_type(self) -> str:
|
|
192
181
|
"""
|
|
193
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `
|
|
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`
|
|
194
183
|
"""
|
|
195
184
|
return pulumi.get(self, "integration_type")
|
|
196
185
|
|
|
@@ -282,7 +271,6 @@ class AwaitableGetServiceIntegrationResult(GetServiceIntegrationResult):
|
|
|
282
271
|
external_aws_cloudwatch_metrics_user_configs=self.external_aws_cloudwatch_metrics_user_configs,
|
|
283
272
|
external_elasticsearch_logs_user_configs=self.external_elasticsearch_logs_user_configs,
|
|
284
273
|
external_opensearch_logs_user_configs=self.external_opensearch_logs_user_configs,
|
|
285
|
-
flink_external_postgresql_user_configs=self.flink_external_postgresql_user_configs,
|
|
286
274
|
id=self.id,
|
|
287
275
|
integration_id=self.integration_id,
|
|
288
276
|
integration_type=self.integration_type,
|
|
@@ -319,7 +307,7 @@ def get_service_integration(destination_service_name: Optional[str] = None,
|
|
|
319
307
|
|
|
320
308
|
|
|
321
309
|
:param str destination_service_name: Destination service for the integration.
|
|
322
|
-
: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`, `
|
|
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`
|
|
323
311
|
:param str project: Project the integration belongs to.
|
|
324
312
|
:param str source_service_name: Source service for the integration (if any)
|
|
325
313
|
"""
|
|
@@ -341,7 +329,6 @@ def get_service_integration(destination_service_name: Optional[str] = None,
|
|
|
341
329
|
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
342
330
|
external_elasticsearch_logs_user_configs=pulumi.get(__ret__, 'external_elasticsearch_logs_user_configs'),
|
|
343
331
|
external_opensearch_logs_user_configs=pulumi.get(__ret__, 'external_opensearch_logs_user_configs'),
|
|
344
|
-
flink_external_postgresql_user_configs=pulumi.get(__ret__, 'flink_external_postgresql_user_configs'),
|
|
345
332
|
id=pulumi.get(__ret__, 'id'),
|
|
346
333
|
integration_id=pulumi.get(__ret__, 'integration_id'),
|
|
347
334
|
integration_type=pulumi.get(__ret__, 'integration_type'),
|
|
@@ -379,7 +366,7 @@ def get_service_integration_output(destination_service_name: Optional[pulumi.Inp
|
|
|
379
366
|
|
|
380
367
|
|
|
381
368
|
:param str destination_service_name: Destination service for the integration.
|
|
382
|
-
: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`, `
|
|
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`
|
|
383
370
|
:param str project: Project the integration belongs to.
|
|
384
371
|
:param str source_service_name: Source service for the integration (if any)
|
|
385
372
|
"""
|
pulumi_aiven/get_thanos.py
CHANGED
|
@@ -387,6 +387,9 @@ def get_thanos(project: Optional[str] = None,
|
|
|
387
387
|
"""
|
|
388
388
|
Gets information about an Aiven for Thanos® service.
|
|
389
389
|
|
|
390
|
+
**This resource is in the beta stage and may change without notice.** Set
|
|
391
|
+
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
392
|
+
|
|
390
393
|
|
|
391
394
|
: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.
|
|
392
395
|
:param 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.
|
|
@@ -436,6 +439,9 @@ def get_thanos_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
436
439
|
"""
|
|
437
440
|
Gets information about an Aiven for Thanos® service.
|
|
438
441
|
|
|
442
|
+
**This resource is in the beta stage and may change without notice.** Set
|
|
443
|
+
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
444
|
+
|
|
439
445
|
|
|
440
446
|
: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.
|
|
441
447
|
:param 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.
|
pulumi_aiven/grafana.py
CHANGED
|
@@ -358,9 +358,6 @@ class _GrafanaState:
|
|
|
358
358
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
359
359
|
if disk_space_step is not None:
|
|
360
360
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
361
|
-
if disk_space_used is not None:
|
|
362
|
-
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)
|
|
363
|
-
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.""")
|
|
364
361
|
if disk_space_used is not None:
|
|
365
362
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
366
363
|
if grafana is not None:
|
|
@@ -491,7 +488,6 @@ class _GrafanaState:
|
|
|
491
488
|
|
|
492
489
|
@property
|
|
493
490
|
@pulumi.getter(name="diskSpaceUsed")
|
|
494
|
-
@_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.""")
|
|
495
491
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
496
492
|
"""
|
|
497
493
|
Disk space that service is currently using
|
|
@@ -1091,7 +1087,6 @@ class Grafana(pulumi.CustomResource):
|
|
|
1091
1087
|
|
|
1092
1088
|
@property
|
|
1093
1089
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1094
|
-
@_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.""")
|
|
1095
1090
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1096
1091
|
"""
|
|
1097
1092
|
Disk space that service is currently using
|
|
@@ -1148,7 +1143,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1148
1143
|
|
|
1149
1144
|
@property
|
|
1150
1145
|
@pulumi.getter(name="projectVpcId")
|
|
1151
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1146
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1152
1147
|
"""
|
|
1153
1148
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1154
1149
|
"""
|
|
@@ -1164,7 +1159,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1164
1159
|
|
|
1165
1160
|
@property
|
|
1166
1161
|
@pulumi.getter(name="serviceIntegrations")
|
|
1167
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.GrafanaServiceIntegration']]:
|
|
1162
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.GrafanaServiceIntegration']]]:
|
|
1168
1163
|
"""
|
|
1169
1164
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1170
1165
|
"""
|
pulumi_aiven/influx_db.py
CHANGED
|
@@ -425,9 +425,6 @@ class _InfluxDbState:
|
|
|
425
425
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
426
426
|
if disk_space_step is not None:
|
|
427
427
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
428
|
-
if disk_space_used is not None:
|
|
429
|
-
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)
|
|
430
|
-
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.""")
|
|
431
428
|
if disk_space_used is not None:
|
|
432
429
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
433
430
|
if influxdb_user_config is not None:
|
|
@@ -568,7 +565,6 @@ class _InfluxDbState:
|
|
|
568
565
|
|
|
569
566
|
@property
|
|
570
567
|
@pulumi.getter(name="diskSpaceUsed")
|
|
571
|
-
@_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.""")
|
|
572
568
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
573
569
|
"""
|
|
574
570
|
Disk space that service is currently using
|
|
@@ -1184,7 +1180,6 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1184
1180
|
|
|
1185
1181
|
@property
|
|
1186
1182
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1187
|
-
@_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.""")
|
|
1188
1183
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1189
1184
|
"""
|
|
1190
1185
|
Disk space that service is currently using
|
|
@@ -1247,7 +1242,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1247
1242
|
|
|
1248
1243
|
@property
|
|
1249
1244
|
@pulumi.getter(name="projectVpcId")
|
|
1250
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1245
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1251
1246
|
"""
|
|
1252
1247
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the
|
|
1253
1248
|
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region
|
|
@@ -1266,7 +1261,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1266
1261
|
|
|
1267
1262
|
@property
|
|
1268
1263
|
@pulumi.getter(name="serviceIntegrations")
|
|
1269
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.InfluxDbServiceIntegration']]:
|
|
1264
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.InfluxDbServiceIntegration']]]:
|
|
1270
1265
|
"""
|
|
1271
1266
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1272
1267
|
"""
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -399,9 +399,6 @@ class _KafkaState:
|
|
|
399
399
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
400
400
|
if disk_space_step is not None:
|
|
401
401
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
402
|
-
if disk_space_used is not None:
|
|
403
|
-
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)
|
|
404
|
-
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.""")
|
|
405
402
|
if disk_space_used is not None:
|
|
406
403
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
407
404
|
if kafka_user_config is not None:
|
|
@@ -549,7 +546,6 @@ class _KafkaState:
|
|
|
549
546
|
|
|
550
547
|
@property
|
|
551
548
|
@pulumi.getter(name="diskSpaceUsed")
|
|
552
|
-
@_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.""")
|
|
553
549
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
554
550
|
"""
|
|
555
551
|
Disk space that service is currently using
|
|
@@ -1202,7 +1198,6 @@ class Kafka(pulumi.CustomResource):
|
|
|
1202
1198
|
|
|
1203
1199
|
@property
|
|
1204
1200
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1205
|
-
@_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.""")
|
|
1206
1201
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1207
1202
|
"""
|
|
1208
1203
|
Disk space that service is currently using
|
|
@@ -1268,7 +1263,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1268
1263
|
|
|
1269
1264
|
@property
|
|
1270
1265
|
@pulumi.getter(name="projectVpcId")
|
|
1271
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1266
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1272
1267
|
"""
|
|
1273
1268
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1274
1269
|
"""
|
|
@@ -1284,7 +1279,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1284
1279
|
|
|
1285
1280
|
@property
|
|
1286
1281
|
@pulumi.getter(name="serviceIntegrations")
|
|
1287
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.KafkaServiceIntegration']]:
|
|
1282
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.KafkaServiceIntegration']]]:
|
|
1288
1283
|
"""
|
|
1289
1284
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1290
1285
|
"""
|
pulumi_aiven/kafka_connect.py
CHANGED
|
@@ -339,9 +339,6 @@ class _KafkaConnectState:
|
|
|
339
339
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
340
340
|
if disk_space_step is not None:
|
|
341
341
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
342
|
-
if disk_space_used is not None:
|
|
343
|
-
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)
|
|
344
|
-
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.""")
|
|
345
342
|
if disk_space_used is not None:
|
|
346
343
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
347
344
|
if kafka_connect_user_config is not None:
|
|
@@ -470,7 +467,6 @@ class _KafkaConnectState:
|
|
|
470
467
|
|
|
471
468
|
@property
|
|
472
469
|
@pulumi.getter(name="diskSpaceUsed")
|
|
473
|
-
@_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.""")
|
|
474
470
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
475
471
|
"""
|
|
476
472
|
Disk space that service is currently using
|
|
@@ -1109,7 +1105,6 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1109
1105
|
|
|
1110
1106
|
@property
|
|
1111
1107
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1112
|
-
@_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.""")
|
|
1113
1108
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1114
1109
|
"""
|
|
1115
1110
|
Disk space that service is currently using
|
|
@@ -1158,7 +1153,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1158
1153
|
|
|
1159
1154
|
@property
|
|
1160
1155
|
@pulumi.getter(name="projectVpcId")
|
|
1161
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1156
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1162
1157
|
"""
|
|
1163
1158
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1164
1159
|
"""
|
|
@@ -1174,7 +1169,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1174
1169
|
|
|
1175
1170
|
@property
|
|
1176
1171
|
@pulumi.getter(name="serviceIntegrations")
|
|
1177
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.KafkaConnectServiceIntegration']]:
|
|
1172
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.KafkaConnectServiceIntegration']]]:
|
|
1178
1173
|
"""
|
|
1179
1174
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1180
1175
|
"""
|
|
@@ -339,9 +339,6 @@ class _KafkaMirrorMakerState:
|
|
|
339
339
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
340
340
|
if disk_space_step is not None:
|
|
341
341
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
342
|
-
if disk_space_used is not None:
|
|
343
|
-
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)
|
|
344
|
-
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.""")
|
|
345
342
|
if disk_space_used is not None:
|
|
346
343
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
347
344
|
if kafka_mirrormaker_user_config is not None:
|
|
@@ -470,7 +467,6 @@ class _KafkaMirrorMakerState:
|
|
|
470
467
|
|
|
471
468
|
@property
|
|
472
469
|
@pulumi.getter(name="diskSpaceUsed")
|
|
473
|
-
@_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.""")
|
|
474
470
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
475
471
|
"""
|
|
476
472
|
Disk space that service is currently using
|
|
@@ -1053,7 +1049,6 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1053
1049
|
|
|
1054
1050
|
@property
|
|
1055
1051
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1056
|
-
@_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.""")
|
|
1057
1052
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1058
1053
|
"""
|
|
1059
1054
|
Disk space that service is currently using
|
|
@@ -1102,7 +1097,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1102
1097
|
|
|
1103
1098
|
@property
|
|
1104
1099
|
@pulumi.getter(name="projectVpcId")
|
|
1105
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1100
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1106
1101
|
"""
|
|
1107
1102
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1108
1103
|
"""
|
|
@@ -1118,7 +1113,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1118
1113
|
|
|
1119
1114
|
@property
|
|
1120
1115
|
@pulumi.getter(name="serviceIntegrations")
|
|
1121
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.KafkaMirrorMakerServiceIntegration']]:
|
|
1116
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.KafkaMirrorMakerServiceIntegration']]]:
|
|
1122
1117
|
"""
|
|
1123
1118
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1124
1119
|
"""
|
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -357,9 +357,6 @@ class _M3AggregatorState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
-
if disk_space_used is not None:
|
|
361
|
-
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)
|
|
362
|
-
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.""")
|
|
363
360
|
if disk_space_used is not None:
|
|
364
361
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
365
362
|
if m3aggregator is not None:
|
|
@@ -490,7 +487,6 @@ class _M3AggregatorState:
|
|
|
490
487
|
|
|
491
488
|
@property
|
|
492
489
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
-
@_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.""")
|
|
494
490
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
495
491
|
"""
|
|
496
492
|
Disk space that service is currently using
|
|
@@ -1086,7 +1082,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1086
1082
|
|
|
1087
1083
|
@property
|
|
1088
1084
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1089
|
-
@_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.""")
|
|
1090
1085
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1091
1086
|
"""
|
|
1092
1087
|
Disk space that service is currently using
|
|
@@ -1143,7 +1138,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1143
1138
|
|
|
1144
1139
|
@property
|
|
1145
1140
|
@pulumi.getter(name="projectVpcId")
|
|
1146
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1141
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1147
1142
|
"""
|
|
1148
1143
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1149
1144
|
"""
|
|
@@ -1159,7 +1154,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1159
1154
|
|
|
1160
1155
|
@property
|
|
1161
1156
|
@pulumi.getter(name="serviceIntegrations")
|
|
1162
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.M3AggregatorServiceIntegration']]:
|
|
1157
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.M3AggregatorServiceIntegration']]]:
|
|
1163
1158
|
"""
|
|
1164
1159
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1165
1160
|
"""
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -357,9 +357,6 @@ class _M3DbState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
-
if disk_space_used is not None:
|
|
361
|
-
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)
|
|
362
|
-
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.""")
|
|
363
360
|
if disk_space_used is not None:
|
|
364
361
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
365
362
|
if m3db is not None:
|
|
@@ -490,7 +487,6 @@ class _M3DbState:
|
|
|
490
487
|
|
|
491
488
|
@property
|
|
492
489
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
-
@_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.""")
|
|
494
490
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
495
491
|
"""
|
|
496
492
|
Disk space that service is currently using
|
|
@@ -1094,7 +1090,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
1094
1090
|
|
|
1095
1091
|
@property
|
|
1096
1092
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1097
|
-
@_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.""")
|
|
1098
1093
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1099
1094
|
"""
|
|
1100
1095
|
Disk space that service is currently using
|
|
@@ -1151,7 +1146,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1151
1146
|
|
|
1152
1147
|
@property
|
|
1153
1148
|
@pulumi.getter(name="projectVpcId")
|
|
1154
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1149
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1155
1150
|
"""
|
|
1156
1151
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1157
1152
|
"""
|
|
@@ -1167,7 +1162,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1167
1162
|
|
|
1168
1163
|
@property
|
|
1169
1164
|
@pulumi.getter(name="serviceIntegrations")
|
|
1170
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.M3DbServiceIntegration']]:
|
|
1165
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.M3DbServiceIntegration']]]:
|
|
1171
1166
|
"""
|
|
1172
1167
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1173
1168
|
"""
|
pulumi_aiven/my_sql.py
CHANGED
|
@@ -357,9 +357,6 @@ class _MySqlState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
-
if disk_space_used is not None:
|
|
361
|
-
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)
|
|
362
|
-
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.""")
|
|
363
360
|
if disk_space_used is not None:
|
|
364
361
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
365
362
|
if maintenance_window_dow is not None:
|
|
@@ -490,7 +487,6 @@ class _MySqlState:
|
|
|
490
487
|
|
|
491
488
|
@property
|
|
492
489
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
-
@_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.""")
|
|
494
490
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
495
491
|
"""
|
|
496
492
|
Disk space that service is currently using
|
|
@@ -1100,7 +1096,6 @@ class MySql(pulumi.CustomResource):
|
|
|
1100
1096
|
|
|
1101
1097
|
@property
|
|
1102
1098
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1103
|
-
@_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.""")
|
|
1104
1099
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1105
1100
|
"""
|
|
1106
1101
|
Disk space that service is currently using
|
|
@@ -1157,7 +1152,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1157
1152
|
|
|
1158
1153
|
@property
|
|
1159
1154
|
@pulumi.getter(name="projectVpcId")
|
|
1160
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1155
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1161
1156
|
"""
|
|
1162
1157
|
Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
1163
1158
|
"""
|
|
@@ -1173,7 +1168,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1173
1168
|
|
|
1174
1169
|
@property
|
|
1175
1170
|
@pulumi.getter(name="serviceIntegrations")
|
|
1176
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.MySqlServiceIntegration']]:
|
|
1171
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.MySqlServiceIntegration']]]:
|
|
1177
1172
|
"""
|
|
1178
1173
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1179
1174
|
"""
|