pulumi-aiven 6.26.0a1728105262__py3-none-any.whl → 6.26.0a1728566627__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 +1 -0
- pulumi_aiven/_inputs.py +202 -42
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +7 -2
- pulumi_aiven/clickhouse.py +6 -1
- pulumi_aiven/dragonfly.py +7 -2
- pulumi_aiven/flink.py +7 -2
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_external_identity.py +146 -0
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_integration.py +17 -4
- pulumi_aiven/get_thanos.py +0 -6
- pulumi_aiven/grafana.py +7 -2
- pulumi_aiven/influx_db.py +7 -2
- pulumi_aiven/kafka.py +7 -2
- pulumi_aiven/kafka_connect.py +7 -2
- pulumi_aiven/kafka_mirror_maker.py +7 -2
- pulumi_aiven/m3_aggregator.py +7 -2
- pulumi_aiven/m3_db.py +7 -2
- pulumi_aiven/my_sql.py +7 -2
- pulumi_aiven/open_search.py +7 -2
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/outputs.py +334 -62
- pulumi_aiven/pg.py +7 -2
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -2
- pulumi_aiven/service_integration.py +54 -7
- pulumi_aiven/static_ip.py +2 -2
- pulumi_aiven/thanos.py +7 -8
- pulumi_aiven/valkey.py +7 -2
- {pulumi_aiven-6.26.0a1728105262.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.26.0a1728105262.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/RECORD +35 -34
- {pulumi_aiven-6.26.0a1728105262.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.26.0a1728105262.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/top_level.txt +0 -0
pulumi_aiven/pg.py
CHANGED
|
@@ -358,6 +358,9 @@ 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.""")
|
|
361
364
|
if disk_space_used is not None:
|
|
362
365
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
363
366
|
if maintenance_window_dow is not None:
|
|
@@ -488,6 +491,7 @@ class _PgState:
|
|
|
488
491
|
|
|
489
492
|
@property
|
|
490
493
|
@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.""")
|
|
491
495
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
492
496
|
"""
|
|
493
497
|
Disk space that service is currently using
|
|
@@ -1045,6 +1049,7 @@ class Pg(pulumi.CustomResource):
|
|
|
1045
1049
|
|
|
1046
1050
|
@property
|
|
1047
1051
|
@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.""")
|
|
1048
1053
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1049
1054
|
"""
|
|
1050
1055
|
Disk space that service is currently using
|
|
@@ -1101,7 +1106,7 @@ class Pg(pulumi.CustomResource):
|
|
|
1101
1106
|
|
|
1102
1107
|
@property
|
|
1103
1108
|
@pulumi.getter(name="projectVpcId")
|
|
1104
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1109
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1105
1110
|
"""
|
|
1106
1111
|
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.
|
|
1107
1112
|
"""
|
|
@@ -1117,7 +1122,7 @@ class Pg(pulumi.CustomResource):
|
|
|
1117
1122
|
|
|
1118
1123
|
@property
|
|
1119
1124
|
@pulumi.getter(name="serviceIntegrations")
|
|
1120
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1125
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.PgServiceIntegration']]:
|
|
1121
1126
|
"""
|
|
1122
1127
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1123
1128
|
"""
|
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` and `read_only`.
|
|
23
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` 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` and `read_only`.
|
|
46
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` 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` and `read_only`.
|
|
78
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` 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` and `read_only`.
|
|
118
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` 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` and `read_only`.
|
|
172
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` 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` and `read_only`.
|
|
262
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` 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` and `read_only`.
|
|
295
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` 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,6 +357,9 @@ 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.""")
|
|
360
363
|
if disk_space_used is not None:
|
|
361
364
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
362
365
|
if maintenance_window_dow is not None:
|
|
@@ -487,6 +490,7 @@ class _RedisState:
|
|
|
487
490
|
|
|
488
491
|
@property
|
|
489
492
|
@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.""")
|
|
490
494
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
491
495
|
"""
|
|
492
496
|
Disk space that service is currently using
|
|
@@ -1088,6 +1092,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1088
1092
|
|
|
1089
1093
|
@property
|
|
1090
1094
|
@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.""")
|
|
1091
1096
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1092
1097
|
"""
|
|
1093
1098
|
Disk space that service is currently using
|
|
@@ -1128,7 +1133,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1128
1133
|
|
|
1129
1134
|
@property
|
|
1130
1135
|
@pulumi.getter(name="projectVpcId")
|
|
1131
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1136
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1132
1137
|
"""
|
|
1133
1138
|
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.
|
|
1134
1139
|
"""
|
|
@@ -1160,7 +1165,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1160
1165
|
|
|
1161
1166
|
@property
|
|
1162
1167
|
@pulumi.getter(name="serviceIntegrations")
|
|
1163
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1168
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.RedisServiceIntegration']]:
|
|
1164
1169
|
"""
|
|
1165
1170
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1166
1171
|
"""
|
|
@@ -27,6 +27,7 @@ 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,
|
|
30
31
|
kafka_connect_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']] = None,
|
|
31
32
|
kafka_logs_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs']] = None,
|
|
32
33
|
kafka_mirrormaker_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs']] = None,
|
|
@@ -37,7 +38,7 @@ class ServiceIntegrationArgs:
|
|
|
37
38
|
source_service_name: Optional[pulumi.Input[str]] = None):
|
|
38
39
|
"""
|
|
39
40
|
The set of arguments for constructing a ServiceIntegration resource.
|
|
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`
|
|
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`, `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`
|
|
41
42
|
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
42
43
|
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
43
44
|
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
@@ -48,6 +49,7 @@ class ServiceIntegrationArgs:
|
|
|
48
49
|
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
49
50
|
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
50
51
|
: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
|
|
51
53
|
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
52
54
|
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
53
55
|
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -77,6 +79,8 @@ class ServiceIntegrationArgs:
|
|
|
77
79
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
78
80
|
if external_opensearch_logs_user_config is not None:
|
|
79
81
|
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)
|
|
80
84
|
if kafka_connect_user_config is not None:
|
|
81
85
|
pulumi.set(__self__, "kafka_connect_user_config", kafka_connect_user_config)
|
|
82
86
|
if kafka_logs_user_config is not None:
|
|
@@ -98,7 +102,7 @@ class ServiceIntegrationArgs:
|
|
|
98
102
|
@pulumi.getter(name="integrationType")
|
|
99
103
|
def integration_type(self) -> pulumi.Input[str]:
|
|
100
104
|
"""
|
|
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`
|
|
105
|
+
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`
|
|
102
106
|
"""
|
|
103
107
|
return pulumi.get(self, "integration_type")
|
|
104
108
|
|
|
@@ -226,6 +230,18 @@ class ServiceIntegrationArgs:
|
|
|
226
230
|
def external_opensearch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]):
|
|
227
231
|
pulumi.set(self, "external_opensearch_logs_user_config", value)
|
|
228
232
|
|
|
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
|
+
|
|
229
245
|
@property
|
|
230
246
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
231
247
|
def kafka_connect_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']]:
|
|
@@ -335,6 +351,7 @@ class _ServiceIntegrationState:
|
|
|
335
351
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
336
352
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
337
353
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']] = None,
|
|
354
|
+
flink_external_postgresql_user_config: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']] = None,
|
|
338
355
|
integration_id: Optional[pulumi.Input[str]] = None,
|
|
339
356
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
340
357
|
kafka_connect_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']] = None,
|
|
@@ -357,8 +374,9 @@ class _ServiceIntegrationState:
|
|
|
357
374
|
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
358
375
|
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
359
376
|
: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
|
|
360
378
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
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`
|
|
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`, `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`
|
|
362
380
|
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
363
381
|
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
364
382
|
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -387,6 +405,8 @@ class _ServiceIntegrationState:
|
|
|
387
405
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
388
406
|
if external_opensearch_logs_user_config is not None:
|
|
389
407
|
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)
|
|
390
410
|
if integration_id is not None:
|
|
391
411
|
pulumi.set(__self__, "integration_id", integration_id)
|
|
392
412
|
if integration_type is not None:
|
|
@@ -518,6 +538,18 @@ class _ServiceIntegrationState:
|
|
|
518
538
|
def external_opensearch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]):
|
|
519
539
|
pulumi.set(self, "external_opensearch_logs_user_config", value)
|
|
520
540
|
|
|
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
|
+
|
|
521
553
|
@property
|
|
522
554
|
@pulumi.getter(name="integrationId")
|
|
523
555
|
def integration_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -534,7 +566,7 @@ class _ServiceIntegrationState:
|
|
|
534
566
|
@pulumi.getter(name="integrationType")
|
|
535
567
|
def integration_type(self) -> Optional[pulumi.Input[str]]:
|
|
536
568
|
"""
|
|
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`
|
|
569
|
+
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`
|
|
538
570
|
"""
|
|
539
571
|
return pulumi.get(self, "integration_type")
|
|
540
572
|
|
|
@@ -665,6 +697,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
665
697
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
666
698
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
667
699
|
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,
|
|
668
701
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
669
702
|
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
670
703
|
kafka_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']]] = None,
|
|
@@ -716,7 +749,8 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
716
749
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
717
750
|
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
718
751
|
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
719
|
-
:param pulumi.Input[
|
|
752
|
+
:param pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings
|
|
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`
|
|
720
754
|
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
721
755
|
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
722
756
|
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -786,6 +820,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
786
820
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
787
821
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
788
822
|
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,
|
|
789
824
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
790
825
|
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
791
826
|
kafka_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']]] = None,
|
|
@@ -814,6 +849,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
814
849
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
815
850
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
816
851
|
__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
|
|
817
853
|
if integration_type is None and not opts.urn:
|
|
818
854
|
raise TypeError("Missing required property 'integration_type'")
|
|
819
855
|
__props__.__dict__["integration_type"] = integration_type
|
|
@@ -848,6 +884,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
848
884
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
849
885
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
850
886
|
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,
|
|
851
888
|
integration_id: Optional[pulumi.Input[str]] = None,
|
|
852
889
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
853
890
|
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
@@ -875,8 +912,9 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
875
912
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
876
913
|
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
877
914
|
: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
|
|
878
916
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
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`
|
|
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`, `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`
|
|
880
918
|
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
881
919
|
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
882
920
|
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -900,6 +938,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
900
938
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
901
939
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
902
940
|
__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
|
|
903
942
|
__props__.__dict__["integration_id"] = integration_id
|
|
904
943
|
__props__.__dict__["integration_type"] = integration_type
|
|
905
944
|
__props__.__dict__["kafka_connect_user_config"] = kafka_connect_user_config
|
|
@@ -985,6 +1024,14 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
985
1024
|
"""
|
|
986
1025
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
987
1026
|
|
|
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
|
+
|
|
988
1035
|
@property
|
|
989
1036
|
@pulumi.getter(name="integrationId")
|
|
990
1037
|
def integration_id(self) -> pulumi.Output[str]:
|
|
@@ -997,7 +1044,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
997
1044
|
@pulumi.getter(name="integrationType")
|
|
998
1045
|
def integration_type(self) -> pulumi.Output[str]:
|
|
999
1046
|
"""
|
|
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`
|
|
1047
|
+
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`
|
|
1001
1048
|
"""
|
|
1002
1049
|
return pulumi.get(self, "integration_type")
|
|
1003
1050
|
|
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 note 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 note 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,6 +357,9 @@ 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.""")
|
|
360
363
|
if disk_space_used is not None:
|
|
361
364
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
362
365
|
if maintenance_window_dow is not None:
|
|
@@ -487,6 +490,7 @@ class _ThanosState:
|
|
|
487
490
|
|
|
488
491
|
@property
|
|
489
492
|
@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.""")
|
|
490
494
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
491
495
|
"""
|
|
492
496
|
Disk space that service is currently using
|
|
@@ -763,9 +767,6 @@ class Thanos(pulumi.CustomResource):
|
|
|
763
767
|
"""
|
|
764
768
|
Creates and manages an [Aiven for Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) service.
|
|
765
769
|
|
|
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
|
-
|
|
769
770
|
:param str resource_name: The name of the resource.
|
|
770
771
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
771
772
|
: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.
|
|
@@ -794,9 +795,6 @@ class Thanos(pulumi.CustomResource):
|
|
|
794
795
|
"""
|
|
795
796
|
Creates and manages an [Aiven for Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) service.
|
|
796
797
|
|
|
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
|
-
|
|
800
798
|
:param str resource_name: The name of the resource.
|
|
801
799
|
:param ThanosArgs args: The arguments to use to populate this resource's properties.
|
|
802
800
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -1040,6 +1038,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
1040
1038
|
|
|
1041
1039
|
@property
|
|
1042
1040
|
@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.""")
|
|
1043
1042
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1044
1043
|
"""
|
|
1045
1044
|
Disk space that service is currently using
|
|
@@ -1080,7 +1079,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
1080
1079
|
|
|
1081
1080
|
@property
|
|
1082
1081
|
@pulumi.getter(name="projectVpcId")
|
|
1083
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1082
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1084
1083
|
"""
|
|
1085
1084
|
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.
|
|
1086
1085
|
"""
|
|
@@ -1096,7 +1095,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
1096
1095
|
|
|
1097
1096
|
@property
|
|
1098
1097
|
@pulumi.getter(name="serviceIntegrations")
|
|
1099
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1098
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.ThanosServiceIntegration']]:
|
|
1100
1099
|
"""
|
|
1101
1100
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1102
1101
|
"""
|
pulumi_aiven/valkey.py
CHANGED
|
@@ -357,6 +357,9 @@ 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.""")
|
|
360
363
|
if disk_space_used is not None:
|
|
361
364
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
362
365
|
if maintenance_window_dow is not None:
|
|
@@ -487,6 +490,7 @@ class _ValkeyState:
|
|
|
487
490
|
|
|
488
491
|
@property
|
|
489
492
|
@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.""")
|
|
490
494
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
491
495
|
"""
|
|
492
496
|
Disk space that service is currently using
|
|
@@ -1078,6 +1082,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
1078
1082
|
|
|
1079
1083
|
@property
|
|
1080
1084
|
@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.""")
|
|
1081
1086
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1082
1087
|
"""
|
|
1083
1088
|
Disk space that service is currently using
|
|
@@ -1118,7 +1123,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
1118
1123
|
|
|
1119
1124
|
@property
|
|
1120
1125
|
@pulumi.getter(name="projectVpcId")
|
|
1121
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1126
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1122
1127
|
"""
|
|
1123
1128
|
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.
|
|
1124
1129
|
"""
|
|
@@ -1134,7 +1139,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
1134
1139
|
|
|
1135
1140
|
@property
|
|
1136
1141
|
@pulumi.getter(name="serviceIntegrations")
|
|
1137
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1142
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.ValkeyServiceIntegration']]:
|
|
1138
1143
|
"""
|
|
1139
1144
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1140
1145
|
"""
|