pulumi-aiven 6.16.0a1716504562__py3-none-any.whl → 6.16.0a1716589862__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +1096 -216
- pulumi_aiven/cassandra.py +48 -1
- pulumi_aiven/clickhouse.py +48 -1
- pulumi_aiven/dragonfly.py +48 -1
- pulumi_aiven/flink.py +2 -2
- pulumi_aiven/flink_application_deployment.py +56 -30
- pulumi_aiven/gcp_privatelink.py +52 -30
- pulumi_aiven/gcp_privatelink_connection_approval.py +54 -30
- pulumi_aiven/get_cassanda.py +14 -1
- pulumi_aiven/get_cassandra.py +14 -1
- pulumi_aiven/get_clickhouse.py +14 -1
- pulumi_aiven/get_dragonfly.py +14 -1
- pulumi_aiven/get_gcp_privatelink.py +45 -2
- pulumi_aiven/get_grafana.py +14 -1
- pulumi_aiven/get_m3_aggregator.py +14 -1
- pulumi_aiven/get_m3_db.py +14 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +14 -1
- pulumi_aiven/get_redis.py +14 -1
- pulumi_aiven/get_service_integration.py +3 -3
- pulumi_aiven/get_service_integration_endpoint.py +1 -1
- pulumi_aiven/grafana.py +48 -1
- pulumi_aiven/influx_db.py +21 -2
- pulumi_aiven/kafka.py +20 -1
- pulumi_aiven/m3_aggregator.py +48 -1
- pulumi_aiven/m3_db.py +48 -1
- pulumi_aiven/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +48 -1
- pulumi_aiven/open_search.py +21 -2
- pulumi_aiven/outputs.py +1758 -285
- pulumi_aiven/pg.py +2 -2
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +48 -1
- pulumi_aiven/service_integration.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +7 -7
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/RECORD +39 -39
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py
CHANGED
|
@@ -11,6 +11,7 @@ from . import _utilities
|
|
|
11
11
|
|
|
12
12
|
__all__ = [
|
|
13
13
|
'AccountAuthenticationSamlFieldMappingArgs',
|
|
14
|
+
'CassandraCassandraArgs',
|
|
14
15
|
'CassandraCassandraUserConfigArgs',
|
|
15
16
|
'CassandraCassandraUserConfigCassandraArgs',
|
|
16
17
|
'CassandraCassandraUserConfigIpFilterObjectArgs',
|
|
@@ -20,6 +21,7 @@ __all__ = [
|
|
|
20
21
|
'CassandraServiceIntegrationArgs',
|
|
21
22
|
'CassandraTagArgs',
|
|
22
23
|
'CassandraTechEmailArgs',
|
|
24
|
+
'ClickhouseClickhouseArgs',
|
|
23
25
|
'ClickhouseClickhouseUserConfigArgs',
|
|
24
26
|
'ClickhouseClickhouseUserConfigIpFilterObjectArgs',
|
|
25
27
|
'ClickhouseClickhouseUserConfigPrivateAccessArgs',
|
|
@@ -32,6 +34,7 @@ __all__ = [
|
|
|
32
34
|
'ClickhouseTagArgs',
|
|
33
35
|
'ClickhouseTechEmailArgs',
|
|
34
36
|
'DragonflyComponentArgs',
|
|
37
|
+
'DragonflyDragonflyArgs',
|
|
35
38
|
'DragonflyDragonflyUserConfigArgs',
|
|
36
39
|
'DragonflyDragonflyUserConfigIpFilterObjectArgs',
|
|
37
40
|
'DragonflyDragonflyUserConfigMigrationArgs',
|
|
@@ -52,6 +55,7 @@ __all__ = [
|
|
|
52
55
|
'FlinkTagArgs',
|
|
53
56
|
'FlinkTechEmailArgs',
|
|
54
57
|
'GrafanaComponentArgs',
|
|
58
|
+
'GrafanaGrafanaArgs',
|
|
55
59
|
'GrafanaGrafanaUserConfigArgs',
|
|
56
60
|
'GrafanaGrafanaUserConfigAuthAzureadArgs',
|
|
57
61
|
'GrafanaGrafanaUserConfigAuthGenericOauthArgs',
|
|
@@ -117,12 +121,14 @@ __all__ = [
|
|
|
117
121
|
'KafkaTopicConfigArgs',
|
|
118
122
|
'KafkaTopicTagArgs',
|
|
119
123
|
'M3AggregatorComponentArgs',
|
|
124
|
+
'M3AggregatorM3aggregatorArgs',
|
|
120
125
|
'M3AggregatorM3aggregatorUserConfigArgs',
|
|
121
126
|
'M3AggregatorM3aggregatorUserConfigIpFilterObjectArgs',
|
|
122
127
|
'M3AggregatorServiceIntegrationArgs',
|
|
123
128
|
'M3AggregatorTagArgs',
|
|
124
129
|
'M3AggregatorTechEmailArgs',
|
|
125
130
|
'M3DbComponentArgs',
|
|
131
|
+
'M3DbM3dbArgs',
|
|
126
132
|
'M3DbM3dbUserConfigArgs',
|
|
127
133
|
'M3DbM3dbUserConfigIpFilterObjectArgs',
|
|
128
134
|
'M3DbM3dbUserConfigLimitsArgs',
|
|
@@ -141,6 +147,8 @@ __all__ = [
|
|
|
141
147
|
'M3DbTagArgs',
|
|
142
148
|
'M3DbTechEmailArgs',
|
|
143
149
|
'MySqlComponentArgs',
|
|
150
|
+
'MySqlMysqlArgs',
|
|
151
|
+
'MySqlMysqlParamArgs',
|
|
144
152
|
'MySqlMysqlUserConfigArgs',
|
|
145
153
|
'MySqlMysqlUserConfigIpFilterObjectArgs',
|
|
146
154
|
'MySqlMysqlUserConfigMigrationArgs',
|
|
@@ -177,6 +185,7 @@ __all__ = [
|
|
|
177
185
|
'OrganizationUserGroupMemberTimeoutsArgs',
|
|
178
186
|
'PgComponentArgs',
|
|
179
187
|
'PgPgArgs',
|
|
188
|
+
'PgPgParamArgs',
|
|
180
189
|
'PgPgUserConfigArgs',
|
|
181
190
|
'PgPgUserConfigIpFilterObjectArgs',
|
|
182
191
|
'PgPgUserConfigMigrationArgs',
|
|
@@ -194,6 +203,7 @@ __all__ = [
|
|
|
194
203
|
'PgTechEmailArgs',
|
|
195
204
|
'ProjectTagArgs',
|
|
196
205
|
'RedisComponentArgs',
|
|
206
|
+
'RedisRedisArgs',
|
|
197
207
|
'RedisRedisUserConfigArgs',
|
|
198
208
|
'RedisRedisUserConfigIpFilterObjectArgs',
|
|
199
209
|
'RedisRedisUserConfigMigrationArgs',
|
|
@@ -334,6 +344,29 @@ class AccountAuthenticationSamlFieldMappingArgs:
|
|
|
334
344
|
pulumi.set(self, "real_name", value)
|
|
335
345
|
|
|
336
346
|
|
|
347
|
+
@pulumi.input_type
|
|
348
|
+
class CassandraCassandraArgs:
|
|
349
|
+
def __init__(__self__, *,
|
|
350
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
351
|
+
"""
|
|
352
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Cassandra server URIs.
|
|
353
|
+
"""
|
|
354
|
+
if uris is not None:
|
|
355
|
+
pulumi.set(__self__, "uris", uris)
|
|
356
|
+
|
|
357
|
+
@property
|
|
358
|
+
@pulumi.getter
|
|
359
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
360
|
+
"""
|
|
361
|
+
Cassandra server URIs.
|
|
362
|
+
"""
|
|
363
|
+
return pulumi.get(self, "uris")
|
|
364
|
+
|
|
365
|
+
@uris.setter
|
|
366
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
367
|
+
pulumi.set(self, "uris", value)
|
|
368
|
+
|
|
369
|
+
|
|
337
370
|
@pulumi.input_type
|
|
338
371
|
class CassandraCassandraUserConfigArgs:
|
|
339
372
|
def __init__(__self__, *,
|
|
@@ -358,7 +391,7 @@ class CassandraCassandraUserConfigArgs:
|
|
|
358
391
|
:param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
|
|
359
392
|
:param pulumi.Input[int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
|
|
360
393
|
:param pulumi.Input['CassandraCassandraUserConfigCassandraArgs'] cassandra: Cassandra configuration values
|
|
361
|
-
:param pulumi.Input[str] cassandra_version: Cassandra version.
|
|
394
|
+
:param pulumi.Input[str] cassandra_version: Enum: `3`, `4`, `4.1`. Cassandra version.
|
|
362
395
|
:param pulumi.Input[Sequence[pulumi.Input['CassandraCassandraUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
363
396
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
364
397
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -465,7 +498,7 @@ class CassandraCassandraUserConfigArgs:
|
|
|
465
498
|
@pulumi.getter(name="cassandraVersion")
|
|
466
499
|
def cassandra_version(self) -> Optional[pulumi.Input[str]]:
|
|
467
500
|
"""
|
|
468
|
-
Cassandra version.
|
|
501
|
+
Enum: `3`, `4`, `4.1`. Cassandra version.
|
|
469
502
|
"""
|
|
470
503
|
return pulumi.get(self, "cassandra_version")
|
|
471
504
|
|
|
@@ -979,6 +1012,29 @@ class CassandraTechEmailArgs:
|
|
|
979
1012
|
pulumi.set(self, "email", value)
|
|
980
1013
|
|
|
981
1014
|
|
|
1015
|
+
@pulumi.input_type
|
|
1016
|
+
class ClickhouseClickhouseArgs:
|
|
1017
|
+
def __init__(__self__, *,
|
|
1018
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
1019
|
+
"""
|
|
1020
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Clickhouse server URIs.
|
|
1021
|
+
"""
|
|
1022
|
+
if uris is not None:
|
|
1023
|
+
pulumi.set(__self__, "uris", uris)
|
|
1024
|
+
|
|
1025
|
+
@property
|
|
1026
|
+
@pulumi.getter
|
|
1027
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1028
|
+
"""
|
|
1029
|
+
Clickhouse server URIs.
|
|
1030
|
+
"""
|
|
1031
|
+
return pulumi.get(self, "uris")
|
|
1032
|
+
|
|
1033
|
+
@uris.setter
|
|
1034
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
1035
|
+
pulumi.set(self, "uris", value)
|
|
1036
|
+
|
|
1037
|
+
|
|
982
1038
|
@pulumi.input_type
|
|
983
1039
|
class ClickhouseClickhouseUserConfigArgs:
|
|
984
1040
|
def __init__(__self__, *,
|
|
@@ -1900,6 +1956,77 @@ class DragonflyComponentArgs:
|
|
|
1900
1956
|
pulumi.set(self, "usage", value)
|
|
1901
1957
|
|
|
1902
1958
|
|
|
1959
|
+
@pulumi.input_type
|
|
1960
|
+
class DragonflyDragonflyArgs:
|
|
1961
|
+
def __init__(__self__, *,
|
|
1962
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
1963
|
+
replica_uri: Optional[pulumi.Input[str]] = None,
|
|
1964
|
+
slave_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1965
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
1966
|
+
"""
|
|
1967
|
+
:param pulumi.Input[str] password: Dragonfly password.
|
|
1968
|
+
:param pulumi.Input[str] replica_uri: Dragonfly replica server URI.
|
|
1969
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] slave_uris: Dragonfly slave server URIs.
|
|
1970
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Dragonfly server URIs.
|
|
1971
|
+
"""
|
|
1972
|
+
if password is not None:
|
|
1973
|
+
pulumi.set(__self__, "password", password)
|
|
1974
|
+
if replica_uri is not None:
|
|
1975
|
+
pulumi.set(__self__, "replica_uri", replica_uri)
|
|
1976
|
+
if slave_uris is not None:
|
|
1977
|
+
pulumi.set(__self__, "slave_uris", slave_uris)
|
|
1978
|
+
if uris is not None:
|
|
1979
|
+
pulumi.set(__self__, "uris", uris)
|
|
1980
|
+
|
|
1981
|
+
@property
|
|
1982
|
+
@pulumi.getter
|
|
1983
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
1984
|
+
"""
|
|
1985
|
+
Dragonfly password.
|
|
1986
|
+
"""
|
|
1987
|
+
return pulumi.get(self, "password")
|
|
1988
|
+
|
|
1989
|
+
@password.setter
|
|
1990
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
1991
|
+
pulumi.set(self, "password", value)
|
|
1992
|
+
|
|
1993
|
+
@property
|
|
1994
|
+
@pulumi.getter(name="replicaUri")
|
|
1995
|
+
def replica_uri(self) -> Optional[pulumi.Input[str]]:
|
|
1996
|
+
"""
|
|
1997
|
+
Dragonfly replica server URI.
|
|
1998
|
+
"""
|
|
1999
|
+
return pulumi.get(self, "replica_uri")
|
|
2000
|
+
|
|
2001
|
+
@replica_uri.setter
|
|
2002
|
+
def replica_uri(self, value: Optional[pulumi.Input[str]]):
|
|
2003
|
+
pulumi.set(self, "replica_uri", value)
|
|
2004
|
+
|
|
2005
|
+
@property
|
|
2006
|
+
@pulumi.getter(name="slaveUris")
|
|
2007
|
+
def slave_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2008
|
+
"""
|
|
2009
|
+
Dragonfly slave server URIs.
|
|
2010
|
+
"""
|
|
2011
|
+
return pulumi.get(self, "slave_uris")
|
|
2012
|
+
|
|
2013
|
+
@slave_uris.setter
|
|
2014
|
+
def slave_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
2015
|
+
pulumi.set(self, "slave_uris", value)
|
|
2016
|
+
|
|
2017
|
+
@property
|
|
2018
|
+
@pulumi.getter
|
|
2019
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2020
|
+
"""
|
|
2021
|
+
Dragonfly server URIs.
|
|
2022
|
+
"""
|
|
2023
|
+
return pulumi.get(self, "uris")
|
|
2024
|
+
|
|
2025
|
+
@uris.setter
|
|
2026
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
2027
|
+
pulumi.set(self, "uris", value)
|
|
2028
|
+
|
|
2029
|
+
|
|
1903
2030
|
@pulumi.input_type
|
|
1904
2031
|
class DragonflyDragonflyUserConfigArgs:
|
|
1905
2032
|
def __init__(__self__, *,
|
|
@@ -1920,7 +2047,7 @@ class DragonflyDragonflyUserConfigArgs:
|
|
|
1920
2047
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
1921
2048
|
"""
|
|
1922
2049
|
:param pulumi.Input[bool] cache_mode: Evict entries when getting close to maxmemory limit. The default value is `false`.
|
|
1923
|
-
:param pulumi.Input[str] dragonfly_persistence: When persistence is 'rdb', Dragonfly does RDB dumps each 10 minutes. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
|
|
2050
|
+
:param pulumi.Input[str] dragonfly_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps each 10 minutes. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
|
|
1924
2051
|
:param pulumi.Input[bool] dragonfly_ssl: Require SSL to access Dragonfly. The default value is `true`.
|
|
1925
2052
|
:param pulumi.Input[Sequence[pulumi.Input['DragonflyDragonflyUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
1926
2053
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -1985,7 +2112,7 @@ class DragonflyDragonflyUserConfigArgs:
|
|
|
1985
2112
|
@pulumi.getter(name="dragonflyPersistence")
|
|
1986
2113
|
def dragonfly_persistence(self) -> Optional[pulumi.Input[str]]:
|
|
1987
2114
|
"""
|
|
1988
|
-
When persistence is 'rdb', Dragonfly does RDB dumps each 10 minutes. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
|
|
2115
|
+
Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps each 10 minutes. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
|
|
1989
2116
|
"""
|
|
1990
2117
|
return pulumi.get(self, "dragonfly_persistence")
|
|
1991
2118
|
|
|
@@ -2207,7 +2334,7 @@ class DragonflyDragonflyUserConfigMigrationArgs:
|
|
|
2207
2334
|
:param pulumi.Input[int] port: Port number of the server where to migrate data from.
|
|
2208
2335
|
:param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
|
|
2209
2336
|
:param pulumi.Input[str] ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
|
|
2210
|
-
:param pulumi.Input[str] method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
2337
|
+
:param pulumi.Input[str] method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
2211
2338
|
:param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
|
|
2212
2339
|
:param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
|
|
2213
2340
|
:param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
|
|
@@ -2279,7 +2406,7 @@ class DragonflyDragonflyUserConfigMigrationArgs:
|
|
|
2279
2406
|
@pulumi.getter
|
|
2280
2407
|
def method(self) -> Optional[pulumi.Input[str]]:
|
|
2281
2408
|
"""
|
|
2282
|
-
The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
2409
|
+
Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
2283
2410
|
"""
|
|
2284
2411
|
return pulumi.get(self, "method")
|
|
2285
2412
|
|
|
@@ -2785,7 +2912,7 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2785
2912
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
2786
2913
|
"""
|
|
2787
2914
|
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
2788
|
-
:param pulumi.Input[str] flink_version: Flink major version.
|
|
2915
|
+
:param pulumi.Input[str] flink_version: Enum: `1.16`. Flink major version.
|
|
2789
2916
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkFlinkUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
2790
2917
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
2791
2918
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -2838,7 +2965,7 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2838
2965
|
@pulumi.getter(name="flinkVersion")
|
|
2839
2966
|
def flink_version(self) -> Optional[pulumi.Input[str]]:
|
|
2840
2967
|
"""
|
|
2841
|
-
Flink major version.
|
|
2968
|
+
Enum: `1.16`. Flink major version.
|
|
2842
2969
|
"""
|
|
2843
2970
|
return pulumi.get(self, "flink_version")
|
|
2844
2971
|
|
|
@@ -3242,6 +3369,29 @@ class GrafanaComponentArgs:
|
|
|
3242
3369
|
pulumi.set(self, "usage", value)
|
|
3243
3370
|
|
|
3244
3371
|
|
|
3372
|
+
@pulumi.input_type
|
|
3373
|
+
class GrafanaGrafanaArgs:
|
|
3374
|
+
def __init__(__self__, *,
|
|
3375
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
3376
|
+
"""
|
|
3377
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Grafana server URIs.
|
|
3378
|
+
"""
|
|
3379
|
+
if uris is not None:
|
|
3380
|
+
pulumi.set(__self__, "uris", uris)
|
|
3381
|
+
|
|
3382
|
+
@property
|
|
3383
|
+
@pulumi.getter
|
|
3384
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3385
|
+
"""
|
|
3386
|
+
Grafana server URIs.
|
|
3387
|
+
"""
|
|
3388
|
+
return pulumi.get(self, "uris")
|
|
3389
|
+
|
|
3390
|
+
@uris.setter
|
|
3391
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
3392
|
+
pulumi.set(self, "uris", value)
|
|
3393
|
+
|
|
3394
|
+
|
|
3245
3395
|
@pulumi.input_type
|
|
3246
3396
|
class GrafanaGrafanaUserConfigArgs:
|
|
3247
3397
|
def __init__(__self__, *,
|
|
@@ -3290,9 +3440,9 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3290
3440
|
"""
|
|
3291
3441
|
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
3292
3442
|
:param pulumi.Input[bool] alerting_enabled: Enable or disable Grafana legacy alerting functionality. This should not be enabled with unified*alerting*enabled.
|
|
3293
|
-
:param pulumi.Input[str] alerting_error_or_timeout: Default error or timeout setting for new alerting rules.
|
|
3443
|
+
:param pulumi.Input[str] alerting_error_or_timeout: Enum: `alerting`, `keep_state`. Default error or timeout setting for new alerting rules.
|
|
3294
3444
|
:param pulumi.Input[int] alerting_max_annotations_to_keep: Max number of alert annotations that Grafana stores. 0 (default) keeps all alert annotations.
|
|
3295
|
-
:param pulumi.Input[str] alerting_nodata_or_nullvalues: Default value for 'no data or null values' for new alerting rules.
|
|
3445
|
+
:param pulumi.Input[str] alerting_nodata_or_nullvalues: Enum: `alerting`, `no_data`, `keep_state`, `ok`. Default value for 'no data or null values' for new alerting rules.
|
|
3296
3446
|
:param pulumi.Input[bool] allow_embedding: Allow embedding Grafana dashboards with iframe/frame/object/embed tags. Disabled by default to limit impact of clickjacking.
|
|
3297
3447
|
:param pulumi.Input['GrafanaGrafanaUserConfigAuthAzureadArgs'] auth_azuread: Azure AD OAuth integration
|
|
3298
3448
|
:param pulumi.Input[bool] auth_basic_enabled: Enable or disable basic authentication form, used by Grafana built-in login.
|
|
@@ -3300,7 +3450,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3300
3450
|
:param pulumi.Input['GrafanaGrafanaUserConfigAuthGithubArgs'] auth_github: Github Auth integration
|
|
3301
3451
|
:param pulumi.Input['GrafanaGrafanaUserConfigAuthGitlabArgs'] auth_gitlab: GitLab Auth integration
|
|
3302
3452
|
:param pulumi.Input['GrafanaGrafanaUserConfigAuthGoogleArgs'] auth_google: Google Auth integration
|
|
3303
|
-
:param pulumi.Input[str] cookie_samesite: Cookie SameSite attribute: 'strict' prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. 'lax' is the default value.
|
|
3453
|
+
:param pulumi.Input[str] cookie_samesite: Enum: `lax`, `strict`, `none`. Cookie SameSite attribute: 'strict' prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. 'lax' is the default value.
|
|
3304
3454
|
:param pulumi.Input[str] custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name.
|
|
3305
3455
|
:param pulumi.Input[bool] dashboard_previews_enabled: This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
|
|
3306
3456
|
:param pulumi.Input[str] dashboards_min_refresh_interval: Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h.
|
|
@@ -3328,7 +3478,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3328
3478
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
3329
3479
|
:param pulumi.Input[bool] unified_alerting_enabled: Enable or disable Grafana unified alerting functionality. By default this is enabled and any legacy alerts will be migrated on upgrade to Grafana 9+. To stay on legacy alerting, set unified*alerting*enabled to false and alerting_enabled to true. See https://grafana.com/docs/grafana/latest/alerting/set-up/migrating-alerts/ for more details.
|
|
3330
3480
|
:param pulumi.Input[bool] user_auto_assign_org: Auto-assign new users on signup to main organization. Defaults to false.
|
|
3331
|
-
:param pulumi.Input[str] user_auto_assign_org_role: Set role for new signups. Defaults to Viewer.
|
|
3481
|
+
:param pulumi.Input[str] user_auto_assign_org_role: Enum: `Viewer`, `Admin`, `Editor`. Set role for new signups. Defaults to Viewer.
|
|
3332
3482
|
:param pulumi.Input[bool] viewers_can_edit: Users with view-only permission can edit but not save dashboards.
|
|
3333
3483
|
"""
|
|
3334
3484
|
if additional_backup_regions is not None:
|
|
@@ -3447,7 +3597,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3447
3597
|
@pulumi.getter(name="alertingErrorOrTimeout")
|
|
3448
3598
|
def alerting_error_or_timeout(self) -> Optional[pulumi.Input[str]]:
|
|
3449
3599
|
"""
|
|
3450
|
-
Default error or timeout setting for new alerting rules.
|
|
3600
|
+
Enum: `alerting`, `keep_state`. Default error or timeout setting for new alerting rules.
|
|
3451
3601
|
"""
|
|
3452
3602
|
return pulumi.get(self, "alerting_error_or_timeout")
|
|
3453
3603
|
|
|
@@ -3471,7 +3621,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3471
3621
|
@pulumi.getter(name="alertingNodataOrNullvalues")
|
|
3472
3622
|
def alerting_nodata_or_nullvalues(self) -> Optional[pulumi.Input[str]]:
|
|
3473
3623
|
"""
|
|
3474
|
-
Default value for 'no data or null values' for new alerting rules.
|
|
3624
|
+
Enum: `alerting`, `no_data`, `keep_state`, `ok`. Default value for 'no data or null values' for new alerting rules.
|
|
3475
3625
|
"""
|
|
3476
3626
|
return pulumi.get(self, "alerting_nodata_or_nullvalues")
|
|
3477
3627
|
|
|
@@ -3567,7 +3717,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3567
3717
|
@pulumi.getter(name="cookieSamesite")
|
|
3568
3718
|
def cookie_samesite(self) -> Optional[pulumi.Input[str]]:
|
|
3569
3719
|
"""
|
|
3570
|
-
Cookie SameSite attribute: 'strict' prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. 'lax' is the default value.
|
|
3720
|
+
Enum: `lax`, `strict`, `none`. Cookie SameSite attribute: 'strict' prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. 'lax' is the default value.
|
|
3571
3721
|
"""
|
|
3572
3722
|
return pulumi.get(self, "cookie_samesite")
|
|
3573
3723
|
|
|
@@ -3906,7 +4056,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3906
4056
|
@pulumi.getter(name="userAutoAssignOrgRole")
|
|
3907
4057
|
def user_auto_assign_org_role(self) -> Optional[pulumi.Input[str]]:
|
|
3908
4058
|
"""
|
|
3909
|
-
Set role for new signups. Defaults to Viewer.
|
|
4059
|
+
Enum: `Viewer`, `Admin`, `Editor`. Set role for new signups. Defaults to Viewer.
|
|
3910
4060
|
"""
|
|
3911
4061
|
return pulumi.get(self, "user_auto_assign_org_role")
|
|
3912
4062
|
|
|
@@ -4666,7 +4816,7 @@ class GrafanaGrafanaUserConfigExternalImageStorageArgs:
|
|
|
4666
4816
|
"""
|
|
4667
4817
|
:param pulumi.Input[str] access_key: S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions.
|
|
4668
4818
|
:param pulumi.Input[str] bucket_url: Bucket URL for S3.
|
|
4669
|
-
:param pulumi.Input[str] provider: Provider type.
|
|
4819
|
+
:param pulumi.Input[str] provider: Enum: `s3`. Provider type.
|
|
4670
4820
|
:param pulumi.Input[str] secret_key: S3 secret key.
|
|
4671
4821
|
"""
|
|
4672
4822
|
pulumi.set(__self__, "access_key", access_key)
|
|
@@ -4702,7 +4852,7 @@ class GrafanaGrafanaUserConfigExternalImageStorageArgs:
|
|
|
4702
4852
|
@pulumi.getter
|
|
4703
4853
|
def provider(self) -> pulumi.Input[str]:
|
|
4704
4854
|
"""
|
|
4705
|
-
Provider type.
|
|
4855
|
+
Enum: `s3`. Provider type.
|
|
4706
4856
|
"""
|
|
4707
4857
|
return pulumi.get(self, "provider")
|
|
4708
4858
|
|
|
@@ -4848,7 +4998,7 @@ class GrafanaGrafanaUserConfigSmtpServerArgs:
|
|
|
4848
4998
|
:param pulumi.Input[str] from_name: Name used in outgoing emails, defaults to Grafana.
|
|
4849
4999
|
:param pulumi.Input[str] password: Password for SMTP authentication.
|
|
4850
5000
|
:param pulumi.Input[bool] skip_verify: Skip verifying server certificate. Defaults to false.
|
|
4851
|
-
:param pulumi.Input[str] starttls_policy: Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
|
|
5001
|
+
:param pulumi.Input[str] starttls_policy: Enum: `OpportunisticStartTLS`, `MandatoryStartTLS`, `NoStartTLS`. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
|
|
4852
5002
|
:param pulumi.Input[str] username: Username for SMTP authentication.
|
|
4853
5003
|
"""
|
|
4854
5004
|
pulumi.set(__self__, "from_address", from_address)
|
|
@@ -4941,7 +5091,7 @@ class GrafanaGrafanaUserConfigSmtpServerArgs:
|
|
|
4941
5091
|
@pulumi.getter(name="starttlsPolicy")
|
|
4942
5092
|
def starttls_policy(self) -> Optional[pulumi.Input[str]]:
|
|
4943
5093
|
"""
|
|
4944
|
-
Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
|
|
5094
|
+
Enum: `OpportunisticStartTLS`, `MandatoryStartTLS`, `NoStartTLS`. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
|
|
4945
5095
|
"""
|
|
4946
5096
|
return pulumi.get(self, "starttls_policy")
|
|
4947
5097
|
|
|
@@ -5196,12 +5346,24 @@ class InfluxDbComponentArgs:
|
|
|
5196
5346
|
@pulumi.input_type
|
|
5197
5347
|
class InfluxDbInfluxdbArgs:
|
|
5198
5348
|
def __init__(__self__, *,
|
|
5199
|
-
database_name: Optional[pulumi.Input[str]] = None
|
|
5349
|
+
database_name: Optional[pulumi.Input[str]] = None,
|
|
5350
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
5351
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
5352
|
+
username: Optional[pulumi.Input[str]] = None):
|
|
5200
5353
|
"""
|
|
5201
5354
|
:param pulumi.Input[str] database_name: Name of the default InfluxDB database
|
|
5355
|
+
:param pulumi.Input[str] password: InfluxDB password
|
|
5356
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: InfluxDB server URIs.
|
|
5357
|
+
:param pulumi.Input[str] username: InfluxDB username
|
|
5202
5358
|
"""
|
|
5203
5359
|
if database_name is not None:
|
|
5204
5360
|
pulumi.set(__self__, "database_name", database_name)
|
|
5361
|
+
if password is not None:
|
|
5362
|
+
pulumi.set(__self__, "password", password)
|
|
5363
|
+
if uris is not None:
|
|
5364
|
+
pulumi.set(__self__, "uris", uris)
|
|
5365
|
+
if username is not None:
|
|
5366
|
+
pulumi.set(__self__, "username", username)
|
|
5205
5367
|
|
|
5206
5368
|
@property
|
|
5207
5369
|
@pulumi.getter(name="databaseName")
|
|
@@ -5215,6 +5377,42 @@ class InfluxDbInfluxdbArgs:
|
|
|
5215
5377
|
def database_name(self, value: Optional[pulumi.Input[str]]):
|
|
5216
5378
|
pulumi.set(self, "database_name", value)
|
|
5217
5379
|
|
|
5380
|
+
@property
|
|
5381
|
+
@pulumi.getter
|
|
5382
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
5383
|
+
"""
|
|
5384
|
+
InfluxDB password
|
|
5385
|
+
"""
|
|
5386
|
+
return pulumi.get(self, "password")
|
|
5387
|
+
|
|
5388
|
+
@password.setter
|
|
5389
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
5390
|
+
pulumi.set(self, "password", value)
|
|
5391
|
+
|
|
5392
|
+
@property
|
|
5393
|
+
@pulumi.getter
|
|
5394
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
5395
|
+
"""
|
|
5396
|
+
InfluxDB server URIs.
|
|
5397
|
+
"""
|
|
5398
|
+
return pulumi.get(self, "uris")
|
|
5399
|
+
|
|
5400
|
+
@uris.setter
|
|
5401
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
5402
|
+
pulumi.set(self, "uris", value)
|
|
5403
|
+
|
|
5404
|
+
@property
|
|
5405
|
+
@pulumi.getter
|
|
5406
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
|
5407
|
+
"""
|
|
5408
|
+
InfluxDB username
|
|
5409
|
+
"""
|
|
5410
|
+
return pulumi.get(self, "username")
|
|
5411
|
+
|
|
5412
|
+
@username.setter
|
|
5413
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
|
5414
|
+
pulumi.set(self, "username", value)
|
|
5415
|
+
|
|
5218
5416
|
|
|
5219
5417
|
@pulumi.input_type
|
|
5220
5418
|
class InfluxDbInfluxdbUserConfigArgs:
|
|
@@ -6288,10 +6486,10 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6288
6486
|
scheduled_rebalance_max_delay_ms: Optional[pulumi.Input[int]] = None,
|
|
6289
6487
|
session_timeout_ms: Optional[pulumi.Input[int]] = None):
|
|
6290
6488
|
"""
|
|
6291
|
-
:param pulumi.Input[str] connector_client_config_override_policy: Defines what client configurations can be overridden by the connector. Default is None.
|
|
6292
|
-
:param pulumi.Input[str] consumer_auto_offset_reset: What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
6489
|
+
:param pulumi.Input[str] connector_client_config_override_policy: Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
|
|
6490
|
+
:param pulumi.Input[str] consumer_auto_offset_reset: Enum: `earliest`, `latest`. What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
6293
6491
|
:param pulumi.Input[int] consumer_fetch_max_bytes: Records are fetched in batches by the consumer, and if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned to ensure that the consumer can make progress. As such, this is not a absolute maximum.
|
|
6294
|
-
:param pulumi.Input[str] consumer_isolation_level: Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
6492
|
+
:param pulumi.Input[str] consumer_isolation_level: Enum: `read_uncommitted`, `read_committed`. Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
6295
6493
|
:param pulumi.Input[int] consumer_max_partition_fetch_bytes: Records are fetched in batches by the consumer.If the first record batch in the first non-empty partition of the fetch is larger than this limit, the batch will still be returned to ensure that the consumer can make progress.
|
|
6296
6494
|
:param pulumi.Input[int] consumer_max_poll_interval_ms: The maximum delay in milliseconds between invocations of poll() when using consumer group management (defaults to 300000).
|
|
6297
6495
|
:param pulumi.Input[int] consumer_max_poll_records: The maximum number of records returned in a single call to poll() (defaults to 500).
|
|
@@ -6299,7 +6497,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6299
6497
|
:param pulumi.Input[int] offset_flush_timeout_ms: Maximum number of milliseconds to wait for records to flush and partition offset data to be committed to offset storage before cancelling the process and restoring the offset data to be committed in a future attempt (defaults to 5000).
|
|
6300
6498
|
:param pulumi.Input[int] producer_batch_size: This setting gives the upper bound of the batch size to be sent. If there are fewer than this many bytes accumulated for this partition, the producer will 'linger' for the linger.ms time waiting for more records to show up. A batch size of zero will disable batching entirely (defaults to 16384).
|
|
6301
6499
|
:param pulumi.Input[int] producer_buffer_memory: The total bytes of memory the producer can use to buffer records waiting to be sent to the broker (defaults to 33554432).
|
|
6302
|
-
:param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
6500
|
+
:param pulumi.Input[str] producer_compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
6303
6501
|
:param pulumi.Input[int] producer_linger_ms: This setting gives the upper bound on the delay for batching: once there is batch.size worth of records for a partition it will be sent immediately regardless of this setting, however if there are fewer than this many bytes accumulated for this partition the producer will 'linger' for the specified time waiting for more records to show up. Defaults to 0.
|
|
6304
6502
|
:param pulumi.Input[int] producer_max_request_size: This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.
|
|
6305
6503
|
:param pulumi.Input[int] scheduled_rebalance_max_delay_ms: The maximum delay that is scheduled in order to wait for the return of one or more departed workers before rebalancing and reassigning their connectors and tasks to the group. During this period the connectors and tasks of the departed workers remain unassigned. Defaults to 5 minutes.
|
|
@@ -6342,7 +6540,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6342
6540
|
@pulumi.getter(name="connectorClientConfigOverridePolicy")
|
|
6343
6541
|
def connector_client_config_override_policy(self) -> Optional[pulumi.Input[str]]:
|
|
6344
6542
|
"""
|
|
6345
|
-
Defines what client configurations can be overridden by the connector. Default is None.
|
|
6543
|
+
Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
|
|
6346
6544
|
"""
|
|
6347
6545
|
return pulumi.get(self, "connector_client_config_override_policy")
|
|
6348
6546
|
|
|
@@ -6354,7 +6552,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6354
6552
|
@pulumi.getter(name="consumerAutoOffsetReset")
|
|
6355
6553
|
def consumer_auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
|
|
6356
6554
|
"""
|
|
6357
|
-
What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
6555
|
+
Enum: `earliest`, `latest`. What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
6358
6556
|
"""
|
|
6359
6557
|
return pulumi.get(self, "consumer_auto_offset_reset")
|
|
6360
6558
|
|
|
@@ -6378,7 +6576,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6378
6576
|
@pulumi.getter(name="consumerIsolationLevel")
|
|
6379
6577
|
def consumer_isolation_level(self) -> Optional[pulumi.Input[str]]:
|
|
6380
6578
|
"""
|
|
6381
|
-
Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
6579
|
+
Enum: `read_uncommitted`, `read_committed`. Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
6382
6580
|
"""
|
|
6383
6581
|
return pulumi.get(self, "consumer_isolation_level")
|
|
6384
6582
|
|
|
@@ -6474,7 +6672,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6474
6672
|
@pulumi.getter(name="producerCompressionType")
|
|
6475
6673
|
def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
6476
6674
|
"""
|
|
6477
|
-
Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
6675
|
+
Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
6478
6676
|
"""
|
|
6479
6677
|
return pulumi.get(self, "producer_compression_type")
|
|
6480
6678
|
|
|
@@ -6806,13 +7004,15 @@ class KafkaKafkaArgs:
|
|
|
6806
7004
|
access_key: Optional[pulumi.Input[str]] = None,
|
|
6807
7005
|
connect_uri: Optional[pulumi.Input[str]] = None,
|
|
6808
7006
|
rest_uri: Optional[pulumi.Input[str]] = None,
|
|
6809
|
-
schema_registry_uri: Optional[pulumi.Input[str]] = None
|
|
7007
|
+
schema_registry_uri: Optional[pulumi.Input[str]] = None,
|
|
7008
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
6810
7009
|
"""
|
|
6811
7010
|
:param pulumi.Input[str] access_cert: The Kafka client certificate.
|
|
6812
7011
|
:param pulumi.Input[str] access_key: The Kafka client certificate key.
|
|
6813
7012
|
:param pulumi.Input[str] connect_uri: The Kafka Connect URI.
|
|
6814
7013
|
:param pulumi.Input[str] rest_uri: The Kafka REST URI.
|
|
6815
7014
|
:param pulumi.Input[str] schema_registry_uri: The Schema Registry URI.
|
|
7015
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Kafka server URIs.
|
|
6816
7016
|
"""
|
|
6817
7017
|
if access_cert is not None:
|
|
6818
7018
|
pulumi.set(__self__, "access_cert", access_cert)
|
|
@@ -6824,6 +7024,8 @@ class KafkaKafkaArgs:
|
|
|
6824
7024
|
pulumi.set(__self__, "rest_uri", rest_uri)
|
|
6825
7025
|
if schema_registry_uri is not None:
|
|
6826
7026
|
pulumi.set(__self__, "schema_registry_uri", schema_registry_uri)
|
|
7027
|
+
if uris is not None:
|
|
7028
|
+
pulumi.set(__self__, "uris", uris)
|
|
6827
7029
|
|
|
6828
7030
|
@property
|
|
6829
7031
|
@pulumi.getter(name="accessCert")
|
|
@@ -6885,6 +7087,18 @@ class KafkaKafkaArgs:
|
|
|
6885
7087
|
def schema_registry_uri(self, value: Optional[pulumi.Input[str]]):
|
|
6886
7088
|
pulumi.set(self, "schema_registry_uri", value)
|
|
6887
7089
|
|
|
7090
|
+
@property
|
|
7091
|
+
@pulumi.getter
|
|
7092
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
7093
|
+
"""
|
|
7094
|
+
Kafka server URIs.
|
|
7095
|
+
"""
|
|
7096
|
+
return pulumi.get(self, "uris")
|
|
7097
|
+
|
|
7098
|
+
@uris.setter
|
|
7099
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
7100
|
+
pulumi.set(self, "uris", value)
|
|
7101
|
+
|
|
6888
7102
|
|
|
6889
7103
|
@pulumi.input_type
|
|
6890
7104
|
class KafkaKafkaUserConfigArgs:
|
|
@@ -6925,7 +7139,7 @@ class KafkaKafkaUserConfigArgs:
|
|
|
6925
7139
|
:param pulumi.Input[bool] kafka_rest: Enable Kafka-REST service. The default value is `false`.
|
|
6926
7140
|
:param pulumi.Input[bool] kafka_rest_authorization: Enable authorization in Kafka-REST service.
|
|
6927
7141
|
:param pulumi.Input['KafkaKafkaUserConfigKafkaRestConfigArgs'] kafka_rest_config: Kafka REST configuration
|
|
6928
|
-
:param pulumi.Input[str] kafka_version: Kafka major version.
|
|
7142
|
+
:param pulumi.Input[str] kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`. Kafka major version.
|
|
6929
7143
|
:param pulumi.Input['KafkaKafkaUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
6930
7144
|
:param pulumi.Input['KafkaKafkaUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
6931
7145
|
:param pulumi.Input['KafkaKafkaUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
@@ -7152,7 +7366,7 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7152
7366
|
@pulumi.getter(name="kafkaVersion")
|
|
7153
7367
|
def kafka_version(self) -> Optional[pulumi.Input[str]]:
|
|
7154
7368
|
"""
|
|
7155
|
-
Kafka major version.
|
|
7369
|
+
Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`. Kafka major version.
|
|
7156
7370
|
"""
|
|
7157
7371
|
return pulumi.get(self, "kafka_version")
|
|
7158
7372
|
|
|
@@ -7346,7 +7560,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7346
7560
|
transaction_state_log_segment_bytes: Optional[pulumi.Input[int]] = None):
|
|
7347
7561
|
"""
|
|
7348
7562
|
:param pulumi.Input[bool] auto_create_topics_enable: Enable auto creation of topics.
|
|
7349
|
-
:param pulumi.Input[str] compression_type: Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
|
|
7563
|
+
:param pulumi.Input[str] compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `uncompressed`, `producer`. Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
|
|
7350
7564
|
:param pulumi.Input[int] connections_max_idle_ms: Idle connections timeout: the server socket processor threads close the connections that idle for longer than this.
|
|
7351
7565
|
:param pulumi.Input[int] default_replication_factor: Replication factor for autocreated topics.
|
|
7352
7566
|
:param pulumi.Input[int] group_initial_rebalance_delay_ms: The amount of time, in milliseconds, the group coordinator will wait for more consumers to join a new group before performing the first rebalance. A longer delay means potentially fewer rebalances, but increases the time until processing begins. The default value for this is 3 seconds. During development and testing it might be desirable to set this to 0 in order to not delay test execution time.
|
|
@@ -7356,7 +7570,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7356
7570
|
:param pulumi.Input[int] log_cleaner_max_compaction_lag_ms: The maximum amount of time message will remain uncompacted. Only applicable for logs that are being compacted.
|
|
7357
7571
|
:param pulumi.Input[float] log_cleaner_min_cleanable_ratio: Controls log compactor frequency. Larger value means more frequent compactions but also more space wasted for logs. Consider setting log.cleaner.max.compaction.lag.ms to enforce compactions sooner, instead of setting a very high value for this option.
|
|
7358
7572
|
:param pulumi.Input[int] log_cleaner_min_compaction_lag_ms: The minimum time a message will remain uncompacted in the log. Only applicable for logs that are being compacted.
|
|
7359
|
-
:param pulumi.Input[str] log_cleanup_policy: The default cleanup policy for segments beyond the retention window.
|
|
7573
|
+
:param pulumi.Input[str] log_cleanup_policy: Enum: `delete`, `compact`, `compact,delete`. The default cleanup policy for segments beyond the retention window.
|
|
7360
7574
|
:param pulumi.Input[int] log_flush_interval_messages: The number of messages accumulated on a log partition before messages are flushed to disk.
|
|
7361
7575
|
:param pulumi.Input[int] log_flush_interval_ms: The maximum time in ms that a message in any topic is kept in memory before flushed to disk. If not set, the value in log.flush.scheduler.interval.ms is used.
|
|
7362
7576
|
:param pulumi.Input[int] log_index_interval_bytes: The interval with which Kafka adds an entry to the offset index.
|
|
@@ -7365,7 +7579,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7365
7579
|
:param pulumi.Input[int] log_local_retention_ms: The number of milliseconds to keep the local log segments before it gets eligible for deletion. If set to -2, the value of log.retention.ms is used. The effective value should always be less than or equal to log.retention.ms value.
|
|
7366
7580
|
:param pulumi.Input[bool] log_message_downconversion_enable: This configuration controls whether down-conversion of message formats is enabled to satisfy consume requests.
|
|
7367
7581
|
:param pulumi.Input[int] log_message_timestamp_difference_max_ms: The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message.
|
|
7368
|
-
:param pulumi.Input[str] log_message_timestamp_type: Define whether the timestamp in the message is message create time or log append time.
|
|
7582
|
+
:param pulumi.Input[str] log_message_timestamp_type: Enum: `CreateTime`, `LogAppendTime`. Define whether the timestamp in the message is message create time or log append time.
|
|
7369
7583
|
:param pulumi.Input[bool] log_preallocate: Should pre allocate file when create new segment?
|
|
7370
7584
|
:param pulumi.Input[int] log_retention_bytes: The maximum size of the log before deleting messages.
|
|
7371
7585
|
:param pulumi.Input[int] log_retention_hours: The number of hours to keep a log file before deleting it.
|
|
@@ -7501,7 +7715,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7501
7715
|
@pulumi.getter(name="compressionType")
|
|
7502
7716
|
def compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
7503
7717
|
"""
|
|
7504
|
-
Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
|
|
7718
|
+
Enum: `gzip`, `snappy`, `lz4`, `zstd`, `uncompressed`, `producer`. Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
|
|
7505
7719
|
"""
|
|
7506
7720
|
return pulumi.get(self, "compression_type")
|
|
7507
7721
|
|
|
@@ -7621,7 +7835,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7621
7835
|
@pulumi.getter(name="logCleanupPolicy")
|
|
7622
7836
|
def log_cleanup_policy(self) -> Optional[pulumi.Input[str]]:
|
|
7623
7837
|
"""
|
|
7624
|
-
The default cleanup policy for segments beyond the retention window.
|
|
7838
|
+
Enum: `delete`, `compact`, `compact,delete`. The default cleanup policy for segments beyond the retention window.
|
|
7625
7839
|
"""
|
|
7626
7840
|
return pulumi.get(self, "log_cleanup_policy")
|
|
7627
7841
|
|
|
@@ -7729,7 +7943,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7729
7943
|
@pulumi.getter(name="logMessageTimestampType")
|
|
7730
7944
|
def log_message_timestamp_type(self) -> Optional[pulumi.Input[str]]:
|
|
7731
7945
|
"""
|
|
7732
|
-
Define whether the timestamp in the message is message create time or log append time.
|
|
7946
|
+
Enum: `CreateTime`, `LogAppendTime`. Define whether the timestamp in the message is message create time or log append time.
|
|
7733
7947
|
"""
|
|
7734
7948
|
return pulumi.get(self, "log_message_timestamp_type")
|
|
7735
7949
|
|
|
@@ -8097,10 +8311,10 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8097
8311
|
scheduled_rebalance_max_delay_ms: Optional[pulumi.Input[int]] = None,
|
|
8098
8312
|
session_timeout_ms: Optional[pulumi.Input[int]] = None):
|
|
8099
8313
|
"""
|
|
8100
|
-
:param pulumi.Input[str] connector_client_config_override_policy: Defines what client configurations can be overridden by the connector. Default is None.
|
|
8101
|
-
:param pulumi.Input[str] consumer_auto_offset_reset: What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
8314
|
+
:param pulumi.Input[str] connector_client_config_override_policy: Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
|
|
8315
|
+
:param pulumi.Input[str] consumer_auto_offset_reset: Enum: `earliest`, `latest`. What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
8102
8316
|
:param pulumi.Input[int] consumer_fetch_max_bytes: Records are fetched in batches by the consumer, and if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned to ensure that the consumer can make progress. As such, this is not a absolute maximum.
|
|
8103
|
-
:param pulumi.Input[str] consumer_isolation_level: Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
8317
|
+
:param pulumi.Input[str] consumer_isolation_level: Enum: `read_uncommitted`, `read_committed`. Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
8104
8318
|
:param pulumi.Input[int] consumer_max_partition_fetch_bytes: Records are fetched in batches by the consumer.If the first record batch in the first non-empty partition of the fetch is larger than this limit, the batch will still be returned to ensure that the consumer can make progress.
|
|
8105
8319
|
:param pulumi.Input[int] consumer_max_poll_interval_ms: The maximum delay in milliseconds between invocations of poll() when using consumer group management (defaults to 300000).
|
|
8106
8320
|
:param pulumi.Input[int] consumer_max_poll_records: The maximum number of records returned in a single call to poll() (defaults to 500).
|
|
@@ -8108,7 +8322,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8108
8322
|
:param pulumi.Input[int] offset_flush_timeout_ms: Maximum number of milliseconds to wait for records to flush and partition offset data to be committed to offset storage before cancelling the process and restoring the offset data to be committed in a future attempt (defaults to 5000).
|
|
8109
8323
|
:param pulumi.Input[int] producer_batch_size: This setting gives the upper bound of the batch size to be sent. If there are fewer than this many bytes accumulated for this partition, the producer will 'linger' for the linger.ms time waiting for more records to show up. A batch size of zero will disable batching entirely (defaults to 16384).
|
|
8110
8324
|
:param pulumi.Input[int] producer_buffer_memory: The total bytes of memory the producer can use to buffer records waiting to be sent to the broker (defaults to 33554432).
|
|
8111
|
-
:param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
8325
|
+
:param pulumi.Input[str] producer_compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
8112
8326
|
:param pulumi.Input[int] producer_linger_ms: This setting gives the upper bound on the delay for batching: once there is batch.size worth of records for a partition it will be sent immediately regardless of this setting, however if there are fewer than this many bytes accumulated for this partition the producer will 'linger' for the specified time waiting for more records to show up. Defaults to 0.
|
|
8113
8327
|
:param pulumi.Input[int] producer_max_request_size: This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.
|
|
8114
8328
|
:param pulumi.Input[int] scheduled_rebalance_max_delay_ms: The maximum delay that is scheduled in order to wait for the return of one or more departed workers before rebalancing and reassigning their connectors and tasks to the group. During this period the connectors and tasks of the departed workers remain unassigned. Defaults to 5 minutes.
|
|
@@ -8151,7 +8365,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8151
8365
|
@pulumi.getter(name="connectorClientConfigOverridePolicy")
|
|
8152
8366
|
def connector_client_config_override_policy(self) -> Optional[pulumi.Input[str]]:
|
|
8153
8367
|
"""
|
|
8154
|
-
Defines what client configurations can be overridden by the connector. Default is None.
|
|
8368
|
+
Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
|
|
8155
8369
|
"""
|
|
8156
8370
|
return pulumi.get(self, "connector_client_config_override_policy")
|
|
8157
8371
|
|
|
@@ -8163,7 +8377,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8163
8377
|
@pulumi.getter(name="consumerAutoOffsetReset")
|
|
8164
8378
|
def consumer_auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
|
|
8165
8379
|
"""
|
|
8166
|
-
What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
8380
|
+
Enum: `earliest`, `latest`. What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
8167
8381
|
"""
|
|
8168
8382
|
return pulumi.get(self, "consumer_auto_offset_reset")
|
|
8169
8383
|
|
|
@@ -8187,7 +8401,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8187
8401
|
@pulumi.getter(name="consumerIsolationLevel")
|
|
8188
8402
|
def consumer_isolation_level(self) -> Optional[pulumi.Input[str]]:
|
|
8189
8403
|
"""
|
|
8190
|
-
Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
8404
|
+
Enum: `read_uncommitted`, `read_committed`. Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
8191
8405
|
"""
|
|
8192
8406
|
return pulumi.get(self, "consumer_isolation_level")
|
|
8193
8407
|
|
|
@@ -8283,7 +8497,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8283
8497
|
@pulumi.getter(name="producerCompressionType")
|
|
8284
8498
|
def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
8285
8499
|
"""
|
|
8286
|
-
Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
8500
|
+
Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
8287
8501
|
"""
|
|
8288
8502
|
return pulumi.get(self, "producer_compression_type")
|
|
8289
8503
|
|
|
@@ -8356,11 +8570,11 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8356
8570
|
"""
|
|
8357
8571
|
:param pulumi.Input[bool] consumer_enable_auto_commit: If true the consumer's offset will be periodically committed to Kafka in the background. The default value is `true`.
|
|
8358
8572
|
:param pulumi.Input[int] consumer_request_max_bytes: Maximum number of bytes in unencoded message keys and values by a single request. The default value is `67108864`.
|
|
8359
|
-
:param pulumi.Input[int] consumer_request_timeout_ms: The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
|
|
8360
|
-
:param pulumi.Input[str] name_strategy: Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
|
|
8573
|
+
:param pulumi.Input[int] consumer_request_timeout_ms: Enum: `1000`, `15000`, `30000`. The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
|
|
8574
|
+
:param pulumi.Input[str] name_strategy: Enum: `topic_name`, `record_name`, `topic_record_name`. Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
|
|
8361
8575
|
:param pulumi.Input[bool] name_strategy_validation: If true, validate that given schema is registered under expected subject name by the used name strategy when producing messages. The default value is `true`.
|
|
8362
|
-
:param pulumi.Input[str] producer_acks: The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
|
|
8363
|
-
:param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
8576
|
+
:param pulumi.Input[str] producer_acks: Enum: `all`, `-1`, `0`, `1`. The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
|
|
8577
|
+
:param pulumi.Input[str] producer_compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
8364
8578
|
:param pulumi.Input[int] producer_linger_ms: Wait for up to the given delay to allow batching records together. The default value is `0`.
|
|
8365
8579
|
:param pulumi.Input[int] producer_max_request_size: The maximum size of a request in bytes. Note that Kafka broker can also cap the record batch size. The default value is `1048576`.
|
|
8366
8580
|
:param pulumi.Input[int] simpleconsumer_pool_size_max: Maximum number of SimpleConsumers that can be instantiated per broker. The default value is `25`.
|
|
@@ -8414,7 +8628,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8414
8628
|
@pulumi.getter(name="consumerRequestTimeoutMs")
|
|
8415
8629
|
def consumer_request_timeout_ms(self) -> Optional[pulumi.Input[int]]:
|
|
8416
8630
|
"""
|
|
8417
|
-
The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
|
|
8631
|
+
Enum: `1000`, `15000`, `30000`. The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
|
|
8418
8632
|
"""
|
|
8419
8633
|
return pulumi.get(self, "consumer_request_timeout_ms")
|
|
8420
8634
|
|
|
@@ -8426,7 +8640,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8426
8640
|
@pulumi.getter(name="nameStrategy")
|
|
8427
8641
|
def name_strategy(self) -> Optional[pulumi.Input[str]]:
|
|
8428
8642
|
"""
|
|
8429
|
-
Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
|
|
8643
|
+
Enum: `topic_name`, `record_name`, `topic_record_name`. Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
|
|
8430
8644
|
"""
|
|
8431
8645
|
return pulumi.get(self, "name_strategy")
|
|
8432
8646
|
|
|
@@ -8450,7 +8664,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8450
8664
|
@pulumi.getter(name="producerAcks")
|
|
8451
8665
|
def producer_acks(self) -> Optional[pulumi.Input[str]]:
|
|
8452
8666
|
"""
|
|
8453
|
-
The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
|
|
8667
|
+
Enum: `all`, `-1`, `0`, `1`. The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
|
|
8454
8668
|
"""
|
|
8455
8669
|
return pulumi.get(self, "producer_acks")
|
|
8456
8670
|
|
|
@@ -8462,7 +8676,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8462
8676
|
@pulumi.getter(name="producerCompressionType")
|
|
8463
8677
|
def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
8464
8678
|
"""
|
|
8465
|
-
Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
8679
|
+
Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
8466
8680
|
"""
|
|
8467
8681
|
return pulumi.get(self, "producer_compression_type")
|
|
8468
8682
|
|
|
@@ -10226,6 +10440,45 @@ class M3AggregatorComponentArgs:
|
|
|
10226
10440
|
pulumi.set(self, "usage", value)
|
|
10227
10441
|
|
|
10228
10442
|
|
|
10443
|
+
@pulumi.input_type
|
|
10444
|
+
class M3AggregatorM3aggregatorArgs:
|
|
10445
|
+
def __init__(__self__, *,
|
|
10446
|
+
aggregator_http_uri: Optional[pulumi.Input[str]] = None,
|
|
10447
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
10448
|
+
"""
|
|
10449
|
+
:param pulumi.Input[str] aggregator_http_uri: M3 Aggregator HTTP URI.
|
|
10450
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: M3 Aggregator server URIs.
|
|
10451
|
+
"""
|
|
10452
|
+
if aggregator_http_uri is not None:
|
|
10453
|
+
pulumi.set(__self__, "aggregator_http_uri", aggregator_http_uri)
|
|
10454
|
+
if uris is not None:
|
|
10455
|
+
pulumi.set(__self__, "uris", uris)
|
|
10456
|
+
|
|
10457
|
+
@property
|
|
10458
|
+
@pulumi.getter(name="aggregatorHttpUri")
|
|
10459
|
+
def aggregator_http_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10460
|
+
"""
|
|
10461
|
+
M3 Aggregator HTTP URI.
|
|
10462
|
+
"""
|
|
10463
|
+
return pulumi.get(self, "aggregator_http_uri")
|
|
10464
|
+
|
|
10465
|
+
@aggregator_http_uri.setter
|
|
10466
|
+
def aggregator_http_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10467
|
+
pulumi.set(self, "aggregator_http_uri", value)
|
|
10468
|
+
|
|
10469
|
+
@property
|
|
10470
|
+
@pulumi.getter
|
|
10471
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
10472
|
+
"""
|
|
10473
|
+
M3 Aggregator server URIs.
|
|
10474
|
+
"""
|
|
10475
|
+
return pulumi.get(self, "uris")
|
|
10476
|
+
|
|
10477
|
+
@uris.setter
|
|
10478
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
10479
|
+
pulumi.set(self, "uris", value)
|
|
10480
|
+
|
|
10481
|
+
|
|
10229
10482
|
@pulumi.input_type
|
|
10230
10483
|
class M3AggregatorM3aggregatorUserConfigArgs:
|
|
10231
10484
|
def __init__(__self__, *,
|
|
@@ -10242,8 +10495,8 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10242
10495
|
:param pulumi.Input[Sequence[pulumi.Input['M3AggregatorM3aggregatorUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
10243
10496
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10244
10497
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10245
|
-
:param pulumi.Input[str] m3_version: M3 major version (deprecated, use m3aggregator_version).
|
|
10246
|
-
:param pulumi.Input[str] m3aggregator_version: M3 major version (the minimum compatible version).
|
|
10498
|
+
:param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5`. M3 major version (deprecated, use m3aggregator_version).
|
|
10499
|
+
:param pulumi.Input[str] m3aggregator_version: Enum: `1.1`, `1.2`, `1.5`. M3 major version (the minimum compatible version).
|
|
10247
10500
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
10248
10501
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
10249
10502
|
"""
|
|
@@ -10322,7 +10575,7 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10322
10575
|
@pulumi.getter(name="m3Version")
|
|
10323
10576
|
def m3_version(self) -> Optional[pulumi.Input[str]]:
|
|
10324
10577
|
"""
|
|
10325
|
-
M3 major version (deprecated, use m3aggregator_version).
|
|
10578
|
+
Enum: `1.1`, `1.2`, `1.5`. M3 major version (deprecated, use m3aggregator_version).
|
|
10326
10579
|
"""
|
|
10327
10580
|
return pulumi.get(self, "m3_version")
|
|
10328
10581
|
|
|
@@ -10334,7 +10587,7 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10334
10587
|
@pulumi.getter(name="m3aggregatorVersion")
|
|
10335
10588
|
def m3aggregator_version(self) -> Optional[pulumi.Input[str]]:
|
|
10336
10589
|
"""
|
|
10337
|
-
M3 major version (the minimum compatible version).
|
|
10590
|
+
Enum: `1.1`, `1.2`, `1.5`. M3 major version (the minimum compatible version).
|
|
10338
10591
|
"""
|
|
10339
10592
|
return pulumi.get(self, "m3aggregator_version")
|
|
10340
10593
|
|
|
@@ -10636,6 +10889,109 @@ class M3DbComponentArgs:
|
|
|
10636
10889
|
pulumi.set(self, "usage", value)
|
|
10637
10890
|
|
|
10638
10891
|
|
|
10892
|
+
@pulumi.input_type
|
|
10893
|
+
class M3DbM3dbArgs:
|
|
10894
|
+
def __init__(__self__, *,
|
|
10895
|
+
http_cluster_uri: Optional[pulumi.Input[str]] = None,
|
|
10896
|
+
http_node_uri: Optional[pulumi.Input[str]] = None,
|
|
10897
|
+
influxdb_uri: Optional[pulumi.Input[str]] = None,
|
|
10898
|
+
prometheus_remote_read_uri: Optional[pulumi.Input[str]] = None,
|
|
10899
|
+
prometheus_remote_write_uri: Optional[pulumi.Input[str]] = None,
|
|
10900
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
10901
|
+
"""
|
|
10902
|
+
:param pulumi.Input[str] http_cluster_uri: M3DB cluster URI.
|
|
10903
|
+
:param pulumi.Input[str] http_node_uri: M3DB node URI.
|
|
10904
|
+
:param pulumi.Input[str] influxdb_uri: InfluxDB URI.
|
|
10905
|
+
:param pulumi.Input[str] prometheus_remote_read_uri: Prometheus remote read URI.
|
|
10906
|
+
:param pulumi.Input[str] prometheus_remote_write_uri: Prometheus remote write URI.
|
|
10907
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: M3DB server URIs.
|
|
10908
|
+
"""
|
|
10909
|
+
if http_cluster_uri is not None:
|
|
10910
|
+
pulumi.set(__self__, "http_cluster_uri", http_cluster_uri)
|
|
10911
|
+
if http_node_uri is not None:
|
|
10912
|
+
pulumi.set(__self__, "http_node_uri", http_node_uri)
|
|
10913
|
+
if influxdb_uri is not None:
|
|
10914
|
+
pulumi.set(__self__, "influxdb_uri", influxdb_uri)
|
|
10915
|
+
if prometheus_remote_read_uri is not None:
|
|
10916
|
+
pulumi.set(__self__, "prometheus_remote_read_uri", prometheus_remote_read_uri)
|
|
10917
|
+
if prometheus_remote_write_uri is not None:
|
|
10918
|
+
pulumi.set(__self__, "prometheus_remote_write_uri", prometheus_remote_write_uri)
|
|
10919
|
+
if uris is not None:
|
|
10920
|
+
pulumi.set(__self__, "uris", uris)
|
|
10921
|
+
|
|
10922
|
+
@property
|
|
10923
|
+
@pulumi.getter(name="httpClusterUri")
|
|
10924
|
+
def http_cluster_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10925
|
+
"""
|
|
10926
|
+
M3DB cluster URI.
|
|
10927
|
+
"""
|
|
10928
|
+
return pulumi.get(self, "http_cluster_uri")
|
|
10929
|
+
|
|
10930
|
+
@http_cluster_uri.setter
|
|
10931
|
+
def http_cluster_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10932
|
+
pulumi.set(self, "http_cluster_uri", value)
|
|
10933
|
+
|
|
10934
|
+
@property
|
|
10935
|
+
@pulumi.getter(name="httpNodeUri")
|
|
10936
|
+
def http_node_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10937
|
+
"""
|
|
10938
|
+
M3DB node URI.
|
|
10939
|
+
"""
|
|
10940
|
+
return pulumi.get(self, "http_node_uri")
|
|
10941
|
+
|
|
10942
|
+
@http_node_uri.setter
|
|
10943
|
+
def http_node_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10944
|
+
pulumi.set(self, "http_node_uri", value)
|
|
10945
|
+
|
|
10946
|
+
@property
|
|
10947
|
+
@pulumi.getter(name="influxdbUri")
|
|
10948
|
+
def influxdb_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10949
|
+
"""
|
|
10950
|
+
InfluxDB URI.
|
|
10951
|
+
"""
|
|
10952
|
+
return pulumi.get(self, "influxdb_uri")
|
|
10953
|
+
|
|
10954
|
+
@influxdb_uri.setter
|
|
10955
|
+
def influxdb_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10956
|
+
pulumi.set(self, "influxdb_uri", value)
|
|
10957
|
+
|
|
10958
|
+
@property
|
|
10959
|
+
@pulumi.getter(name="prometheusRemoteReadUri")
|
|
10960
|
+
def prometheus_remote_read_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10961
|
+
"""
|
|
10962
|
+
Prometheus remote read URI.
|
|
10963
|
+
"""
|
|
10964
|
+
return pulumi.get(self, "prometheus_remote_read_uri")
|
|
10965
|
+
|
|
10966
|
+
@prometheus_remote_read_uri.setter
|
|
10967
|
+
def prometheus_remote_read_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10968
|
+
pulumi.set(self, "prometheus_remote_read_uri", value)
|
|
10969
|
+
|
|
10970
|
+
@property
|
|
10971
|
+
@pulumi.getter(name="prometheusRemoteWriteUri")
|
|
10972
|
+
def prometheus_remote_write_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10973
|
+
"""
|
|
10974
|
+
Prometheus remote write URI.
|
|
10975
|
+
"""
|
|
10976
|
+
return pulumi.get(self, "prometheus_remote_write_uri")
|
|
10977
|
+
|
|
10978
|
+
@prometheus_remote_write_uri.setter
|
|
10979
|
+
def prometheus_remote_write_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10980
|
+
pulumi.set(self, "prometheus_remote_write_uri", value)
|
|
10981
|
+
|
|
10982
|
+
@property
|
|
10983
|
+
@pulumi.getter
|
|
10984
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
10985
|
+
"""
|
|
10986
|
+
M3DB server URIs.
|
|
10987
|
+
"""
|
|
10988
|
+
return pulumi.get(self, "uris")
|
|
10989
|
+
|
|
10990
|
+
@uris.setter
|
|
10991
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
10992
|
+
pulumi.set(self, "uris", value)
|
|
10993
|
+
|
|
10994
|
+
|
|
10639
10995
|
@pulumi.input_type
|
|
10640
10996
|
class M3DbM3dbUserConfigArgs:
|
|
10641
10997
|
def __init__(__self__, *,
|
|
@@ -10665,9 +11021,9 @@ class M3DbM3dbUserConfigArgs:
|
|
|
10665
11021
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10666
11022
|
:param pulumi.Input['M3DbM3dbUserConfigLimitsArgs'] limits: M3 limits
|
|
10667
11023
|
:param pulumi.Input['M3DbM3dbUserConfigM3Args'] m3: M3 specific configuration options
|
|
10668
|
-
:param pulumi.Input[str] m3_version: M3 major version (deprecated, use m3db_version).
|
|
11024
|
+
:param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5`. M3 major version (deprecated, use m3db_version).
|
|
10669
11025
|
:param pulumi.Input[bool] m3coordinator_enable_graphite_carbon_ingest: Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
|
|
10670
|
-
:param pulumi.Input[str] m3db_version: M3 major version (the minimum compatible version).
|
|
11026
|
+
:param pulumi.Input[str] m3db_version: Enum: `1.1`, `1.2`, `1.5`. M3 major version (the minimum compatible version).
|
|
10671
11027
|
:param pulumi.Input[Sequence[pulumi.Input['M3DbM3dbUserConfigNamespaceArgs']]] namespaces: List of M3 namespaces
|
|
10672
11028
|
:param pulumi.Input['M3DbM3dbUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
10673
11029
|
:param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
|
|
@@ -10808,7 +11164,7 @@ class M3DbM3dbUserConfigArgs:
|
|
|
10808
11164
|
@pulumi.getter(name="m3Version")
|
|
10809
11165
|
def m3_version(self) -> Optional[pulumi.Input[str]]:
|
|
10810
11166
|
"""
|
|
10811
|
-
M3 major version (deprecated, use m3db_version).
|
|
11167
|
+
Enum: `1.1`, `1.2`, `1.5`. M3 major version (deprecated, use m3db_version).
|
|
10812
11168
|
"""
|
|
10813
11169
|
return pulumi.get(self, "m3_version")
|
|
10814
11170
|
|
|
@@ -10832,7 +11188,7 @@ class M3DbM3dbUserConfigArgs:
|
|
|
10832
11188
|
@pulumi.getter(name="m3dbVersion")
|
|
10833
11189
|
def m3db_version(self) -> Optional[pulumi.Input[str]]:
|
|
10834
11190
|
"""
|
|
10835
|
-
M3 major version (the minimum compatible version).
|
|
11191
|
+
Enum: `1.1`, `1.2`, `1.5`. M3 major version (the minimum compatible version).
|
|
10836
11192
|
"""
|
|
10837
11193
|
return pulumi.get(self, "m3db_version")
|
|
10838
11194
|
|
|
@@ -11149,7 +11505,7 @@ class M3DbM3dbUserConfigNamespaceArgs:
|
|
|
11149
11505
|
resolution: Optional[pulumi.Input[str]] = None):
|
|
11150
11506
|
"""
|
|
11151
11507
|
:param pulumi.Input[str] name: The name of the namespace.
|
|
11152
|
-
:param pulumi.Input[str] type: The type of aggregation (aggregated/unaggregated).
|
|
11508
|
+
:param pulumi.Input[str] type: Enum: `aggregated`, `unaggregated`. The type of aggregation (aggregated/unaggregated).
|
|
11153
11509
|
:param pulumi.Input['M3DbM3dbUserConfigNamespaceOptionsArgs'] options: Namespace options
|
|
11154
11510
|
:param pulumi.Input[str] resolution: The resolution for an aggregated namespace.
|
|
11155
11511
|
"""
|
|
@@ -11176,7 +11532,7 @@ class M3DbM3dbUserConfigNamespaceArgs:
|
|
|
11176
11532
|
@pulumi.getter
|
|
11177
11533
|
def type(self) -> pulumi.Input[str]:
|
|
11178
11534
|
"""
|
|
11179
|
-
The type of aggregation (aggregated/unaggregated).
|
|
11535
|
+
Enum: `aggregated`, `unaggregated`. The type of aggregation (aggregated/unaggregated).
|
|
11180
11536
|
"""
|
|
11181
11537
|
return pulumi.get(self, "type")
|
|
11182
11538
|
|
|
@@ -11866,85 +12222,275 @@ class MySqlComponentArgs:
|
|
|
11866
12222
|
|
|
11867
12223
|
|
|
11868
12224
|
@pulumi.input_type
|
|
11869
|
-
class
|
|
12225
|
+
class MySqlMysqlArgs:
|
|
11870
12226
|
def __init__(__self__, *,
|
|
11871
|
-
|
|
11872
|
-
|
|
11873
|
-
|
|
11874
|
-
|
|
11875
|
-
|
|
11876
|
-
|
|
11877
|
-
|
|
11878
|
-
|
|
11879
|
-
|
|
11880
|
-
|
|
11881
|
-
|
|
11882
|
-
|
|
11883
|
-
|
|
11884
|
-
|
|
11885
|
-
|
|
11886
|
-
|
|
11887
|
-
|
|
11888
|
-
|
|
11889
|
-
|
|
11890
|
-
|
|
12227
|
+
params: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]] = None,
|
|
12228
|
+
replica_uri: Optional[pulumi.Input[str]] = None,
|
|
12229
|
+
standby_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
12230
|
+
syncing_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
12231
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
12232
|
+
"""
|
|
12233
|
+
:param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]] params: MySQL connection parameters
|
|
12234
|
+
:param pulumi.Input[str] replica_uri: MySQL replica URI for services with a replica
|
|
12235
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uris: MySQL standby connection URIs
|
|
12236
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] syncing_uris: MySQL syncing connection URIs
|
|
12237
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: MySQL master connection URIs
|
|
12238
|
+
"""
|
|
12239
|
+
if params is not None:
|
|
12240
|
+
pulumi.set(__self__, "params", params)
|
|
12241
|
+
if replica_uri is not None:
|
|
12242
|
+
pulumi.set(__self__, "replica_uri", replica_uri)
|
|
12243
|
+
if standby_uris is not None:
|
|
12244
|
+
pulumi.set(__self__, "standby_uris", standby_uris)
|
|
12245
|
+
if syncing_uris is not None:
|
|
12246
|
+
pulumi.set(__self__, "syncing_uris", syncing_uris)
|
|
12247
|
+
if uris is not None:
|
|
12248
|
+
pulumi.set(__self__, "uris", uris)
|
|
12249
|
+
|
|
12250
|
+
@property
|
|
12251
|
+
@pulumi.getter
|
|
12252
|
+
def params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]]:
|
|
11891
12253
|
"""
|
|
11892
|
-
|
|
11893
|
-
:param pulumi.Input[str] admin_password: Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
|
|
11894
|
-
:param pulumi.Input[str] admin_username: Custom username for admin user. This must be set only when a new service is being created.
|
|
11895
|
-
:param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
|
|
11896
|
-
:param pulumi.Input[int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
|
|
11897
|
-
:param pulumi.Input[int] binlog_retention_period: The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
|
|
11898
|
-
:param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
11899
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
11900
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
11901
|
-
:param pulumi.Input['MySqlMysqlUserConfigMigrationArgs'] migration: Migrate data from existing server
|
|
11902
|
-
:param pulumi.Input['MySqlMysqlUserConfigMysqlArgs'] mysql: mysql.conf configuration values
|
|
11903
|
-
:param pulumi.Input[str] mysql_version: MySQL major version.
|
|
11904
|
-
:param pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
11905
|
-
:param pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
11906
|
-
:param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
|
|
11907
|
-
:param pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
11908
|
-
:param pulumi.Input[str] recovery_target_time: Recovery target time when forking a service. This has effect only when a new service is being created.
|
|
11909
|
-
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
11910
|
-
:param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
|
|
11911
|
-
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
12254
|
+
MySQL connection parameters
|
|
11912
12255
|
"""
|
|
11913
|
-
|
|
11914
|
-
|
|
11915
|
-
|
|
11916
|
-
|
|
11917
|
-
|
|
11918
|
-
|
|
11919
|
-
|
|
11920
|
-
|
|
11921
|
-
|
|
11922
|
-
|
|
11923
|
-
|
|
11924
|
-
|
|
11925
|
-
|
|
11926
|
-
|
|
11927
|
-
|
|
11928
|
-
|
|
11929
|
-
|
|
11930
|
-
|
|
11931
|
-
|
|
11932
|
-
|
|
11933
|
-
|
|
11934
|
-
|
|
11935
|
-
|
|
11936
|
-
|
|
11937
|
-
|
|
11938
|
-
|
|
11939
|
-
|
|
11940
|
-
|
|
11941
|
-
|
|
11942
|
-
|
|
11943
|
-
|
|
11944
|
-
|
|
11945
|
-
|
|
11946
|
-
|
|
11947
|
-
|
|
12256
|
+
return pulumi.get(self, "params")
|
|
12257
|
+
|
|
12258
|
+
@params.setter
|
|
12259
|
+
def params(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]]):
|
|
12260
|
+
pulumi.set(self, "params", value)
|
|
12261
|
+
|
|
12262
|
+
@property
|
|
12263
|
+
@pulumi.getter(name="replicaUri")
|
|
12264
|
+
def replica_uri(self) -> Optional[pulumi.Input[str]]:
|
|
12265
|
+
"""
|
|
12266
|
+
MySQL replica URI for services with a replica
|
|
12267
|
+
"""
|
|
12268
|
+
return pulumi.get(self, "replica_uri")
|
|
12269
|
+
|
|
12270
|
+
@replica_uri.setter
|
|
12271
|
+
def replica_uri(self, value: Optional[pulumi.Input[str]]):
|
|
12272
|
+
pulumi.set(self, "replica_uri", value)
|
|
12273
|
+
|
|
12274
|
+
@property
|
|
12275
|
+
@pulumi.getter(name="standbyUris")
|
|
12276
|
+
def standby_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
12277
|
+
"""
|
|
12278
|
+
MySQL standby connection URIs
|
|
12279
|
+
"""
|
|
12280
|
+
return pulumi.get(self, "standby_uris")
|
|
12281
|
+
|
|
12282
|
+
@standby_uris.setter
|
|
12283
|
+
def standby_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
12284
|
+
pulumi.set(self, "standby_uris", value)
|
|
12285
|
+
|
|
12286
|
+
@property
|
|
12287
|
+
@pulumi.getter(name="syncingUris")
|
|
12288
|
+
def syncing_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
12289
|
+
"""
|
|
12290
|
+
MySQL syncing connection URIs
|
|
12291
|
+
"""
|
|
12292
|
+
return pulumi.get(self, "syncing_uris")
|
|
12293
|
+
|
|
12294
|
+
@syncing_uris.setter
|
|
12295
|
+
def syncing_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
12296
|
+
pulumi.set(self, "syncing_uris", value)
|
|
12297
|
+
|
|
12298
|
+
@property
|
|
12299
|
+
@pulumi.getter
|
|
12300
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
12301
|
+
"""
|
|
12302
|
+
MySQL master connection URIs
|
|
12303
|
+
"""
|
|
12304
|
+
return pulumi.get(self, "uris")
|
|
12305
|
+
|
|
12306
|
+
@uris.setter
|
|
12307
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
12308
|
+
pulumi.set(self, "uris", value)
|
|
12309
|
+
|
|
12310
|
+
|
|
12311
|
+
@pulumi.input_type
|
|
12312
|
+
class MySqlMysqlParamArgs:
|
|
12313
|
+
def __init__(__self__, *,
|
|
12314
|
+
database_name: Optional[pulumi.Input[str]] = None,
|
|
12315
|
+
host: Optional[pulumi.Input[str]] = None,
|
|
12316
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
12317
|
+
port: Optional[pulumi.Input[int]] = None,
|
|
12318
|
+
sslmode: Optional[pulumi.Input[str]] = None,
|
|
12319
|
+
user: Optional[pulumi.Input[str]] = None):
|
|
12320
|
+
"""
|
|
12321
|
+
:param pulumi.Input[str] database_name: Primary MySQL database name
|
|
12322
|
+
:param pulumi.Input[str] host: MySQL host IP or name
|
|
12323
|
+
:param pulumi.Input[str] password: MySQL admin user password
|
|
12324
|
+
:param pulumi.Input[int] port: MySQL port
|
|
12325
|
+
:param pulumi.Input[str] sslmode: MySQL sslmode setting (currently always "require")
|
|
12326
|
+
:param pulumi.Input[str] user: MySQL admin user name
|
|
12327
|
+
"""
|
|
12328
|
+
if database_name is not None:
|
|
12329
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
12330
|
+
if host is not None:
|
|
12331
|
+
pulumi.set(__self__, "host", host)
|
|
12332
|
+
if password is not None:
|
|
12333
|
+
pulumi.set(__self__, "password", password)
|
|
12334
|
+
if port is not None:
|
|
12335
|
+
pulumi.set(__self__, "port", port)
|
|
12336
|
+
if sslmode is not None:
|
|
12337
|
+
pulumi.set(__self__, "sslmode", sslmode)
|
|
12338
|
+
if user is not None:
|
|
12339
|
+
pulumi.set(__self__, "user", user)
|
|
12340
|
+
|
|
12341
|
+
@property
|
|
12342
|
+
@pulumi.getter(name="databaseName")
|
|
12343
|
+
def database_name(self) -> Optional[pulumi.Input[str]]:
|
|
12344
|
+
"""
|
|
12345
|
+
Primary MySQL database name
|
|
12346
|
+
"""
|
|
12347
|
+
return pulumi.get(self, "database_name")
|
|
12348
|
+
|
|
12349
|
+
@database_name.setter
|
|
12350
|
+
def database_name(self, value: Optional[pulumi.Input[str]]):
|
|
12351
|
+
pulumi.set(self, "database_name", value)
|
|
12352
|
+
|
|
12353
|
+
@property
|
|
12354
|
+
@pulumi.getter
|
|
12355
|
+
def host(self) -> Optional[pulumi.Input[str]]:
|
|
12356
|
+
"""
|
|
12357
|
+
MySQL host IP or name
|
|
12358
|
+
"""
|
|
12359
|
+
return pulumi.get(self, "host")
|
|
12360
|
+
|
|
12361
|
+
@host.setter
|
|
12362
|
+
def host(self, value: Optional[pulumi.Input[str]]):
|
|
12363
|
+
pulumi.set(self, "host", value)
|
|
12364
|
+
|
|
12365
|
+
@property
|
|
12366
|
+
@pulumi.getter
|
|
12367
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
12368
|
+
"""
|
|
12369
|
+
MySQL admin user password
|
|
12370
|
+
"""
|
|
12371
|
+
return pulumi.get(self, "password")
|
|
12372
|
+
|
|
12373
|
+
@password.setter
|
|
12374
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
12375
|
+
pulumi.set(self, "password", value)
|
|
12376
|
+
|
|
12377
|
+
@property
|
|
12378
|
+
@pulumi.getter
|
|
12379
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
|
12380
|
+
"""
|
|
12381
|
+
MySQL port
|
|
12382
|
+
"""
|
|
12383
|
+
return pulumi.get(self, "port")
|
|
12384
|
+
|
|
12385
|
+
@port.setter
|
|
12386
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
|
12387
|
+
pulumi.set(self, "port", value)
|
|
12388
|
+
|
|
12389
|
+
@property
|
|
12390
|
+
@pulumi.getter
|
|
12391
|
+
def sslmode(self) -> Optional[pulumi.Input[str]]:
|
|
12392
|
+
"""
|
|
12393
|
+
MySQL sslmode setting (currently always "require")
|
|
12394
|
+
"""
|
|
12395
|
+
return pulumi.get(self, "sslmode")
|
|
12396
|
+
|
|
12397
|
+
@sslmode.setter
|
|
12398
|
+
def sslmode(self, value: Optional[pulumi.Input[str]]):
|
|
12399
|
+
pulumi.set(self, "sslmode", value)
|
|
12400
|
+
|
|
12401
|
+
@property
|
|
12402
|
+
@pulumi.getter
|
|
12403
|
+
def user(self) -> Optional[pulumi.Input[str]]:
|
|
12404
|
+
"""
|
|
12405
|
+
MySQL admin user name
|
|
12406
|
+
"""
|
|
12407
|
+
return pulumi.get(self, "user")
|
|
12408
|
+
|
|
12409
|
+
@user.setter
|
|
12410
|
+
def user(self, value: Optional[pulumi.Input[str]]):
|
|
12411
|
+
pulumi.set(self, "user", value)
|
|
12412
|
+
|
|
12413
|
+
|
|
12414
|
+
@pulumi.input_type
|
|
12415
|
+
class MySqlMysqlUserConfigArgs:
|
|
12416
|
+
def __init__(__self__, *,
|
|
12417
|
+
additional_backup_regions: Optional[pulumi.Input[str]] = None,
|
|
12418
|
+
admin_password: Optional[pulumi.Input[str]] = None,
|
|
12419
|
+
admin_username: Optional[pulumi.Input[str]] = None,
|
|
12420
|
+
backup_hour: Optional[pulumi.Input[int]] = None,
|
|
12421
|
+
backup_minute: Optional[pulumi.Input[int]] = None,
|
|
12422
|
+
binlog_retention_period: Optional[pulumi.Input[int]] = None,
|
|
12423
|
+
ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]]] = None,
|
|
12424
|
+
ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
12425
|
+
ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
12426
|
+
migration: Optional[pulumi.Input['MySqlMysqlUserConfigMigrationArgs']] = None,
|
|
12427
|
+
mysql: Optional[pulumi.Input['MySqlMysqlUserConfigMysqlArgs']] = None,
|
|
12428
|
+
mysql_version: Optional[pulumi.Input[str]] = None,
|
|
12429
|
+
private_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs']] = None,
|
|
12430
|
+
privatelink_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs']] = None,
|
|
12431
|
+
project_to_fork_from: Optional[pulumi.Input[str]] = None,
|
|
12432
|
+
public_access: Optional[pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs']] = None,
|
|
12433
|
+
recovery_target_time: Optional[pulumi.Input[str]] = None,
|
|
12434
|
+
service_log: Optional[pulumi.Input[bool]] = None,
|
|
12435
|
+
service_to_fork_from: Optional[pulumi.Input[str]] = None,
|
|
12436
|
+
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
12437
|
+
"""
|
|
12438
|
+
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
12439
|
+
:param pulumi.Input[str] admin_password: Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
|
|
12440
|
+
:param pulumi.Input[str] admin_username: Custom username for admin user. This must be set only when a new service is being created.
|
|
12441
|
+
:param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
|
|
12442
|
+
:param pulumi.Input[int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
|
|
12443
|
+
:param pulumi.Input[int] binlog_retention_period: The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
|
|
12444
|
+
:param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
12445
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
12446
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
12447
|
+
:param pulumi.Input['MySqlMysqlUserConfigMigrationArgs'] migration: Migrate data from existing server
|
|
12448
|
+
:param pulumi.Input['MySqlMysqlUserConfigMysqlArgs'] mysql: mysql.conf configuration values
|
|
12449
|
+
:param pulumi.Input[str] mysql_version: Enum: `8`. MySQL major version.
|
|
12450
|
+
:param pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
12451
|
+
:param pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
12452
|
+
:param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
|
|
12453
|
+
:param pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
12454
|
+
:param pulumi.Input[str] recovery_target_time: Recovery target time when forking a service. This has effect only when a new service is being created.
|
|
12455
|
+
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
12456
|
+
:param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
|
|
12457
|
+
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
12458
|
+
"""
|
|
12459
|
+
if additional_backup_regions is not None:
|
|
12460
|
+
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
12461
|
+
if admin_password is not None:
|
|
12462
|
+
pulumi.set(__self__, "admin_password", admin_password)
|
|
12463
|
+
if admin_username is not None:
|
|
12464
|
+
pulumi.set(__self__, "admin_username", admin_username)
|
|
12465
|
+
if backup_hour is not None:
|
|
12466
|
+
pulumi.set(__self__, "backup_hour", backup_hour)
|
|
12467
|
+
if backup_minute is not None:
|
|
12468
|
+
pulumi.set(__self__, "backup_minute", backup_minute)
|
|
12469
|
+
if binlog_retention_period is not None:
|
|
12470
|
+
pulumi.set(__self__, "binlog_retention_period", binlog_retention_period)
|
|
12471
|
+
if ip_filter_objects is not None:
|
|
12472
|
+
pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
|
|
12473
|
+
if ip_filter_strings is not None:
|
|
12474
|
+
pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
|
|
12475
|
+
if ip_filters is not None:
|
|
12476
|
+
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
12477
|
+
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
12478
|
+
if ip_filters is not None:
|
|
12479
|
+
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
12480
|
+
if migration is not None:
|
|
12481
|
+
pulumi.set(__self__, "migration", migration)
|
|
12482
|
+
if mysql is not None:
|
|
12483
|
+
pulumi.set(__self__, "mysql", mysql)
|
|
12484
|
+
if mysql_version is not None:
|
|
12485
|
+
pulumi.set(__self__, "mysql_version", mysql_version)
|
|
12486
|
+
if private_access is not None:
|
|
12487
|
+
pulumi.set(__self__, "private_access", private_access)
|
|
12488
|
+
if privatelink_access is not None:
|
|
12489
|
+
pulumi.set(__self__, "privatelink_access", privatelink_access)
|
|
12490
|
+
if project_to_fork_from is not None:
|
|
12491
|
+
pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
|
|
12492
|
+
if public_access is not None:
|
|
12493
|
+
pulumi.set(__self__, "public_access", public_access)
|
|
11948
12494
|
if recovery_target_time is not None:
|
|
11949
12495
|
pulumi.set(__self__, "recovery_target_time", recovery_target_time)
|
|
11950
12496
|
if service_log is not None:
|
|
@@ -12093,7 +12639,7 @@ class MySqlMysqlUserConfigArgs:
|
|
|
12093
12639
|
@pulumi.getter(name="mysqlVersion")
|
|
12094
12640
|
def mysql_version(self) -> Optional[pulumi.Input[str]]:
|
|
12095
12641
|
"""
|
|
12096
|
-
MySQL major version.
|
|
12642
|
+
Enum: `8`. MySQL major version.
|
|
12097
12643
|
"""
|
|
12098
12644
|
return pulumi.get(self, "mysql_version")
|
|
12099
12645
|
|
|
@@ -12252,7 +12798,7 @@ class MySqlMysqlUserConfigMigrationArgs:
|
|
|
12252
12798
|
:param pulumi.Input[int] port: Port number of the server where to migrate data from.
|
|
12253
12799
|
:param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
|
|
12254
12800
|
:param pulumi.Input[str] ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
|
|
12255
|
-
:param pulumi.Input[str] method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
12801
|
+
:param pulumi.Input[str] method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
12256
12802
|
:param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
|
|
12257
12803
|
:param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
|
|
12258
12804
|
:param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
|
|
@@ -12324,7 +12870,7 @@ class MySqlMysqlUserConfigMigrationArgs:
|
|
|
12324
12870
|
@pulumi.getter
|
|
12325
12871
|
def method(self) -> Optional[pulumi.Input[str]]:
|
|
12326
12872
|
"""
|
|
12327
|
-
The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
12873
|
+
Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
12328
12874
|
"""
|
|
12329
12875
|
return pulumi.get(self, "method")
|
|
12330
12876
|
|
|
@@ -12420,7 +12966,7 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
12420
12966
|
:param pulumi.Input[int] innodb_thread_concurrency: Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
12421
12967
|
:param pulumi.Input[int] innodb_write_io_threads: The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
|
|
12422
12968
|
:param pulumi.Input[int] interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
12423
|
-
:param pulumi.Input[str] internal_tmp_mem_storage_engine: The storage engine for in-memory internal temporary tables.
|
|
12969
|
+
:param pulumi.Input[str] internal_tmp_mem_storage_engine: Enum: `TempTable`, `MEMORY`. The storage engine for in-memory internal temporary tables.
|
|
12424
12970
|
:param pulumi.Input[float] long_query_time: The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute. Default is 10s.
|
|
12425
12971
|
:param pulumi.Input[int] max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
12426
12972
|
:param pulumi.Input[int] max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp*table*size. Default is 16777216 (16M).
|
|
@@ -12703,7 +13249,7 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
12703
13249
|
@pulumi.getter(name="internalTmpMemStorageEngine")
|
|
12704
13250
|
def internal_tmp_mem_storage_engine(self) -> Optional[pulumi.Input[str]]:
|
|
12705
13251
|
"""
|
|
12706
|
-
The storage engine for in-memory internal temporary tables.
|
|
13252
|
+
Enum: `TempTable`, `MEMORY`. The storage engine for in-memory internal temporary tables.
|
|
12707
13253
|
"""
|
|
12708
13254
|
return pulumi.get(self, "internal_tmp_mem_storage_engine")
|
|
12709
13255
|
|
|
@@ -13255,12 +13801,40 @@ class OpenSearchComponentArgs:
|
|
|
13255
13801
|
@pulumi.input_type
|
|
13256
13802
|
class OpenSearchOpensearchArgs:
|
|
13257
13803
|
def __init__(__self__, *,
|
|
13258
|
-
|
|
13804
|
+
kibana_uri: Optional[pulumi.Input[str]] = None,
|
|
13805
|
+
opensearch_dashboards_uri: Optional[pulumi.Input[str]] = None,
|
|
13806
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
13807
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
13808
|
+
username: Optional[pulumi.Input[str]] = None):
|
|
13259
13809
|
"""
|
|
13810
|
+
:param pulumi.Input[str] kibana_uri: URI for Kibana dashboard frontend
|
|
13260
13811
|
:param pulumi.Input[str] opensearch_dashboards_uri: URI for OpenSearch dashboard frontend
|
|
13812
|
+
:param pulumi.Input[str] password: OpenSearch password
|
|
13813
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: OpenSearch server URIs.
|
|
13814
|
+
:param pulumi.Input[str] username: OpenSearch username
|
|
13261
13815
|
"""
|
|
13816
|
+
if kibana_uri is not None:
|
|
13817
|
+
pulumi.set(__self__, "kibana_uri", kibana_uri)
|
|
13262
13818
|
if opensearch_dashboards_uri is not None:
|
|
13263
13819
|
pulumi.set(__self__, "opensearch_dashboards_uri", opensearch_dashboards_uri)
|
|
13820
|
+
if password is not None:
|
|
13821
|
+
pulumi.set(__self__, "password", password)
|
|
13822
|
+
if uris is not None:
|
|
13823
|
+
pulumi.set(__self__, "uris", uris)
|
|
13824
|
+
if username is not None:
|
|
13825
|
+
pulumi.set(__self__, "username", username)
|
|
13826
|
+
|
|
13827
|
+
@property
|
|
13828
|
+
@pulumi.getter(name="kibanaUri")
|
|
13829
|
+
def kibana_uri(self) -> Optional[pulumi.Input[str]]:
|
|
13830
|
+
"""
|
|
13831
|
+
URI for Kibana dashboard frontend
|
|
13832
|
+
"""
|
|
13833
|
+
return pulumi.get(self, "kibana_uri")
|
|
13834
|
+
|
|
13835
|
+
@kibana_uri.setter
|
|
13836
|
+
def kibana_uri(self, value: Optional[pulumi.Input[str]]):
|
|
13837
|
+
pulumi.set(self, "kibana_uri", value)
|
|
13264
13838
|
|
|
13265
13839
|
@property
|
|
13266
13840
|
@pulumi.getter(name="opensearchDashboardsUri")
|
|
@@ -13274,6 +13848,42 @@ class OpenSearchOpensearchArgs:
|
|
|
13274
13848
|
def opensearch_dashboards_uri(self, value: Optional[pulumi.Input[str]]):
|
|
13275
13849
|
pulumi.set(self, "opensearch_dashboards_uri", value)
|
|
13276
13850
|
|
|
13851
|
+
@property
|
|
13852
|
+
@pulumi.getter
|
|
13853
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
13854
|
+
"""
|
|
13855
|
+
OpenSearch password
|
|
13856
|
+
"""
|
|
13857
|
+
return pulumi.get(self, "password")
|
|
13858
|
+
|
|
13859
|
+
@password.setter
|
|
13860
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
13861
|
+
pulumi.set(self, "password", value)
|
|
13862
|
+
|
|
13863
|
+
@property
|
|
13864
|
+
@pulumi.getter
|
|
13865
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
13866
|
+
"""
|
|
13867
|
+
OpenSearch server URIs.
|
|
13868
|
+
"""
|
|
13869
|
+
return pulumi.get(self, "uris")
|
|
13870
|
+
|
|
13871
|
+
@uris.setter
|
|
13872
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
13873
|
+
pulumi.set(self, "uris", value)
|
|
13874
|
+
|
|
13875
|
+
@property
|
|
13876
|
+
@pulumi.getter
|
|
13877
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
|
13878
|
+
"""
|
|
13879
|
+
OpenSearch username
|
|
13880
|
+
"""
|
|
13881
|
+
return pulumi.get(self, "username")
|
|
13882
|
+
|
|
13883
|
+
@username.setter
|
|
13884
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
|
13885
|
+
pulumi.set(self, "username", value)
|
|
13886
|
+
|
|
13277
13887
|
|
|
13278
13888
|
@pulumi.input_type
|
|
13279
13889
|
class OpenSearchOpensearchUserConfigArgs:
|
|
@@ -13315,7 +13925,7 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
13315
13925
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpenidArgs'] openid: OpenSearch OpenID Connect Configuration
|
|
13316
13926
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchArgs'] opensearch: OpenSearch settings
|
|
13317
13927
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDashboardsArgs'] opensearch_dashboards: OpenSearch Dashboards settings
|
|
13318
|
-
:param pulumi.Input[str] opensearch_version: OpenSearch major version.
|
|
13928
|
+
:param pulumi.Input[str] opensearch_version: Enum: `1`, `2`. OpenSearch major version.
|
|
13319
13929
|
:param pulumi.Input['OpenSearchOpensearchUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
13320
13930
|
:param pulumi.Input['OpenSearchOpensearchUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
13321
13931
|
:param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
|
|
@@ -13539,7 +14149,7 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
13539
14149
|
@pulumi.getter(name="opensearchVersion")
|
|
13540
14150
|
def opensearch_version(self) -> Optional[pulumi.Input[str]]:
|
|
13541
14151
|
"""
|
|
13542
|
-
OpenSearch major version.
|
|
14152
|
+
Enum: `1`, `2`. OpenSearch major version.
|
|
13543
14153
|
"""
|
|
13544
14154
|
return pulumi.get(self, "opensearch_version")
|
|
13545
14155
|
|
|
@@ -13665,7 +14275,7 @@ class OpenSearchOpensearchUserConfigIndexPatternArgs:
|
|
|
13665
14275
|
"""
|
|
13666
14276
|
:param pulumi.Input[int] max_index_count: Maximum number of indexes to keep.
|
|
13667
14277
|
:param pulumi.Input[str] pattern: fnmatch pattern.
|
|
13668
|
-
:param pulumi.Input[str] sorting_algorithm: Deletion sorting algorithm. The default value is `creation_date`.
|
|
14278
|
+
:param pulumi.Input[str] sorting_algorithm: Enum: `alphabetical`, `creation_date`. Deletion sorting algorithm. The default value is `creation_date`.
|
|
13669
14279
|
"""
|
|
13670
14280
|
pulumi.set(__self__, "max_index_count", max_index_count)
|
|
13671
14281
|
pulumi.set(__self__, "pattern", pattern)
|
|
@@ -13700,7 +14310,7 @@ class OpenSearchOpensearchUserConfigIndexPatternArgs:
|
|
|
13700
14310
|
@pulumi.getter(name="sortingAlgorithm")
|
|
13701
14311
|
def sorting_algorithm(self) -> Optional[pulumi.Input[str]]:
|
|
13702
14312
|
"""
|
|
13703
|
-
Deletion sorting algorithm. The default value is `creation_date`.
|
|
14313
|
+
Enum: `alphabetical`, `creation_date`. Deletion sorting algorithm. The default value is `creation_date`.
|
|
13704
14314
|
"""
|
|
13705
14315
|
return pulumi.get(self, "sorting_algorithm")
|
|
13706
14316
|
|
|
@@ -14723,12 +15333,12 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
|
|
|
14723
15333
|
type: Optional[pulumi.Input[str]] = None):
|
|
14724
15334
|
"""
|
|
14725
15335
|
:param pulumi.Input[int] allowed_tries: The number of login attempts allowed before login is blocked.
|
|
14726
|
-
:param pulumi.Input[str] authentication_backend: internal*authentication*backend*limiting.authentication*backend.
|
|
15336
|
+
:param pulumi.Input[str] authentication_backend: Enum: `internal`. internal*authentication*backend*limiting.authentication*backend.
|
|
14727
15337
|
:param pulumi.Input[int] block_expiry_seconds: The duration of time that login remains blocked after a failed login.
|
|
14728
15338
|
:param pulumi.Input[int] max_blocked_clients: internal*authentication*backend*limiting.max*blocked_clients.
|
|
14729
15339
|
:param pulumi.Input[int] max_tracked_clients: The maximum number of tracked IP addresses that have failed login.
|
|
14730
15340
|
:param pulumi.Input[int] time_window_seconds: The window of time in which the value for `allowed_tries` is enforced.
|
|
14731
|
-
:param pulumi.Input[str] type: internal*authentication*backend_limiting.type.
|
|
15341
|
+
:param pulumi.Input[str] type: Enum: `username`. internal*authentication*backend_limiting.type.
|
|
14732
15342
|
"""
|
|
14733
15343
|
if allowed_tries is not None:
|
|
14734
15344
|
pulumi.set(__self__, "allowed_tries", allowed_tries)
|
|
@@ -14761,7 +15371,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
|
|
|
14761
15371
|
@pulumi.getter(name="authenticationBackend")
|
|
14762
15372
|
def authentication_backend(self) -> Optional[pulumi.Input[str]]:
|
|
14763
15373
|
"""
|
|
14764
|
-
internal*authentication*backend*limiting.authentication*backend.
|
|
15374
|
+
Enum: `internal`. internal*authentication*backend*limiting.authentication*backend.
|
|
14765
15375
|
"""
|
|
14766
15376
|
return pulumi.get(self, "authentication_backend")
|
|
14767
15377
|
|
|
@@ -14821,7 +15431,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
|
|
|
14821
15431
|
@pulumi.getter
|
|
14822
15432
|
def type(self) -> Optional[pulumi.Input[str]]:
|
|
14823
15433
|
"""
|
|
14824
|
-
internal*authentication*backend_limiting.type.
|
|
15434
|
+
Enum: `username`. internal*authentication*backend_limiting.type.
|
|
14825
15435
|
"""
|
|
14826
15436
|
return pulumi.get(self, "type")
|
|
14827
15437
|
|
|
@@ -14845,7 +15455,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
|
|
|
14845
15455
|
:param pulumi.Input[int] max_blocked_clients: The maximum number of blocked IP addresses.
|
|
14846
15456
|
:param pulumi.Input[int] max_tracked_clients: The maximum number of tracked IP addresses that have failed login.
|
|
14847
15457
|
:param pulumi.Input[int] time_window_seconds: The window of time in which the value for `allowed_tries` is enforced.
|
|
14848
|
-
:param pulumi.Input[str] type: The type of rate limiting.
|
|
15458
|
+
:param pulumi.Input[str] type: Enum: `ip`. The type of rate limiting.
|
|
14849
15459
|
"""
|
|
14850
15460
|
if allowed_tries is not None:
|
|
14851
15461
|
pulumi.set(__self__, "allowed_tries", allowed_tries)
|
|
@@ -14924,7 +15534,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
|
|
|
14924
15534
|
@pulumi.getter
|
|
14925
15535
|
def type(self) -> Optional[pulumi.Input[str]]:
|
|
14926
15536
|
"""
|
|
14927
|
-
The type of rate limiting.
|
|
15537
|
+
Enum: `ip`. The type of rate limiting.
|
|
14928
15538
|
"""
|
|
14929
15539
|
return pulumi.get(self, "type")
|
|
14930
15540
|
|
|
@@ -15857,32 +16467,46 @@ class PgComponentArgs:
|
|
|
15857
16467
|
@pulumi.input_type
|
|
15858
16468
|
class PgPgArgs:
|
|
15859
16469
|
def __init__(__self__, *,
|
|
16470
|
+
bouncer: Optional[pulumi.Input[str]] = None,
|
|
15860
16471
|
dbname: Optional[pulumi.Input[str]] = None,
|
|
15861
16472
|
host: Optional[pulumi.Input[str]] = None,
|
|
15862
16473
|
max_connections: Optional[pulumi.Input[int]] = None,
|
|
16474
|
+
params: Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]] = None,
|
|
15863
16475
|
password: Optional[pulumi.Input[str]] = None,
|
|
15864
16476
|
port: Optional[pulumi.Input[int]] = None,
|
|
15865
16477
|
replica_uri: Optional[pulumi.Input[str]] = None,
|
|
15866
16478
|
sslmode: Optional[pulumi.Input[str]] = None,
|
|
16479
|
+
standby_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
16480
|
+
syncing_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
15867
16481
|
uri: Optional[pulumi.Input[str]] = None,
|
|
16482
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
15868
16483
|
user: Optional[pulumi.Input[str]] = None):
|
|
15869
16484
|
"""
|
|
16485
|
+
:param pulumi.Input[str] bouncer: Bouncer connection details
|
|
15870
16486
|
:param pulumi.Input[str] dbname: Primary PostgreSQL database name
|
|
15871
16487
|
:param pulumi.Input[str] host: PostgreSQL master node host IP or name
|
|
15872
16488
|
:param pulumi.Input[int] max_connections: Connection limit
|
|
16489
|
+
:param pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]] params: PostgreSQL connection parameters
|
|
15873
16490
|
:param pulumi.Input[str] password: PostgreSQL admin user password
|
|
15874
16491
|
:param pulumi.Input[int] port: PostgreSQL port
|
|
15875
16492
|
:param pulumi.Input[str] replica_uri: PostgreSQL replica URI for services with a replica
|
|
15876
16493
|
:param pulumi.Input[str] sslmode: PostgreSQL sslmode setting (currently always "require")
|
|
16494
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uris: PostgreSQL standby connection URIs
|
|
16495
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] syncing_uris: PostgreSQL syncing connection URIs
|
|
15877
16496
|
:param pulumi.Input[str] uri: PostgreSQL master connection URI
|
|
16497
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: PostgreSQL master connection URIs
|
|
15878
16498
|
:param pulumi.Input[str] user: PostgreSQL admin user name
|
|
15879
16499
|
"""
|
|
16500
|
+
if bouncer is not None:
|
|
16501
|
+
pulumi.set(__self__, "bouncer", bouncer)
|
|
15880
16502
|
if dbname is not None:
|
|
15881
16503
|
pulumi.set(__self__, "dbname", dbname)
|
|
15882
16504
|
if host is not None:
|
|
15883
16505
|
pulumi.set(__self__, "host", host)
|
|
15884
16506
|
if max_connections is not None:
|
|
15885
16507
|
pulumi.set(__self__, "max_connections", max_connections)
|
|
16508
|
+
if params is not None:
|
|
16509
|
+
pulumi.set(__self__, "params", params)
|
|
15886
16510
|
if password is not None:
|
|
15887
16511
|
pulumi.set(__self__, "password", password)
|
|
15888
16512
|
if port is not None:
|
|
@@ -15891,11 +16515,29 @@ class PgPgArgs:
|
|
|
15891
16515
|
pulumi.set(__self__, "replica_uri", replica_uri)
|
|
15892
16516
|
if sslmode is not None:
|
|
15893
16517
|
pulumi.set(__self__, "sslmode", sslmode)
|
|
16518
|
+
if standby_uris is not None:
|
|
16519
|
+
pulumi.set(__self__, "standby_uris", standby_uris)
|
|
16520
|
+
if syncing_uris is not None:
|
|
16521
|
+
pulumi.set(__self__, "syncing_uris", syncing_uris)
|
|
15894
16522
|
if uri is not None:
|
|
15895
16523
|
pulumi.set(__self__, "uri", uri)
|
|
16524
|
+
if uris is not None:
|
|
16525
|
+
pulumi.set(__self__, "uris", uris)
|
|
15896
16526
|
if user is not None:
|
|
15897
16527
|
pulumi.set(__self__, "user", user)
|
|
15898
16528
|
|
|
16529
|
+
@property
|
|
16530
|
+
@pulumi.getter
|
|
16531
|
+
def bouncer(self) -> Optional[pulumi.Input[str]]:
|
|
16532
|
+
"""
|
|
16533
|
+
Bouncer connection details
|
|
16534
|
+
"""
|
|
16535
|
+
return pulumi.get(self, "bouncer")
|
|
16536
|
+
|
|
16537
|
+
@bouncer.setter
|
|
16538
|
+
def bouncer(self, value: Optional[pulumi.Input[str]]):
|
|
16539
|
+
pulumi.set(self, "bouncer", value)
|
|
16540
|
+
|
|
15899
16541
|
@property
|
|
15900
16542
|
@pulumi.getter
|
|
15901
16543
|
def dbname(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -15932,6 +16574,18 @@ class PgPgArgs:
|
|
|
15932
16574
|
def max_connections(self, value: Optional[pulumi.Input[int]]):
|
|
15933
16575
|
pulumi.set(self, "max_connections", value)
|
|
15934
16576
|
|
|
16577
|
+
@property
|
|
16578
|
+
@pulumi.getter
|
|
16579
|
+
def params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]]:
|
|
16580
|
+
"""
|
|
16581
|
+
PostgreSQL connection parameters
|
|
16582
|
+
"""
|
|
16583
|
+
return pulumi.get(self, "params")
|
|
16584
|
+
|
|
16585
|
+
@params.setter
|
|
16586
|
+
def params(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]]):
|
|
16587
|
+
pulumi.set(self, "params", value)
|
|
16588
|
+
|
|
15935
16589
|
@property
|
|
15936
16590
|
@pulumi.getter
|
|
15937
16591
|
def password(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -15980,6 +16634,30 @@ class PgPgArgs:
|
|
|
15980
16634
|
def sslmode(self, value: Optional[pulumi.Input[str]]):
|
|
15981
16635
|
pulumi.set(self, "sslmode", value)
|
|
15982
16636
|
|
|
16637
|
+
@property
|
|
16638
|
+
@pulumi.getter(name="standbyUris")
|
|
16639
|
+
def standby_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
16640
|
+
"""
|
|
16641
|
+
PostgreSQL standby connection URIs
|
|
16642
|
+
"""
|
|
16643
|
+
return pulumi.get(self, "standby_uris")
|
|
16644
|
+
|
|
16645
|
+
@standby_uris.setter
|
|
16646
|
+
def standby_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
16647
|
+
pulumi.set(self, "standby_uris", value)
|
|
16648
|
+
|
|
16649
|
+
@property
|
|
16650
|
+
@pulumi.getter(name="syncingUris")
|
|
16651
|
+
def syncing_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
16652
|
+
"""
|
|
16653
|
+
PostgreSQL syncing connection URIs
|
|
16654
|
+
"""
|
|
16655
|
+
return pulumi.get(self, "syncing_uris")
|
|
16656
|
+
|
|
16657
|
+
@syncing_uris.setter
|
|
16658
|
+
def syncing_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
16659
|
+
pulumi.set(self, "syncing_uris", value)
|
|
16660
|
+
|
|
15983
16661
|
@property
|
|
15984
16662
|
@pulumi.getter
|
|
15985
16663
|
def uri(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -15992,6 +16670,121 @@ class PgPgArgs:
|
|
|
15992
16670
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
|
15993
16671
|
pulumi.set(self, "uri", value)
|
|
15994
16672
|
|
|
16673
|
+
@property
|
|
16674
|
+
@pulumi.getter
|
|
16675
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
16676
|
+
"""
|
|
16677
|
+
PostgreSQL master connection URIs
|
|
16678
|
+
"""
|
|
16679
|
+
return pulumi.get(self, "uris")
|
|
16680
|
+
|
|
16681
|
+
@uris.setter
|
|
16682
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
16683
|
+
pulumi.set(self, "uris", value)
|
|
16684
|
+
|
|
16685
|
+
@property
|
|
16686
|
+
@pulumi.getter
|
|
16687
|
+
def user(self) -> Optional[pulumi.Input[str]]:
|
|
16688
|
+
"""
|
|
16689
|
+
PostgreSQL admin user name
|
|
16690
|
+
"""
|
|
16691
|
+
return pulumi.get(self, "user")
|
|
16692
|
+
|
|
16693
|
+
@user.setter
|
|
16694
|
+
def user(self, value: Optional[pulumi.Input[str]]):
|
|
16695
|
+
pulumi.set(self, "user", value)
|
|
16696
|
+
|
|
16697
|
+
|
|
16698
|
+
@pulumi.input_type
|
|
16699
|
+
class PgPgParamArgs:
|
|
16700
|
+
def __init__(__self__, *,
|
|
16701
|
+
database_name: Optional[pulumi.Input[str]] = None,
|
|
16702
|
+
host: Optional[pulumi.Input[str]] = None,
|
|
16703
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
16704
|
+
port: Optional[pulumi.Input[int]] = None,
|
|
16705
|
+
sslmode: Optional[pulumi.Input[str]] = None,
|
|
16706
|
+
user: Optional[pulumi.Input[str]] = None):
|
|
16707
|
+
"""
|
|
16708
|
+
:param pulumi.Input[str] database_name: Primary PostgreSQL database name
|
|
16709
|
+
:param pulumi.Input[str] host: PostgreSQL host IP or name
|
|
16710
|
+
:param pulumi.Input[str] password: PostgreSQL admin user password
|
|
16711
|
+
:param pulumi.Input[int] port: PostgreSQL port
|
|
16712
|
+
:param pulumi.Input[str] sslmode: PostgreSQL sslmode setting (currently always "require")
|
|
16713
|
+
:param pulumi.Input[str] user: PostgreSQL admin user name
|
|
16714
|
+
"""
|
|
16715
|
+
if database_name is not None:
|
|
16716
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
16717
|
+
if host is not None:
|
|
16718
|
+
pulumi.set(__self__, "host", host)
|
|
16719
|
+
if password is not None:
|
|
16720
|
+
pulumi.set(__self__, "password", password)
|
|
16721
|
+
if port is not None:
|
|
16722
|
+
pulumi.set(__self__, "port", port)
|
|
16723
|
+
if sslmode is not None:
|
|
16724
|
+
pulumi.set(__self__, "sslmode", sslmode)
|
|
16725
|
+
if user is not None:
|
|
16726
|
+
pulumi.set(__self__, "user", user)
|
|
16727
|
+
|
|
16728
|
+
@property
|
|
16729
|
+
@pulumi.getter(name="databaseName")
|
|
16730
|
+
def database_name(self) -> Optional[pulumi.Input[str]]:
|
|
16731
|
+
"""
|
|
16732
|
+
Primary PostgreSQL database name
|
|
16733
|
+
"""
|
|
16734
|
+
return pulumi.get(self, "database_name")
|
|
16735
|
+
|
|
16736
|
+
@database_name.setter
|
|
16737
|
+
def database_name(self, value: Optional[pulumi.Input[str]]):
|
|
16738
|
+
pulumi.set(self, "database_name", value)
|
|
16739
|
+
|
|
16740
|
+
@property
|
|
16741
|
+
@pulumi.getter
|
|
16742
|
+
def host(self) -> Optional[pulumi.Input[str]]:
|
|
16743
|
+
"""
|
|
16744
|
+
PostgreSQL host IP or name
|
|
16745
|
+
"""
|
|
16746
|
+
return pulumi.get(self, "host")
|
|
16747
|
+
|
|
16748
|
+
@host.setter
|
|
16749
|
+
def host(self, value: Optional[pulumi.Input[str]]):
|
|
16750
|
+
pulumi.set(self, "host", value)
|
|
16751
|
+
|
|
16752
|
+
@property
|
|
16753
|
+
@pulumi.getter
|
|
16754
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
16755
|
+
"""
|
|
16756
|
+
PostgreSQL admin user password
|
|
16757
|
+
"""
|
|
16758
|
+
return pulumi.get(self, "password")
|
|
16759
|
+
|
|
16760
|
+
@password.setter
|
|
16761
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
16762
|
+
pulumi.set(self, "password", value)
|
|
16763
|
+
|
|
16764
|
+
@property
|
|
16765
|
+
@pulumi.getter
|
|
16766
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
|
16767
|
+
"""
|
|
16768
|
+
PostgreSQL port
|
|
16769
|
+
"""
|
|
16770
|
+
return pulumi.get(self, "port")
|
|
16771
|
+
|
|
16772
|
+
@port.setter
|
|
16773
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
|
16774
|
+
pulumi.set(self, "port", value)
|
|
16775
|
+
|
|
16776
|
+
@property
|
|
16777
|
+
@pulumi.getter
|
|
16778
|
+
def sslmode(self) -> Optional[pulumi.Input[str]]:
|
|
16779
|
+
"""
|
|
16780
|
+
PostgreSQL sslmode setting (currently always "require")
|
|
16781
|
+
"""
|
|
16782
|
+
return pulumi.get(self, "sslmode")
|
|
16783
|
+
|
|
16784
|
+
@sslmode.setter
|
|
16785
|
+
def sslmode(self, value: Optional[pulumi.Input[str]]):
|
|
16786
|
+
pulumi.set(self, "sslmode", value)
|
|
16787
|
+
|
|
15995
16788
|
@property
|
|
15996
16789
|
@pulumi.getter
|
|
15997
16790
|
def user(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -16056,7 +16849,7 @@ class PgPgUserConfigArgs:
|
|
|
16056
16849
|
:param pulumi.Input[bool] pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
16057
16850
|
:param pulumi.Input[str] pg_service_to_fork_from: Name of the PG Service from which to fork (deprecated, use service*to*fork_from). This has effect only when a new service is being created.
|
|
16058
16851
|
:param pulumi.Input[bool] pg_stat_monitor_enable: Enable the pg*stat*monitor extension. Enabling this extension will cause the cluster to be restarted.When this extension is enabled, pg*stat*statements results for utility commands are unreliable. The default value is `false`.
|
|
16059
|
-
:param pulumi.Input[str] pg_version: PostgreSQL major version.
|
|
16852
|
+
:param pulumi.Input[str] pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`. PostgreSQL major version.
|
|
16060
16853
|
:param pulumi.Input['PgPgUserConfigPgauditArgs'] pgaudit: System-wide settings for the pgaudit extension
|
|
16061
16854
|
:param pulumi.Input['PgPgUserConfigPgbouncerArgs'] pgbouncer: PGBouncer connection pooling settings
|
|
16062
16855
|
:param pulumi.Input['PgPgUserConfigPglookoutArgs'] pglookout: System-wide settings for pglookout
|
|
@@ -16069,9 +16862,9 @@ class PgPgUserConfigArgs:
|
|
|
16069
16862
|
:param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
|
|
16070
16863
|
:param pulumi.Input[float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
|
|
16071
16864
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
16072
|
-
:param pulumi.Input[str] synchronous_replication: Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
16865
|
+
:param pulumi.Input[str] synchronous_replication: Enum: `quorum`, `off`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
16073
16866
|
:param pulumi.Input['PgPgUserConfigTimescaledbArgs'] timescaledb: System-wide settings for the timescaledb extension
|
|
16074
|
-
:param pulumi.Input[str] variant: Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
16867
|
+
:param pulumi.Input[str] variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
16075
16868
|
:param pulumi.Input[int] work_mem: Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB).
|
|
16076
16869
|
"""
|
|
16077
16870
|
if additional_backup_regions is not None:
|
|
@@ -16335,7 +17128,7 @@ class PgPgUserConfigArgs:
|
|
|
16335
17128
|
@pulumi.getter(name="pgVersion")
|
|
16336
17129
|
def pg_version(self) -> Optional[pulumi.Input[str]]:
|
|
16337
17130
|
"""
|
|
16338
|
-
PostgreSQL major version.
|
|
17131
|
+
Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`. PostgreSQL major version.
|
|
16339
17132
|
"""
|
|
16340
17133
|
return pulumi.get(self, "pg_version")
|
|
16341
17134
|
|
|
@@ -16491,7 +17284,7 @@ class PgPgUserConfigArgs:
|
|
|
16491
17284
|
@pulumi.getter(name="synchronousReplication")
|
|
16492
17285
|
def synchronous_replication(self) -> Optional[pulumi.Input[str]]:
|
|
16493
17286
|
"""
|
|
16494
|
-
Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
17287
|
+
Enum: `quorum`, `off`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
16495
17288
|
"""
|
|
16496
17289
|
return pulumi.get(self, "synchronous_replication")
|
|
16497
17290
|
|
|
@@ -16515,7 +17308,7 @@ class PgPgUserConfigArgs:
|
|
|
16515
17308
|
@pulumi.getter
|
|
16516
17309
|
def variant(self) -> Optional[pulumi.Input[str]]:
|
|
16517
17310
|
"""
|
|
16518
|
-
Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
17311
|
+
Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
16519
17312
|
"""
|
|
16520
17313
|
return pulumi.get(self, "variant")
|
|
16521
17314
|
|
|
@@ -16590,7 +17383,7 @@ class PgPgUserConfigMigrationArgs:
|
|
|
16590
17383
|
:param pulumi.Input[int] port: Port number of the server where to migrate data from.
|
|
16591
17384
|
:param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
|
|
16592
17385
|
:param pulumi.Input[str] ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
|
|
16593
|
-
:param pulumi.Input[str] method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
17386
|
+
:param pulumi.Input[str] method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
16594
17387
|
:param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
|
|
16595
17388
|
:param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
|
|
16596
17389
|
:param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
|
|
@@ -16662,7 +17455,7 @@ class PgPgUserConfigMigrationArgs:
|
|
|
16662
17455
|
@pulumi.getter
|
|
16663
17456
|
def method(self) -> Optional[pulumi.Input[str]]:
|
|
16664
17457
|
"""
|
|
16665
|
-
The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
17458
|
+
Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
16666
17459
|
"""
|
|
16667
17460
|
return pulumi.get(self, "method")
|
|
16668
17461
|
|
|
@@ -16774,12 +17567,12 @@ class PgPgUserConfigPgArgs:
|
|
|
16774
17567
|
:param pulumi.Input[int] bgwriter_lru_maxpages: In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100.
|
|
16775
17568
|
:param pulumi.Input[float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter*lru*multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter*lru*maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
|
|
16776
17569
|
:param pulumi.Input[int] deadlock_timeout: This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
|
|
16777
|
-
:param pulumi.Input[str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
17570
|
+
:param pulumi.Input[str] default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
16778
17571
|
:param pulumi.Input[int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
|
|
16779
17572
|
:param pulumi.Input[bool] jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
16780
17573
|
:param pulumi.Input[int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
|
|
16781
|
-
:param pulumi.Input[str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged.
|
|
16782
|
-
:param pulumi.Input[str] log_line_prefix: Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
|
|
17574
|
+
:param pulumi.Input[str] log_error_verbosity: Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
|
|
17575
|
+
:param pulumi.Input[str] log_line_prefix: Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
|
|
16783
17576
|
:param pulumi.Input[int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
16784
17577
|
:param pulumi.Input[int] log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
16785
17578
|
:param pulumi.Input[int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
@@ -16800,13 +17593,13 @@ class PgPgUserConfigPgArgs:
|
|
|
16800
17593
|
:param pulumi.Input[str] pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks.
|
|
16801
17594
|
:param pulumi.Input[bool] pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring.
|
|
16802
17595
|
:param pulumi.Input[int] pg_stat_monitor_dot_pgsm_max_buckets: Sets the maximum number of buckets.
|
|
16803
|
-
:param pulumi.Input[str] pg_stat_statements_dot_track: Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
|
|
17596
|
+
:param pulumi.Input[str] pg_stat_statements_dot_track: Enum: `all`, `top`, `none`. Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
|
|
16804
17597
|
:param pulumi.Input[int] temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited.
|
|
16805
17598
|
:param pulumi.Input[str] timezone: PostgreSQL service timezone.
|
|
16806
17599
|
:param pulumi.Input[int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
|
|
16807
|
-
:param pulumi.Input[str] track_commit_timestamp: Record commit time of transactions.
|
|
16808
|
-
:param pulumi.Input[str] track_functions: Enables tracking of function call counts and time used.
|
|
16809
|
-
:param pulumi.Input[str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
|
|
17600
|
+
:param pulumi.Input[str] track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
|
|
17601
|
+
:param pulumi.Input[str] track_functions: Enum: `all`, `pl`, `none`. Enables tracking of function call counts and time used.
|
|
17602
|
+
:param pulumi.Input[str] track_io_timing: Enum: `off`, `on`. Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
|
|
16810
17603
|
:param pulumi.Input[int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout.
|
|
16811
17604
|
:param pulumi.Input[int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance.
|
|
16812
17605
|
"""
|
|
@@ -17081,7 +17874,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17081
17874
|
@pulumi.getter(name="defaultToastCompression")
|
|
17082
17875
|
def default_toast_compression(self) -> Optional[pulumi.Input[str]]:
|
|
17083
17876
|
"""
|
|
17084
|
-
Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
17877
|
+
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
17085
17878
|
"""
|
|
17086
17879
|
return pulumi.get(self, "default_toast_compression")
|
|
17087
17880
|
|
|
@@ -17129,7 +17922,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17129
17922
|
@pulumi.getter(name="logErrorVerbosity")
|
|
17130
17923
|
def log_error_verbosity(self) -> Optional[pulumi.Input[str]]:
|
|
17131
17924
|
"""
|
|
17132
|
-
Controls the amount of detail written in the server log for each message that is logged.
|
|
17925
|
+
Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
|
|
17133
17926
|
"""
|
|
17134
17927
|
return pulumi.get(self, "log_error_verbosity")
|
|
17135
17928
|
|
|
@@ -17141,7 +17934,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17141
17934
|
@pulumi.getter(name="logLinePrefix")
|
|
17142
17935
|
def log_line_prefix(self) -> Optional[pulumi.Input[str]]:
|
|
17143
17936
|
"""
|
|
17144
|
-
Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
|
|
17937
|
+
Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
|
|
17145
17938
|
"""
|
|
17146
17939
|
return pulumi.get(self, "log_line_prefix")
|
|
17147
17940
|
|
|
@@ -17393,7 +18186,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17393
18186
|
@pulumi.getter(name="pgStatStatementsDotTrack")
|
|
17394
18187
|
def pg_stat_statements_dot_track(self) -> Optional[pulumi.Input[str]]:
|
|
17395
18188
|
"""
|
|
17396
|
-
Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
|
|
18189
|
+
Enum: `all`, `top`, `none`. Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
|
|
17397
18190
|
"""
|
|
17398
18191
|
return pulumi.get(self, "pg_stat_statements_dot_track")
|
|
17399
18192
|
|
|
@@ -17441,7 +18234,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17441
18234
|
@pulumi.getter(name="trackCommitTimestamp")
|
|
17442
18235
|
def track_commit_timestamp(self) -> Optional[pulumi.Input[str]]:
|
|
17443
18236
|
"""
|
|
17444
|
-
Record commit time of transactions.
|
|
18237
|
+
Enum: `off`, `on`. Record commit time of transactions.
|
|
17445
18238
|
"""
|
|
17446
18239
|
return pulumi.get(self, "track_commit_timestamp")
|
|
17447
18240
|
|
|
@@ -17453,7 +18246,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17453
18246
|
@pulumi.getter(name="trackFunctions")
|
|
17454
18247
|
def track_functions(self) -> Optional[pulumi.Input[str]]:
|
|
17455
18248
|
"""
|
|
17456
|
-
Enables tracking of function call counts and time used.
|
|
18249
|
+
Enum: `all`, `pl`, `none`. Enables tracking of function call counts and time used.
|
|
17457
18250
|
"""
|
|
17458
18251
|
return pulumi.get(self, "track_functions")
|
|
17459
18252
|
|
|
@@ -17465,7 +18258,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17465
18258
|
@pulumi.getter(name="trackIoTiming")
|
|
17466
18259
|
def track_io_timing(self) -> Optional[pulumi.Input[str]]:
|
|
17467
18260
|
"""
|
|
17468
|
-
Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
|
|
18261
|
+
Enum: `off`, `on`. Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
|
|
17469
18262
|
"""
|
|
17470
18263
|
return pulumi.get(self, "track_io_timing")
|
|
17471
18264
|
|
|
@@ -17636,7 +18429,7 @@ class PgPgUserConfigPgauditArgs:
|
|
|
17636
18429
|
:param pulumi.Input[bool] feature_enabled: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved. The default value is `false`.
|
|
17637
18430
|
:param pulumi.Input[bool] log_catalog: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. The default value is `true`.
|
|
17638
18431
|
:param pulumi.Input[bool] log_client: Specifies whether log messages will be visible to a client process such as psql. The default value is `false`.
|
|
17639
|
-
:param pulumi.Input[str] log_level: Specifies the log level that will be used for log entries. The default value is `log`.
|
|
18432
|
+
:param pulumi.Input[str] log_level: Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `notice`, `warning`, `log`. Specifies the log level that will be used for log entries. The default value is `log`.
|
|
17640
18433
|
:param pulumi.Input[int] log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. The default value is `-1`.
|
|
17641
18434
|
:param pulumi.Input[bool] log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. The default value is `true`.
|
|
17642
18435
|
:param pulumi.Input[bool] log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. The default value is `false`.
|
|
@@ -17717,7 +18510,7 @@ class PgPgUserConfigPgauditArgs:
|
|
|
17717
18510
|
@pulumi.getter(name="logLevel")
|
|
17718
18511
|
def log_level(self) -> Optional[pulumi.Input[str]]:
|
|
17719
18512
|
"""
|
|
17720
|
-
Specifies the log level that will be used for log entries. The default value is `log`.
|
|
18513
|
+
Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `notice`, `warning`, `log`. Specifies the log level that will be used for log entries. The default value is `log`.
|
|
17721
18514
|
"""
|
|
17722
18515
|
return pulumi.get(self, "log_level")
|
|
17723
18516
|
|
|
@@ -17861,7 +18654,7 @@ class PgPgUserConfigPgbouncerArgs:
|
|
|
17861
18654
|
"""
|
|
17862
18655
|
:param pulumi.Input[int] autodb_idle_timeout: If the automatically created database pools have been unused this many seconds, they are freed. If 0 then timeout is disabled. (seconds). The default value is `3600`.
|
|
17863
18656
|
:param pulumi.Input[int] autodb_max_db_connections: Do not allow more than this many server connections per database (regardless of user). Setting it to 0 means unlimited.
|
|
17864
|
-
:param pulumi.Input[str] autodb_pool_mode: PGBouncer pool mode. The default value is `transaction`.
|
|
18657
|
+
:param pulumi.Input[str] autodb_pool_mode: Enum: `session`, `transaction`, `statement`. PGBouncer pool mode. The default value is `transaction`.
|
|
17865
18658
|
:param pulumi.Input[int] autodb_pool_size: If non-zero then create automatically a pool of that size per user when a pool doesn't exist. The default value is `0`.
|
|
17866
18659
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_startup_parameters: List of parameters to ignore when given in startup packet.
|
|
17867
18660
|
:param pulumi.Input[int] min_pool_size: Add more server connections to pool if below this number. Improves behavior when usual load comes suddenly back after period of total inactivity. The value is effectively capped at the pool size. The default value is `0`.
|
|
@@ -17916,7 +18709,7 @@ class PgPgUserConfigPgbouncerArgs:
|
|
|
17916
18709
|
@pulumi.getter(name="autodbPoolMode")
|
|
17917
18710
|
def autodb_pool_mode(self) -> Optional[pulumi.Input[str]]:
|
|
17918
18711
|
"""
|
|
17919
|
-
PGBouncer pool mode. The default value is `transaction`.
|
|
18712
|
+
Enum: `session`, `transaction`, `statement`. PGBouncer pool mode. The default value is `transaction`.
|
|
17920
18713
|
"""
|
|
17921
18714
|
return pulumi.get(self, "autodb_pool_mode")
|
|
17922
18715
|
|
|
@@ -18476,6 +19269,77 @@ class RedisComponentArgs:
|
|
|
18476
19269
|
pulumi.set(self, "usage", value)
|
|
18477
19270
|
|
|
18478
19271
|
|
|
19272
|
+
@pulumi.input_type
|
|
19273
|
+
class RedisRedisArgs:
|
|
19274
|
+
def __init__(__self__, *,
|
|
19275
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
19276
|
+
replica_uri: Optional[pulumi.Input[str]] = None,
|
|
19277
|
+
slave_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
19278
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
19279
|
+
"""
|
|
19280
|
+
:param pulumi.Input[str] password: Redis password.
|
|
19281
|
+
:param pulumi.Input[str] replica_uri: Redis replica server URI.
|
|
19282
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] slave_uris: Redis slave server URIs.
|
|
19283
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Redis server URIs.
|
|
19284
|
+
"""
|
|
19285
|
+
if password is not None:
|
|
19286
|
+
pulumi.set(__self__, "password", password)
|
|
19287
|
+
if replica_uri is not None:
|
|
19288
|
+
pulumi.set(__self__, "replica_uri", replica_uri)
|
|
19289
|
+
if slave_uris is not None:
|
|
19290
|
+
pulumi.set(__self__, "slave_uris", slave_uris)
|
|
19291
|
+
if uris is not None:
|
|
19292
|
+
pulumi.set(__self__, "uris", uris)
|
|
19293
|
+
|
|
19294
|
+
@property
|
|
19295
|
+
@pulumi.getter
|
|
19296
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
19297
|
+
"""
|
|
19298
|
+
Redis password.
|
|
19299
|
+
"""
|
|
19300
|
+
return pulumi.get(self, "password")
|
|
19301
|
+
|
|
19302
|
+
@password.setter
|
|
19303
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
19304
|
+
pulumi.set(self, "password", value)
|
|
19305
|
+
|
|
19306
|
+
@property
|
|
19307
|
+
@pulumi.getter(name="replicaUri")
|
|
19308
|
+
def replica_uri(self) -> Optional[pulumi.Input[str]]:
|
|
19309
|
+
"""
|
|
19310
|
+
Redis replica server URI.
|
|
19311
|
+
"""
|
|
19312
|
+
return pulumi.get(self, "replica_uri")
|
|
19313
|
+
|
|
19314
|
+
@replica_uri.setter
|
|
19315
|
+
def replica_uri(self, value: Optional[pulumi.Input[str]]):
|
|
19316
|
+
pulumi.set(self, "replica_uri", value)
|
|
19317
|
+
|
|
19318
|
+
@property
|
|
19319
|
+
@pulumi.getter(name="slaveUris")
|
|
19320
|
+
def slave_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
19321
|
+
"""
|
|
19322
|
+
Redis slave server URIs.
|
|
19323
|
+
"""
|
|
19324
|
+
return pulumi.get(self, "slave_uris")
|
|
19325
|
+
|
|
19326
|
+
@slave_uris.setter
|
|
19327
|
+
def slave_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
19328
|
+
pulumi.set(self, "slave_uris", value)
|
|
19329
|
+
|
|
19330
|
+
@property
|
|
19331
|
+
@pulumi.getter
|
|
19332
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
19333
|
+
"""
|
|
19334
|
+
Redis server URIs.
|
|
19335
|
+
"""
|
|
19336
|
+
return pulumi.get(self, "uris")
|
|
19337
|
+
|
|
19338
|
+
@uris.setter
|
|
19339
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
19340
|
+
pulumi.set(self, "uris", value)
|
|
19341
|
+
|
|
19342
|
+
|
|
18479
19343
|
@pulumi.input_type
|
|
18480
19344
|
class RedisRedisUserConfigArgs:
|
|
18481
19345
|
def __init__(__self__, *,
|
|
@@ -18515,18 +19379,18 @@ class RedisRedisUserConfigArgs:
|
|
|
18515
19379
|
:param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
|
|
18516
19380
|
:param pulumi.Input['RedisRedisUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
18517
19381
|
:param pulumi.Input[str] recovery_basebackup_name: Name of the basebackup to restore in forked service.
|
|
18518
|
-
:param pulumi.Input[str] redis_acl_channels_default: Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
|
|
19382
|
+
:param pulumi.Input[str] redis_acl_channels_default: Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
|
|
18519
19383
|
:param pulumi.Input[int] redis_io_threads: Set Redis IO thread count. Changing this will cause a restart of the Redis service.
|
|
18520
19384
|
:param pulumi.Input[int] redis_lfu_decay_time: LFU maxmemory-policy counter decay time in minutes. The default value is `1`.
|
|
18521
19385
|
:param pulumi.Input[int] redis_lfu_log_factor: Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. The default value is `10`.
|
|
18522
|
-
:param pulumi.Input[str] redis_maxmemory_policy: Redis maxmemory-policy. The default value is `noeviction`.
|
|
19386
|
+
:param pulumi.Input[str] redis_maxmemory_policy: Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Redis maxmemory-policy. The default value is `noeviction`.
|
|
18523
19387
|
:param pulumi.Input[str] redis_notify_keyspace_events: Set notify-keyspace-events option.
|
|
18524
19388
|
:param pulumi.Input[int] redis_number_of_databases: Set number of Redis databases. Changing this will cause a restart of the Redis service.
|
|
18525
|
-
:param pulumi.Input[str] redis_persistence: When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
|
|
19389
|
+
:param pulumi.Input[str] redis_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
|
|
18526
19390
|
:param pulumi.Input[int] redis_pubsub_client_output_buffer_limit: Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
|
|
18527
19391
|
:param pulumi.Input[bool] redis_ssl: Require SSL to access Redis. The default value is `true`.
|
|
18528
19392
|
:param pulumi.Input[int] redis_timeout: Redis idle connection timeout in seconds. The default value is `300`.
|
|
18529
|
-
:param pulumi.Input[str] redis_version: Redis major version.
|
|
19393
|
+
:param pulumi.Input[str] redis_version: Enum: `7.0`. Redis major version.
|
|
18530
19394
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
18531
19395
|
:param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
|
|
18532
19396
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
@@ -18712,7 +19576,7 @@ class RedisRedisUserConfigArgs:
|
|
|
18712
19576
|
@pulumi.getter(name="redisAclChannelsDefault")
|
|
18713
19577
|
def redis_acl_channels_default(self) -> Optional[pulumi.Input[str]]:
|
|
18714
19578
|
"""
|
|
18715
|
-
Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
|
|
19579
|
+
Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
|
|
18716
19580
|
"""
|
|
18717
19581
|
return pulumi.get(self, "redis_acl_channels_default")
|
|
18718
19582
|
|
|
@@ -18760,7 +19624,7 @@ class RedisRedisUserConfigArgs:
|
|
|
18760
19624
|
@pulumi.getter(name="redisMaxmemoryPolicy")
|
|
18761
19625
|
def redis_maxmemory_policy(self) -> Optional[pulumi.Input[str]]:
|
|
18762
19626
|
"""
|
|
18763
|
-
Redis maxmemory-policy. The default value is `noeviction`.
|
|
19627
|
+
Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Redis maxmemory-policy. The default value is `noeviction`.
|
|
18764
19628
|
"""
|
|
18765
19629
|
return pulumi.get(self, "redis_maxmemory_policy")
|
|
18766
19630
|
|
|
@@ -18796,7 +19660,7 @@ class RedisRedisUserConfigArgs:
|
|
|
18796
19660
|
@pulumi.getter(name="redisPersistence")
|
|
18797
19661
|
def redis_persistence(self) -> Optional[pulumi.Input[str]]:
|
|
18798
19662
|
"""
|
|
18799
|
-
When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
|
|
19663
|
+
Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
|
|
18800
19664
|
"""
|
|
18801
19665
|
return pulumi.get(self, "redis_persistence")
|
|
18802
19666
|
|
|
@@ -18844,7 +19708,7 @@ class RedisRedisUserConfigArgs:
|
|
|
18844
19708
|
@pulumi.getter(name="redisVersion")
|
|
18845
19709
|
def redis_version(self) -> Optional[pulumi.Input[str]]:
|
|
18846
19710
|
"""
|
|
18847
|
-
Redis major version.
|
|
19711
|
+
Enum: `7.0`. Redis major version.
|
|
18848
19712
|
"""
|
|
18849
19713
|
return pulumi.get(self, "redis_version")
|
|
18850
19714
|
|
|
@@ -18943,7 +19807,7 @@ class RedisRedisUserConfigMigrationArgs:
|
|
|
18943
19807
|
:param pulumi.Input[int] port: Port number of the server where to migrate data from.
|
|
18944
19808
|
:param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
|
|
18945
19809
|
:param pulumi.Input[str] ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
|
|
18946
|
-
:param pulumi.Input[str] method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
19810
|
+
:param pulumi.Input[str] method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
18947
19811
|
:param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
|
|
18948
19812
|
:param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
|
|
18949
19813
|
:param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
|
|
@@ -19015,7 +19879,7 @@ class RedisRedisUserConfigMigrationArgs:
|
|
|
19015
19879
|
@pulumi.getter
|
|
19016
19880
|
def method(self) -> Optional[pulumi.Input[str]]:
|
|
19017
19881
|
"""
|
|
19018
|
-
The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
19882
|
+
Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
19019
19883
|
"""
|
|
19020
19884
|
return pulumi.get(self, "method")
|
|
19021
19885
|
|
|
@@ -19314,13 +20178,13 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19314
20178
|
skip_broken_messages: Optional[pulumi.Input[int]] = None):
|
|
19315
20179
|
"""
|
|
19316
20180
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigTableColumnArgs']]] columns: Table columns
|
|
19317
|
-
:param pulumi.Input[str] data_format: Message data format. The default value is `JSONEachRow`.
|
|
20181
|
+
:param pulumi.Input[str] data_format: Enum: `Avro`, `CSV`, `JSONAsString`, `JSONCompactEachRow`, `JSONCompactStringsEachRow`, `JSONEachRow`, `JSONStringsEachRow`, `MsgPack`, `TSKV`, `TSV`, `TabSeparated`, `RawBLOB`, `AvroConfluent`. Message data format. The default value is `JSONEachRow`.
|
|
19318
20182
|
:param pulumi.Input[str] group_name: Kafka consumers group. The default value is `clickhouse`.
|
|
19319
20183
|
:param pulumi.Input[str] name: Name of the table.
|
|
19320
20184
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigTableTopicArgs']]] topics: Kafka topics
|
|
19321
|
-
:param pulumi.Input[str] auto_offset_reset: Action to take when there is no initial offset in offset store or the desired offset is out of range. The default value is `earliest`.
|
|
19322
|
-
:param pulumi.Input[str] date_time_input_format: Method to read DateTime from text input formats. The default value is `basic`.
|
|
19323
|
-
:param pulumi.Input[str] handle_error_mode: How to handle errors for Kafka engine. The default value is `default`.
|
|
20185
|
+
:param pulumi.Input[str] auto_offset_reset: Enum: `smallest`, `earliest`, `beginning`, `largest`, `latest`, `end`. Action to take when there is no initial offset in offset store or the desired offset is out of range. The default value is `earliest`.
|
|
20186
|
+
:param pulumi.Input[str] date_time_input_format: Enum: `basic`, `best_effort`, `best_effort_us`. Method to read DateTime from text input formats. The default value is `basic`.
|
|
20187
|
+
:param pulumi.Input[str] handle_error_mode: Enum: `default`, `stream`. How to handle errors for Kafka engine. The default value is `default`.
|
|
19324
20188
|
:param pulumi.Input[int] max_block_size: Number of row collected by poll(s) for flushing data from Kafka. The default value is `0`.
|
|
19325
20189
|
:param pulumi.Input[int] max_rows_per_message: The maximum number of rows produced in one kafka message for row-based formats. The default value is `1`.
|
|
19326
20190
|
:param pulumi.Input[int] num_consumers: The number of consumers per table per replica. The default value is `1`.
|
|
@@ -19365,7 +20229,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19365
20229
|
@pulumi.getter(name="dataFormat")
|
|
19366
20230
|
def data_format(self) -> pulumi.Input[str]:
|
|
19367
20231
|
"""
|
|
19368
|
-
Message data format. The default value is `JSONEachRow`.
|
|
20232
|
+
Enum: `Avro`, `CSV`, `JSONAsString`, `JSONCompactEachRow`, `JSONCompactStringsEachRow`, `JSONEachRow`, `JSONStringsEachRow`, `MsgPack`, `TSKV`, `TSV`, `TabSeparated`, `RawBLOB`, `AvroConfluent`. Message data format. The default value is `JSONEachRow`.
|
|
19369
20233
|
"""
|
|
19370
20234
|
return pulumi.get(self, "data_format")
|
|
19371
20235
|
|
|
@@ -19413,7 +20277,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19413
20277
|
@pulumi.getter(name="autoOffsetReset")
|
|
19414
20278
|
def auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
|
|
19415
20279
|
"""
|
|
19416
|
-
Action to take when there is no initial offset in offset store or the desired offset is out of range. The default value is `earliest`.
|
|
20280
|
+
Enum: `smallest`, `earliest`, `beginning`, `largest`, `latest`, `end`. Action to take when there is no initial offset in offset store or the desired offset is out of range. The default value is `earliest`.
|
|
19417
20281
|
"""
|
|
19418
20282
|
return pulumi.get(self, "auto_offset_reset")
|
|
19419
20283
|
|
|
@@ -19425,7 +20289,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19425
20289
|
@pulumi.getter(name="dateTimeInputFormat")
|
|
19426
20290
|
def date_time_input_format(self) -> Optional[pulumi.Input[str]]:
|
|
19427
20291
|
"""
|
|
19428
|
-
Method to read DateTime from text input formats. The default value is `basic`.
|
|
20292
|
+
Enum: `basic`, `best_effort`, `best_effort_us`. Method to read DateTime from text input formats. The default value is `basic`.
|
|
19429
20293
|
"""
|
|
19430
20294
|
return pulumi.get(self, "date_time_input_format")
|
|
19431
20295
|
|
|
@@ -19437,7 +20301,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19437
20301
|
@pulumi.getter(name="handleErrorMode")
|
|
19438
20302
|
def handle_error_mode(self) -> Optional[pulumi.Input[str]]:
|
|
19439
20303
|
"""
|
|
19440
|
-
How to handle errors for Kafka engine. The default value is `default`.
|
|
20304
|
+
Enum: `default`, `stream`. How to handle errors for Kafka engine. The default value is `default`.
|
|
19441
20305
|
"""
|
|
19442
20306
|
return pulumi.get(self, "handle_error_mode")
|
|
19443
20307
|
|
|
@@ -19631,6 +20495,7 @@ class ServiceIntegrationClickhousePostgresqlUserConfigDatabaseArgs:
|
|
|
19631
20495
|
class ServiceIntegrationDatadogUserConfigArgs:
|
|
19632
20496
|
def __init__(__self__, *,
|
|
19633
20497
|
datadog_dbm_enabled: Optional[pulumi.Input[bool]] = None,
|
|
20498
|
+
datadog_pgbouncer_enabled: Optional[pulumi.Input[bool]] = None,
|
|
19634
20499
|
datadog_tags: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]]] = None,
|
|
19635
20500
|
exclude_consumer_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
19636
20501
|
exclude_topics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -19642,6 +20507,7 @@ class ServiceIntegrationDatadogUserConfigArgs:
|
|
|
19642
20507
|
redis: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigRedisArgs']] = None):
|
|
19643
20508
|
"""
|
|
19644
20509
|
:param pulumi.Input[bool] datadog_dbm_enabled: Enable Datadog Database Monitoring.
|
|
20510
|
+
:param pulumi.Input[bool] datadog_pgbouncer_enabled: Enable Datadog PgBouncer Metric Tracking.
|
|
19645
20511
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]] datadog_tags: Custom tags provided by user
|
|
19646
20512
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_consumer_groups: List of custom metrics.
|
|
19647
20513
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_topics: List of topics to exclude.
|
|
@@ -19654,6 +20520,8 @@ class ServiceIntegrationDatadogUserConfigArgs:
|
|
|
19654
20520
|
"""
|
|
19655
20521
|
if datadog_dbm_enabled is not None:
|
|
19656
20522
|
pulumi.set(__self__, "datadog_dbm_enabled", datadog_dbm_enabled)
|
|
20523
|
+
if datadog_pgbouncer_enabled is not None:
|
|
20524
|
+
pulumi.set(__self__, "datadog_pgbouncer_enabled", datadog_pgbouncer_enabled)
|
|
19657
20525
|
if datadog_tags is not None:
|
|
19658
20526
|
pulumi.set(__self__, "datadog_tags", datadog_tags)
|
|
19659
20527
|
if exclude_consumer_groups is not None:
|
|
@@ -19685,6 +20553,18 @@ class ServiceIntegrationDatadogUserConfigArgs:
|
|
|
19685
20553
|
def datadog_dbm_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
19686
20554
|
pulumi.set(self, "datadog_dbm_enabled", value)
|
|
19687
20555
|
|
|
20556
|
+
@property
|
|
20557
|
+
@pulumi.getter(name="datadogPgbouncerEnabled")
|
|
20558
|
+
def datadog_pgbouncer_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
20559
|
+
"""
|
|
20560
|
+
Enable Datadog PgBouncer Metric Tracking.
|
|
20561
|
+
"""
|
|
20562
|
+
return pulumi.get(self, "datadog_pgbouncer_enabled")
|
|
20563
|
+
|
|
20564
|
+
@datadog_pgbouncer_enabled.setter
|
|
20565
|
+
def datadog_pgbouncer_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
20566
|
+
pulumi.set(self, "datadog_pgbouncer_enabled", value)
|
|
20567
|
+
|
|
19688
20568
|
@property
|
|
19689
20569
|
@pulumi.getter(name="datadogTags")
|
|
19690
20570
|
def datadog_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]]]:
|
|
@@ -19943,7 +20823,7 @@ class ServiceIntegrationEndpointDatadogUserConfigArgs:
|
|
|
19943
20823
|
:param pulumi.Input[int] kafka_consumer_check_instances: Number of separate instances to fetch kafka consumer statistics with.
|
|
19944
20824
|
:param pulumi.Input[int] kafka_consumer_stats_timeout: Number of seconds that datadog will wait to get consumer statistics from brokers.
|
|
19945
20825
|
:param pulumi.Input[int] max_partition_contexts: Maximum number of partition contexts to send.
|
|
19946
|
-
:param pulumi.Input[str] site: Datadog intake site. Defaults to datadoghq.com.
|
|
20826
|
+
:param pulumi.Input[str] site: Enum: `datadoghq.com`, `datadoghq.eu`, `us3.datadoghq.com`, `us5.datadoghq.com`, `ddog-gov.com`, `ap1.datadoghq.com`. Datadog intake site. Defaults to datadoghq.com.
|
|
19947
20827
|
"""
|
|
19948
20828
|
pulumi.set(__self__, "datadog_api_key", datadog_api_key)
|
|
19949
20829
|
if datadog_tags is not None:
|
|
@@ -20035,7 +20915,7 @@ class ServiceIntegrationEndpointDatadogUserConfigArgs:
|
|
|
20035
20915
|
@pulumi.getter
|
|
20036
20916
|
def site(self) -> Optional[pulumi.Input[str]]:
|
|
20037
20917
|
"""
|
|
20038
|
-
Datadog intake site. Defaults to datadoghq.com.
|
|
20918
|
+
Enum: `datadoghq.com`, `datadoghq.eu`, `us3.datadoghq.com`, `us5.datadoghq.com`, `ddog-gov.com`, `ap1.datadoghq.com`. Datadog intake site. Defaults to datadoghq.com.
|
|
20039
20919
|
"""
|
|
20040
20920
|
return pulumi.get(self, "site")
|
|
20041
20921
|
|
|
@@ -20405,14 +21285,14 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
20405
21285
|
ssl_endpoint_identification_algorithm: Optional[pulumi.Input[str]] = None):
|
|
20406
21286
|
"""
|
|
20407
21287
|
:param pulumi.Input[str] bootstrap_servers: Bootstrap servers.
|
|
20408
|
-
:param pulumi.Input[str] security_protocol: Security protocol.
|
|
20409
|
-
:param pulumi.Input[str] sasl_mechanism: SASL mechanism used for connections to the Kafka server.
|
|
21288
|
+
:param pulumi.Input[str] security_protocol: Enum: `PLAINTEXT`, `SSL`, `SASL_PLAINTEXT`, `SASL_SSL`. Security protocol.
|
|
21289
|
+
:param pulumi.Input[str] sasl_mechanism: Enum: `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`. SASL mechanism used for connections to the Kafka server.
|
|
20410
21290
|
:param pulumi.Input[str] sasl_plain_password: Password for SASL PLAIN mechanism in the Kafka server.
|
|
20411
21291
|
:param pulumi.Input[str] sasl_plain_username: Username for SASL PLAIN mechanism in the Kafka server.
|
|
20412
21292
|
:param pulumi.Input[str] ssl_ca_cert: PEM-encoded CA certificate.
|
|
20413
21293
|
:param pulumi.Input[str] ssl_client_cert: PEM-encoded client certificate.
|
|
20414
21294
|
:param pulumi.Input[str] ssl_client_key: PEM-encoded client key.
|
|
20415
|
-
:param pulumi.Input[str] ssl_endpoint_identification_algorithm: The endpoint identification algorithm to validate server hostname using server certificate.
|
|
21295
|
+
:param pulumi.Input[str] ssl_endpoint_identification_algorithm: Enum: `https`, ``. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
20416
21296
|
"""
|
|
20417
21297
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
|
20418
21298
|
pulumi.set(__self__, "security_protocol", security_protocol)
|
|
@@ -20447,7 +21327,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
20447
21327
|
@pulumi.getter(name="securityProtocol")
|
|
20448
21328
|
def security_protocol(self) -> pulumi.Input[str]:
|
|
20449
21329
|
"""
|
|
20450
|
-
Security protocol.
|
|
21330
|
+
Enum: `PLAINTEXT`, `SSL`, `SASL_PLAINTEXT`, `SASL_SSL`. Security protocol.
|
|
20451
21331
|
"""
|
|
20452
21332
|
return pulumi.get(self, "security_protocol")
|
|
20453
21333
|
|
|
@@ -20459,7 +21339,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
20459
21339
|
@pulumi.getter(name="saslMechanism")
|
|
20460
21340
|
def sasl_mechanism(self) -> Optional[pulumi.Input[str]]:
|
|
20461
21341
|
"""
|
|
20462
|
-
SASL mechanism used for connections to the Kafka server.
|
|
21342
|
+
Enum: `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`. SASL mechanism used for connections to the Kafka server.
|
|
20463
21343
|
"""
|
|
20464
21344
|
return pulumi.get(self, "sasl_mechanism")
|
|
20465
21345
|
|
|
@@ -20531,7 +21411,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
20531
21411
|
@pulumi.getter(name="sslEndpointIdentificationAlgorithm")
|
|
20532
21412
|
def ssl_endpoint_identification_algorithm(self) -> Optional[pulumi.Input[str]]:
|
|
20533
21413
|
"""
|
|
20534
|
-
The endpoint identification algorithm to validate server hostname using server certificate.
|
|
21414
|
+
Enum: `https`, ``. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
20535
21415
|
"""
|
|
20536
21416
|
return pulumi.get(self, "ssl_endpoint_identification_algorithm")
|
|
20537
21417
|
|
|
@@ -20645,7 +21525,7 @@ class ServiceIntegrationEndpointExternalPostgresqlArgs:
|
|
|
20645
21525
|
:param pulumi.Input[str] password: Password.
|
|
20646
21526
|
:param pulumi.Input[str] ssl_client_certificate: Client certificate.
|
|
20647
21527
|
:param pulumi.Input[str] ssl_client_key: Client key.
|
|
20648
|
-
:param pulumi.Input[str] ssl_mode: SSL Mode. The default value is `verify-full`.
|
|
21528
|
+
:param pulumi.Input[str] ssl_mode: Enum: `disable`, `allow`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL Mode. The default value is `verify-full`.
|
|
20649
21529
|
:param pulumi.Input[str] ssl_root_cert: SSL Root Cert.
|
|
20650
21530
|
"""
|
|
20651
21531
|
pulumi.set(__self__, "host", host)
|
|
@@ -20752,7 +21632,7 @@ class ServiceIntegrationEndpointExternalPostgresqlArgs:
|
|
|
20752
21632
|
@pulumi.getter(name="sslMode")
|
|
20753
21633
|
def ssl_mode(self) -> Optional[pulumi.Input[str]]:
|
|
20754
21634
|
"""
|
|
20755
|
-
SSL Mode. The default value is `verify-full`.
|
|
21635
|
+
Enum: `disable`, `allow`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL Mode. The default value is `verify-full`.
|
|
20756
21636
|
"""
|
|
20757
21637
|
return pulumi.get(self, "ssl_mode")
|
|
20758
21638
|
|
|
@@ -20781,7 +21661,7 @@ class ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs:
|
|
|
20781
21661
|
basic_auth_password: Optional[pulumi.Input[str]] = None,
|
|
20782
21662
|
basic_auth_username: Optional[pulumi.Input[str]] = None):
|
|
20783
21663
|
"""
|
|
20784
|
-
:param pulumi.Input[str] authentication: Authentication method.
|
|
21664
|
+
:param pulumi.Input[str] authentication: Enum: `none`, `basic`. Authentication method.
|
|
20785
21665
|
:param pulumi.Input[str] url: Schema Registry URL.
|
|
20786
21666
|
:param pulumi.Input[str] basic_auth_password: Basic authentication password.
|
|
20787
21667
|
:param pulumi.Input[str] basic_auth_username: Basic authentication user name.
|
|
@@ -20797,7 +21677,7 @@ class ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs:
|
|
|
20797
21677
|
@pulumi.getter
|
|
20798
21678
|
def authentication(self) -> pulumi.Input[str]:
|
|
20799
21679
|
"""
|
|
20800
|
-
Authentication method.
|
|
21680
|
+
Enum: `none`, `basic`. Authentication method.
|
|
20801
21681
|
"""
|
|
20802
21682
|
return pulumi.get(self, "authentication")
|
|
20803
21683
|
|
|
@@ -20934,7 +21814,7 @@ class ServiceIntegrationEndpointRsyslogUserConfigArgs:
|
|
|
20934
21814
|
max_message_size: Optional[pulumi.Input[int]] = None,
|
|
20935
21815
|
sd: Optional[pulumi.Input[str]] = None):
|
|
20936
21816
|
"""
|
|
20937
|
-
:param pulumi.Input[str] format: Message format. The default value is `rfc5424`.
|
|
21817
|
+
:param pulumi.Input[str] format: Enum: `rfc5424`, `rfc3164`, `custom`. Message format. The default value is `rfc5424`.
|
|
20938
21818
|
:param pulumi.Input[int] port: Rsyslog server port. The default value is `514`.
|
|
20939
21819
|
:param pulumi.Input[str] server: Rsyslog server IP address or hostname.
|
|
20940
21820
|
:param pulumi.Input[bool] tls: Require TLS. The default value is `true`.
|
|
@@ -20966,7 +21846,7 @@ class ServiceIntegrationEndpointRsyslogUserConfigArgs:
|
|
|
20966
21846
|
@pulumi.getter
|
|
20967
21847
|
def format(self) -> pulumi.Input[str]:
|
|
20968
21848
|
"""
|
|
20969
|
-
Message format. The default value is `rfc5424`.
|
|
21849
|
+
Enum: `rfc5424`, `rfc3164`, `custom`. Message format. The default value is `rfc5424`.
|
|
20970
21850
|
"""
|
|
20971
21851
|
return pulumi.get(self, "format")
|
|
20972
21852
|
|
|
@@ -21449,7 +22329,7 @@ class ServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormakerArgs:
|
|
|
21449
22329
|
:param pulumi.Input[int] consumer_fetch_min_bytes: The minimum amount of data the server should return for a fetch request.
|
|
21450
22330
|
:param pulumi.Input[int] producer_batch_size: The batch size in bytes producer will attempt to collect before publishing to broker.
|
|
21451
22331
|
:param pulumi.Input[int] producer_buffer_memory: The amount of bytes producer can use for buffering data before publishing to broker.
|
|
21452
|
-
:param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
22332
|
+
:param pulumi.Input[str] producer_compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
21453
22333
|
:param pulumi.Input[int] producer_linger_ms: The linger time (ms) for waiting new data to arrive for publishing.
|
|
21454
22334
|
:param pulumi.Input[int] producer_max_request_size: The maximum request size in bytes.
|
|
21455
22335
|
"""
|
|
@@ -21506,7 +22386,7 @@ class ServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormakerArgs:
|
|
|
21506
22386
|
@pulumi.getter(name="producerCompressionType")
|
|
21507
22387
|
def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
21508
22388
|
"""
|
|
21509
|
-
Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
22389
|
+
Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
21510
22390
|
"""
|
|
21511
22391
|
return pulumi.get(self, "producer_compression_type")
|
|
21512
22392
|
|