pulumi-aiven 6.16.0a1716504562__py3-none-any.whl → 6.17.0__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 +1133 -397
- 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 +15 -2
- pulumi_aiven/get_my_sql.py +14 -1
- pulumi_aiven/get_organization_application_user.py +15 -8
- 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 +54 -7
- pulumi_aiven/my_sql.py +48 -1
- pulumi_aiven/open_search.py +21 -2
- pulumi_aiven/organization_application_user.py +52 -45
- pulumi_aiven/organization_application_user_token.py +15 -51
- pulumi_aiven/outputs.py +1758 -397
- 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.17.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.17.0.dist-info}/RECORD +42 -42
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.17.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.17.0.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',
|
|
@@ -170,13 +178,12 @@ __all__ = [
|
|
|
170
178
|
'OpenSearchServiceIntegrationArgs',
|
|
171
179
|
'OpenSearchTagArgs',
|
|
172
180
|
'OpenSearchTechEmailArgs',
|
|
173
|
-
'OrganizationApplicationUserTimeoutsArgs',
|
|
174
|
-
'OrganizationApplicationUserTokenTimeoutsArgs',
|
|
175
181
|
'OrganizationGroupProjectTimeoutsArgs',
|
|
176
182
|
'OrganizationTimeoutsArgs',
|
|
177
183
|
'OrganizationUserGroupMemberTimeoutsArgs',
|
|
178
184
|
'PgComponentArgs',
|
|
179
185
|
'PgPgArgs',
|
|
186
|
+
'PgPgParamArgs',
|
|
180
187
|
'PgPgUserConfigArgs',
|
|
181
188
|
'PgPgUserConfigIpFilterObjectArgs',
|
|
182
189
|
'PgPgUserConfigMigrationArgs',
|
|
@@ -194,6 +201,7 @@ __all__ = [
|
|
|
194
201
|
'PgTechEmailArgs',
|
|
195
202
|
'ProjectTagArgs',
|
|
196
203
|
'RedisComponentArgs',
|
|
204
|
+
'RedisRedisArgs',
|
|
197
205
|
'RedisRedisUserConfigArgs',
|
|
198
206
|
'RedisRedisUserConfigIpFilterObjectArgs',
|
|
199
207
|
'RedisRedisUserConfigMigrationArgs',
|
|
@@ -334,6 +342,29 @@ class AccountAuthenticationSamlFieldMappingArgs:
|
|
|
334
342
|
pulumi.set(self, "real_name", value)
|
|
335
343
|
|
|
336
344
|
|
|
345
|
+
@pulumi.input_type
|
|
346
|
+
class CassandraCassandraArgs:
|
|
347
|
+
def __init__(__self__, *,
|
|
348
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
349
|
+
"""
|
|
350
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Cassandra server URIs.
|
|
351
|
+
"""
|
|
352
|
+
if uris is not None:
|
|
353
|
+
pulumi.set(__self__, "uris", uris)
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
@pulumi.getter
|
|
357
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
358
|
+
"""
|
|
359
|
+
Cassandra server URIs.
|
|
360
|
+
"""
|
|
361
|
+
return pulumi.get(self, "uris")
|
|
362
|
+
|
|
363
|
+
@uris.setter
|
|
364
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
365
|
+
pulumi.set(self, "uris", value)
|
|
366
|
+
|
|
367
|
+
|
|
337
368
|
@pulumi.input_type
|
|
338
369
|
class CassandraCassandraUserConfigArgs:
|
|
339
370
|
def __init__(__self__, *,
|
|
@@ -358,7 +389,7 @@ class CassandraCassandraUserConfigArgs:
|
|
|
358
389
|
: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
390
|
: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
391
|
:param pulumi.Input['CassandraCassandraUserConfigCassandraArgs'] cassandra: Cassandra configuration values
|
|
361
|
-
:param pulumi.Input[str] cassandra_version: Cassandra version.
|
|
392
|
+
:param pulumi.Input[str] cassandra_version: Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
362
393
|
: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
394
|
: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
395
|
: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 +496,7 @@ class CassandraCassandraUserConfigArgs:
|
|
|
465
496
|
@pulumi.getter(name="cassandraVersion")
|
|
466
497
|
def cassandra_version(self) -> Optional[pulumi.Input[str]]:
|
|
467
498
|
"""
|
|
468
|
-
Cassandra version.
|
|
499
|
+
Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
469
500
|
"""
|
|
470
501
|
return pulumi.get(self, "cassandra_version")
|
|
471
502
|
|
|
@@ -979,6 +1010,29 @@ class CassandraTechEmailArgs:
|
|
|
979
1010
|
pulumi.set(self, "email", value)
|
|
980
1011
|
|
|
981
1012
|
|
|
1013
|
+
@pulumi.input_type
|
|
1014
|
+
class ClickhouseClickhouseArgs:
|
|
1015
|
+
def __init__(__self__, *,
|
|
1016
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
1017
|
+
"""
|
|
1018
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Clickhouse server URIs.
|
|
1019
|
+
"""
|
|
1020
|
+
if uris is not None:
|
|
1021
|
+
pulumi.set(__self__, "uris", uris)
|
|
1022
|
+
|
|
1023
|
+
@property
|
|
1024
|
+
@pulumi.getter
|
|
1025
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1026
|
+
"""
|
|
1027
|
+
Clickhouse server URIs.
|
|
1028
|
+
"""
|
|
1029
|
+
return pulumi.get(self, "uris")
|
|
1030
|
+
|
|
1031
|
+
@uris.setter
|
|
1032
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
1033
|
+
pulumi.set(self, "uris", value)
|
|
1034
|
+
|
|
1035
|
+
|
|
982
1036
|
@pulumi.input_type
|
|
983
1037
|
class ClickhouseClickhouseUserConfigArgs:
|
|
984
1038
|
def __init__(__self__, *,
|
|
@@ -1900,6 +1954,77 @@ class DragonflyComponentArgs:
|
|
|
1900
1954
|
pulumi.set(self, "usage", value)
|
|
1901
1955
|
|
|
1902
1956
|
|
|
1957
|
+
@pulumi.input_type
|
|
1958
|
+
class DragonflyDragonflyArgs:
|
|
1959
|
+
def __init__(__self__, *,
|
|
1960
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
1961
|
+
replica_uri: Optional[pulumi.Input[str]] = None,
|
|
1962
|
+
slave_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1963
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
1964
|
+
"""
|
|
1965
|
+
:param pulumi.Input[str] password: Dragonfly password.
|
|
1966
|
+
:param pulumi.Input[str] replica_uri: Dragonfly replica server URI.
|
|
1967
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] slave_uris: Dragonfly slave server URIs.
|
|
1968
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Dragonfly server URIs.
|
|
1969
|
+
"""
|
|
1970
|
+
if password is not None:
|
|
1971
|
+
pulumi.set(__self__, "password", password)
|
|
1972
|
+
if replica_uri is not None:
|
|
1973
|
+
pulumi.set(__self__, "replica_uri", replica_uri)
|
|
1974
|
+
if slave_uris is not None:
|
|
1975
|
+
pulumi.set(__self__, "slave_uris", slave_uris)
|
|
1976
|
+
if uris is not None:
|
|
1977
|
+
pulumi.set(__self__, "uris", uris)
|
|
1978
|
+
|
|
1979
|
+
@property
|
|
1980
|
+
@pulumi.getter
|
|
1981
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
1982
|
+
"""
|
|
1983
|
+
Dragonfly password.
|
|
1984
|
+
"""
|
|
1985
|
+
return pulumi.get(self, "password")
|
|
1986
|
+
|
|
1987
|
+
@password.setter
|
|
1988
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
1989
|
+
pulumi.set(self, "password", value)
|
|
1990
|
+
|
|
1991
|
+
@property
|
|
1992
|
+
@pulumi.getter(name="replicaUri")
|
|
1993
|
+
def replica_uri(self) -> Optional[pulumi.Input[str]]:
|
|
1994
|
+
"""
|
|
1995
|
+
Dragonfly replica server URI.
|
|
1996
|
+
"""
|
|
1997
|
+
return pulumi.get(self, "replica_uri")
|
|
1998
|
+
|
|
1999
|
+
@replica_uri.setter
|
|
2000
|
+
def replica_uri(self, value: Optional[pulumi.Input[str]]):
|
|
2001
|
+
pulumi.set(self, "replica_uri", value)
|
|
2002
|
+
|
|
2003
|
+
@property
|
|
2004
|
+
@pulumi.getter(name="slaveUris")
|
|
2005
|
+
def slave_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2006
|
+
"""
|
|
2007
|
+
Dragonfly slave server URIs.
|
|
2008
|
+
"""
|
|
2009
|
+
return pulumi.get(self, "slave_uris")
|
|
2010
|
+
|
|
2011
|
+
@slave_uris.setter
|
|
2012
|
+
def slave_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
2013
|
+
pulumi.set(self, "slave_uris", value)
|
|
2014
|
+
|
|
2015
|
+
@property
|
|
2016
|
+
@pulumi.getter
|
|
2017
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2018
|
+
"""
|
|
2019
|
+
Dragonfly server URIs.
|
|
2020
|
+
"""
|
|
2021
|
+
return pulumi.get(self, "uris")
|
|
2022
|
+
|
|
2023
|
+
@uris.setter
|
|
2024
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
2025
|
+
pulumi.set(self, "uris", value)
|
|
2026
|
+
|
|
2027
|
+
|
|
1903
2028
|
@pulumi.input_type
|
|
1904
2029
|
class DragonflyDragonflyUserConfigArgs:
|
|
1905
2030
|
def __init__(__self__, *,
|
|
@@ -1920,7 +2045,7 @@ class DragonflyDragonflyUserConfigArgs:
|
|
|
1920
2045
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
1921
2046
|
"""
|
|
1922
2047
|
: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
|
|
2048
|
+
:param pulumi.Input[str] dragonfly_persistence: Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
1924
2049
|
:param pulumi.Input[bool] dragonfly_ssl: Require SSL to access Dragonfly. The default value is `true`.
|
|
1925
2050
|
: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
2051
|
: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 +2110,7 @@ class DragonflyDragonflyUserConfigArgs:
|
|
|
1985
2110
|
@pulumi.getter(name="dragonflyPersistence")
|
|
1986
2111
|
def dragonfly_persistence(self) -> Optional[pulumi.Input[str]]:
|
|
1987
2112
|
"""
|
|
1988
|
-
When persistence is 'rdb', Dragonfly does RDB dumps
|
|
2113
|
+
Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
1989
2114
|
"""
|
|
1990
2115
|
return pulumi.get(self, "dragonfly_persistence")
|
|
1991
2116
|
|
|
@@ -2207,7 +2332,7 @@ class DragonflyDragonflyUserConfigMigrationArgs:
|
|
|
2207
2332
|
:param pulumi.Input[int] port: Port number of the server where to migrate data from.
|
|
2208
2333
|
:param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
|
|
2209
2334
|
: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).
|
|
2335
|
+
: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
2336
|
:param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
|
|
2212
2337
|
:param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
|
|
2213
2338
|
:param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
|
|
@@ -2279,7 +2404,7 @@ class DragonflyDragonflyUserConfigMigrationArgs:
|
|
|
2279
2404
|
@pulumi.getter
|
|
2280
2405
|
def method(self) -> Optional[pulumi.Input[str]]:
|
|
2281
2406
|
"""
|
|
2282
|
-
The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
2407
|
+
Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
2283
2408
|
"""
|
|
2284
2409
|
return pulumi.get(self, "method")
|
|
2285
2410
|
|
|
@@ -2785,7 +2910,7 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2785
2910
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
2786
2911
|
"""
|
|
2787
2912
|
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
2788
|
-
:param pulumi.Input[str] flink_version: Flink major version.
|
|
2913
|
+
:param pulumi.Input[str] flink_version: Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
2789
2914
|
: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
2915
|
: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
2916
|
: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 +2963,7 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2838
2963
|
@pulumi.getter(name="flinkVersion")
|
|
2839
2964
|
def flink_version(self) -> Optional[pulumi.Input[str]]:
|
|
2840
2965
|
"""
|
|
2841
|
-
Flink major version.
|
|
2966
|
+
Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
2842
2967
|
"""
|
|
2843
2968
|
return pulumi.get(self, "flink_version")
|
|
2844
2969
|
|
|
@@ -3242,6 +3367,29 @@ class GrafanaComponentArgs:
|
|
|
3242
3367
|
pulumi.set(self, "usage", value)
|
|
3243
3368
|
|
|
3244
3369
|
|
|
3370
|
+
@pulumi.input_type
|
|
3371
|
+
class GrafanaGrafanaArgs:
|
|
3372
|
+
def __init__(__self__, *,
|
|
3373
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
3374
|
+
"""
|
|
3375
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Grafana server URIs.
|
|
3376
|
+
"""
|
|
3377
|
+
if uris is not None:
|
|
3378
|
+
pulumi.set(__self__, "uris", uris)
|
|
3379
|
+
|
|
3380
|
+
@property
|
|
3381
|
+
@pulumi.getter
|
|
3382
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3383
|
+
"""
|
|
3384
|
+
Grafana server URIs.
|
|
3385
|
+
"""
|
|
3386
|
+
return pulumi.get(self, "uris")
|
|
3387
|
+
|
|
3388
|
+
@uris.setter
|
|
3389
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
3390
|
+
pulumi.set(self, "uris", value)
|
|
3391
|
+
|
|
3392
|
+
|
|
3245
3393
|
@pulumi.input_type
|
|
3246
3394
|
class GrafanaGrafanaUserConfigArgs:
|
|
3247
3395
|
def __init__(__self__, *,
|
|
@@ -3290,9 +3438,9 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3290
3438
|
"""
|
|
3291
3439
|
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
3292
3440
|
: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.
|
|
3441
|
+
:param pulumi.Input[str] alerting_error_or_timeout: Enum: `alerting`, `keep_state`. Default error or timeout setting for new alerting rules.
|
|
3294
3442
|
: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.
|
|
3443
|
+
: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
3444
|
: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
3445
|
:param pulumi.Input['GrafanaGrafanaUserConfigAuthAzureadArgs'] auth_azuread: Azure AD OAuth integration
|
|
3298
3446
|
:param pulumi.Input[bool] auth_basic_enabled: Enable or disable basic authentication form, used by Grafana built-in login.
|
|
@@ -3300,7 +3448,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3300
3448
|
:param pulumi.Input['GrafanaGrafanaUserConfigAuthGithubArgs'] auth_github: Github Auth integration
|
|
3301
3449
|
:param pulumi.Input['GrafanaGrafanaUserConfigAuthGitlabArgs'] auth_gitlab: GitLab Auth integration
|
|
3302
3450
|
: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.
|
|
3451
|
+
: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
3452
|
:param pulumi.Input[str] custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name.
|
|
3305
3453
|
: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
3454
|
: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 +3476,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3328
3476
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
3329
3477
|
: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
3478
|
: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.
|
|
3479
|
+
:param pulumi.Input[str] user_auto_assign_org_role: Enum: `Viewer`, `Admin`, `Editor`. Set role for new signups. Defaults to Viewer.
|
|
3332
3480
|
:param pulumi.Input[bool] viewers_can_edit: Users with view-only permission can edit but not save dashboards.
|
|
3333
3481
|
"""
|
|
3334
3482
|
if additional_backup_regions is not None:
|
|
@@ -3447,7 +3595,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3447
3595
|
@pulumi.getter(name="alertingErrorOrTimeout")
|
|
3448
3596
|
def alerting_error_or_timeout(self) -> Optional[pulumi.Input[str]]:
|
|
3449
3597
|
"""
|
|
3450
|
-
Default error or timeout setting for new alerting rules.
|
|
3598
|
+
Enum: `alerting`, `keep_state`. Default error or timeout setting for new alerting rules.
|
|
3451
3599
|
"""
|
|
3452
3600
|
return pulumi.get(self, "alerting_error_or_timeout")
|
|
3453
3601
|
|
|
@@ -3471,7 +3619,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3471
3619
|
@pulumi.getter(name="alertingNodataOrNullvalues")
|
|
3472
3620
|
def alerting_nodata_or_nullvalues(self) -> Optional[pulumi.Input[str]]:
|
|
3473
3621
|
"""
|
|
3474
|
-
Default value for 'no data or null values' for new alerting rules.
|
|
3622
|
+
Enum: `alerting`, `no_data`, `keep_state`, `ok`. Default value for 'no data or null values' for new alerting rules.
|
|
3475
3623
|
"""
|
|
3476
3624
|
return pulumi.get(self, "alerting_nodata_or_nullvalues")
|
|
3477
3625
|
|
|
@@ -3567,7 +3715,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3567
3715
|
@pulumi.getter(name="cookieSamesite")
|
|
3568
3716
|
def cookie_samesite(self) -> Optional[pulumi.Input[str]]:
|
|
3569
3717
|
"""
|
|
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.
|
|
3718
|
+
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
3719
|
"""
|
|
3572
3720
|
return pulumi.get(self, "cookie_samesite")
|
|
3573
3721
|
|
|
@@ -3906,7 +4054,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3906
4054
|
@pulumi.getter(name="userAutoAssignOrgRole")
|
|
3907
4055
|
def user_auto_assign_org_role(self) -> Optional[pulumi.Input[str]]:
|
|
3908
4056
|
"""
|
|
3909
|
-
Set role for new signups. Defaults to Viewer.
|
|
4057
|
+
Enum: `Viewer`, `Admin`, `Editor`. Set role for new signups. Defaults to Viewer.
|
|
3910
4058
|
"""
|
|
3911
4059
|
return pulumi.get(self, "user_auto_assign_org_role")
|
|
3912
4060
|
|
|
@@ -4666,7 +4814,7 @@ class GrafanaGrafanaUserConfigExternalImageStorageArgs:
|
|
|
4666
4814
|
"""
|
|
4667
4815
|
:param pulumi.Input[str] access_key: S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions.
|
|
4668
4816
|
:param pulumi.Input[str] bucket_url: Bucket URL for S3.
|
|
4669
|
-
:param pulumi.Input[str] provider: Provider type.
|
|
4817
|
+
:param pulumi.Input[str] provider: Enum: `s3`. Provider type.
|
|
4670
4818
|
:param pulumi.Input[str] secret_key: S3 secret key.
|
|
4671
4819
|
"""
|
|
4672
4820
|
pulumi.set(__self__, "access_key", access_key)
|
|
@@ -4702,7 +4850,7 @@ class GrafanaGrafanaUserConfigExternalImageStorageArgs:
|
|
|
4702
4850
|
@pulumi.getter
|
|
4703
4851
|
def provider(self) -> pulumi.Input[str]:
|
|
4704
4852
|
"""
|
|
4705
|
-
Provider type.
|
|
4853
|
+
Enum: `s3`. Provider type.
|
|
4706
4854
|
"""
|
|
4707
4855
|
return pulumi.get(self, "provider")
|
|
4708
4856
|
|
|
@@ -4848,7 +4996,7 @@ class GrafanaGrafanaUserConfigSmtpServerArgs:
|
|
|
4848
4996
|
:param pulumi.Input[str] from_name: Name used in outgoing emails, defaults to Grafana.
|
|
4849
4997
|
:param pulumi.Input[str] password: Password for SMTP authentication.
|
|
4850
4998
|
: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.
|
|
4999
|
+
:param pulumi.Input[str] starttls_policy: Enum: `OpportunisticStartTLS`, `MandatoryStartTLS`, `NoStartTLS`. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
|
|
4852
5000
|
:param pulumi.Input[str] username: Username for SMTP authentication.
|
|
4853
5001
|
"""
|
|
4854
5002
|
pulumi.set(__self__, "from_address", from_address)
|
|
@@ -4941,7 +5089,7 @@ class GrafanaGrafanaUserConfigSmtpServerArgs:
|
|
|
4941
5089
|
@pulumi.getter(name="starttlsPolicy")
|
|
4942
5090
|
def starttls_policy(self) -> Optional[pulumi.Input[str]]:
|
|
4943
5091
|
"""
|
|
4944
|
-
Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
|
|
5092
|
+
Enum: `OpportunisticStartTLS`, `MandatoryStartTLS`, `NoStartTLS`. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
|
|
4945
5093
|
"""
|
|
4946
5094
|
return pulumi.get(self, "starttls_policy")
|
|
4947
5095
|
|
|
@@ -5196,12 +5344,24 @@ class InfluxDbComponentArgs:
|
|
|
5196
5344
|
@pulumi.input_type
|
|
5197
5345
|
class InfluxDbInfluxdbArgs:
|
|
5198
5346
|
def __init__(__self__, *,
|
|
5199
|
-
database_name: Optional[pulumi.Input[str]] = None
|
|
5347
|
+
database_name: Optional[pulumi.Input[str]] = None,
|
|
5348
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
5349
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
5350
|
+
username: Optional[pulumi.Input[str]] = None):
|
|
5200
5351
|
"""
|
|
5201
5352
|
:param pulumi.Input[str] database_name: Name of the default InfluxDB database
|
|
5353
|
+
:param pulumi.Input[str] password: InfluxDB password
|
|
5354
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: InfluxDB server URIs.
|
|
5355
|
+
:param pulumi.Input[str] username: InfluxDB username
|
|
5202
5356
|
"""
|
|
5203
5357
|
if database_name is not None:
|
|
5204
5358
|
pulumi.set(__self__, "database_name", database_name)
|
|
5359
|
+
if password is not None:
|
|
5360
|
+
pulumi.set(__self__, "password", password)
|
|
5361
|
+
if uris is not None:
|
|
5362
|
+
pulumi.set(__self__, "uris", uris)
|
|
5363
|
+
if username is not None:
|
|
5364
|
+
pulumi.set(__self__, "username", username)
|
|
5205
5365
|
|
|
5206
5366
|
@property
|
|
5207
5367
|
@pulumi.getter(name="databaseName")
|
|
@@ -5215,6 +5375,42 @@ class InfluxDbInfluxdbArgs:
|
|
|
5215
5375
|
def database_name(self, value: Optional[pulumi.Input[str]]):
|
|
5216
5376
|
pulumi.set(self, "database_name", value)
|
|
5217
5377
|
|
|
5378
|
+
@property
|
|
5379
|
+
@pulumi.getter
|
|
5380
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
5381
|
+
"""
|
|
5382
|
+
InfluxDB password
|
|
5383
|
+
"""
|
|
5384
|
+
return pulumi.get(self, "password")
|
|
5385
|
+
|
|
5386
|
+
@password.setter
|
|
5387
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
5388
|
+
pulumi.set(self, "password", value)
|
|
5389
|
+
|
|
5390
|
+
@property
|
|
5391
|
+
@pulumi.getter
|
|
5392
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
5393
|
+
"""
|
|
5394
|
+
InfluxDB server URIs.
|
|
5395
|
+
"""
|
|
5396
|
+
return pulumi.get(self, "uris")
|
|
5397
|
+
|
|
5398
|
+
@uris.setter
|
|
5399
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
5400
|
+
pulumi.set(self, "uris", value)
|
|
5401
|
+
|
|
5402
|
+
@property
|
|
5403
|
+
@pulumi.getter
|
|
5404
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
|
5405
|
+
"""
|
|
5406
|
+
InfluxDB username
|
|
5407
|
+
"""
|
|
5408
|
+
return pulumi.get(self, "username")
|
|
5409
|
+
|
|
5410
|
+
@username.setter
|
|
5411
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
|
5412
|
+
pulumi.set(self, "username", value)
|
|
5413
|
+
|
|
5218
5414
|
|
|
5219
5415
|
@pulumi.input_type
|
|
5220
5416
|
class InfluxDbInfluxdbUserConfigArgs:
|
|
@@ -6288,10 +6484,10 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6288
6484
|
scheduled_rebalance_max_delay_ms: Optional[pulumi.Input[int]] = None,
|
|
6289
6485
|
session_timeout_ms: Optional[pulumi.Input[int]] = None):
|
|
6290
6486
|
"""
|
|
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.
|
|
6487
|
+
: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.
|
|
6488
|
+
: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
6489
|
: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.
|
|
6490
|
+
: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
6491
|
: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
6492
|
: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
6493
|
: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 +6495,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6299
6495
|
: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
6496
|
: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
6497
|
: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.
|
|
6498
|
+
: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
6499
|
: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
6500
|
: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
6501
|
: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 +6538,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6342
6538
|
@pulumi.getter(name="connectorClientConfigOverridePolicy")
|
|
6343
6539
|
def connector_client_config_override_policy(self) -> Optional[pulumi.Input[str]]:
|
|
6344
6540
|
"""
|
|
6345
|
-
Defines what client configurations can be overridden by the connector. Default is None.
|
|
6541
|
+
Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
|
|
6346
6542
|
"""
|
|
6347
6543
|
return pulumi.get(self, "connector_client_config_override_policy")
|
|
6348
6544
|
|
|
@@ -6354,7 +6550,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6354
6550
|
@pulumi.getter(name="consumerAutoOffsetReset")
|
|
6355
6551
|
def consumer_auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
|
|
6356
6552
|
"""
|
|
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.
|
|
6553
|
+
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
6554
|
"""
|
|
6359
6555
|
return pulumi.get(self, "consumer_auto_offset_reset")
|
|
6360
6556
|
|
|
@@ -6378,7 +6574,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6378
6574
|
@pulumi.getter(name="consumerIsolationLevel")
|
|
6379
6575
|
def consumer_isolation_level(self) -> Optional[pulumi.Input[str]]:
|
|
6380
6576
|
"""
|
|
6381
|
-
Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
6577
|
+
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
6578
|
"""
|
|
6383
6579
|
return pulumi.get(self, "consumer_isolation_level")
|
|
6384
6580
|
|
|
@@ -6474,7 +6670,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
6474
6670
|
@pulumi.getter(name="producerCompressionType")
|
|
6475
6671
|
def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
6476
6672
|
"""
|
|
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.
|
|
6673
|
+
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
6674
|
"""
|
|
6479
6675
|
return pulumi.get(self, "producer_compression_type")
|
|
6480
6676
|
|
|
@@ -6806,13 +7002,15 @@ class KafkaKafkaArgs:
|
|
|
6806
7002
|
access_key: Optional[pulumi.Input[str]] = None,
|
|
6807
7003
|
connect_uri: Optional[pulumi.Input[str]] = None,
|
|
6808
7004
|
rest_uri: Optional[pulumi.Input[str]] = None,
|
|
6809
|
-
schema_registry_uri: Optional[pulumi.Input[str]] = None
|
|
7005
|
+
schema_registry_uri: Optional[pulumi.Input[str]] = None,
|
|
7006
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
6810
7007
|
"""
|
|
6811
7008
|
:param pulumi.Input[str] access_cert: The Kafka client certificate.
|
|
6812
7009
|
:param pulumi.Input[str] access_key: The Kafka client certificate key.
|
|
6813
7010
|
:param pulumi.Input[str] connect_uri: The Kafka Connect URI.
|
|
6814
7011
|
:param pulumi.Input[str] rest_uri: The Kafka REST URI.
|
|
6815
7012
|
:param pulumi.Input[str] schema_registry_uri: The Schema Registry URI.
|
|
7013
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Kafka server URIs.
|
|
6816
7014
|
"""
|
|
6817
7015
|
if access_cert is not None:
|
|
6818
7016
|
pulumi.set(__self__, "access_cert", access_cert)
|
|
@@ -6824,6 +7022,8 @@ class KafkaKafkaArgs:
|
|
|
6824
7022
|
pulumi.set(__self__, "rest_uri", rest_uri)
|
|
6825
7023
|
if schema_registry_uri is not None:
|
|
6826
7024
|
pulumi.set(__self__, "schema_registry_uri", schema_registry_uri)
|
|
7025
|
+
if uris is not None:
|
|
7026
|
+
pulumi.set(__self__, "uris", uris)
|
|
6827
7027
|
|
|
6828
7028
|
@property
|
|
6829
7029
|
@pulumi.getter(name="accessCert")
|
|
@@ -6885,6 +7085,18 @@ class KafkaKafkaArgs:
|
|
|
6885
7085
|
def schema_registry_uri(self, value: Optional[pulumi.Input[str]]):
|
|
6886
7086
|
pulumi.set(self, "schema_registry_uri", value)
|
|
6887
7087
|
|
|
7088
|
+
@property
|
|
7089
|
+
@pulumi.getter
|
|
7090
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
7091
|
+
"""
|
|
7092
|
+
Kafka server URIs.
|
|
7093
|
+
"""
|
|
7094
|
+
return pulumi.get(self, "uris")
|
|
7095
|
+
|
|
7096
|
+
@uris.setter
|
|
7097
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
7098
|
+
pulumi.set(self, "uris", value)
|
|
7099
|
+
|
|
6888
7100
|
|
|
6889
7101
|
@pulumi.input_type
|
|
6890
7102
|
class KafkaKafkaUserConfigArgs:
|
|
@@ -6925,7 +7137,7 @@ class KafkaKafkaUserConfigArgs:
|
|
|
6925
7137
|
:param pulumi.Input[bool] kafka_rest: Enable Kafka-REST service. The default value is `false`.
|
|
6926
7138
|
:param pulumi.Input[bool] kafka_rest_authorization: Enable authorization in Kafka-REST service.
|
|
6927
7139
|
:param pulumi.Input['KafkaKafkaUserConfigKafkaRestConfigArgs'] kafka_rest_config: Kafka REST configuration
|
|
6928
|
-
:param pulumi.Input[str] kafka_version: Kafka major version.
|
|
7140
|
+
:param pulumi.Input[str] kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
6929
7141
|
:param pulumi.Input['KafkaKafkaUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
6930
7142
|
:param pulumi.Input['KafkaKafkaUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
6931
7143
|
:param pulumi.Input['KafkaKafkaUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
@@ -7152,7 +7364,7 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7152
7364
|
@pulumi.getter(name="kafkaVersion")
|
|
7153
7365
|
def kafka_version(self) -> Optional[pulumi.Input[str]]:
|
|
7154
7366
|
"""
|
|
7155
|
-
Kafka major version.
|
|
7367
|
+
Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
7156
7368
|
"""
|
|
7157
7369
|
return pulumi.get(self, "kafka_version")
|
|
7158
7370
|
|
|
@@ -7346,7 +7558,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7346
7558
|
transaction_state_log_segment_bytes: Optional[pulumi.Input[int]] = None):
|
|
7347
7559
|
"""
|
|
7348
7560
|
: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.
|
|
7561
|
+
: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
7562
|
: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
7563
|
:param pulumi.Input[int] default_replication_factor: Replication factor for autocreated topics.
|
|
7352
7564
|
: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 +7568,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7356
7568
|
: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
7569
|
: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
7570
|
: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.
|
|
7571
|
+
:param pulumi.Input[str] log_cleanup_policy: Enum: `delete`, `compact`, `compact,delete`. The default cleanup policy for segments beyond the retention window.
|
|
7360
7572
|
:param pulumi.Input[int] log_flush_interval_messages: The number of messages accumulated on a log partition before messages are flushed to disk.
|
|
7361
7573
|
: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
7574
|
:param pulumi.Input[int] log_index_interval_bytes: The interval with which Kafka adds an entry to the offset index.
|
|
@@ -7365,7 +7577,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7365
7577
|
: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
7578
|
:param pulumi.Input[bool] log_message_downconversion_enable: This configuration controls whether down-conversion of message formats is enabled to satisfy consume requests.
|
|
7367
7579
|
: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.
|
|
7580
|
+
: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
7581
|
:param pulumi.Input[bool] log_preallocate: Should pre allocate file when create new segment?
|
|
7370
7582
|
:param pulumi.Input[int] log_retention_bytes: The maximum size of the log before deleting messages.
|
|
7371
7583
|
:param pulumi.Input[int] log_retention_hours: The number of hours to keep a log file before deleting it.
|
|
@@ -7501,7 +7713,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7501
7713
|
@pulumi.getter(name="compressionType")
|
|
7502
7714
|
def compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
7503
7715
|
"""
|
|
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.
|
|
7716
|
+
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
7717
|
"""
|
|
7506
7718
|
return pulumi.get(self, "compression_type")
|
|
7507
7719
|
|
|
@@ -7621,7 +7833,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7621
7833
|
@pulumi.getter(name="logCleanupPolicy")
|
|
7622
7834
|
def log_cleanup_policy(self) -> Optional[pulumi.Input[str]]:
|
|
7623
7835
|
"""
|
|
7624
|
-
The default cleanup policy for segments beyond the retention window.
|
|
7836
|
+
Enum: `delete`, `compact`, `compact,delete`. The default cleanup policy for segments beyond the retention window.
|
|
7625
7837
|
"""
|
|
7626
7838
|
return pulumi.get(self, "log_cleanup_policy")
|
|
7627
7839
|
|
|
@@ -7729,7 +7941,7 @@ class KafkaKafkaUserConfigKafkaArgs:
|
|
|
7729
7941
|
@pulumi.getter(name="logMessageTimestampType")
|
|
7730
7942
|
def log_message_timestamp_type(self) -> Optional[pulumi.Input[str]]:
|
|
7731
7943
|
"""
|
|
7732
|
-
Define whether the timestamp in the message is message create time or log append time.
|
|
7944
|
+
Enum: `CreateTime`, `LogAppendTime`. Define whether the timestamp in the message is message create time or log append time.
|
|
7733
7945
|
"""
|
|
7734
7946
|
return pulumi.get(self, "log_message_timestamp_type")
|
|
7735
7947
|
|
|
@@ -8097,10 +8309,10 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8097
8309
|
scheduled_rebalance_max_delay_ms: Optional[pulumi.Input[int]] = None,
|
|
8098
8310
|
session_timeout_ms: Optional[pulumi.Input[int]] = None):
|
|
8099
8311
|
"""
|
|
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.
|
|
8312
|
+
: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.
|
|
8313
|
+
: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
8314
|
: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.
|
|
8315
|
+
: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
8316
|
: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
8317
|
: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
8318
|
: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 +8320,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8108
8320
|
: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
8321
|
: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
8322
|
: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.
|
|
8323
|
+
: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
8324
|
: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
8325
|
: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
8326
|
: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 +8363,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8151
8363
|
@pulumi.getter(name="connectorClientConfigOverridePolicy")
|
|
8152
8364
|
def connector_client_config_override_policy(self) -> Optional[pulumi.Input[str]]:
|
|
8153
8365
|
"""
|
|
8154
|
-
Defines what client configurations can be overridden by the connector. Default is None.
|
|
8366
|
+
Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
|
|
8155
8367
|
"""
|
|
8156
8368
|
return pulumi.get(self, "connector_client_config_override_policy")
|
|
8157
8369
|
|
|
@@ -8163,7 +8375,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8163
8375
|
@pulumi.getter(name="consumerAutoOffsetReset")
|
|
8164
8376
|
def consumer_auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
|
|
8165
8377
|
"""
|
|
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.
|
|
8378
|
+
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
8379
|
"""
|
|
8168
8380
|
return pulumi.get(self, "consumer_auto_offset_reset")
|
|
8169
8381
|
|
|
@@ -8187,7 +8399,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8187
8399
|
@pulumi.getter(name="consumerIsolationLevel")
|
|
8188
8400
|
def consumer_isolation_level(self) -> Optional[pulumi.Input[str]]:
|
|
8189
8401
|
"""
|
|
8190
|
-
Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
8402
|
+
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
8403
|
"""
|
|
8192
8404
|
return pulumi.get(self, "consumer_isolation_level")
|
|
8193
8405
|
|
|
@@ -8283,7 +8495,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
|
|
|
8283
8495
|
@pulumi.getter(name="producerCompressionType")
|
|
8284
8496
|
def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
8285
8497
|
"""
|
|
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.
|
|
8498
|
+
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
8499
|
"""
|
|
8288
8500
|
return pulumi.get(self, "producer_compression_type")
|
|
8289
8501
|
|
|
@@ -8356,11 +8568,11 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8356
8568
|
"""
|
|
8357
8569
|
: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
8570
|
: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`.
|
|
8571
|
+
: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`.
|
|
8572
|
+
: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
8573
|
: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.
|
|
8574
|
+
: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`.
|
|
8575
|
+
: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
8576
|
: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
8577
|
: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
8578
|
: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 +8626,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8414
8626
|
@pulumi.getter(name="consumerRequestTimeoutMs")
|
|
8415
8627
|
def consumer_request_timeout_ms(self) -> Optional[pulumi.Input[int]]:
|
|
8416
8628
|
"""
|
|
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`.
|
|
8629
|
+
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
8630
|
"""
|
|
8419
8631
|
return pulumi.get(self, "consumer_request_timeout_ms")
|
|
8420
8632
|
|
|
@@ -8426,7 +8638,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8426
8638
|
@pulumi.getter(name="nameStrategy")
|
|
8427
8639
|
def name_strategy(self) -> Optional[pulumi.Input[str]]:
|
|
8428
8640
|
"""
|
|
8429
|
-
Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
|
|
8641
|
+
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
8642
|
"""
|
|
8431
8643
|
return pulumi.get(self, "name_strategy")
|
|
8432
8644
|
|
|
@@ -8450,7 +8662,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8450
8662
|
@pulumi.getter(name="producerAcks")
|
|
8451
8663
|
def producer_acks(self) -> Optional[pulumi.Input[str]]:
|
|
8452
8664
|
"""
|
|
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`.
|
|
8665
|
+
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
8666
|
"""
|
|
8455
8667
|
return pulumi.get(self, "producer_acks")
|
|
8456
8668
|
|
|
@@ -8462,7 +8674,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
|
|
|
8462
8674
|
@pulumi.getter(name="producerCompressionType")
|
|
8463
8675
|
def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
8464
8676
|
"""
|
|
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.
|
|
8677
|
+
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
8678
|
"""
|
|
8467
8679
|
return pulumi.get(self, "producer_compression_type")
|
|
8468
8680
|
|
|
@@ -10226,6 +10438,45 @@ class M3AggregatorComponentArgs:
|
|
|
10226
10438
|
pulumi.set(self, "usage", value)
|
|
10227
10439
|
|
|
10228
10440
|
|
|
10441
|
+
@pulumi.input_type
|
|
10442
|
+
class M3AggregatorM3aggregatorArgs:
|
|
10443
|
+
def __init__(__self__, *,
|
|
10444
|
+
aggregator_http_uri: Optional[pulumi.Input[str]] = None,
|
|
10445
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
10446
|
+
"""
|
|
10447
|
+
:param pulumi.Input[str] aggregator_http_uri: M3 Aggregator HTTP URI.
|
|
10448
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: M3 Aggregator server URIs.
|
|
10449
|
+
"""
|
|
10450
|
+
if aggregator_http_uri is not None:
|
|
10451
|
+
pulumi.set(__self__, "aggregator_http_uri", aggregator_http_uri)
|
|
10452
|
+
if uris is not None:
|
|
10453
|
+
pulumi.set(__self__, "uris", uris)
|
|
10454
|
+
|
|
10455
|
+
@property
|
|
10456
|
+
@pulumi.getter(name="aggregatorHttpUri")
|
|
10457
|
+
def aggregator_http_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10458
|
+
"""
|
|
10459
|
+
M3 Aggregator HTTP URI.
|
|
10460
|
+
"""
|
|
10461
|
+
return pulumi.get(self, "aggregator_http_uri")
|
|
10462
|
+
|
|
10463
|
+
@aggregator_http_uri.setter
|
|
10464
|
+
def aggregator_http_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10465
|
+
pulumi.set(self, "aggregator_http_uri", value)
|
|
10466
|
+
|
|
10467
|
+
@property
|
|
10468
|
+
@pulumi.getter
|
|
10469
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
10470
|
+
"""
|
|
10471
|
+
M3 Aggregator server URIs.
|
|
10472
|
+
"""
|
|
10473
|
+
return pulumi.get(self, "uris")
|
|
10474
|
+
|
|
10475
|
+
@uris.setter
|
|
10476
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
10477
|
+
pulumi.set(self, "uris", value)
|
|
10478
|
+
|
|
10479
|
+
|
|
10229
10480
|
@pulumi.input_type
|
|
10230
10481
|
class M3AggregatorM3aggregatorUserConfigArgs:
|
|
10231
10482
|
def __init__(__self__, *,
|
|
@@ -10242,8 +10493,8 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10242
10493
|
: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
10494
|
: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
10495
|
: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).
|
|
10496
|
+
:param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
10497
|
+
:param pulumi.Input[str] m3aggregator_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10247
10498
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
10248
10499
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
10249
10500
|
"""
|
|
@@ -10322,7 +10573,7 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10322
10573
|
@pulumi.getter(name="m3Version")
|
|
10323
10574
|
def m3_version(self) -> Optional[pulumi.Input[str]]:
|
|
10324
10575
|
"""
|
|
10325
|
-
M3 major version (deprecated, use m3aggregator_version).
|
|
10576
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
10326
10577
|
"""
|
|
10327
10578
|
return pulumi.get(self, "m3_version")
|
|
10328
10579
|
|
|
@@ -10334,7 +10585,7 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10334
10585
|
@pulumi.getter(name="m3aggregatorVersion")
|
|
10335
10586
|
def m3aggregator_version(self) -> Optional[pulumi.Input[str]]:
|
|
10336
10587
|
"""
|
|
10337
|
-
M3 major version (the minimum compatible version).
|
|
10588
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10338
10589
|
"""
|
|
10339
10590
|
return pulumi.get(self, "m3aggregator_version")
|
|
10340
10591
|
|
|
@@ -10636,6 +10887,109 @@ class M3DbComponentArgs:
|
|
|
10636
10887
|
pulumi.set(self, "usage", value)
|
|
10637
10888
|
|
|
10638
10889
|
|
|
10890
|
+
@pulumi.input_type
|
|
10891
|
+
class M3DbM3dbArgs:
|
|
10892
|
+
def __init__(__self__, *,
|
|
10893
|
+
http_cluster_uri: Optional[pulumi.Input[str]] = None,
|
|
10894
|
+
http_node_uri: Optional[pulumi.Input[str]] = None,
|
|
10895
|
+
influxdb_uri: Optional[pulumi.Input[str]] = None,
|
|
10896
|
+
prometheus_remote_read_uri: Optional[pulumi.Input[str]] = None,
|
|
10897
|
+
prometheus_remote_write_uri: Optional[pulumi.Input[str]] = None,
|
|
10898
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
10899
|
+
"""
|
|
10900
|
+
:param pulumi.Input[str] http_cluster_uri: M3DB cluster URI.
|
|
10901
|
+
:param pulumi.Input[str] http_node_uri: M3DB node URI.
|
|
10902
|
+
:param pulumi.Input[str] influxdb_uri: InfluxDB URI.
|
|
10903
|
+
:param pulumi.Input[str] prometheus_remote_read_uri: Prometheus remote read URI.
|
|
10904
|
+
:param pulumi.Input[str] prometheus_remote_write_uri: Prometheus remote write URI.
|
|
10905
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: M3DB server URIs.
|
|
10906
|
+
"""
|
|
10907
|
+
if http_cluster_uri is not None:
|
|
10908
|
+
pulumi.set(__self__, "http_cluster_uri", http_cluster_uri)
|
|
10909
|
+
if http_node_uri is not None:
|
|
10910
|
+
pulumi.set(__self__, "http_node_uri", http_node_uri)
|
|
10911
|
+
if influxdb_uri is not None:
|
|
10912
|
+
pulumi.set(__self__, "influxdb_uri", influxdb_uri)
|
|
10913
|
+
if prometheus_remote_read_uri is not None:
|
|
10914
|
+
pulumi.set(__self__, "prometheus_remote_read_uri", prometheus_remote_read_uri)
|
|
10915
|
+
if prometheus_remote_write_uri is not None:
|
|
10916
|
+
pulumi.set(__self__, "prometheus_remote_write_uri", prometheus_remote_write_uri)
|
|
10917
|
+
if uris is not None:
|
|
10918
|
+
pulumi.set(__self__, "uris", uris)
|
|
10919
|
+
|
|
10920
|
+
@property
|
|
10921
|
+
@pulumi.getter(name="httpClusterUri")
|
|
10922
|
+
def http_cluster_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10923
|
+
"""
|
|
10924
|
+
M3DB cluster URI.
|
|
10925
|
+
"""
|
|
10926
|
+
return pulumi.get(self, "http_cluster_uri")
|
|
10927
|
+
|
|
10928
|
+
@http_cluster_uri.setter
|
|
10929
|
+
def http_cluster_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10930
|
+
pulumi.set(self, "http_cluster_uri", value)
|
|
10931
|
+
|
|
10932
|
+
@property
|
|
10933
|
+
@pulumi.getter(name="httpNodeUri")
|
|
10934
|
+
def http_node_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10935
|
+
"""
|
|
10936
|
+
M3DB node URI.
|
|
10937
|
+
"""
|
|
10938
|
+
return pulumi.get(self, "http_node_uri")
|
|
10939
|
+
|
|
10940
|
+
@http_node_uri.setter
|
|
10941
|
+
def http_node_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10942
|
+
pulumi.set(self, "http_node_uri", value)
|
|
10943
|
+
|
|
10944
|
+
@property
|
|
10945
|
+
@pulumi.getter(name="influxdbUri")
|
|
10946
|
+
def influxdb_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10947
|
+
"""
|
|
10948
|
+
InfluxDB URI.
|
|
10949
|
+
"""
|
|
10950
|
+
return pulumi.get(self, "influxdb_uri")
|
|
10951
|
+
|
|
10952
|
+
@influxdb_uri.setter
|
|
10953
|
+
def influxdb_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10954
|
+
pulumi.set(self, "influxdb_uri", value)
|
|
10955
|
+
|
|
10956
|
+
@property
|
|
10957
|
+
@pulumi.getter(name="prometheusRemoteReadUri")
|
|
10958
|
+
def prometheus_remote_read_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10959
|
+
"""
|
|
10960
|
+
Prometheus remote read URI.
|
|
10961
|
+
"""
|
|
10962
|
+
return pulumi.get(self, "prometheus_remote_read_uri")
|
|
10963
|
+
|
|
10964
|
+
@prometheus_remote_read_uri.setter
|
|
10965
|
+
def prometheus_remote_read_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10966
|
+
pulumi.set(self, "prometheus_remote_read_uri", value)
|
|
10967
|
+
|
|
10968
|
+
@property
|
|
10969
|
+
@pulumi.getter(name="prometheusRemoteWriteUri")
|
|
10970
|
+
def prometheus_remote_write_uri(self) -> Optional[pulumi.Input[str]]:
|
|
10971
|
+
"""
|
|
10972
|
+
Prometheus remote write URI.
|
|
10973
|
+
"""
|
|
10974
|
+
return pulumi.get(self, "prometheus_remote_write_uri")
|
|
10975
|
+
|
|
10976
|
+
@prometheus_remote_write_uri.setter
|
|
10977
|
+
def prometheus_remote_write_uri(self, value: Optional[pulumi.Input[str]]):
|
|
10978
|
+
pulumi.set(self, "prometheus_remote_write_uri", value)
|
|
10979
|
+
|
|
10980
|
+
@property
|
|
10981
|
+
@pulumi.getter
|
|
10982
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
10983
|
+
"""
|
|
10984
|
+
M3DB server URIs.
|
|
10985
|
+
"""
|
|
10986
|
+
return pulumi.get(self, "uris")
|
|
10987
|
+
|
|
10988
|
+
@uris.setter
|
|
10989
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
10990
|
+
pulumi.set(self, "uris", value)
|
|
10991
|
+
|
|
10992
|
+
|
|
10639
10993
|
@pulumi.input_type
|
|
10640
10994
|
class M3DbM3dbUserConfigArgs:
|
|
10641
10995
|
def __init__(__self__, *,
|
|
@@ -10665,9 +11019,9 @@ class M3DbM3dbUserConfigArgs:
|
|
|
10665
11019
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10666
11020
|
:param pulumi.Input['M3DbM3dbUserConfigLimitsArgs'] limits: M3 limits
|
|
10667
11021
|
:param pulumi.Input['M3DbM3dbUserConfigM3Args'] m3: M3 specific configuration options
|
|
10668
|
-
:param pulumi.Input[str] m3_version: M3 major version (deprecated, use m3db_version).
|
|
11022
|
+
:param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
10669
11023
|
: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).
|
|
11024
|
+
:param pulumi.Input[str] m3db_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10671
11025
|
:param pulumi.Input[Sequence[pulumi.Input['M3DbM3dbUserConfigNamespaceArgs']]] namespaces: List of M3 namespaces
|
|
10672
11026
|
:param pulumi.Input['M3DbM3dbUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
10673
11027
|
: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 +11162,7 @@ class M3DbM3dbUserConfigArgs:
|
|
|
10808
11162
|
@pulumi.getter(name="m3Version")
|
|
10809
11163
|
def m3_version(self) -> Optional[pulumi.Input[str]]:
|
|
10810
11164
|
"""
|
|
10811
|
-
M3 major version (deprecated, use m3db_version).
|
|
11165
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
10812
11166
|
"""
|
|
10813
11167
|
return pulumi.get(self, "m3_version")
|
|
10814
11168
|
|
|
@@ -10832,7 +11186,7 @@ class M3DbM3dbUserConfigArgs:
|
|
|
10832
11186
|
@pulumi.getter(name="m3dbVersion")
|
|
10833
11187
|
def m3db_version(self) -> Optional[pulumi.Input[str]]:
|
|
10834
11188
|
"""
|
|
10835
|
-
M3 major version (the minimum compatible version).
|
|
11189
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10836
11190
|
"""
|
|
10837
11191
|
return pulumi.get(self, "m3db_version")
|
|
10838
11192
|
|
|
@@ -11149,7 +11503,7 @@ class M3DbM3dbUserConfigNamespaceArgs:
|
|
|
11149
11503
|
resolution: Optional[pulumi.Input[str]] = None):
|
|
11150
11504
|
"""
|
|
11151
11505
|
:param pulumi.Input[str] name: The name of the namespace.
|
|
11152
|
-
:param pulumi.Input[str] type: The type of aggregation (aggregated/unaggregated).
|
|
11506
|
+
:param pulumi.Input[str] type: Enum: `aggregated`, `unaggregated`. The type of aggregation (aggregated/unaggregated).
|
|
11153
11507
|
:param pulumi.Input['M3DbM3dbUserConfigNamespaceOptionsArgs'] options: Namespace options
|
|
11154
11508
|
:param pulumi.Input[str] resolution: The resolution for an aggregated namespace.
|
|
11155
11509
|
"""
|
|
@@ -11176,7 +11530,7 @@ class M3DbM3dbUserConfigNamespaceArgs:
|
|
|
11176
11530
|
@pulumi.getter
|
|
11177
11531
|
def type(self) -> pulumi.Input[str]:
|
|
11178
11532
|
"""
|
|
11179
|
-
The type of aggregation (aggregated/unaggregated).
|
|
11533
|
+
Enum: `aggregated`, `unaggregated`. The type of aggregation (aggregated/unaggregated).
|
|
11180
11534
|
"""
|
|
11181
11535
|
return pulumi.get(self, "type")
|
|
11182
11536
|
|
|
@@ -11866,85 +12220,275 @@ class MySqlComponentArgs:
|
|
|
11866
12220
|
|
|
11867
12221
|
|
|
11868
12222
|
@pulumi.input_type
|
|
11869
|
-
class
|
|
12223
|
+
class MySqlMysqlArgs:
|
|
11870
12224
|
def __init__(__self__, *,
|
|
11871
|
-
|
|
11872
|
-
|
|
11873
|
-
|
|
11874
|
-
|
|
11875
|
-
|
|
11876
|
-
|
|
11877
|
-
|
|
11878
|
-
|
|
11879
|
-
|
|
11880
|
-
|
|
11881
|
-
|
|
11882
|
-
|
|
11883
|
-
|
|
11884
|
-
|
|
11885
|
-
|
|
11886
|
-
|
|
11887
|
-
|
|
11888
|
-
|
|
11889
|
-
|
|
11890
|
-
|
|
12225
|
+
params: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]] = None,
|
|
12226
|
+
replica_uri: Optional[pulumi.Input[str]] = None,
|
|
12227
|
+
standby_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
12228
|
+
syncing_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
12229
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
12230
|
+
"""
|
|
12231
|
+
:param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]] params: MySQL connection parameters
|
|
12232
|
+
:param pulumi.Input[str] replica_uri: MySQL replica URI for services with a replica
|
|
12233
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uris: MySQL standby connection URIs
|
|
12234
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] syncing_uris: MySQL syncing connection URIs
|
|
12235
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: MySQL master connection URIs
|
|
12236
|
+
"""
|
|
12237
|
+
if params is not None:
|
|
12238
|
+
pulumi.set(__self__, "params", params)
|
|
12239
|
+
if replica_uri is not None:
|
|
12240
|
+
pulumi.set(__self__, "replica_uri", replica_uri)
|
|
12241
|
+
if standby_uris is not None:
|
|
12242
|
+
pulumi.set(__self__, "standby_uris", standby_uris)
|
|
12243
|
+
if syncing_uris is not None:
|
|
12244
|
+
pulumi.set(__self__, "syncing_uris", syncing_uris)
|
|
12245
|
+
if uris is not None:
|
|
12246
|
+
pulumi.set(__self__, "uris", uris)
|
|
12247
|
+
|
|
12248
|
+
@property
|
|
12249
|
+
@pulumi.getter
|
|
12250
|
+
def params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]]:
|
|
11891
12251
|
"""
|
|
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.
|
|
12252
|
+
MySQL connection parameters
|
|
11912
12253
|
"""
|
|
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
|
-
|
|
12254
|
+
return pulumi.get(self, "params")
|
|
12255
|
+
|
|
12256
|
+
@params.setter
|
|
12257
|
+
def params(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]]):
|
|
12258
|
+
pulumi.set(self, "params", value)
|
|
12259
|
+
|
|
12260
|
+
@property
|
|
12261
|
+
@pulumi.getter(name="replicaUri")
|
|
12262
|
+
def replica_uri(self) -> Optional[pulumi.Input[str]]:
|
|
12263
|
+
"""
|
|
12264
|
+
MySQL replica URI for services with a replica
|
|
12265
|
+
"""
|
|
12266
|
+
return pulumi.get(self, "replica_uri")
|
|
12267
|
+
|
|
12268
|
+
@replica_uri.setter
|
|
12269
|
+
def replica_uri(self, value: Optional[pulumi.Input[str]]):
|
|
12270
|
+
pulumi.set(self, "replica_uri", value)
|
|
12271
|
+
|
|
12272
|
+
@property
|
|
12273
|
+
@pulumi.getter(name="standbyUris")
|
|
12274
|
+
def standby_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
12275
|
+
"""
|
|
12276
|
+
MySQL standby connection URIs
|
|
12277
|
+
"""
|
|
12278
|
+
return pulumi.get(self, "standby_uris")
|
|
12279
|
+
|
|
12280
|
+
@standby_uris.setter
|
|
12281
|
+
def standby_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
12282
|
+
pulumi.set(self, "standby_uris", value)
|
|
12283
|
+
|
|
12284
|
+
@property
|
|
12285
|
+
@pulumi.getter(name="syncingUris")
|
|
12286
|
+
def syncing_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
12287
|
+
"""
|
|
12288
|
+
MySQL syncing connection URIs
|
|
12289
|
+
"""
|
|
12290
|
+
return pulumi.get(self, "syncing_uris")
|
|
12291
|
+
|
|
12292
|
+
@syncing_uris.setter
|
|
12293
|
+
def syncing_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
12294
|
+
pulumi.set(self, "syncing_uris", value)
|
|
12295
|
+
|
|
12296
|
+
@property
|
|
12297
|
+
@pulumi.getter
|
|
12298
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
12299
|
+
"""
|
|
12300
|
+
MySQL master connection URIs
|
|
12301
|
+
"""
|
|
12302
|
+
return pulumi.get(self, "uris")
|
|
12303
|
+
|
|
12304
|
+
@uris.setter
|
|
12305
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
12306
|
+
pulumi.set(self, "uris", value)
|
|
12307
|
+
|
|
12308
|
+
|
|
12309
|
+
@pulumi.input_type
|
|
12310
|
+
class MySqlMysqlParamArgs:
|
|
12311
|
+
def __init__(__self__, *,
|
|
12312
|
+
database_name: Optional[pulumi.Input[str]] = None,
|
|
12313
|
+
host: Optional[pulumi.Input[str]] = None,
|
|
12314
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
12315
|
+
port: Optional[pulumi.Input[int]] = None,
|
|
12316
|
+
sslmode: Optional[pulumi.Input[str]] = None,
|
|
12317
|
+
user: Optional[pulumi.Input[str]] = None):
|
|
12318
|
+
"""
|
|
12319
|
+
:param pulumi.Input[str] database_name: Primary MySQL database name
|
|
12320
|
+
:param pulumi.Input[str] host: MySQL host IP or name
|
|
12321
|
+
:param pulumi.Input[str] password: MySQL admin user password
|
|
12322
|
+
:param pulumi.Input[int] port: MySQL port
|
|
12323
|
+
:param pulumi.Input[str] sslmode: MySQL sslmode setting (currently always "require")
|
|
12324
|
+
:param pulumi.Input[str] user: MySQL admin user name
|
|
12325
|
+
"""
|
|
12326
|
+
if database_name is not None:
|
|
12327
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
12328
|
+
if host is not None:
|
|
12329
|
+
pulumi.set(__self__, "host", host)
|
|
12330
|
+
if password is not None:
|
|
12331
|
+
pulumi.set(__self__, "password", password)
|
|
12332
|
+
if port is not None:
|
|
12333
|
+
pulumi.set(__self__, "port", port)
|
|
12334
|
+
if sslmode is not None:
|
|
12335
|
+
pulumi.set(__self__, "sslmode", sslmode)
|
|
12336
|
+
if user is not None:
|
|
12337
|
+
pulumi.set(__self__, "user", user)
|
|
12338
|
+
|
|
12339
|
+
@property
|
|
12340
|
+
@pulumi.getter(name="databaseName")
|
|
12341
|
+
def database_name(self) -> Optional[pulumi.Input[str]]:
|
|
12342
|
+
"""
|
|
12343
|
+
Primary MySQL database name
|
|
12344
|
+
"""
|
|
12345
|
+
return pulumi.get(self, "database_name")
|
|
12346
|
+
|
|
12347
|
+
@database_name.setter
|
|
12348
|
+
def database_name(self, value: Optional[pulumi.Input[str]]):
|
|
12349
|
+
pulumi.set(self, "database_name", value)
|
|
12350
|
+
|
|
12351
|
+
@property
|
|
12352
|
+
@pulumi.getter
|
|
12353
|
+
def host(self) -> Optional[pulumi.Input[str]]:
|
|
12354
|
+
"""
|
|
12355
|
+
MySQL host IP or name
|
|
12356
|
+
"""
|
|
12357
|
+
return pulumi.get(self, "host")
|
|
12358
|
+
|
|
12359
|
+
@host.setter
|
|
12360
|
+
def host(self, value: Optional[pulumi.Input[str]]):
|
|
12361
|
+
pulumi.set(self, "host", value)
|
|
12362
|
+
|
|
12363
|
+
@property
|
|
12364
|
+
@pulumi.getter
|
|
12365
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
12366
|
+
"""
|
|
12367
|
+
MySQL admin user password
|
|
12368
|
+
"""
|
|
12369
|
+
return pulumi.get(self, "password")
|
|
12370
|
+
|
|
12371
|
+
@password.setter
|
|
12372
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
12373
|
+
pulumi.set(self, "password", value)
|
|
12374
|
+
|
|
12375
|
+
@property
|
|
12376
|
+
@pulumi.getter
|
|
12377
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
|
12378
|
+
"""
|
|
12379
|
+
MySQL port
|
|
12380
|
+
"""
|
|
12381
|
+
return pulumi.get(self, "port")
|
|
12382
|
+
|
|
12383
|
+
@port.setter
|
|
12384
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
|
12385
|
+
pulumi.set(self, "port", value)
|
|
12386
|
+
|
|
12387
|
+
@property
|
|
12388
|
+
@pulumi.getter
|
|
12389
|
+
def sslmode(self) -> Optional[pulumi.Input[str]]:
|
|
12390
|
+
"""
|
|
12391
|
+
MySQL sslmode setting (currently always "require")
|
|
12392
|
+
"""
|
|
12393
|
+
return pulumi.get(self, "sslmode")
|
|
12394
|
+
|
|
12395
|
+
@sslmode.setter
|
|
12396
|
+
def sslmode(self, value: Optional[pulumi.Input[str]]):
|
|
12397
|
+
pulumi.set(self, "sslmode", value)
|
|
12398
|
+
|
|
12399
|
+
@property
|
|
12400
|
+
@pulumi.getter
|
|
12401
|
+
def user(self) -> Optional[pulumi.Input[str]]:
|
|
12402
|
+
"""
|
|
12403
|
+
MySQL admin user name
|
|
12404
|
+
"""
|
|
12405
|
+
return pulumi.get(self, "user")
|
|
12406
|
+
|
|
12407
|
+
@user.setter
|
|
12408
|
+
def user(self, value: Optional[pulumi.Input[str]]):
|
|
12409
|
+
pulumi.set(self, "user", value)
|
|
12410
|
+
|
|
12411
|
+
|
|
12412
|
+
@pulumi.input_type
|
|
12413
|
+
class MySqlMysqlUserConfigArgs:
|
|
12414
|
+
def __init__(__self__, *,
|
|
12415
|
+
additional_backup_regions: Optional[pulumi.Input[str]] = None,
|
|
12416
|
+
admin_password: Optional[pulumi.Input[str]] = None,
|
|
12417
|
+
admin_username: Optional[pulumi.Input[str]] = None,
|
|
12418
|
+
backup_hour: Optional[pulumi.Input[int]] = None,
|
|
12419
|
+
backup_minute: Optional[pulumi.Input[int]] = None,
|
|
12420
|
+
binlog_retention_period: Optional[pulumi.Input[int]] = None,
|
|
12421
|
+
ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]]] = None,
|
|
12422
|
+
ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
12423
|
+
ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
12424
|
+
migration: Optional[pulumi.Input['MySqlMysqlUserConfigMigrationArgs']] = None,
|
|
12425
|
+
mysql: Optional[pulumi.Input['MySqlMysqlUserConfigMysqlArgs']] = None,
|
|
12426
|
+
mysql_version: Optional[pulumi.Input[str]] = None,
|
|
12427
|
+
private_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs']] = None,
|
|
12428
|
+
privatelink_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs']] = None,
|
|
12429
|
+
project_to_fork_from: Optional[pulumi.Input[str]] = None,
|
|
12430
|
+
public_access: Optional[pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs']] = None,
|
|
12431
|
+
recovery_target_time: Optional[pulumi.Input[str]] = None,
|
|
12432
|
+
service_log: Optional[pulumi.Input[bool]] = None,
|
|
12433
|
+
service_to_fork_from: Optional[pulumi.Input[str]] = None,
|
|
12434
|
+
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
12435
|
+
"""
|
|
12436
|
+
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
12437
|
+
: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.
|
|
12438
|
+
:param pulumi.Input[str] admin_username: Custom username for admin user. This must be set only when a new service is being created.
|
|
12439
|
+
: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.
|
|
12440
|
+
: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.
|
|
12441
|
+
: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.
|
|
12442
|
+
:param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
12443
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
12444
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
12445
|
+
:param pulumi.Input['MySqlMysqlUserConfigMigrationArgs'] migration: Migrate data from existing server
|
|
12446
|
+
:param pulumi.Input['MySqlMysqlUserConfigMysqlArgs'] mysql: mysql.conf configuration values
|
|
12447
|
+
:param pulumi.Input[str] mysql_version: Enum: `8`, and newer. MySQL major version.
|
|
12448
|
+
:param pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
12449
|
+
:param pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
12450
|
+
: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.
|
|
12451
|
+
:param pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
12452
|
+
: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.
|
|
12453
|
+
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
12454
|
+
: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.
|
|
12455
|
+
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
12456
|
+
"""
|
|
12457
|
+
if additional_backup_regions is not None:
|
|
12458
|
+
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
12459
|
+
if admin_password is not None:
|
|
12460
|
+
pulumi.set(__self__, "admin_password", admin_password)
|
|
12461
|
+
if admin_username is not None:
|
|
12462
|
+
pulumi.set(__self__, "admin_username", admin_username)
|
|
12463
|
+
if backup_hour is not None:
|
|
12464
|
+
pulumi.set(__self__, "backup_hour", backup_hour)
|
|
12465
|
+
if backup_minute is not None:
|
|
12466
|
+
pulumi.set(__self__, "backup_minute", backup_minute)
|
|
12467
|
+
if binlog_retention_period is not None:
|
|
12468
|
+
pulumi.set(__self__, "binlog_retention_period", binlog_retention_period)
|
|
12469
|
+
if ip_filter_objects is not None:
|
|
12470
|
+
pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
|
|
12471
|
+
if ip_filter_strings is not None:
|
|
12472
|
+
pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
|
|
12473
|
+
if ip_filters is not None:
|
|
12474
|
+
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
12475
|
+
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
12476
|
+
if ip_filters is not None:
|
|
12477
|
+
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
12478
|
+
if migration is not None:
|
|
12479
|
+
pulumi.set(__self__, "migration", migration)
|
|
12480
|
+
if mysql is not None:
|
|
12481
|
+
pulumi.set(__self__, "mysql", mysql)
|
|
12482
|
+
if mysql_version is not None:
|
|
12483
|
+
pulumi.set(__self__, "mysql_version", mysql_version)
|
|
12484
|
+
if private_access is not None:
|
|
12485
|
+
pulumi.set(__self__, "private_access", private_access)
|
|
12486
|
+
if privatelink_access is not None:
|
|
12487
|
+
pulumi.set(__self__, "privatelink_access", privatelink_access)
|
|
12488
|
+
if project_to_fork_from is not None:
|
|
12489
|
+
pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
|
|
12490
|
+
if public_access is not None:
|
|
12491
|
+
pulumi.set(__self__, "public_access", public_access)
|
|
11948
12492
|
if recovery_target_time is not None:
|
|
11949
12493
|
pulumi.set(__self__, "recovery_target_time", recovery_target_time)
|
|
11950
12494
|
if service_log is not None:
|
|
@@ -12093,7 +12637,7 @@ class MySqlMysqlUserConfigArgs:
|
|
|
12093
12637
|
@pulumi.getter(name="mysqlVersion")
|
|
12094
12638
|
def mysql_version(self) -> Optional[pulumi.Input[str]]:
|
|
12095
12639
|
"""
|
|
12096
|
-
MySQL major version.
|
|
12640
|
+
Enum: `8`, and newer. MySQL major version.
|
|
12097
12641
|
"""
|
|
12098
12642
|
return pulumi.get(self, "mysql_version")
|
|
12099
12643
|
|
|
@@ -12252,7 +12796,7 @@ class MySqlMysqlUserConfigMigrationArgs:
|
|
|
12252
12796
|
:param pulumi.Input[int] port: Port number of the server where to migrate data from.
|
|
12253
12797
|
:param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
|
|
12254
12798
|
: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).
|
|
12799
|
+
: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
12800
|
:param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
|
|
12257
12801
|
:param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
|
|
12258
12802
|
:param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
|
|
@@ -12324,7 +12868,7 @@ class MySqlMysqlUserConfigMigrationArgs:
|
|
|
12324
12868
|
@pulumi.getter
|
|
12325
12869
|
def method(self) -> Optional[pulumi.Input[str]]:
|
|
12326
12870
|
"""
|
|
12327
|
-
The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
12871
|
+
Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
12328
12872
|
"""
|
|
12329
12873
|
return pulumi.get(self, "method")
|
|
12330
12874
|
|
|
@@ -12420,7 +12964,7 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
12420
12964
|
: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
12965
|
: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
12966
|
: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.
|
|
12967
|
+
:param pulumi.Input[str] internal_tmp_mem_storage_engine: Enum: `TempTable`, `MEMORY`. The storage engine for in-memory internal temporary tables.
|
|
12424
12968
|
: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
12969
|
: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
12970
|
: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 +13247,7 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
12703
13247
|
@pulumi.getter(name="internalTmpMemStorageEngine")
|
|
12704
13248
|
def internal_tmp_mem_storage_engine(self) -> Optional[pulumi.Input[str]]:
|
|
12705
13249
|
"""
|
|
12706
|
-
The storage engine for in-memory internal temporary tables.
|
|
13250
|
+
Enum: `TempTable`, `MEMORY`. The storage engine for in-memory internal temporary tables.
|
|
12707
13251
|
"""
|
|
12708
13252
|
return pulumi.get(self, "internal_tmp_mem_storage_engine")
|
|
12709
13253
|
|
|
@@ -13255,12 +13799,40 @@ class OpenSearchComponentArgs:
|
|
|
13255
13799
|
@pulumi.input_type
|
|
13256
13800
|
class OpenSearchOpensearchArgs:
|
|
13257
13801
|
def __init__(__self__, *,
|
|
13258
|
-
|
|
13802
|
+
kibana_uri: Optional[pulumi.Input[str]] = None,
|
|
13803
|
+
opensearch_dashboards_uri: Optional[pulumi.Input[str]] = None,
|
|
13804
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
13805
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
13806
|
+
username: Optional[pulumi.Input[str]] = None):
|
|
13259
13807
|
"""
|
|
13808
|
+
:param pulumi.Input[str] kibana_uri: URI for Kibana dashboard frontend
|
|
13260
13809
|
:param pulumi.Input[str] opensearch_dashboards_uri: URI for OpenSearch dashboard frontend
|
|
13810
|
+
:param pulumi.Input[str] password: OpenSearch password
|
|
13811
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: OpenSearch server URIs.
|
|
13812
|
+
:param pulumi.Input[str] username: OpenSearch username
|
|
13261
13813
|
"""
|
|
13814
|
+
if kibana_uri is not None:
|
|
13815
|
+
pulumi.set(__self__, "kibana_uri", kibana_uri)
|
|
13262
13816
|
if opensearch_dashboards_uri is not None:
|
|
13263
13817
|
pulumi.set(__self__, "opensearch_dashboards_uri", opensearch_dashboards_uri)
|
|
13818
|
+
if password is not None:
|
|
13819
|
+
pulumi.set(__self__, "password", password)
|
|
13820
|
+
if uris is not None:
|
|
13821
|
+
pulumi.set(__self__, "uris", uris)
|
|
13822
|
+
if username is not None:
|
|
13823
|
+
pulumi.set(__self__, "username", username)
|
|
13824
|
+
|
|
13825
|
+
@property
|
|
13826
|
+
@pulumi.getter(name="kibanaUri")
|
|
13827
|
+
def kibana_uri(self) -> Optional[pulumi.Input[str]]:
|
|
13828
|
+
"""
|
|
13829
|
+
URI for Kibana dashboard frontend
|
|
13830
|
+
"""
|
|
13831
|
+
return pulumi.get(self, "kibana_uri")
|
|
13832
|
+
|
|
13833
|
+
@kibana_uri.setter
|
|
13834
|
+
def kibana_uri(self, value: Optional[pulumi.Input[str]]):
|
|
13835
|
+
pulumi.set(self, "kibana_uri", value)
|
|
13264
13836
|
|
|
13265
13837
|
@property
|
|
13266
13838
|
@pulumi.getter(name="opensearchDashboardsUri")
|
|
@@ -13274,6 +13846,42 @@ class OpenSearchOpensearchArgs:
|
|
|
13274
13846
|
def opensearch_dashboards_uri(self, value: Optional[pulumi.Input[str]]):
|
|
13275
13847
|
pulumi.set(self, "opensearch_dashboards_uri", value)
|
|
13276
13848
|
|
|
13849
|
+
@property
|
|
13850
|
+
@pulumi.getter
|
|
13851
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
13852
|
+
"""
|
|
13853
|
+
OpenSearch password
|
|
13854
|
+
"""
|
|
13855
|
+
return pulumi.get(self, "password")
|
|
13856
|
+
|
|
13857
|
+
@password.setter
|
|
13858
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
13859
|
+
pulumi.set(self, "password", value)
|
|
13860
|
+
|
|
13861
|
+
@property
|
|
13862
|
+
@pulumi.getter
|
|
13863
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
13864
|
+
"""
|
|
13865
|
+
OpenSearch server URIs.
|
|
13866
|
+
"""
|
|
13867
|
+
return pulumi.get(self, "uris")
|
|
13868
|
+
|
|
13869
|
+
@uris.setter
|
|
13870
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
13871
|
+
pulumi.set(self, "uris", value)
|
|
13872
|
+
|
|
13873
|
+
@property
|
|
13874
|
+
@pulumi.getter
|
|
13875
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
|
13876
|
+
"""
|
|
13877
|
+
OpenSearch username
|
|
13878
|
+
"""
|
|
13879
|
+
return pulumi.get(self, "username")
|
|
13880
|
+
|
|
13881
|
+
@username.setter
|
|
13882
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
|
13883
|
+
pulumi.set(self, "username", value)
|
|
13884
|
+
|
|
13277
13885
|
|
|
13278
13886
|
@pulumi.input_type
|
|
13279
13887
|
class OpenSearchOpensearchUserConfigArgs:
|
|
@@ -13315,7 +13923,7 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
13315
13923
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpenidArgs'] openid: OpenSearch OpenID Connect Configuration
|
|
13316
13924
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchArgs'] opensearch: OpenSearch settings
|
|
13317
13925
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDashboardsArgs'] opensearch_dashboards: OpenSearch Dashboards settings
|
|
13318
|
-
:param pulumi.Input[str] opensearch_version: OpenSearch major version.
|
|
13926
|
+
:param pulumi.Input[str] opensearch_version: Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
13319
13927
|
:param pulumi.Input['OpenSearchOpensearchUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
13320
13928
|
:param pulumi.Input['OpenSearchOpensearchUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
13321
13929
|
: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 +14147,7 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
13539
14147
|
@pulumi.getter(name="opensearchVersion")
|
|
13540
14148
|
def opensearch_version(self) -> Optional[pulumi.Input[str]]:
|
|
13541
14149
|
"""
|
|
13542
|
-
OpenSearch major version.
|
|
14150
|
+
Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
13543
14151
|
"""
|
|
13544
14152
|
return pulumi.get(self, "opensearch_version")
|
|
13545
14153
|
|
|
@@ -13665,7 +14273,7 @@ class OpenSearchOpensearchUserConfigIndexPatternArgs:
|
|
|
13665
14273
|
"""
|
|
13666
14274
|
:param pulumi.Input[int] max_index_count: Maximum number of indexes to keep.
|
|
13667
14275
|
:param pulumi.Input[str] pattern: fnmatch pattern.
|
|
13668
|
-
:param pulumi.Input[str] sorting_algorithm: Deletion sorting algorithm. The default value is `creation_date`.
|
|
14276
|
+
:param pulumi.Input[str] sorting_algorithm: Enum: `alphabetical`, `creation_date`. Deletion sorting algorithm. The default value is `creation_date`.
|
|
13669
14277
|
"""
|
|
13670
14278
|
pulumi.set(__self__, "max_index_count", max_index_count)
|
|
13671
14279
|
pulumi.set(__self__, "pattern", pattern)
|
|
@@ -13700,7 +14308,7 @@ class OpenSearchOpensearchUserConfigIndexPatternArgs:
|
|
|
13700
14308
|
@pulumi.getter(name="sortingAlgorithm")
|
|
13701
14309
|
def sorting_algorithm(self) -> Optional[pulumi.Input[str]]:
|
|
13702
14310
|
"""
|
|
13703
|
-
Deletion sorting algorithm. The default value is `creation_date`.
|
|
14311
|
+
Enum: `alphabetical`, `creation_date`. Deletion sorting algorithm. The default value is `creation_date`.
|
|
13704
14312
|
"""
|
|
13705
14313
|
return pulumi.get(self, "sorting_algorithm")
|
|
13706
14314
|
|
|
@@ -14723,12 +15331,12 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
|
|
|
14723
15331
|
type: Optional[pulumi.Input[str]] = None):
|
|
14724
15332
|
"""
|
|
14725
15333
|
: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.
|
|
15334
|
+
:param pulumi.Input[str] authentication_backend: Enum: `internal`. internal*authentication*backend*limiting.authentication*backend.
|
|
14727
15335
|
:param pulumi.Input[int] block_expiry_seconds: The duration of time that login remains blocked after a failed login.
|
|
14728
15336
|
:param pulumi.Input[int] max_blocked_clients: internal*authentication*backend*limiting.max*blocked_clients.
|
|
14729
15337
|
:param pulumi.Input[int] max_tracked_clients: The maximum number of tracked IP addresses that have failed login.
|
|
14730
15338
|
: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.
|
|
15339
|
+
:param pulumi.Input[str] type: Enum: `username`. internal*authentication*backend_limiting.type.
|
|
14732
15340
|
"""
|
|
14733
15341
|
if allowed_tries is not None:
|
|
14734
15342
|
pulumi.set(__self__, "allowed_tries", allowed_tries)
|
|
@@ -14761,7 +15369,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
|
|
|
14761
15369
|
@pulumi.getter(name="authenticationBackend")
|
|
14762
15370
|
def authentication_backend(self) -> Optional[pulumi.Input[str]]:
|
|
14763
15371
|
"""
|
|
14764
|
-
internal*authentication*backend*limiting.authentication*backend.
|
|
15372
|
+
Enum: `internal`. internal*authentication*backend*limiting.authentication*backend.
|
|
14765
15373
|
"""
|
|
14766
15374
|
return pulumi.get(self, "authentication_backend")
|
|
14767
15375
|
|
|
@@ -14821,7 +15429,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
|
|
|
14821
15429
|
@pulumi.getter
|
|
14822
15430
|
def type(self) -> Optional[pulumi.Input[str]]:
|
|
14823
15431
|
"""
|
|
14824
|
-
internal*authentication*backend_limiting.type.
|
|
15432
|
+
Enum: `username`. internal*authentication*backend_limiting.type.
|
|
14825
15433
|
"""
|
|
14826
15434
|
return pulumi.get(self, "type")
|
|
14827
15435
|
|
|
@@ -14845,7 +15453,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
|
|
|
14845
15453
|
:param pulumi.Input[int] max_blocked_clients: The maximum number of blocked IP addresses.
|
|
14846
15454
|
:param pulumi.Input[int] max_tracked_clients: The maximum number of tracked IP addresses that have failed login.
|
|
14847
15455
|
: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.
|
|
15456
|
+
:param pulumi.Input[str] type: Enum: `ip`. The type of rate limiting.
|
|
14849
15457
|
"""
|
|
14850
15458
|
if allowed_tries is not None:
|
|
14851
15459
|
pulumi.set(__self__, "allowed_tries", allowed_tries)
|
|
@@ -14924,7 +15532,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
|
|
|
14924
15532
|
@pulumi.getter
|
|
14925
15533
|
def type(self) -> Optional[pulumi.Input[str]]:
|
|
14926
15534
|
"""
|
|
14927
|
-
The type of rate limiting.
|
|
15535
|
+
Enum: `ip`. The type of rate limiting.
|
|
14928
15536
|
"""
|
|
14929
15537
|
return pulumi.get(self, "type")
|
|
14930
15538
|
|
|
@@ -15298,212 +15906,70 @@ class OpenSearchServiceIntegrationArgs:
|
|
|
15298
15906
|
"""
|
|
15299
15907
|
Name of the source service
|
|
15300
15908
|
"""
|
|
15301
|
-
return pulumi.get(self, "source_service_name")
|
|
15302
|
-
|
|
15303
|
-
@source_service_name.setter
|
|
15304
|
-
def source_service_name(self, value: pulumi.Input[str]):
|
|
15305
|
-
pulumi.set(self, "source_service_name", value)
|
|
15306
|
-
|
|
15307
|
-
|
|
15308
|
-
@pulumi.input_type
|
|
15309
|
-
class OpenSearchTagArgs:
|
|
15310
|
-
def __init__(__self__, *,
|
|
15311
|
-
key: pulumi.Input[str],
|
|
15312
|
-
value: pulumi.Input[str]):
|
|
15313
|
-
"""
|
|
15314
|
-
:param pulumi.Input[str] key: Service tag key
|
|
15315
|
-
:param pulumi.Input[str] value: Service tag value
|
|
15316
|
-
"""
|
|
15317
|
-
pulumi.set(__self__, "key", key)
|
|
15318
|
-
pulumi.set(__self__, "value", value)
|
|
15319
|
-
|
|
15320
|
-
@property
|
|
15321
|
-
@pulumi.getter
|
|
15322
|
-
def key(self) -> pulumi.Input[str]:
|
|
15323
|
-
"""
|
|
15324
|
-
Service tag key
|
|
15325
|
-
"""
|
|
15326
|
-
return pulumi.get(self, "key")
|
|
15327
|
-
|
|
15328
|
-
@key.setter
|
|
15329
|
-
def key(self, value: pulumi.Input[str]):
|
|
15330
|
-
pulumi.set(self, "key", value)
|
|
15331
|
-
|
|
15332
|
-
@property
|
|
15333
|
-
@pulumi.getter
|
|
15334
|
-
def value(self) -> pulumi.Input[str]:
|
|
15335
|
-
"""
|
|
15336
|
-
Service tag value
|
|
15337
|
-
"""
|
|
15338
|
-
return pulumi.get(self, "value")
|
|
15339
|
-
|
|
15340
|
-
@value.setter
|
|
15341
|
-
def value(self, value: pulumi.Input[str]):
|
|
15342
|
-
pulumi.set(self, "value", value)
|
|
15343
|
-
|
|
15344
|
-
|
|
15345
|
-
@pulumi.input_type
|
|
15346
|
-
class OpenSearchTechEmailArgs:
|
|
15347
|
-
def __init__(__self__, *,
|
|
15348
|
-
email: pulumi.Input[str]):
|
|
15349
|
-
"""
|
|
15350
|
-
:param pulumi.Input[str] email: An email address to contact for technical issues
|
|
15351
|
-
"""
|
|
15352
|
-
pulumi.set(__self__, "email", email)
|
|
15353
|
-
|
|
15354
|
-
@property
|
|
15355
|
-
@pulumi.getter
|
|
15356
|
-
def email(self) -> pulumi.Input[str]:
|
|
15357
|
-
"""
|
|
15358
|
-
An email address to contact for technical issues
|
|
15359
|
-
"""
|
|
15360
|
-
return pulumi.get(self, "email")
|
|
15361
|
-
|
|
15362
|
-
@email.setter
|
|
15363
|
-
def email(self, value: pulumi.Input[str]):
|
|
15364
|
-
pulumi.set(self, "email", value)
|
|
15365
|
-
|
|
15366
|
-
|
|
15367
|
-
@pulumi.input_type
|
|
15368
|
-
class OrganizationApplicationUserTimeoutsArgs:
|
|
15369
|
-
def __init__(__self__, *,
|
|
15370
|
-
create: Optional[pulumi.Input[str]] = None,
|
|
15371
|
-
delete: Optional[pulumi.Input[str]] = None,
|
|
15372
|
-
read: Optional[pulumi.Input[str]] = None,
|
|
15373
|
-
update: Optional[pulumi.Input[str]] = None):
|
|
15374
|
-
"""
|
|
15375
|
-
:param pulumi.Input[str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15376
|
-
:param pulumi.Input[str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
15377
|
-
:param pulumi.Input[str] read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
15378
|
-
:param pulumi.Input[str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15379
|
-
"""
|
|
15380
|
-
if create is not None:
|
|
15381
|
-
pulumi.set(__self__, "create", create)
|
|
15382
|
-
if delete is not None:
|
|
15383
|
-
pulumi.set(__self__, "delete", delete)
|
|
15384
|
-
if read is not None:
|
|
15385
|
-
pulumi.set(__self__, "read", read)
|
|
15386
|
-
if update is not None:
|
|
15387
|
-
pulumi.set(__self__, "update", update)
|
|
15388
|
-
|
|
15389
|
-
@property
|
|
15390
|
-
@pulumi.getter
|
|
15391
|
-
def create(self) -> Optional[pulumi.Input[str]]:
|
|
15392
|
-
"""
|
|
15393
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15394
|
-
"""
|
|
15395
|
-
return pulumi.get(self, "create")
|
|
15396
|
-
|
|
15397
|
-
@create.setter
|
|
15398
|
-
def create(self, value: Optional[pulumi.Input[str]]):
|
|
15399
|
-
pulumi.set(self, "create", value)
|
|
15400
|
-
|
|
15401
|
-
@property
|
|
15402
|
-
@pulumi.getter
|
|
15403
|
-
def delete(self) -> Optional[pulumi.Input[str]]:
|
|
15404
|
-
"""
|
|
15405
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
15406
|
-
"""
|
|
15407
|
-
return pulumi.get(self, "delete")
|
|
15408
|
-
|
|
15409
|
-
@delete.setter
|
|
15410
|
-
def delete(self, value: Optional[pulumi.Input[str]]):
|
|
15411
|
-
pulumi.set(self, "delete", value)
|
|
15412
|
-
|
|
15413
|
-
@property
|
|
15414
|
-
@pulumi.getter
|
|
15415
|
-
def read(self) -> Optional[pulumi.Input[str]]:
|
|
15416
|
-
"""
|
|
15417
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
15418
|
-
"""
|
|
15419
|
-
return pulumi.get(self, "read")
|
|
15420
|
-
|
|
15421
|
-
@read.setter
|
|
15422
|
-
def read(self, value: Optional[pulumi.Input[str]]):
|
|
15423
|
-
pulumi.set(self, "read", value)
|
|
15424
|
-
|
|
15425
|
-
@property
|
|
15426
|
-
@pulumi.getter
|
|
15427
|
-
def update(self) -> Optional[pulumi.Input[str]]:
|
|
15428
|
-
"""
|
|
15429
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15430
|
-
"""
|
|
15431
|
-
return pulumi.get(self, "update")
|
|
15432
|
-
|
|
15433
|
-
@update.setter
|
|
15434
|
-
def update(self, value: Optional[pulumi.Input[str]]):
|
|
15435
|
-
pulumi.set(self, "update", value)
|
|
15909
|
+
return pulumi.get(self, "source_service_name")
|
|
15910
|
+
|
|
15911
|
+
@source_service_name.setter
|
|
15912
|
+
def source_service_name(self, value: pulumi.Input[str]):
|
|
15913
|
+
pulumi.set(self, "source_service_name", value)
|
|
15436
15914
|
|
|
15437
15915
|
|
|
15438
15916
|
@pulumi.input_type
|
|
15439
|
-
class
|
|
15917
|
+
class OpenSearchTagArgs:
|
|
15440
15918
|
def __init__(__self__, *,
|
|
15441
|
-
|
|
15442
|
-
|
|
15443
|
-
read: Optional[pulumi.Input[str]] = None,
|
|
15444
|
-
update: Optional[pulumi.Input[str]] = None):
|
|
15919
|
+
key: pulumi.Input[str],
|
|
15920
|
+
value: pulumi.Input[str]):
|
|
15445
15921
|
"""
|
|
15446
|
-
:param pulumi.Input[str]
|
|
15447
|
-
:param pulumi.Input[str]
|
|
15448
|
-
:param pulumi.Input[str] read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
15449
|
-
:param pulumi.Input[str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15922
|
+
:param pulumi.Input[str] key: Service tag key
|
|
15923
|
+
:param pulumi.Input[str] value: Service tag value
|
|
15450
15924
|
"""
|
|
15451
|
-
|
|
15452
|
-
|
|
15453
|
-
if delete is not None:
|
|
15454
|
-
pulumi.set(__self__, "delete", delete)
|
|
15455
|
-
if read is not None:
|
|
15456
|
-
pulumi.set(__self__, "read", read)
|
|
15457
|
-
if update is not None:
|
|
15458
|
-
pulumi.set(__self__, "update", update)
|
|
15925
|
+
pulumi.set(__self__, "key", key)
|
|
15926
|
+
pulumi.set(__self__, "value", value)
|
|
15459
15927
|
|
|
15460
15928
|
@property
|
|
15461
15929
|
@pulumi.getter
|
|
15462
|
-
def
|
|
15930
|
+
def key(self) -> pulumi.Input[str]:
|
|
15463
15931
|
"""
|
|
15464
|
-
|
|
15932
|
+
Service tag key
|
|
15465
15933
|
"""
|
|
15466
|
-
return pulumi.get(self, "
|
|
15934
|
+
return pulumi.get(self, "key")
|
|
15467
15935
|
|
|
15468
|
-
@
|
|
15469
|
-
def
|
|
15470
|
-
pulumi.set(self, "
|
|
15936
|
+
@key.setter
|
|
15937
|
+
def key(self, value: pulumi.Input[str]):
|
|
15938
|
+
pulumi.set(self, "key", value)
|
|
15471
15939
|
|
|
15472
15940
|
@property
|
|
15473
15941
|
@pulumi.getter
|
|
15474
|
-
def
|
|
15942
|
+
def value(self) -> pulumi.Input[str]:
|
|
15475
15943
|
"""
|
|
15476
|
-
|
|
15944
|
+
Service tag value
|
|
15477
15945
|
"""
|
|
15478
|
-
return pulumi.get(self, "
|
|
15946
|
+
return pulumi.get(self, "value")
|
|
15479
15947
|
|
|
15480
|
-
@
|
|
15481
|
-
def
|
|
15482
|
-
pulumi.set(self, "
|
|
15948
|
+
@value.setter
|
|
15949
|
+
def value(self, value: pulumi.Input[str]):
|
|
15950
|
+
pulumi.set(self, "value", value)
|
|
15483
15951
|
|
|
15484
|
-
|
|
15485
|
-
|
|
15486
|
-
|
|
15952
|
+
|
|
15953
|
+
@pulumi.input_type
|
|
15954
|
+
class OpenSearchTechEmailArgs:
|
|
15955
|
+
def __init__(__self__, *,
|
|
15956
|
+
email: pulumi.Input[str]):
|
|
15487
15957
|
"""
|
|
15488
|
-
|
|
15958
|
+
:param pulumi.Input[str] email: An email address to contact for technical issues
|
|
15489
15959
|
"""
|
|
15490
|
-
|
|
15491
|
-
|
|
15492
|
-
@read.setter
|
|
15493
|
-
def read(self, value: Optional[pulumi.Input[str]]):
|
|
15494
|
-
pulumi.set(self, "read", value)
|
|
15960
|
+
pulumi.set(__self__, "email", email)
|
|
15495
15961
|
|
|
15496
15962
|
@property
|
|
15497
15963
|
@pulumi.getter
|
|
15498
|
-
def
|
|
15964
|
+
def email(self) -> pulumi.Input[str]:
|
|
15499
15965
|
"""
|
|
15500
|
-
|
|
15966
|
+
An email address to contact for technical issues
|
|
15501
15967
|
"""
|
|
15502
|
-
return pulumi.get(self, "
|
|
15968
|
+
return pulumi.get(self, "email")
|
|
15503
15969
|
|
|
15504
|
-
@
|
|
15505
|
-
def
|
|
15506
|
-
pulumi.set(self, "
|
|
15970
|
+
@email.setter
|
|
15971
|
+
def email(self, value: pulumi.Input[str]):
|
|
15972
|
+
pulumi.set(self, "email", value)
|
|
15507
15973
|
|
|
15508
15974
|
|
|
15509
15975
|
@pulumi.input_type
|
|
@@ -15857,32 +16323,46 @@ class PgComponentArgs:
|
|
|
15857
16323
|
@pulumi.input_type
|
|
15858
16324
|
class PgPgArgs:
|
|
15859
16325
|
def __init__(__self__, *,
|
|
16326
|
+
bouncer: Optional[pulumi.Input[str]] = None,
|
|
15860
16327
|
dbname: Optional[pulumi.Input[str]] = None,
|
|
15861
16328
|
host: Optional[pulumi.Input[str]] = None,
|
|
15862
16329
|
max_connections: Optional[pulumi.Input[int]] = None,
|
|
16330
|
+
params: Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]] = None,
|
|
15863
16331
|
password: Optional[pulumi.Input[str]] = None,
|
|
15864
16332
|
port: Optional[pulumi.Input[int]] = None,
|
|
15865
16333
|
replica_uri: Optional[pulumi.Input[str]] = None,
|
|
15866
16334
|
sslmode: Optional[pulumi.Input[str]] = None,
|
|
16335
|
+
standby_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
16336
|
+
syncing_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
15867
16337
|
uri: Optional[pulumi.Input[str]] = None,
|
|
16338
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
15868
16339
|
user: Optional[pulumi.Input[str]] = None):
|
|
15869
16340
|
"""
|
|
16341
|
+
:param pulumi.Input[str] bouncer: Bouncer connection details
|
|
15870
16342
|
:param pulumi.Input[str] dbname: Primary PostgreSQL database name
|
|
15871
16343
|
:param pulumi.Input[str] host: PostgreSQL master node host IP or name
|
|
15872
16344
|
:param pulumi.Input[int] max_connections: Connection limit
|
|
16345
|
+
:param pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]] params: PostgreSQL connection parameters
|
|
15873
16346
|
:param pulumi.Input[str] password: PostgreSQL admin user password
|
|
15874
16347
|
:param pulumi.Input[int] port: PostgreSQL port
|
|
15875
16348
|
:param pulumi.Input[str] replica_uri: PostgreSQL replica URI for services with a replica
|
|
15876
16349
|
:param pulumi.Input[str] sslmode: PostgreSQL sslmode setting (currently always "require")
|
|
16350
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uris: PostgreSQL standby connection URIs
|
|
16351
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] syncing_uris: PostgreSQL syncing connection URIs
|
|
15877
16352
|
:param pulumi.Input[str] uri: PostgreSQL master connection URI
|
|
16353
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: PostgreSQL master connection URIs
|
|
15878
16354
|
:param pulumi.Input[str] user: PostgreSQL admin user name
|
|
15879
16355
|
"""
|
|
16356
|
+
if bouncer is not None:
|
|
16357
|
+
pulumi.set(__self__, "bouncer", bouncer)
|
|
15880
16358
|
if dbname is not None:
|
|
15881
16359
|
pulumi.set(__self__, "dbname", dbname)
|
|
15882
16360
|
if host is not None:
|
|
15883
16361
|
pulumi.set(__self__, "host", host)
|
|
15884
16362
|
if max_connections is not None:
|
|
15885
16363
|
pulumi.set(__self__, "max_connections", max_connections)
|
|
16364
|
+
if params is not None:
|
|
16365
|
+
pulumi.set(__self__, "params", params)
|
|
15886
16366
|
if password is not None:
|
|
15887
16367
|
pulumi.set(__self__, "password", password)
|
|
15888
16368
|
if port is not None:
|
|
@@ -15891,11 +16371,29 @@ class PgPgArgs:
|
|
|
15891
16371
|
pulumi.set(__self__, "replica_uri", replica_uri)
|
|
15892
16372
|
if sslmode is not None:
|
|
15893
16373
|
pulumi.set(__self__, "sslmode", sslmode)
|
|
16374
|
+
if standby_uris is not None:
|
|
16375
|
+
pulumi.set(__self__, "standby_uris", standby_uris)
|
|
16376
|
+
if syncing_uris is not None:
|
|
16377
|
+
pulumi.set(__self__, "syncing_uris", syncing_uris)
|
|
15894
16378
|
if uri is not None:
|
|
15895
16379
|
pulumi.set(__self__, "uri", uri)
|
|
16380
|
+
if uris is not None:
|
|
16381
|
+
pulumi.set(__self__, "uris", uris)
|
|
15896
16382
|
if user is not None:
|
|
15897
16383
|
pulumi.set(__self__, "user", user)
|
|
15898
16384
|
|
|
16385
|
+
@property
|
|
16386
|
+
@pulumi.getter
|
|
16387
|
+
def bouncer(self) -> Optional[pulumi.Input[str]]:
|
|
16388
|
+
"""
|
|
16389
|
+
Bouncer connection details
|
|
16390
|
+
"""
|
|
16391
|
+
return pulumi.get(self, "bouncer")
|
|
16392
|
+
|
|
16393
|
+
@bouncer.setter
|
|
16394
|
+
def bouncer(self, value: Optional[pulumi.Input[str]]):
|
|
16395
|
+
pulumi.set(self, "bouncer", value)
|
|
16396
|
+
|
|
15899
16397
|
@property
|
|
15900
16398
|
@pulumi.getter
|
|
15901
16399
|
def dbname(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -15932,6 +16430,18 @@ class PgPgArgs:
|
|
|
15932
16430
|
def max_connections(self, value: Optional[pulumi.Input[int]]):
|
|
15933
16431
|
pulumi.set(self, "max_connections", value)
|
|
15934
16432
|
|
|
16433
|
+
@property
|
|
16434
|
+
@pulumi.getter
|
|
16435
|
+
def params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]]:
|
|
16436
|
+
"""
|
|
16437
|
+
PostgreSQL connection parameters
|
|
16438
|
+
"""
|
|
16439
|
+
return pulumi.get(self, "params")
|
|
16440
|
+
|
|
16441
|
+
@params.setter
|
|
16442
|
+
def params(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]]):
|
|
16443
|
+
pulumi.set(self, "params", value)
|
|
16444
|
+
|
|
15935
16445
|
@property
|
|
15936
16446
|
@pulumi.getter
|
|
15937
16447
|
def password(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -15980,6 +16490,30 @@ class PgPgArgs:
|
|
|
15980
16490
|
def sslmode(self, value: Optional[pulumi.Input[str]]):
|
|
15981
16491
|
pulumi.set(self, "sslmode", value)
|
|
15982
16492
|
|
|
16493
|
+
@property
|
|
16494
|
+
@pulumi.getter(name="standbyUris")
|
|
16495
|
+
def standby_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
16496
|
+
"""
|
|
16497
|
+
PostgreSQL standby connection URIs
|
|
16498
|
+
"""
|
|
16499
|
+
return pulumi.get(self, "standby_uris")
|
|
16500
|
+
|
|
16501
|
+
@standby_uris.setter
|
|
16502
|
+
def standby_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
16503
|
+
pulumi.set(self, "standby_uris", value)
|
|
16504
|
+
|
|
16505
|
+
@property
|
|
16506
|
+
@pulumi.getter(name="syncingUris")
|
|
16507
|
+
def syncing_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
16508
|
+
"""
|
|
16509
|
+
PostgreSQL syncing connection URIs
|
|
16510
|
+
"""
|
|
16511
|
+
return pulumi.get(self, "syncing_uris")
|
|
16512
|
+
|
|
16513
|
+
@syncing_uris.setter
|
|
16514
|
+
def syncing_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
16515
|
+
pulumi.set(self, "syncing_uris", value)
|
|
16516
|
+
|
|
15983
16517
|
@property
|
|
15984
16518
|
@pulumi.getter
|
|
15985
16519
|
def uri(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -15992,6 +16526,121 @@ class PgPgArgs:
|
|
|
15992
16526
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
|
15993
16527
|
pulumi.set(self, "uri", value)
|
|
15994
16528
|
|
|
16529
|
+
@property
|
|
16530
|
+
@pulumi.getter
|
|
16531
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
16532
|
+
"""
|
|
16533
|
+
PostgreSQL master connection URIs
|
|
16534
|
+
"""
|
|
16535
|
+
return pulumi.get(self, "uris")
|
|
16536
|
+
|
|
16537
|
+
@uris.setter
|
|
16538
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
16539
|
+
pulumi.set(self, "uris", value)
|
|
16540
|
+
|
|
16541
|
+
@property
|
|
16542
|
+
@pulumi.getter
|
|
16543
|
+
def user(self) -> Optional[pulumi.Input[str]]:
|
|
16544
|
+
"""
|
|
16545
|
+
PostgreSQL admin user name
|
|
16546
|
+
"""
|
|
16547
|
+
return pulumi.get(self, "user")
|
|
16548
|
+
|
|
16549
|
+
@user.setter
|
|
16550
|
+
def user(self, value: Optional[pulumi.Input[str]]):
|
|
16551
|
+
pulumi.set(self, "user", value)
|
|
16552
|
+
|
|
16553
|
+
|
|
16554
|
+
@pulumi.input_type
|
|
16555
|
+
class PgPgParamArgs:
|
|
16556
|
+
def __init__(__self__, *,
|
|
16557
|
+
database_name: Optional[pulumi.Input[str]] = None,
|
|
16558
|
+
host: Optional[pulumi.Input[str]] = None,
|
|
16559
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
16560
|
+
port: Optional[pulumi.Input[int]] = None,
|
|
16561
|
+
sslmode: Optional[pulumi.Input[str]] = None,
|
|
16562
|
+
user: Optional[pulumi.Input[str]] = None):
|
|
16563
|
+
"""
|
|
16564
|
+
:param pulumi.Input[str] database_name: Primary PostgreSQL database name
|
|
16565
|
+
:param pulumi.Input[str] host: PostgreSQL host IP or name
|
|
16566
|
+
:param pulumi.Input[str] password: PostgreSQL admin user password
|
|
16567
|
+
:param pulumi.Input[int] port: PostgreSQL port
|
|
16568
|
+
:param pulumi.Input[str] sslmode: PostgreSQL sslmode setting (currently always "require")
|
|
16569
|
+
:param pulumi.Input[str] user: PostgreSQL admin user name
|
|
16570
|
+
"""
|
|
16571
|
+
if database_name is not None:
|
|
16572
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
16573
|
+
if host is not None:
|
|
16574
|
+
pulumi.set(__self__, "host", host)
|
|
16575
|
+
if password is not None:
|
|
16576
|
+
pulumi.set(__self__, "password", password)
|
|
16577
|
+
if port is not None:
|
|
16578
|
+
pulumi.set(__self__, "port", port)
|
|
16579
|
+
if sslmode is not None:
|
|
16580
|
+
pulumi.set(__self__, "sslmode", sslmode)
|
|
16581
|
+
if user is not None:
|
|
16582
|
+
pulumi.set(__self__, "user", user)
|
|
16583
|
+
|
|
16584
|
+
@property
|
|
16585
|
+
@pulumi.getter(name="databaseName")
|
|
16586
|
+
def database_name(self) -> Optional[pulumi.Input[str]]:
|
|
16587
|
+
"""
|
|
16588
|
+
Primary PostgreSQL database name
|
|
16589
|
+
"""
|
|
16590
|
+
return pulumi.get(self, "database_name")
|
|
16591
|
+
|
|
16592
|
+
@database_name.setter
|
|
16593
|
+
def database_name(self, value: Optional[pulumi.Input[str]]):
|
|
16594
|
+
pulumi.set(self, "database_name", value)
|
|
16595
|
+
|
|
16596
|
+
@property
|
|
16597
|
+
@pulumi.getter
|
|
16598
|
+
def host(self) -> Optional[pulumi.Input[str]]:
|
|
16599
|
+
"""
|
|
16600
|
+
PostgreSQL host IP or name
|
|
16601
|
+
"""
|
|
16602
|
+
return pulumi.get(self, "host")
|
|
16603
|
+
|
|
16604
|
+
@host.setter
|
|
16605
|
+
def host(self, value: Optional[pulumi.Input[str]]):
|
|
16606
|
+
pulumi.set(self, "host", value)
|
|
16607
|
+
|
|
16608
|
+
@property
|
|
16609
|
+
@pulumi.getter
|
|
16610
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
16611
|
+
"""
|
|
16612
|
+
PostgreSQL admin user password
|
|
16613
|
+
"""
|
|
16614
|
+
return pulumi.get(self, "password")
|
|
16615
|
+
|
|
16616
|
+
@password.setter
|
|
16617
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
16618
|
+
pulumi.set(self, "password", value)
|
|
16619
|
+
|
|
16620
|
+
@property
|
|
16621
|
+
@pulumi.getter
|
|
16622
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
|
16623
|
+
"""
|
|
16624
|
+
PostgreSQL port
|
|
16625
|
+
"""
|
|
16626
|
+
return pulumi.get(self, "port")
|
|
16627
|
+
|
|
16628
|
+
@port.setter
|
|
16629
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
|
16630
|
+
pulumi.set(self, "port", value)
|
|
16631
|
+
|
|
16632
|
+
@property
|
|
16633
|
+
@pulumi.getter
|
|
16634
|
+
def sslmode(self) -> Optional[pulumi.Input[str]]:
|
|
16635
|
+
"""
|
|
16636
|
+
PostgreSQL sslmode setting (currently always "require")
|
|
16637
|
+
"""
|
|
16638
|
+
return pulumi.get(self, "sslmode")
|
|
16639
|
+
|
|
16640
|
+
@sslmode.setter
|
|
16641
|
+
def sslmode(self, value: Optional[pulumi.Input[str]]):
|
|
16642
|
+
pulumi.set(self, "sslmode", value)
|
|
16643
|
+
|
|
15995
16644
|
@property
|
|
15996
16645
|
@pulumi.getter
|
|
15997
16646
|
def user(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -16056,7 +16705,7 @@ class PgPgUserConfigArgs:
|
|
|
16056
16705
|
: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
16706
|
: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
16707
|
: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.
|
|
16708
|
+
:param pulumi.Input[str] pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
16060
16709
|
:param pulumi.Input['PgPgUserConfigPgauditArgs'] pgaudit: System-wide settings for the pgaudit extension
|
|
16061
16710
|
:param pulumi.Input['PgPgUserConfigPgbouncerArgs'] pgbouncer: PGBouncer connection pooling settings
|
|
16062
16711
|
:param pulumi.Input['PgPgUserConfigPglookoutArgs'] pglookout: System-wide settings for pglookout
|
|
@@ -16069,9 +16718,9 @@ class PgPgUserConfigArgs:
|
|
|
16069
16718
|
: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
16719
|
: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
16720
|
: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.
|
|
16721
|
+
:param pulumi.Input[str] synchronous_replication: Enum: `quorum`, `off`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
16073
16722
|
: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.
|
|
16723
|
+
:param pulumi.Input[str] variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
16075
16724
|
: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
16725
|
"""
|
|
16077
16726
|
if additional_backup_regions is not None:
|
|
@@ -16335,7 +16984,7 @@ class PgPgUserConfigArgs:
|
|
|
16335
16984
|
@pulumi.getter(name="pgVersion")
|
|
16336
16985
|
def pg_version(self) -> Optional[pulumi.Input[str]]:
|
|
16337
16986
|
"""
|
|
16338
|
-
PostgreSQL major version.
|
|
16987
|
+
Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
16339
16988
|
"""
|
|
16340
16989
|
return pulumi.get(self, "pg_version")
|
|
16341
16990
|
|
|
@@ -16491,7 +17140,7 @@ class PgPgUserConfigArgs:
|
|
|
16491
17140
|
@pulumi.getter(name="synchronousReplication")
|
|
16492
17141
|
def synchronous_replication(self) -> Optional[pulumi.Input[str]]:
|
|
16493
17142
|
"""
|
|
16494
|
-
Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
17143
|
+
Enum: `quorum`, `off`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
16495
17144
|
"""
|
|
16496
17145
|
return pulumi.get(self, "synchronous_replication")
|
|
16497
17146
|
|
|
@@ -16515,7 +17164,7 @@ class PgPgUserConfigArgs:
|
|
|
16515
17164
|
@pulumi.getter
|
|
16516
17165
|
def variant(self) -> Optional[pulumi.Input[str]]:
|
|
16517
17166
|
"""
|
|
16518
|
-
Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
17167
|
+
Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
16519
17168
|
"""
|
|
16520
17169
|
return pulumi.get(self, "variant")
|
|
16521
17170
|
|
|
@@ -16590,7 +17239,7 @@ class PgPgUserConfigMigrationArgs:
|
|
|
16590
17239
|
:param pulumi.Input[int] port: Port number of the server where to migrate data from.
|
|
16591
17240
|
:param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
|
|
16592
17241
|
: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).
|
|
17242
|
+
: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
17243
|
:param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
|
|
16595
17244
|
:param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
|
|
16596
17245
|
:param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
|
|
@@ -16662,7 +17311,7 @@ class PgPgUserConfigMigrationArgs:
|
|
|
16662
17311
|
@pulumi.getter
|
|
16663
17312
|
def method(self) -> Optional[pulumi.Input[str]]:
|
|
16664
17313
|
"""
|
|
16665
|
-
The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
17314
|
+
Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
16666
17315
|
"""
|
|
16667
17316
|
return pulumi.get(self, "method")
|
|
16668
17317
|
|
|
@@ -16774,12 +17423,12 @@ class PgPgUserConfigPgArgs:
|
|
|
16774
17423
|
: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
17424
|
: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
17425
|
: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).
|
|
17426
|
+
: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
17427
|
:param pulumi.Input[int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
|
|
16779
17428
|
:param pulumi.Input[bool] jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
16780
17429
|
: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:
|
|
17430
|
+
: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.
|
|
17431
|
+
: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.
|
|
16783
17432
|
:param pulumi.Input[int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
16784
17433
|
:param pulumi.Input[int] log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
16785
17434
|
:param pulumi.Input[int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
@@ -16800,13 +17449,13 @@ class PgPgUserConfigPgArgs:
|
|
|
16800
17449
|
:param pulumi.Input[str] pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks.
|
|
16801
17450
|
:param pulumi.Input[bool] pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring.
|
|
16802
17451
|
: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.
|
|
17452
|
+
: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
17453
|
:param pulumi.Input[int] temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited.
|
|
16805
17454
|
:param pulumi.Input[str] timezone: PostgreSQL service timezone.
|
|
16806
17455
|
: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.
|
|
17456
|
+
:param pulumi.Input[str] track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
|
|
17457
|
+
:param pulumi.Input[str] track_functions: Enum: `all`, `pl`, `none`. Enables tracking of function call counts and time used.
|
|
17458
|
+
: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
17459
|
: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
17460
|
: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
17461
|
"""
|
|
@@ -17081,7 +17730,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17081
17730
|
@pulumi.getter(name="defaultToastCompression")
|
|
17082
17731
|
def default_toast_compression(self) -> Optional[pulumi.Input[str]]:
|
|
17083
17732
|
"""
|
|
17084
|
-
Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
17733
|
+
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
17085
17734
|
"""
|
|
17086
17735
|
return pulumi.get(self, "default_toast_compression")
|
|
17087
17736
|
|
|
@@ -17129,7 +17778,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17129
17778
|
@pulumi.getter(name="logErrorVerbosity")
|
|
17130
17779
|
def log_error_verbosity(self) -> Optional[pulumi.Input[str]]:
|
|
17131
17780
|
"""
|
|
17132
|
-
Controls the amount of detail written in the server log for each message that is logged.
|
|
17781
|
+
Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
|
|
17133
17782
|
"""
|
|
17134
17783
|
return pulumi.get(self, "log_error_verbosity")
|
|
17135
17784
|
|
|
@@ -17141,7 +17790,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17141
17790
|
@pulumi.getter(name="logLinePrefix")
|
|
17142
17791
|
def log_line_prefix(self) -> Optional[pulumi.Input[str]]:
|
|
17143
17792
|
"""
|
|
17144
|
-
|
|
17793
|
+
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.
|
|
17145
17794
|
"""
|
|
17146
17795
|
return pulumi.get(self, "log_line_prefix")
|
|
17147
17796
|
|
|
@@ -17393,7 +18042,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17393
18042
|
@pulumi.getter(name="pgStatStatementsDotTrack")
|
|
17394
18043
|
def pg_stat_statements_dot_track(self) -> Optional[pulumi.Input[str]]:
|
|
17395
18044
|
"""
|
|
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.
|
|
18045
|
+
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
18046
|
"""
|
|
17398
18047
|
return pulumi.get(self, "pg_stat_statements_dot_track")
|
|
17399
18048
|
|
|
@@ -17441,7 +18090,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17441
18090
|
@pulumi.getter(name="trackCommitTimestamp")
|
|
17442
18091
|
def track_commit_timestamp(self) -> Optional[pulumi.Input[str]]:
|
|
17443
18092
|
"""
|
|
17444
|
-
Record commit time of transactions.
|
|
18093
|
+
Enum: `off`, `on`. Record commit time of transactions.
|
|
17445
18094
|
"""
|
|
17446
18095
|
return pulumi.get(self, "track_commit_timestamp")
|
|
17447
18096
|
|
|
@@ -17453,7 +18102,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17453
18102
|
@pulumi.getter(name="trackFunctions")
|
|
17454
18103
|
def track_functions(self) -> Optional[pulumi.Input[str]]:
|
|
17455
18104
|
"""
|
|
17456
|
-
Enables tracking of function call counts and time used.
|
|
18105
|
+
Enum: `all`, `pl`, `none`. Enables tracking of function call counts and time used.
|
|
17457
18106
|
"""
|
|
17458
18107
|
return pulumi.get(self, "track_functions")
|
|
17459
18108
|
|
|
@@ -17465,7 +18114,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17465
18114
|
@pulumi.getter(name="trackIoTiming")
|
|
17466
18115
|
def track_io_timing(self) -> Optional[pulumi.Input[str]]:
|
|
17467
18116
|
"""
|
|
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.
|
|
18117
|
+
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
18118
|
"""
|
|
17470
18119
|
return pulumi.get(self, "track_io_timing")
|
|
17471
18120
|
|
|
@@ -17636,7 +18285,7 @@ class PgPgUserConfigPgauditArgs:
|
|
|
17636
18285
|
: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
18286
|
: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
18287
|
: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`.
|
|
18288
|
+
: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
18289
|
: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
18290
|
: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
18291
|
: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 +18366,7 @@ class PgPgUserConfigPgauditArgs:
|
|
|
17717
18366
|
@pulumi.getter(name="logLevel")
|
|
17718
18367
|
def log_level(self) -> Optional[pulumi.Input[str]]:
|
|
17719
18368
|
"""
|
|
17720
|
-
Specifies the log level that will be used for log entries. The default value is `log`.
|
|
18369
|
+
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
18370
|
"""
|
|
17722
18371
|
return pulumi.get(self, "log_level")
|
|
17723
18372
|
|
|
@@ -17861,7 +18510,7 @@ class PgPgUserConfigPgbouncerArgs:
|
|
|
17861
18510
|
"""
|
|
17862
18511
|
: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
18512
|
: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`.
|
|
18513
|
+
:param pulumi.Input[str] autodb_pool_mode: Enum: `session`, `transaction`, `statement`. PGBouncer pool mode. The default value is `transaction`.
|
|
17865
18514
|
: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
18515
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_startup_parameters: List of parameters to ignore when given in startup packet.
|
|
17867
18516
|
: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 +18565,7 @@ class PgPgUserConfigPgbouncerArgs:
|
|
|
17916
18565
|
@pulumi.getter(name="autodbPoolMode")
|
|
17917
18566
|
def autodb_pool_mode(self) -> Optional[pulumi.Input[str]]:
|
|
17918
18567
|
"""
|
|
17919
|
-
PGBouncer pool mode. The default value is `transaction`.
|
|
18568
|
+
Enum: `session`, `transaction`, `statement`. PGBouncer pool mode. The default value is `transaction`.
|
|
17920
18569
|
"""
|
|
17921
18570
|
return pulumi.get(self, "autodb_pool_mode")
|
|
17922
18571
|
|
|
@@ -18476,6 +19125,77 @@ class RedisComponentArgs:
|
|
|
18476
19125
|
pulumi.set(self, "usage", value)
|
|
18477
19126
|
|
|
18478
19127
|
|
|
19128
|
+
@pulumi.input_type
|
|
19129
|
+
class RedisRedisArgs:
|
|
19130
|
+
def __init__(__self__, *,
|
|
19131
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
19132
|
+
replica_uri: Optional[pulumi.Input[str]] = None,
|
|
19133
|
+
slave_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
19134
|
+
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
19135
|
+
"""
|
|
19136
|
+
:param pulumi.Input[str] password: Redis password.
|
|
19137
|
+
:param pulumi.Input[str] replica_uri: Redis replica server URI.
|
|
19138
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] slave_uris: Redis slave server URIs.
|
|
19139
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Redis server URIs.
|
|
19140
|
+
"""
|
|
19141
|
+
if password is not None:
|
|
19142
|
+
pulumi.set(__self__, "password", password)
|
|
19143
|
+
if replica_uri is not None:
|
|
19144
|
+
pulumi.set(__self__, "replica_uri", replica_uri)
|
|
19145
|
+
if slave_uris is not None:
|
|
19146
|
+
pulumi.set(__self__, "slave_uris", slave_uris)
|
|
19147
|
+
if uris is not None:
|
|
19148
|
+
pulumi.set(__self__, "uris", uris)
|
|
19149
|
+
|
|
19150
|
+
@property
|
|
19151
|
+
@pulumi.getter
|
|
19152
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
19153
|
+
"""
|
|
19154
|
+
Redis password.
|
|
19155
|
+
"""
|
|
19156
|
+
return pulumi.get(self, "password")
|
|
19157
|
+
|
|
19158
|
+
@password.setter
|
|
19159
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
19160
|
+
pulumi.set(self, "password", value)
|
|
19161
|
+
|
|
19162
|
+
@property
|
|
19163
|
+
@pulumi.getter(name="replicaUri")
|
|
19164
|
+
def replica_uri(self) -> Optional[pulumi.Input[str]]:
|
|
19165
|
+
"""
|
|
19166
|
+
Redis replica server URI.
|
|
19167
|
+
"""
|
|
19168
|
+
return pulumi.get(self, "replica_uri")
|
|
19169
|
+
|
|
19170
|
+
@replica_uri.setter
|
|
19171
|
+
def replica_uri(self, value: Optional[pulumi.Input[str]]):
|
|
19172
|
+
pulumi.set(self, "replica_uri", value)
|
|
19173
|
+
|
|
19174
|
+
@property
|
|
19175
|
+
@pulumi.getter(name="slaveUris")
|
|
19176
|
+
def slave_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
19177
|
+
"""
|
|
19178
|
+
Redis slave server URIs.
|
|
19179
|
+
"""
|
|
19180
|
+
return pulumi.get(self, "slave_uris")
|
|
19181
|
+
|
|
19182
|
+
@slave_uris.setter
|
|
19183
|
+
def slave_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
19184
|
+
pulumi.set(self, "slave_uris", value)
|
|
19185
|
+
|
|
19186
|
+
@property
|
|
19187
|
+
@pulumi.getter
|
|
19188
|
+
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
19189
|
+
"""
|
|
19190
|
+
Redis server URIs.
|
|
19191
|
+
"""
|
|
19192
|
+
return pulumi.get(self, "uris")
|
|
19193
|
+
|
|
19194
|
+
@uris.setter
|
|
19195
|
+
def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
19196
|
+
pulumi.set(self, "uris", value)
|
|
19197
|
+
|
|
19198
|
+
|
|
18479
19199
|
@pulumi.input_type
|
|
18480
19200
|
class RedisRedisUserConfigArgs:
|
|
18481
19201
|
def __init__(__self__, *,
|
|
@@ -18515,18 +19235,18 @@ class RedisRedisUserConfigArgs:
|
|
|
18515
19235
|
: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
19236
|
:param pulumi.Input['RedisRedisUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
18517
19237
|
: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.
|
|
19238
|
+
: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
19239
|
:param pulumi.Input[int] redis_io_threads: Set Redis IO thread count. Changing this will cause a restart of the Redis service.
|
|
18520
19240
|
:param pulumi.Input[int] redis_lfu_decay_time: LFU maxmemory-policy counter decay time in minutes. The default value is `1`.
|
|
18521
19241
|
: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`.
|
|
19242
|
+
: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
19243
|
:param pulumi.Input[str] redis_notify_keyspace_events: Set notify-keyspace-events option.
|
|
18524
19244
|
: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
|
|
19245
|
+
: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 the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
18526
19246
|
: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
19247
|
:param pulumi.Input[bool] redis_ssl: Require SSL to access Redis. The default value is `true`.
|
|
18528
19248
|
: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.
|
|
19249
|
+
:param pulumi.Input[str] redis_version: Enum: `7.0`, and newer. Redis major version.
|
|
18530
19250
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
18531
19251
|
: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
19252
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
@@ -18712,7 +19432,7 @@ class RedisRedisUserConfigArgs:
|
|
|
18712
19432
|
@pulumi.getter(name="redisAclChannelsDefault")
|
|
18713
19433
|
def redis_acl_channels_default(self) -> Optional[pulumi.Input[str]]:
|
|
18714
19434
|
"""
|
|
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.
|
|
19435
|
+
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
19436
|
"""
|
|
18717
19437
|
return pulumi.get(self, "redis_acl_channels_default")
|
|
18718
19438
|
|
|
@@ -18760,7 +19480,7 @@ class RedisRedisUserConfigArgs:
|
|
|
18760
19480
|
@pulumi.getter(name="redisMaxmemoryPolicy")
|
|
18761
19481
|
def redis_maxmemory_policy(self) -> Optional[pulumi.Input[str]]:
|
|
18762
19482
|
"""
|
|
18763
|
-
Redis maxmemory-policy. The default value is `noeviction`.
|
|
19483
|
+
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
19484
|
"""
|
|
18765
19485
|
return pulumi.get(self, "redis_maxmemory_policy")
|
|
18766
19486
|
|
|
@@ -18796,7 +19516,7 @@ class RedisRedisUserConfigArgs:
|
|
|
18796
19516
|
@pulumi.getter(name="redisPersistence")
|
|
18797
19517
|
def redis_persistence(self) -> Optional[pulumi.Input[str]]:
|
|
18798
19518
|
"""
|
|
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
|
|
19519
|
+
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 the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
18800
19520
|
"""
|
|
18801
19521
|
return pulumi.get(self, "redis_persistence")
|
|
18802
19522
|
|
|
@@ -18844,7 +19564,7 @@ class RedisRedisUserConfigArgs:
|
|
|
18844
19564
|
@pulumi.getter(name="redisVersion")
|
|
18845
19565
|
def redis_version(self) -> Optional[pulumi.Input[str]]:
|
|
18846
19566
|
"""
|
|
18847
|
-
Redis major version.
|
|
19567
|
+
Enum: `7.0`, and newer. Redis major version.
|
|
18848
19568
|
"""
|
|
18849
19569
|
return pulumi.get(self, "redis_version")
|
|
18850
19570
|
|
|
@@ -18943,7 +19663,7 @@ class RedisRedisUserConfigMigrationArgs:
|
|
|
18943
19663
|
:param pulumi.Input[int] port: Port number of the server where to migrate data from.
|
|
18944
19664
|
:param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
|
|
18945
19665
|
: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).
|
|
19666
|
+
: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
19667
|
:param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
|
|
18948
19668
|
:param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
|
|
18949
19669
|
:param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
|
|
@@ -19015,7 +19735,7 @@ class RedisRedisUserConfigMigrationArgs:
|
|
|
19015
19735
|
@pulumi.getter
|
|
19016
19736
|
def method(self) -> Optional[pulumi.Input[str]]:
|
|
19017
19737
|
"""
|
|
19018
|
-
The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
19738
|
+
Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
|
|
19019
19739
|
"""
|
|
19020
19740
|
return pulumi.get(self, "method")
|
|
19021
19741
|
|
|
@@ -19314,13 +20034,13 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19314
20034
|
skip_broken_messages: Optional[pulumi.Input[int]] = None):
|
|
19315
20035
|
"""
|
|
19316
20036
|
: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`.
|
|
20037
|
+
: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
20038
|
:param pulumi.Input[str] group_name: Kafka consumers group. The default value is `clickhouse`.
|
|
19319
20039
|
:param pulumi.Input[str] name: Name of the table.
|
|
19320
20040
|
: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`.
|
|
20041
|
+
: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`.
|
|
20042
|
+
: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`.
|
|
20043
|
+
:param pulumi.Input[str] handle_error_mode: Enum: `default`, `stream`. How to handle errors for Kafka engine. The default value is `default`.
|
|
19324
20044
|
: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
20045
|
: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
20046
|
:param pulumi.Input[int] num_consumers: The number of consumers per table per replica. The default value is `1`.
|
|
@@ -19365,7 +20085,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19365
20085
|
@pulumi.getter(name="dataFormat")
|
|
19366
20086
|
def data_format(self) -> pulumi.Input[str]:
|
|
19367
20087
|
"""
|
|
19368
|
-
Message data format. The default value is `JSONEachRow`.
|
|
20088
|
+
Enum: `Avro`, `CSV`, `JSONAsString`, `JSONCompactEachRow`, `JSONCompactStringsEachRow`, `JSONEachRow`, `JSONStringsEachRow`, `MsgPack`, `TSKV`, `TSV`, `TabSeparated`, `RawBLOB`, `AvroConfluent`. Message data format. The default value is `JSONEachRow`.
|
|
19369
20089
|
"""
|
|
19370
20090
|
return pulumi.get(self, "data_format")
|
|
19371
20091
|
|
|
@@ -19413,7 +20133,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19413
20133
|
@pulumi.getter(name="autoOffsetReset")
|
|
19414
20134
|
def auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
|
|
19415
20135
|
"""
|
|
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`.
|
|
20136
|
+
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
20137
|
"""
|
|
19418
20138
|
return pulumi.get(self, "auto_offset_reset")
|
|
19419
20139
|
|
|
@@ -19425,7 +20145,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19425
20145
|
@pulumi.getter(name="dateTimeInputFormat")
|
|
19426
20146
|
def date_time_input_format(self) -> Optional[pulumi.Input[str]]:
|
|
19427
20147
|
"""
|
|
19428
|
-
Method to read DateTime from text input formats. The default value is `basic`.
|
|
20148
|
+
Enum: `basic`, `best_effort`, `best_effort_us`. Method to read DateTime from text input formats. The default value is `basic`.
|
|
19429
20149
|
"""
|
|
19430
20150
|
return pulumi.get(self, "date_time_input_format")
|
|
19431
20151
|
|
|
@@ -19437,7 +20157,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
|
|
|
19437
20157
|
@pulumi.getter(name="handleErrorMode")
|
|
19438
20158
|
def handle_error_mode(self) -> Optional[pulumi.Input[str]]:
|
|
19439
20159
|
"""
|
|
19440
|
-
How to handle errors for Kafka engine. The default value is `default`.
|
|
20160
|
+
Enum: `default`, `stream`. How to handle errors for Kafka engine. The default value is `default`.
|
|
19441
20161
|
"""
|
|
19442
20162
|
return pulumi.get(self, "handle_error_mode")
|
|
19443
20163
|
|
|
@@ -19631,6 +20351,7 @@ class ServiceIntegrationClickhousePostgresqlUserConfigDatabaseArgs:
|
|
|
19631
20351
|
class ServiceIntegrationDatadogUserConfigArgs:
|
|
19632
20352
|
def __init__(__self__, *,
|
|
19633
20353
|
datadog_dbm_enabled: Optional[pulumi.Input[bool]] = None,
|
|
20354
|
+
datadog_pgbouncer_enabled: Optional[pulumi.Input[bool]] = None,
|
|
19634
20355
|
datadog_tags: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]]] = None,
|
|
19635
20356
|
exclude_consumer_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
19636
20357
|
exclude_topics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -19642,6 +20363,7 @@ class ServiceIntegrationDatadogUserConfigArgs:
|
|
|
19642
20363
|
redis: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigRedisArgs']] = None):
|
|
19643
20364
|
"""
|
|
19644
20365
|
:param pulumi.Input[bool] datadog_dbm_enabled: Enable Datadog Database Monitoring.
|
|
20366
|
+
:param pulumi.Input[bool] datadog_pgbouncer_enabled: Enable Datadog PgBouncer Metric Tracking.
|
|
19645
20367
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]] datadog_tags: Custom tags provided by user
|
|
19646
20368
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_consumer_groups: List of custom metrics.
|
|
19647
20369
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_topics: List of topics to exclude.
|
|
@@ -19654,6 +20376,8 @@ class ServiceIntegrationDatadogUserConfigArgs:
|
|
|
19654
20376
|
"""
|
|
19655
20377
|
if datadog_dbm_enabled is not None:
|
|
19656
20378
|
pulumi.set(__self__, "datadog_dbm_enabled", datadog_dbm_enabled)
|
|
20379
|
+
if datadog_pgbouncer_enabled is not None:
|
|
20380
|
+
pulumi.set(__self__, "datadog_pgbouncer_enabled", datadog_pgbouncer_enabled)
|
|
19657
20381
|
if datadog_tags is not None:
|
|
19658
20382
|
pulumi.set(__self__, "datadog_tags", datadog_tags)
|
|
19659
20383
|
if exclude_consumer_groups is not None:
|
|
@@ -19685,6 +20409,18 @@ class ServiceIntegrationDatadogUserConfigArgs:
|
|
|
19685
20409
|
def datadog_dbm_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
19686
20410
|
pulumi.set(self, "datadog_dbm_enabled", value)
|
|
19687
20411
|
|
|
20412
|
+
@property
|
|
20413
|
+
@pulumi.getter(name="datadogPgbouncerEnabled")
|
|
20414
|
+
def datadog_pgbouncer_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
20415
|
+
"""
|
|
20416
|
+
Enable Datadog PgBouncer Metric Tracking.
|
|
20417
|
+
"""
|
|
20418
|
+
return pulumi.get(self, "datadog_pgbouncer_enabled")
|
|
20419
|
+
|
|
20420
|
+
@datadog_pgbouncer_enabled.setter
|
|
20421
|
+
def datadog_pgbouncer_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
20422
|
+
pulumi.set(self, "datadog_pgbouncer_enabled", value)
|
|
20423
|
+
|
|
19688
20424
|
@property
|
|
19689
20425
|
@pulumi.getter(name="datadogTags")
|
|
19690
20426
|
def datadog_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]]]:
|
|
@@ -19943,7 +20679,7 @@ class ServiceIntegrationEndpointDatadogUserConfigArgs:
|
|
|
19943
20679
|
:param pulumi.Input[int] kafka_consumer_check_instances: Number of separate instances to fetch kafka consumer statistics with.
|
|
19944
20680
|
:param pulumi.Input[int] kafka_consumer_stats_timeout: Number of seconds that datadog will wait to get consumer statistics from brokers.
|
|
19945
20681
|
: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.
|
|
20682
|
+
: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
20683
|
"""
|
|
19948
20684
|
pulumi.set(__self__, "datadog_api_key", datadog_api_key)
|
|
19949
20685
|
if datadog_tags is not None:
|
|
@@ -20035,7 +20771,7 @@ class ServiceIntegrationEndpointDatadogUserConfigArgs:
|
|
|
20035
20771
|
@pulumi.getter
|
|
20036
20772
|
def site(self) -> Optional[pulumi.Input[str]]:
|
|
20037
20773
|
"""
|
|
20038
|
-
Datadog intake site. Defaults to datadoghq.com.
|
|
20774
|
+
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
20775
|
"""
|
|
20040
20776
|
return pulumi.get(self, "site")
|
|
20041
20777
|
|
|
@@ -20405,14 +21141,14 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
20405
21141
|
ssl_endpoint_identification_algorithm: Optional[pulumi.Input[str]] = None):
|
|
20406
21142
|
"""
|
|
20407
21143
|
: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.
|
|
21144
|
+
:param pulumi.Input[str] security_protocol: Enum: `PLAINTEXT`, `SSL`, `SASL_PLAINTEXT`, `SASL_SSL`. Security protocol.
|
|
21145
|
+
:param pulumi.Input[str] sasl_mechanism: Enum: `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`. SASL mechanism used for connections to the Kafka server.
|
|
20410
21146
|
:param pulumi.Input[str] sasl_plain_password: Password for SASL PLAIN mechanism in the Kafka server.
|
|
20411
21147
|
:param pulumi.Input[str] sasl_plain_username: Username for SASL PLAIN mechanism in the Kafka server.
|
|
20412
21148
|
:param pulumi.Input[str] ssl_ca_cert: PEM-encoded CA certificate.
|
|
20413
21149
|
:param pulumi.Input[str] ssl_client_cert: PEM-encoded client certificate.
|
|
20414
21150
|
: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.
|
|
21151
|
+
:param pulumi.Input[str] ssl_endpoint_identification_algorithm: Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
20416
21152
|
"""
|
|
20417
21153
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
|
20418
21154
|
pulumi.set(__self__, "security_protocol", security_protocol)
|
|
@@ -20447,7 +21183,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
20447
21183
|
@pulumi.getter(name="securityProtocol")
|
|
20448
21184
|
def security_protocol(self) -> pulumi.Input[str]:
|
|
20449
21185
|
"""
|
|
20450
|
-
Security protocol.
|
|
21186
|
+
Enum: `PLAINTEXT`, `SSL`, `SASL_PLAINTEXT`, `SASL_SSL`. Security protocol.
|
|
20451
21187
|
"""
|
|
20452
21188
|
return pulumi.get(self, "security_protocol")
|
|
20453
21189
|
|
|
@@ -20459,7 +21195,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
20459
21195
|
@pulumi.getter(name="saslMechanism")
|
|
20460
21196
|
def sasl_mechanism(self) -> Optional[pulumi.Input[str]]:
|
|
20461
21197
|
"""
|
|
20462
|
-
SASL mechanism used for connections to the Kafka server.
|
|
21198
|
+
Enum: `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`. SASL mechanism used for connections to the Kafka server.
|
|
20463
21199
|
"""
|
|
20464
21200
|
return pulumi.get(self, "sasl_mechanism")
|
|
20465
21201
|
|
|
@@ -20531,7 +21267,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
20531
21267
|
@pulumi.getter(name="sslEndpointIdentificationAlgorithm")
|
|
20532
21268
|
def ssl_endpoint_identification_algorithm(self) -> Optional[pulumi.Input[str]]:
|
|
20533
21269
|
"""
|
|
20534
|
-
The endpoint identification algorithm to validate server hostname using server certificate.
|
|
21270
|
+
Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
20535
21271
|
"""
|
|
20536
21272
|
return pulumi.get(self, "ssl_endpoint_identification_algorithm")
|
|
20537
21273
|
|
|
@@ -20645,7 +21381,7 @@ class ServiceIntegrationEndpointExternalPostgresqlArgs:
|
|
|
20645
21381
|
:param pulumi.Input[str] password: Password.
|
|
20646
21382
|
:param pulumi.Input[str] ssl_client_certificate: Client certificate.
|
|
20647
21383
|
:param pulumi.Input[str] ssl_client_key: Client key.
|
|
20648
|
-
:param pulumi.Input[str] ssl_mode: SSL Mode. The default value is `verify-full`.
|
|
21384
|
+
:param pulumi.Input[str] ssl_mode: Enum: `disable`, `allow`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL Mode. The default value is `verify-full`.
|
|
20649
21385
|
:param pulumi.Input[str] ssl_root_cert: SSL Root Cert.
|
|
20650
21386
|
"""
|
|
20651
21387
|
pulumi.set(__self__, "host", host)
|
|
@@ -20752,7 +21488,7 @@ class ServiceIntegrationEndpointExternalPostgresqlArgs:
|
|
|
20752
21488
|
@pulumi.getter(name="sslMode")
|
|
20753
21489
|
def ssl_mode(self) -> Optional[pulumi.Input[str]]:
|
|
20754
21490
|
"""
|
|
20755
|
-
SSL Mode. The default value is `verify-full`.
|
|
21491
|
+
Enum: `disable`, `allow`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL Mode. The default value is `verify-full`.
|
|
20756
21492
|
"""
|
|
20757
21493
|
return pulumi.get(self, "ssl_mode")
|
|
20758
21494
|
|
|
@@ -20781,7 +21517,7 @@ class ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs:
|
|
|
20781
21517
|
basic_auth_password: Optional[pulumi.Input[str]] = None,
|
|
20782
21518
|
basic_auth_username: Optional[pulumi.Input[str]] = None):
|
|
20783
21519
|
"""
|
|
20784
|
-
:param pulumi.Input[str] authentication: Authentication method.
|
|
21520
|
+
:param pulumi.Input[str] authentication: Enum: `none`, `basic`. Authentication method.
|
|
20785
21521
|
:param pulumi.Input[str] url: Schema Registry URL.
|
|
20786
21522
|
:param pulumi.Input[str] basic_auth_password: Basic authentication password.
|
|
20787
21523
|
:param pulumi.Input[str] basic_auth_username: Basic authentication user name.
|
|
@@ -20797,7 +21533,7 @@ class ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs:
|
|
|
20797
21533
|
@pulumi.getter
|
|
20798
21534
|
def authentication(self) -> pulumi.Input[str]:
|
|
20799
21535
|
"""
|
|
20800
|
-
Authentication method.
|
|
21536
|
+
Enum: `none`, `basic`. Authentication method.
|
|
20801
21537
|
"""
|
|
20802
21538
|
return pulumi.get(self, "authentication")
|
|
20803
21539
|
|
|
@@ -20934,7 +21670,7 @@ class ServiceIntegrationEndpointRsyslogUserConfigArgs:
|
|
|
20934
21670
|
max_message_size: Optional[pulumi.Input[int]] = None,
|
|
20935
21671
|
sd: Optional[pulumi.Input[str]] = None):
|
|
20936
21672
|
"""
|
|
20937
|
-
:param pulumi.Input[str] format: Message format. The default value is `rfc5424`.
|
|
21673
|
+
:param pulumi.Input[str] format: Enum: `rfc5424`, `rfc3164`, `custom`. Message format. The default value is `rfc5424`.
|
|
20938
21674
|
:param pulumi.Input[int] port: Rsyslog server port. The default value is `514`.
|
|
20939
21675
|
:param pulumi.Input[str] server: Rsyslog server IP address or hostname.
|
|
20940
21676
|
:param pulumi.Input[bool] tls: Require TLS. The default value is `true`.
|
|
@@ -20966,7 +21702,7 @@ class ServiceIntegrationEndpointRsyslogUserConfigArgs:
|
|
|
20966
21702
|
@pulumi.getter
|
|
20967
21703
|
def format(self) -> pulumi.Input[str]:
|
|
20968
21704
|
"""
|
|
20969
|
-
Message format. The default value is `rfc5424`.
|
|
21705
|
+
Enum: `rfc5424`, `rfc3164`, `custom`. Message format. The default value is `rfc5424`.
|
|
20970
21706
|
"""
|
|
20971
21707
|
return pulumi.get(self, "format")
|
|
20972
21708
|
|
|
@@ -21449,7 +22185,7 @@ class ServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormakerArgs:
|
|
|
21449
22185
|
:param pulumi.Input[int] consumer_fetch_min_bytes: The minimum amount of data the server should return for a fetch request.
|
|
21450
22186
|
:param pulumi.Input[int] producer_batch_size: The batch size in bytes producer will attempt to collect before publishing to broker.
|
|
21451
22187
|
: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.
|
|
22188
|
+
: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
22189
|
:param pulumi.Input[int] producer_linger_ms: The linger time (ms) for waiting new data to arrive for publishing.
|
|
21454
22190
|
:param pulumi.Input[int] producer_max_request_size: The maximum request size in bytes.
|
|
21455
22191
|
"""
|
|
@@ -21506,7 +22242,7 @@ class ServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormakerArgs:
|
|
|
21506
22242
|
@pulumi.getter(name="producerCompressionType")
|
|
21507
22243
|
def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
21508
22244
|
"""
|
|
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.
|
|
22245
|
+
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
22246
|
"""
|
|
21511
22247
|
return pulumi.get(self, "producer_compression_type")
|
|
21512
22248
|
|