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/pg.py
CHANGED
|
@@ -358,9 +358,6 @@ class _PgState:
|
|
|
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 maintenance_window_dow is not None:
|
|
@@ -491,7 +488,6 @@ class _PgState:
|
|
|
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
|
|
@@ -1049,7 +1045,6 @@ class Pg(pulumi.CustomResource):
|
|
|
1049
1045
|
|
|
1050
1046
|
@property
|
|
1051
1047
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1052
|
-
@_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.""")
|
|
1053
1048
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1054
1049
|
"""
|
|
1055
1050
|
Disk space that service is currently using
|
|
@@ -1106,7 +1101,7 @@ class Pg(pulumi.CustomResource):
|
|
|
1106
1101
|
|
|
1107
1102
|
@property
|
|
1108
1103
|
@pulumi.getter(name="projectVpcId")
|
|
1109
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1104
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1110
1105
|
"""
|
|
1111
1106
|
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.
|
|
1112
1107
|
"""
|
|
@@ -1122,7 +1117,7 @@ class Pg(pulumi.CustomResource):
|
|
|
1122
1117
|
|
|
1123
1118
|
@property
|
|
1124
1119
|
@pulumi.getter(name="serviceIntegrations")
|
|
1125
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.PgServiceIntegration']]:
|
|
1120
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.PgServiceIntegration']]]:
|
|
1126
1121
|
"""
|
|
1127
1122
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1128
1123
|
"""
|
pulumi_aiven/project_user.py
CHANGED
|
@@ -20,7 +20,7 @@ class ProjectUserArgs:
|
|
|
20
20
|
"""
|
|
21
21
|
The set of arguments for constructing a ProjectUser resource.
|
|
22
22
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
23
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator
|
|
23
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
24
24
|
: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.
|
|
25
25
|
"""
|
|
26
26
|
pulumi.set(__self__, "email", email)
|
|
@@ -43,7 +43,7 @@ class ProjectUserArgs:
|
|
|
43
43
|
@pulumi.getter(name="memberType")
|
|
44
44
|
def member_type(self) -> pulumi.Input[str]:
|
|
45
45
|
"""
|
|
46
|
-
Project membership type. The possible values are `admin`, `developer`, `operator
|
|
46
|
+
Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
47
47
|
"""
|
|
48
48
|
return pulumi.get(self, "member_type")
|
|
49
49
|
|
|
@@ -75,7 +75,7 @@ class _ProjectUserState:
|
|
|
75
75
|
Input properties used for looking up and filtering ProjectUser resources.
|
|
76
76
|
:param pulumi.Input[bool] accepted: Whether the user has accepted the request to join the project. Users get an invite and become project members after accepting the invite.
|
|
77
77
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
78
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator
|
|
78
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
79
79
|
: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.
|
|
80
80
|
"""
|
|
81
81
|
if accepted is not None:
|
|
@@ -115,7 +115,7 @@ class _ProjectUserState:
|
|
|
115
115
|
@pulumi.getter(name="memberType")
|
|
116
116
|
def member_type(self) -> Optional[pulumi.Input[str]]:
|
|
117
117
|
"""
|
|
118
|
-
Project membership type. The possible values are `admin`, `developer`, `operator
|
|
118
|
+
Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "member_type")
|
|
121
121
|
|
|
@@ -169,7 +169,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
169
169
|
:param str resource_name: The name of the resource.
|
|
170
170
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
171
171
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
172
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator
|
|
172
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
173
173
|
: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.
|
|
174
174
|
"""
|
|
175
175
|
...
|
|
@@ -259,7 +259,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
259
259
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
260
260
|
:param pulumi.Input[bool] accepted: Whether the user has accepted the request to join the project. Users get an invite and become project members after accepting the invite.
|
|
261
261
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
262
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator
|
|
262
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
263
263
|
: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.
|
|
264
264
|
"""
|
|
265
265
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -292,7 +292,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
292
292
|
@pulumi.getter(name="memberType")
|
|
293
293
|
def member_type(self) -> pulumi.Output[str]:
|
|
294
294
|
"""
|
|
295
|
-
Project membership type. The possible values are `admin`, `developer`, `operator
|
|
295
|
+
Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
296
296
|
"""
|
|
297
297
|
return pulumi.get(self, "member_type")
|
|
298
298
|
|
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/redis.py
CHANGED
|
@@ -357,9 +357,6 @@ class _RedisState:
|
|
|
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 _RedisState:
|
|
|
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
|
|
@@ -1092,7 +1088,6 @@ class Redis(pulumi.CustomResource):
|
|
|
1092
1088
|
|
|
1093
1089
|
@property
|
|
1094
1090
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1095
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1096
1091
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1097
1092
|
"""
|
|
1098
1093
|
Disk space that service is currently using
|
|
@@ -1133,7 +1128,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1133
1128
|
|
|
1134
1129
|
@property
|
|
1135
1130
|
@pulumi.getter(name="projectVpcId")
|
|
1136
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1131
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1137
1132
|
"""
|
|
1138
1133
|
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.
|
|
1139
1134
|
"""
|
|
@@ -1165,7 +1160,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1165
1160
|
|
|
1166
1161
|
@property
|
|
1167
1162
|
@pulumi.getter(name="serviceIntegrations")
|
|
1168
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.RedisServiceIntegration']]:
|
|
1163
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.RedisServiceIntegration']]]:
|
|
1169
1164
|
"""
|
|
1170
1165
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1171
1166
|
"""
|
|
@@ -27,7 +27,6 @@ class ServiceIntegrationArgs:
|
|
|
27
27
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
28
28
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
29
29
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']] = None,
|
|
30
|
-
flink_external_postgresql_user_config: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']] = None,
|
|
31
30
|
kafka_connect_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']] = None,
|
|
32
31
|
kafka_logs_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs']] = None,
|
|
33
32
|
kafka_mirrormaker_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs']] = None,
|
|
@@ -38,7 +37,7 @@ class ServiceIntegrationArgs:
|
|
|
38
37
|
source_service_name: Optional[pulumi.Input[str]] = None):
|
|
39
38
|
"""
|
|
40
39
|
The set of arguments for constructing a ServiceIntegration resource.
|
|
41
|
-
:param pulumi.Input[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`, `
|
|
40
|
+
:param pulumi.Input[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`
|
|
42
41
|
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
43
42
|
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
44
43
|
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
@@ -49,7 +48,6 @@ class ServiceIntegrationArgs:
|
|
|
49
48
|
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
50
49
|
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
51
50
|
:param pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
52
|
-
:param pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs'] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings
|
|
53
51
|
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
54
52
|
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
55
53
|
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -79,8 +77,6 @@ class ServiceIntegrationArgs:
|
|
|
79
77
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
80
78
|
if external_opensearch_logs_user_config is not None:
|
|
81
79
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
82
|
-
if flink_external_postgresql_user_config is not None:
|
|
83
|
-
pulumi.set(__self__, "flink_external_postgresql_user_config", flink_external_postgresql_user_config)
|
|
84
80
|
if kafka_connect_user_config is not None:
|
|
85
81
|
pulumi.set(__self__, "kafka_connect_user_config", kafka_connect_user_config)
|
|
86
82
|
if kafka_logs_user_config is not None:
|
|
@@ -102,7 +98,7 @@ class ServiceIntegrationArgs:
|
|
|
102
98
|
@pulumi.getter(name="integrationType")
|
|
103
99
|
def integration_type(self) -> pulumi.Input[str]:
|
|
104
100
|
"""
|
|
105
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `
|
|
101
|
+
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`
|
|
106
102
|
"""
|
|
107
103
|
return pulumi.get(self, "integration_type")
|
|
108
104
|
|
|
@@ -230,18 +226,6 @@ class ServiceIntegrationArgs:
|
|
|
230
226
|
def external_opensearch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]):
|
|
231
227
|
pulumi.set(self, "external_opensearch_logs_user_config", value)
|
|
232
228
|
|
|
233
|
-
@property
|
|
234
|
-
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
235
|
-
def flink_external_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]:
|
|
236
|
-
"""
|
|
237
|
-
FlinkExternalPostgresql user configurable settings
|
|
238
|
-
"""
|
|
239
|
-
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
240
|
-
|
|
241
|
-
@flink_external_postgresql_user_config.setter
|
|
242
|
-
def flink_external_postgresql_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]):
|
|
243
|
-
pulumi.set(self, "flink_external_postgresql_user_config", value)
|
|
244
|
-
|
|
245
229
|
@property
|
|
246
230
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
247
231
|
def kafka_connect_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']]:
|
|
@@ -351,7 +335,6 @@ class _ServiceIntegrationState:
|
|
|
351
335
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
352
336
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
353
337
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']] = None,
|
|
354
|
-
flink_external_postgresql_user_config: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']] = None,
|
|
355
338
|
integration_id: Optional[pulumi.Input[str]] = None,
|
|
356
339
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
357
340
|
kafka_connect_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']] = None,
|
|
@@ -374,9 +357,8 @@ class _ServiceIntegrationState:
|
|
|
374
357
|
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
375
358
|
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
376
359
|
:param pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
377
|
-
:param pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs'] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings
|
|
378
360
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
379
|
-
:param pulumi.Input[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`, `
|
|
361
|
+
:param pulumi.Input[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`
|
|
380
362
|
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
381
363
|
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
382
364
|
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -405,8 +387,6 @@ class _ServiceIntegrationState:
|
|
|
405
387
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
406
388
|
if external_opensearch_logs_user_config is not None:
|
|
407
389
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
408
|
-
if flink_external_postgresql_user_config is not None:
|
|
409
|
-
pulumi.set(__self__, "flink_external_postgresql_user_config", flink_external_postgresql_user_config)
|
|
410
390
|
if integration_id is not None:
|
|
411
391
|
pulumi.set(__self__, "integration_id", integration_id)
|
|
412
392
|
if integration_type is not None:
|
|
@@ -538,18 +518,6 @@ class _ServiceIntegrationState:
|
|
|
538
518
|
def external_opensearch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]):
|
|
539
519
|
pulumi.set(self, "external_opensearch_logs_user_config", value)
|
|
540
520
|
|
|
541
|
-
@property
|
|
542
|
-
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
543
|
-
def flink_external_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]:
|
|
544
|
-
"""
|
|
545
|
-
FlinkExternalPostgresql user configurable settings
|
|
546
|
-
"""
|
|
547
|
-
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
548
|
-
|
|
549
|
-
@flink_external_postgresql_user_config.setter
|
|
550
|
-
def flink_external_postgresql_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]):
|
|
551
|
-
pulumi.set(self, "flink_external_postgresql_user_config", value)
|
|
552
|
-
|
|
553
521
|
@property
|
|
554
522
|
@pulumi.getter(name="integrationId")
|
|
555
523
|
def integration_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -566,7 +534,7 @@ class _ServiceIntegrationState:
|
|
|
566
534
|
@pulumi.getter(name="integrationType")
|
|
567
535
|
def integration_type(self) -> Optional[pulumi.Input[str]]:
|
|
568
536
|
"""
|
|
569
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `
|
|
537
|
+
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`
|
|
570
538
|
"""
|
|
571
539
|
return pulumi.get(self, "integration_type")
|
|
572
540
|
|
|
@@ -697,7 +665,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
697
665
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
698
666
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
699
667
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
700
|
-
flink_external_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']]] = None,
|
|
701
668
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
702
669
|
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
703
670
|
kafka_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']]] = None,
|
|
@@ -749,8 +716,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
749
716
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
750
717
|
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
751
718
|
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
752
|
-
:param pulumi.Input[
|
|
753
|
-
:param pulumi.Input[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`, `disaster_recovery`, `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`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
|
|
719
|
+
:param pulumi.Input[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`
|
|
754
720
|
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
755
721
|
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
756
722
|
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -820,7 +786,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
820
786
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
821
787
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
822
788
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
823
|
-
flink_external_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']]] = None,
|
|
824
789
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
825
790
|
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
826
791
|
kafka_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']]] = None,
|
|
@@ -849,7 +814,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
849
814
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
850
815
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
851
816
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
852
|
-
__props__.__dict__["flink_external_postgresql_user_config"] = flink_external_postgresql_user_config
|
|
853
817
|
if integration_type is None and not opts.urn:
|
|
854
818
|
raise TypeError("Missing required property 'integration_type'")
|
|
855
819
|
__props__.__dict__["integration_type"] = integration_type
|
|
@@ -884,7 +848,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
884
848
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
885
849
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
886
850
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
887
|
-
flink_external_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']]] = None,
|
|
888
851
|
integration_id: Optional[pulumi.Input[str]] = None,
|
|
889
852
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
890
853
|
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
@@ -912,9 +875,8 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
912
875
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
913
876
|
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
914
877
|
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
915
|
-
:param pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings
|
|
916
878
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
917
|
-
:param pulumi.Input[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`, `
|
|
879
|
+
:param pulumi.Input[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`
|
|
918
880
|
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
919
881
|
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
920
882
|
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -938,7 +900,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
938
900
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
939
901
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
940
902
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
941
|
-
__props__.__dict__["flink_external_postgresql_user_config"] = flink_external_postgresql_user_config
|
|
942
903
|
__props__.__dict__["integration_id"] = integration_id
|
|
943
904
|
__props__.__dict__["integration_type"] = integration_type
|
|
944
905
|
__props__.__dict__["kafka_connect_user_config"] = kafka_connect_user_config
|
|
@@ -1024,14 +985,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1024
985
|
"""
|
|
1025
986
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
1026
987
|
|
|
1027
|
-
@property
|
|
1028
|
-
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
1029
|
-
def flink_external_postgresql_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationFlinkExternalPostgresqlUserConfig']]:
|
|
1030
|
-
"""
|
|
1031
|
-
FlinkExternalPostgresql user configurable settings
|
|
1032
|
-
"""
|
|
1033
|
-
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
1034
|
-
|
|
1035
988
|
@property
|
|
1036
989
|
@pulumi.getter(name="integrationId")
|
|
1037
990
|
def integration_id(self) -> pulumi.Output[str]:
|
|
@@ -1044,7 +997,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1044
997
|
@pulumi.getter(name="integrationType")
|
|
1045
998
|
def integration_type(self) -> pulumi.Output[str]:
|
|
1046
999
|
"""
|
|
1047
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `
|
|
1000
|
+
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`
|
|
1048
1001
|
"""
|
|
1049
1002
|
return pulumi.get(self, "integration_type")
|
|
1050
1003
|
|
pulumi_aiven/static_ip.py
CHANGED
|
@@ -162,7 +162,7 @@ class StaticIp(pulumi.CustomResource):
|
|
|
162
162
|
project: Optional[pulumi.Input[str]] = None,
|
|
163
163
|
__props__=None):
|
|
164
164
|
"""
|
|
165
|
-
The StaticIp resource allows the creation and deletion of static ips. Please
|
|
165
|
+
The StaticIp resource allows the creation and deletion of static ips. Please not that once a static ip is in the 'assigned' state it is bound to the node it is assigned to and cannot be deleted or disassociated until the node is recycled. Plans that would delete static ips that are in the assigned state will be blocked.
|
|
166
166
|
|
|
167
167
|
:param str resource_name: The name of the resource.
|
|
168
168
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -176,7 +176,7 @@ class StaticIp(pulumi.CustomResource):
|
|
|
176
176
|
args: StaticIpArgs,
|
|
177
177
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
178
178
|
"""
|
|
179
|
-
The StaticIp resource allows the creation and deletion of static ips. Please
|
|
179
|
+
The StaticIp resource allows the creation and deletion of static ips. Please not that once a static ip is in the 'assigned' state it is bound to the node it is assigned to and cannot be deleted or disassociated until the node is recycled. Plans that would delete static ips that are in the assigned state will be blocked.
|
|
180
180
|
|
|
181
181
|
:param str resource_name: The name of the resource.
|
|
182
182
|
:param StaticIpArgs args: The arguments to use to populate this resource's properties.
|
pulumi_aiven/thanos.py
CHANGED
|
@@ -357,9 +357,6 @@ class _ThanosState:
|
|
|
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 _ThanosState:
|
|
|
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
|
|
@@ -767,6 +763,9 @@ class Thanos(pulumi.CustomResource):
|
|
|
767
763
|
"""
|
|
768
764
|
Creates and manages an [Aiven for Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) service.
|
|
769
765
|
|
|
766
|
+
**This resource is in the beta stage and may change without notice.** Set
|
|
767
|
+
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
768
|
+
|
|
770
769
|
:param str resource_name: The name of the resource.
|
|
771
770
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
772
771
|
: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.
|
|
@@ -795,6 +794,9 @@ class Thanos(pulumi.CustomResource):
|
|
|
795
794
|
"""
|
|
796
795
|
Creates and manages an [Aiven for Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) service.
|
|
797
796
|
|
|
797
|
+
**This resource is in the beta stage and may change without notice.** Set
|
|
798
|
+
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
799
|
+
|
|
798
800
|
:param str resource_name: The name of the resource.
|
|
799
801
|
:param ThanosArgs args: The arguments to use to populate this resource's properties.
|
|
800
802
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -1038,7 +1040,6 @@ class Thanos(pulumi.CustomResource):
|
|
|
1038
1040
|
|
|
1039
1041
|
@property
|
|
1040
1042
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1041
|
-
@_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.""")
|
|
1042
1043
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1043
1044
|
"""
|
|
1044
1045
|
Disk space that service is currently using
|
|
@@ -1079,7 +1080,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
1079
1080
|
|
|
1080
1081
|
@property
|
|
1081
1082
|
@pulumi.getter(name="projectVpcId")
|
|
1082
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1083
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1083
1084
|
"""
|
|
1084
1085
|
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.
|
|
1085
1086
|
"""
|
|
@@ -1095,7 +1096,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
1095
1096
|
|
|
1096
1097
|
@property
|
|
1097
1098
|
@pulumi.getter(name="serviceIntegrations")
|
|
1098
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.ThanosServiceIntegration']]:
|
|
1099
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.ThanosServiceIntegration']]]:
|
|
1099
1100
|
"""
|
|
1100
1101
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1101
1102
|
"""
|
pulumi_aiven/valkey.py
CHANGED
|
@@ -357,9 +357,6 @@ class _ValkeyState:
|
|
|
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 _ValkeyState:
|
|
|
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 Valkey(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
|
|
@@ -1123,7 +1118,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
1123
1118
|
|
|
1124
1119
|
@property
|
|
1125
1120
|
@pulumi.getter(name="projectVpcId")
|
|
1126
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1121
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1127
1122
|
"""
|
|
1128
1123
|
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.
|
|
1129
1124
|
"""
|
|
@@ -1139,7 +1134,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
1139
1134
|
|
|
1140
1135
|
@property
|
|
1141
1136
|
@pulumi.getter(name="serviceIntegrations")
|
|
1142
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.ValkeyServiceIntegration']]:
|
|
1137
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.ValkeyServiceIntegration']]]:
|
|
1143
1138
|
"""
|
|
1144
1139
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1145
1140
|
"""
|