pulumi-aiven 6.15.0a1715335403__py3-none-any.whl → 6.16.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.

Files changed (44) hide show
  1. pulumi_aiven/__init__.py +19 -0
  2. pulumi_aiven/_inputs.py +1272 -248
  3. pulumi_aiven/cassandra.py +48 -1
  4. pulumi_aiven/clickhouse.py +48 -1
  5. pulumi_aiven/clickhouse_role.py +2 -2
  6. pulumi_aiven/dragonfly.py +48 -1
  7. pulumi_aiven/flink.py +2 -2
  8. pulumi_aiven/flink_application_deployment.py +56 -30
  9. pulumi_aiven/gcp_privatelink.py +52 -30
  10. pulumi_aiven/gcp_privatelink_connection_approval.py +54 -30
  11. pulumi_aiven/get_cassanda.py +14 -1
  12. pulumi_aiven/get_cassandra.py +14 -1
  13. pulumi_aiven/get_clickhouse.py +14 -1
  14. pulumi_aiven/get_dragonfly.py +14 -1
  15. pulumi_aiven/get_gcp_privatelink.py +45 -2
  16. pulumi_aiven/get_grafana.py +14 -1
  17. pulumi_aiven/get_m3_aggregator.py +14 -1
  18. pulumi_aiven/get_m3_db.py +14 -1
  19. pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
  20. pulumi_aiven/get_my_sql.py +14 -1
  21. pulumi_aiven/get_organization_application_user.py +156 -0
  22. pulumi_aiven/get_redis.py +14 -1
  23. pulumi_aiven/get_service_integration.py +3 -3
  24. pulumi_aiven/get_service_integration_endpoint.py +1 -1
  25. pulumi_aiven/grafana.py +48 -1
  26. pulumi_aiven/influx_db.py +21 -2
  27. pulumi_aiven/kafka.py +20 -1
  28. pulumi_aiven/m3_aggregator.py +48 -1
  29. pulumi_aiven/m3_db.py +48 -1
  30. pulumi_aiven/mirror_maker_replication_flow.py +7 -7
  31. pulumi_aiven/my_sql.py +48 -1
  32. pulumi_aiven/open_search.py +21 -2
  33. pulumi_aiven/organization_application_user.py +323 -0
  34. pulumi_aiven/organization_application_user_token.py +742 -0
  35. pulumi_aiven/outputs.py +1870 -285
  36. pulumi_aiven/pg.py +2 -2
  37. pulumi_aiven/pulumi-plugin.json +2 -1
  38. pulumi_aiven/redis.py +48 -1
  39. pulumi_aiven/service_integration.py +7 -7
  40. pulumi_aiven/service_integration_endpoint.py +7 -7
  41. {pulumi_aiven-6.15.0a1715335403.dist-info → pulumi_aiven-6.16.0.dist-info}/METADATA +1 -1
  42. {pulumi_aiven-6.15.0a1715335403.dist-info → pulumi_aiven-6.16.0.dist-info}/RECORD +44 -41
  43. {pulumi_aiven-6.15.0a1715335403.dist-info → pulumi_aiven-6.16.0.dist-info}/WHEEL +0 -0
  44. {pulumi_aiven-6.15.0a1715335403.dist-info → pulumi_aiven-6.16.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,11 +178,14 @@ __all__ = [
170
178
  'OpenSearchServiceIntegrationArgs',
171
179
  'OpenSearchTagArgs',
172
180
  'OpenSearchTechEmailArgs',
181
+ 'OrganizationApplicationUserTimeoutsArgs',
182
+ 'OrganizationApplicationUserTokenTimeoutsArgs',
173
183
  'OrganizationGroupProjectTimeoutsArgs',
174
184
  'OrganizationTimeoutsArgs',
175
185
  'OrganizationUserGroupMemberTimeoutsArgs',
176
186
  'PgComponentArgs',
177
187
  'PgPgArgs',
188
+ 'PgPgParamArgs',
178
189
  'PgPgUserConfigArgs',
179
190
  'PgPgUserConfigIpFilterObjectArgs',
180
191
  'PgPgUserConfigMigrationArgs',
@@ -192,6 +203,7 @@ __all__ = [
192
203
  'PgTechEmailArgs',
193
204
  'ProjectTagArgs',
194
205
  'RedisComponentArgs',
206
+ 'RedisRedisArgs',
195
207
  'RedisRedisUserConfigArgs',
196
208
  'RedisRedisUserConfigIpFilterObjectArgs',
197
209
  'RedisRedisUserConfigMigrationArgs',
@@ -332,6 +344,29 @@ class AccountAuthenticationSamlFieldMappingArgs:
332
344
  pulumi.set(self, "real_name", value)
333
345
 
334
346
 
347
+ @pulumi.input_type
348
+ class CassandraCassandraArgs:
349
+ def __init__(__self__, *,
350
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
351
+ """
352
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Cassandra server URIs.
353
+ """
354
+ if uris is not None:
355
+ pulumi.set(__self__, "uris", uris)
356
+
357
+ @property
358
+ @pulumi.getter
359
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
360
+ """
361
+ Cassandra server URIs.
362
+ """
363
+ return pulumi.get(self, "uris")
364
+
365
+ @uris.setter
366
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
367
+ pulumi.set(self, "uris", value)
368
+
369
+
335
370
  @pulumi.input_type
336
371
  class CassandraCassandraUserConfigArgs:
337
372
  def __init__(__self__, *,
@@ -356,7 +391,7 @@ class CassandraCassandraUserConfigArgs:
356
391
  :param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
357
392
  :param pulumi.Input[int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
358
393
  :param pulumi.Input['CassandraCassandraUserConfigCassandraArgs'] cassandra: Cassandra configuration values
359
- :param pulumi.Input[str] cassandra_version: Cassandra version.
394
+ :param pulumi.Input[str] cassandra_version: Enum: `3`, `4`, `4.1`. Cassandra version.
360
395
  :param pulumi.Input[Sequence[pulumi.Input['CassandraCassandraUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
361
396
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
362
397
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
@@ -463,7 +498,7 @@ class CassandraCassandraUserConfigArgs:
463
498
  @pulumi.getter(name="cassandraVersion")
464
499
  def cassandra_version(self) -> Optional[pulumi.Input[str]]:
465
500
  """
466
- Cassandra version.
501
+ Enum: `3`, `4`, `4.1`. Cassandra version.
467
502
  """
468
503
  return pulumi.get(self, "cassandra_version")
469
504
 
@@ -977,6 +1012,29 @@ class CassandraTechEmailArgs:
977
1012
  pulumi.set(self, "email", value)
978
1013
 
979
1014
 
1015
+ @pulumi.input_type
1016
+ class ClickhouseClickhouseArgs:
1017
+ def __init__(__self__, *,
1018
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
1019
+ """
1020
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Clickhouse server URIs.
1021
+ """
1022
+ if uris is not None:
1023
+ pulumi.set(__self__, "uris", uris)
1024
+
1025
+ @property
1026
+ @pulumi.getter
1027
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1028
+ """
1029
+ Clickhouse server URIs.
1030
+ """
1031
+ return pulumi.get(self, "uris")
1032
+
1033
+ @uris.setter
1034
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1035
+ pulumi.set(self, "uris", value)
1036
+
1037
+
980
1038
  @pulumi.input_type
981
1039
  class ClickhouseClickhouseUserConfigArgs:
982
1040
  def __init__(__self__, *,
@@ -1898,6 +1956,77 @@ class DragonflyComponentArgs:
1898
1956
  pulumi.set(self, "usage", value)
1899
1957
 
1900
1958
 
1959
+ @pulumi.input_type
1960
+ class DragonflyDragonflyArgs:
1961
+ def __init__(__self__, *,
1962
+ password: Optional[pulumi.Input[str]] = None,
1963
+ replica_uri: Optional[pulumi.Input[str]] = None,
1964
+ slave_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1965
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
1966
+ """
1967
+ :param pulumi.Input[str] password: Dragonfly password.
1968
+ :param pulumi.Input[str] replica_uri: Dragonfly replica server URI.
1969
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] slave_uris: Dragonfly slave server URIs.
1970
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Dragonfly server URIs.
1971
+ """
1972
+ if password is not None:
1973
+ pulumi.set(__self__, "password", password)
1974
+ if replica_uri is not None:
1975
+ pulumi.set(__self__, "replica_uri", replica_uri)
1976
+ if slave_uris is not None:
1977
+ pulumi.set(__self__, "slave_uris", slave_uris)
1978
+ if uris is not None:
1979
+ pulumi.set(__self__, "uris", uris)
1980
+
1981
+ @property
1982
+ @pulumi.getter
1983
+ def password(self) -> Optional[pulumi.Input[str]]:
1984
+ """
1985
+ Dragonfly password.
1986
+ """
1987
+ return pulumi.get(self, "password")
1988
+
1989
+ @password.setter
1990
+ def password(self, value: Optional[pulumi.Input[str]]):
1991
+ pulumi.set(self, "password", value)
1992
+
1993
+ @property
1994
+ @pulumi.getter(name="replicaUri")
1995
+ def replica_uri(self) -> Optional[pulumi.Input[str]]:
1996
+ """
1997
+ Dragonfly replica server URI.
1998
+ """
1999
+ return pulumi.get(self, "replica_uri")
2000
+
2001
+ @replica_uri.setter
2002
+ def replica_uri(self, value: Optional[pulumi.Input[str]]):
2003
+ pulumi.set(self, "replica_uri", value)
2004
+
2005
+ @property
2006
+ @pulumi.getter(name="slaveUris")
2007
+ def slave_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2008
+ """
2009
+ Dragonfly slave server URIs.
2010
+ """
2011
+ return pulumi.get(self, "slave_uris")
2012
+
2013
+ @slave_uris.setter
2014
+ def slave_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2015
+ pulumi.set(self, "slave_uris", value)
2016
+
2017
+ @property
2018
+ @pulumi.getter
2019
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2020
+ """
2021
+ Dragonfly server URIs.
2022
+ """
2023
+ return pulumi.get(self, "uris")
2024
+
2025
+ @uris.setter
2026
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2027
+ pulumi.set(self, "uris", value)
2028
+
2029
+
1901
2030
  @pulumi.input_type
1902
2031
  class DragonflyDragonflyUserConfigArgs:
1903
2032
  def __init__(__self__, *,
@@ -1918,7 +2047,7 @@ class DragonflyDragonflyUserConfigArgs:
1918
2047
  static_ips: Optional[pulumi.Input[bool]] = None):
1919
2048
  """
1920
2049
  :param pulumi.Input[bool] cache_mode: Evict entries when getting close to maxmemory limit. The default value is `false`.
1921
- :param pulumi.Input[str] dragonfly_persistence: When persistence is 'rdb', Dragonfly does RDB dumps each 10 minutes. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
2050
+ :param pulumi.Input[str] dragonfly_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps each 10 minutes. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
1922
2051
  :param pulumi.Input[bool] dragonfly_ssl: Require SSL to access Dragonfly. The default value is `true`.
1923
2052
  :param pulumi.Input[Sequence[pulumi.Input['DragonflyDragonflyUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
1924
2053
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
@@ -1983,7 +2112,7 @@ class DragonflyDragonflyUserConfigArgs:
1983
2112
  @pulumi.getter(name="dragonflyPersistence")
1984
2113
  def dragonfly_persistence(self) -> Optional[pulumi.Input[str]]:
1985
2114
  """
1986
- When persistence is 'rdb', Dragonfly does RDB dumps each 10 minutes. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
2115
+ Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps each 10 minutes. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
1987
2116
  """
1988
2117
  return pulumi.get(self, "dragonfly_persistence")
1989
2118
 
@@ -2205,7 +2334,7 @@ class DragonflyDragonflyUserConfigMigrationArgs:
2205
2334
  :param pulumi.Input[int] port: Port number of the server where to migrate data from.
2206
2335
  :param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
2207
2336
  :param pulumi.Input[str] ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
2208
- :param pulumi.Input[str] method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
2337
+ :param pulumi.Input[str] method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
2209
2338
  :param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
2210
2339
  :param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
2211
2340
  :param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
@@ -2277,7 +2406,7 @@ class DragonflyDragonflyUserConfigMigrationArgs:
2277
2406
  @pulumi.getter
2278
2407
  def method(self) -> Optional[pulumi.Input[str]]:
2279
2408
  """
2280
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
2409
+ Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
2281
2410
  """
2282
2411
  return pulumi.get(self, "method")
2283
2412
 
@@ -2783,7 +2912,7 @@ class FlinkFlinkUserConfigArgs:
2783
2912
  static_ips: Optional[pulumi.Input[bool]] = None):
2784
2913
  """
2785
2914
  :param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
2786
- :param pulumi.Input[str] flink_version: Flink major version.
2915
+ :param pulumi.Input[str] flink_version: Enum: `1.16`. Flink major version.
2787
2916
  :param pulumi.Input[Sequence[pulumi.Input['FlinkFlinkUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
2788
2917
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
2789
2918
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
@@ -2836,7 +2965,7 @@ class FlinkFlinkUserConfigArgs:
2836
2965
  @pulumi.getter(name="flinkVersion")
2837
2966
  def flink_version(self) -> Optional[pulumi.Input[str]]:
2838
2967
  """
2839
- Flink major version.
2968
+ Enum: `1.16`. Flink major version.
2840
2969
  """
2841
2970
  return pulumi.get(self, "flink_version")
2842
2971
 
@@ -3240,6 +3369,29 @@ class GrafanaComponentArgs:
3240
3369
  pulumi.set(self, "usage", value)
3241
3370
 
3242
3371
 
3372
+ @pulumi.input_type
3373
+ class GrafanaGrafanaArgs:
3374
+ def __init__(__self__, *,
3375
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3376
+ """
3377
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Grafana server URIs.
3378
+ """
3379
+ if uris is not None:
3380
+ pulumi.set(__self__, "uris", uris)
3381
+
3382
+ @property
3383
+ @pulumi.getter
3384
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3385
+ """
3386
+ Grafana server URIs.
3387
+ """
3388
+ return pulumi.get(self, "uris")
3389
+
3390
+ @uris.setter
3391
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3392
+ pulumi.set(self, "uris", value)
3393
+
3394
+
3243
3395
  @pulumi.input_type
3244
3396
  class GrafanaGrafanaUserConfigArgs:
3245
3397
  def __init__(__self__, *,
@@ -3288,9 +3440,9 @@ class GrafanaGrafanaUserConfigArgs:
3288
3440
  """
3289
3441
  :param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
3290
3442
  :param pulumi.Input[bool] alerting_enabled: Enable or disable Grafana legacy alerting functionality. This should not be enabled with unified*alerting*enabled.
3291
- :param pulumi.Input[str] alerting_error_or_timeout: Default error or timeout setting for new alerting rules.
3443
+ :param pulumi.Input[str] alerting_error_or_timeout: Enum: `alerting`, `keep_state`. Default error or timeout setting for new alerting rules.
3292
3444
  :param pulumi.Input[int] alerting_max_annotations_to_keep: Max number of alert annotations that Grafana stores. 0 (default) keeps all alert annotations.
3293
- :param pulumi.Input[str] alerting_nodata_or_nullvalues: Default value for 'no data or null values' for new alerting rules.
3445
+ :param pulumi.Input[str] alerting_nodata_or_nullvalues: Enum: `alerting`, `no_data`, `keep_state`, `ok`. Default value for 'no data or null values' for new alerting rules.
3294
3446
  :param pulumi.Input[bool] allow_embedding: Allow embedding Grafana dashboards with iframe/frame/object/embed tags. Disabled by default to limit impact of clickjacking.
3295
3447
  :param pulumi.Input['GrafanaGrafanaUserConfigAuthAzureadArgs'] auth_azuread: Azure AD OAuth integration
3296
3448
  :param pulumi.Input[bool] auth_basic_enabled: Enable or disable basic authentication form, used by Grafana built-in login.
@@ -3298,7 +3450,7 @@ class GrafanaGrafanaUserConfigArgs:
3298
3450
  :param pulumi.Input['GrafanaGrafanaUserConfigAuthGithubArgs'] auth_github: Github Auth integration
3299
3451
  :param pulumi.Input['GrafanaGrafanaUserConfigAuthGitlabArgs'] auth_gitlab: GitLab Auth integration
3300
3452
  :param pulumi.Input['GrafanaGrafanaUserConfigAuthGoogleArgs'] auth_google: Google Auth integration
3301
- :param pulumi.Input[str] cookie_samesite: Cookie SameSite attribute: 'strict' prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. 'lax' is the default value.
3453
+ :param pulumi.Input[str] cookie_samesite: Enum: `lax`, `strict`, `none`. Cookie SameSite attribute: 'strict' prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. 'lax' is the default value.
3302
3454
  :param pulumi.Input[str] custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name.
3303
3455
  :param pulumi.Input[bool] dashboard_previews_enabled: This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
3304
3456
  :param pulumi.Input[str] dashboards_min_refresh_interval: Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h.
@@ -3326,7 +3478,7 @@ class GrafanaGrafanaUserConfigArgs:
3326
3478
  :param pulumi.Input[bool] static_ips: Use static public IP addresses.
3327
3479
  :param pulumi.Input[bool] unified_alerting_enabled: Enable or disable Grafana unified alerting functionality. By default this is enabled and any legacy alerts will be migrated on upgrade to Grafana 9+. To stay on legacy alerting, set unified*alerting*enabled to false and alerting_enabled to true. See https://grafana.com/docs/grafana/latest/alerting/set-up/migrating-alerts/ for more details.
3328
3480
  :param pulumi.Input[bool] user_auto_assign_org: Auto-assign new users on signup to main organization. Defaults to false.
3329
- :param pulumi.Input[str] user_auto_assign_org_role: Set role for new signups. Defaults to Viewer.
3481
+ :param pulumi.Input[str] user_auto_assign_org_role: Enum: `Viewer`, `Admin`, `Editor`. Set role for new signups. Defaults to Viewer.
3330
3482
  :param pulumi.Input[bool] viewers_can_edit: Users with view-only permission can edit but not save dashboards.
3331
3483
  """
3332
3484
  if additional_backup_regions is not None:
@@ -3445,7 +3597,7 @@ class GrafanaGrafanaUserConfigArgs:
3445
3597
  @pulumi.getter(name="alertingErrorOrTimeout")
3446
3598
  def alerting_error_or_timeout(self) -> Optional[pulumi.Input[str]]:
3447
3599
  """
3448
- Default error or timeout setting for new alerting rules.
3600
+ Enum: `alerting`, `keep_state`. Default error or timeout setting for new alerting rules.
3449
3601
  """
3450
3602
  return pulumi.get(self, "alerting_error_or_timeout")
3451
3603
 
@@ -3469,7 +3621,7 @@ class GrafanaGrafanaUserConfigArgs:
3469
3621
  @pulumi.getter(name="alertingNodataOrNullvalues")
3470
3622
  def alerting_nodata_or_nullvalues(self) -> Optional[pulumi.Input[str]]:
3471
3623
  """
3472
- Default value for 'no data or null values' for new alerting rules.
3624
+ Enum: `alerting`, `no_data`, `keep_state`, `ok`. Default value for 'no data or null values' for new alerting rules.
3473
3625
  """
3474
3626
  return pulumi.get(self, "alerting_nodata_or_nullvalues")
3475
3627
 
@@ -3565,7 +3717,7 @@ class GrafanaGrafanaUserConfigArgs:
3565
3717
  @pulumi.getter(name="cookieSamesite")
3566
3718
  def cookie_samesite(self) -> Optional[pulumi.Input[str]]:
3567
3719
  """
3568
- Cookie SameSite attribute: 'strict' prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. 'lax' is the default value.
3720
+ Enum: `lax`, `strict`, `none`. Cookie SameSite attribute: 'strict' prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. 'lax' is the default value.
3569
3721
  """
3570
3722
  return pulumi.get(self, "cookie_samesite")
3571
3723
 
@@ -3904,7 +4056,7 @@ class GrafanaGrafanaUserConfigArgs:
3904
4056
  @pulumi.getter(name="userAutoAssignOrgRole")
3905
4057
  def user_auto_assign_org_role(self) -> Optional[pulumi.Input[str]]:
3906
4058
  """
3907
- Set role for new signups. Defaults to Viewer.
4059
+ Enum: `Viewer`, `Admin`, `Editor`. Set role for new signups. Defaults to Viewer.
3908
4060
  """
3909
4061
  return pulumi.get(self, "user_auto_assign_org_role")
3910
4062
 
@@ -4664,7 +4816,7 @@ class GrafanaGrafanaUserConfigExternalImageStorageArgs:
4664
4816
  """
4665
4817
  :param pulumi.Input[str] access_key: S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions.
4666
4818
  :param pulumi.Input[str] bucket_url: Bucket URL for S3.
4667
- :param pulumi.Input[str] provider: Provider type.
4819
+ :param pulumi.Input[str] provider: Enum: `s3`. Provider type.
4668
4820
  :param pulumi.Input[str] secret_key: S3 secret key.
4669
4821
  """
4670
4822
  pulumi.set(__self__, "access_key", access_key)
@@ -4700,7 +4852,7 @@ class GrafanaGrafanaUserConfigExternalImageStorageArgs:
4700
4852
  @pulumi.getter
4701
4853
  def provider(self) -> pulumi.Input[str]:
4702
4854
  """
4703
- Provider type.
4855
+ Enum: `s3`. Provider type.
4704
4856
  """
4705
4857
  return pulumi.get(self, "provider")
4706
4858
 
@@ -4846,7 +4998,7 @@ class GrafanaGrafanaUserConfigSmtpServerArgs:
4846
4998
  :param pulumi.Input[str] from_name: Name used in outgoing emails, defaults to Grafana.
4847
4999
  :param pulumi.Input[str] password: Password for SMTP authentication.
4848
5000
  :param pulumi.Input[bool] skip_verify: Skip verifying server certificate. Defaults to false.
4849
- :param pulumi.Input[str] starttls_policy: Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
5001
+ :param pulumi.Input[str] starttls_policy: Enum: `OpportunisticStartTLS`, `MandatoryStartTLS`, `NoStartTLS`. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
4850
5002
  :param pulumi.Input[str] username: Username for SMTP authentication.
4851
5003
  """
4852
5004
  pulumi.set(__self__, "from_address", from_address)
@@ -4939,7 +5091,7 @@ class GrafanaGrafanaUserConfigSmtpServerArgs:
4939
5091
  @pulumi.getter(name="starttlsPolicy")
4940
5092
  def starttls_policy(self) -> Optional[pulumi.Input[str]]:
4941
5093
  """
4942
- Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
5094
+ Enum: `OpportunisticStartTLS`, `MandatoryStartTLS`, `NoStartTLS`. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS.
4943
5095
  """
4944
5096
  return pulumi.get(self, "starttls_policy")
4945
5097
 
@@ -5194,12 +5346,24 @@ class InfluxDbComponentArgs:
5194
5346
  @pulumi.input_type
5195
5347
  class InfluxDbInfluxdbArgs:
5196
5348
  def __init__(__self__, *,
5197
- database_name: Optional[pulumi.Input[str]] = None):
5349
+ database_name: Optional[pulumi.Input[str]] = None,
5350
+ password: Optional[pulumi.Input[str]] = None,
5351
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
5352
+ username: Optional[pulumi.Input[str]] = None):
5198
5353
  """
5199
5354
  :param pulumi.Input[str] database_name: Name of the default InfluxDB database
5355
+ :param pulumi.Input[str] password: InfluxDB password
5356
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: InfluxDB server URIs.
5357
+ :param pulumi.Input[str] username: InfluxDB username
5200
5358
  """
5201
5359
  if database_name is not None:
5202
5360
  pulumi.set(__self__, "database_name", database_name)
5361
+ if password is not None:
5362
+ pulumi.set(__self__, "password", password)
5363
+ if uris is not None:
5364
+ pulumi.set(__self__, "uris", uris)
5365
+ if username is not None:
5366
+ pulumi.set(__self__, "username", username)
5203
5367
 
5204
5368
  @property
5205
5369
  @pulumi.getter(name="databaseName")
@@ -5213,6 +5377,42 @@ class InfluxDbInfluxdbArgs:
5213
5377
  def database_name(self, value: Optional[pulumi.Input[str]]):
5214
5378
  pulumi.set(self, "database_name", value)
5215
5379
 
5380
+ @property
5381
+ @pulumi.getter
5382
+ def password(self) -> Optional[pulumi.Input[str]]:
5383
+ """
5384
+ InfluxDB password
5385
+ """
5386
+ return pulumi.get(self, "password")
5387
+
5388
+ @password.setter
5389
+ def password(self, value: Optional[pulumi.Input[str]]):
5390
+ pulumi.set(self, "password", value)
5391
+
5392
+ @property
5393
+ @pulumi.getter
5394
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
5395
+ """
5396
+ InfluxDB server URIs.
5397
+ """
5398
+ return pulumi.get(self, "uris")
5399
+
5400
+ @uris.setter
5401
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
5402
+ pulumi.set(self, "uris", value)
5403
+
5404
+ @property
5405
+ @pulumi.getter
5406
+ def username(self) -> Optional[pulumi.Input[str]]:
5407
+ """
5408
+ InfluxDB username
5409
+ """
5410
+ return pulumi.get(self, "username")
5411
+
5412
+ @username.setter
5413
+ def username(self, value: Optional[pulumi.Input[str]]):
5414
+ pulumi.set(self, "username", value)
5415
+
5216
5416
 
5217
5417
  @pulumi.input_type
5218
5418
  class InfluxDbInfluxdbUserConfigArgs:
@@ -6286,10 +6486,10 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
6286
6486
  scheduled_rebalance_max_delay_ms: Optional[pulumi.Input[int]] = None,
6287
6487
  session_timeout_ms: Optional[pulumi.Input[int]] = None):
6288
6488
  """
6289
- :param pulumi.Input[str] connector_client_config_override_policy: Defines what client configurations can be overridden by the connector. Default is None.
6290
- :param pulumi.Input[str] consumer_auto_offset_reset: What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
6489
+ :param pulumi.Input[str] connector_client_config_override_policy: Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
6490
+ :param pulumi.Input[str] consumer_auto_offset_reset: Enum: `earliest`, `latest`. What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
6291
6491
  :param pulumi.Input[int] consumer_fetch_max_bytes: Records are fetched in batches by the consumer, and if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned to ensure that the consumer can make progress. As such, this is not a absolute maximum.
6292
- :param pulumi.Input[str] consumer_isolation_level: Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
6492
+ :param pulumi.Input[str] consumer_isolation_level: Enum: `read_uncommitted`, `read_committed`. Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
6293
6493
  :param pulumi.Input[int] consumer_max_partition_fetch_bytes: Records are fetched in batches by the consumer.If the first record batch in the first non-empty partition of the fetch is larger than this limit, the batch will still be returned to ensure that the consumer can make progress.
6294
6494
  :param pulumi.Input[int] consumer_max_poll_interval_ms: The maximum delay in milliseconds between invocations of poll() when using consumer group management (defaults to 300000).
6295
6495
  :param pulumi.Input[int] consumer_max_poll_records: The maximum number of records returned in a single call to poll() (defaults to 500).
@@ -6297,7 +6497,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
6297
6497
  :param pulumi.Input[int] offset_flush_timeout_ms: Maximum number of milliseconds to wait for records to flush and partition offset data to be committed to offset storage before cancelling the process and restoring the offset data to be committed in a future attempt (defaults to 5000).
6298
6498
  :param pulumi.Input[int] producer_batch_size: This setting gives the upper bound of the batch size to be sent. If there are fewer than this many bytes accumulated for this partition, the producer will 'linger' for the linger.ms time waiting for more records to show up. A batch size of zero will disable batching entirely (defaults to 16384).
6299
6499
  :param pulumi.Input[int] producer_buffer_memory: The total bytes of memory the producer can use to buffer records waiting to be sent to the broker (defaults to 33554432).
6300
- :param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
6500
+ :param pulumi.Input[str] producer_compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
6301
6501
  :param pulumi.Input[int] producer_linger_ms: This setting gives the upper bound on the delay for batching: once there is batch.size worth of records for a partition it will be sent immediately regardless of this setting, however if there are fewer than this many bytes accumulated for this partition the producer will 'linger' for the specified time waiting for more records to show up. Defaults to 0.
6302
6502
  :param pulumi.Input[int] producer_max_request_size: This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.
6303
6503
  :param pulumi.Input[int] scheduled_rebalance_max_delay_ms: The maximum delay that is scheduled in order to wait for the return of one or more departed workers before rebalancing and reassigning their connectors and tasks to the group. During this period the connectors and tasks of the departed workers remain unassigned. Defaults to 5 minutes.
@@ -6340,7 +6540,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
6340
6540
  @pulumi.getter(name="connectorClientConfigOverridePolicy")
6341
6541
  def connector_client_config_override_policy(self) -> Optional[pulumi.Input[str]]:
6342
6542
  """
6343
- Defines what client configurations can be overridden by the connector. Default is None.
6543
+ Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
6344
6544
  """
6345
6545
  return pulumi.get(self, "connector_client_config_override_policy")
6346
6546
 
@@ -6352,7 +6552,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
6352
6552
  @pulumi.getter(name="consumerAutoOffsetReset")
6353
6553
  def consumer_auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
6354
6554
  """
6355
- What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
6555
+ Enum: `earliest`, `latest`. What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
6356
6556
  """
6357
6557
  return pulumi.get(self, "consumer_auto_offset_reset")
6358
6558
 
@@ -6376,7 +6576,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
6376
6576
  @pulumi.getter(name="consumerIsolationLevel")
6377
6577
  def consumer_isolation_level(self) -> Optional[pulumi.Input[str]]:
6378
6578
  """
6379
- Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
6579
+ Enum: `read_uncommitted`, `read_committed`. Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
6380
6580
  """
6381
6581
  return pulumi.get(self, "consumer_isolation_level")
6382
6582
 
@@ -6472,7 +6672,7 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
6472
6672
  @pulumi.getter(name="producerCompressionType")
6473
6673
  def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
6474
6674
  """
6475
- Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
6675
+ Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
6476
6676
  """
6477
6677
  return pulumi.get(self, "producer_compression_type")
6478
6678
 
@@ -6804,13 +7004,15 @@ class KafkaKafkaArgs:
6804
7004
  access_key: Optional[pulumi.Input[str]] = None,
6805
7005
  connect_uri: Optional[pulumi.Input[str]] = None,
6806
7006
  rest_uri: Optional[pulumi.Input[str]] = None,
6807
- schema_registry_uri: Optional[pulumi.Input[str]] = None):
7007
+ schema_registry_uri: Optional[pulumi.Input[str]] = None,
7008
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
6808
7009
  """
6809
7010
  :param pulumi.Input[str] access_cert: The Kafka client certificate.
6810
7011
  :param pulumi.Input[str] access_key: The Kafka client certificate key.
6811
7012
  :param pulumi.Input[str] connect_uri: The Kafka Connect URI.
6812
7013
  :param pulumi.Input[str] rest_uri: The Kafka REST URI.
6813
7014
  :param pulumi.Input[str] schema_registry_uri: The Schema Registry URI.
7015
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Kafka server URIs.
6814
7016
  """
6815
7017
  if access_cert is not None:
6816
7018
  pulumi.set(__self__, "access_cert", access_cert)
@@ -6822,6 +7024,8 @@ class KafkaKafkaArgs:
6822
7024
  pulumi.set(__self__, "rest_uri", rest_uri)
6823
7025
  if schema_registry_uri is not None:
6824
7026
  pulumi.set(__self__, "schema_registry_uri", schema_registry_uri)
7027
+ if uris is not None:
7028
+ pulumi.set(__self__, "uris", uris)
6825
7029
 
6826
7030
  @property
6827
7031
  @pulumi.getter(name="accessCert")
@@ -6883,6 +7087,18 @@ class KafkaKafkaArgs:
6883
7087
  def schema_registry_uri(self, value: Optional[pulumi.Input[str]]):
6884
7088
  pulumi.set(self, "schema_registry_uri", value)
6885
7089
 
7090
+ @property
7091
+ @pulumi.getter
7092
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
7093
+ """
7094
+ Kafka server URIs.
7095
+ """
7096
+ return pulumi.get(self, "uris")
7097
+
7098
+ @uris.setter
7099
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
7100
+ pulumi.set(self, "uris", value)
7101
+
6886
7102
 
6887
7103
  @pulumi.input_type
6888
7104
  class KafkaKafkaUserConfigArgs:
@@ -6923,7 +7139,7 @@ class KafkaKafkaUserConfigArgs:
6923
7139
  :param pulumi.Input[bool] kafka_rest: Enable Kafka-REST service. The default value is `false`.
6924
7140
  :param pulumi.Input[bool] kafka_rest_authorization: Enable authorization in Kafka-REST service.
6925
7141
  :param pulumi.Input['KafkaKafkaUserConfigKafkaRestConfigArgs'] kafka_rest_config: Kafka REST configuration
6926
- :param pulumi.Input[str] kafka_version: Kafka major version.
7142
+ :param pulumi.Input[str] kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`. Kafka major version.
6927
7143
  :param pulumi.Input['KafkaKafkaUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
6928
7144
  :param pulumi.Input['KafkaKafkaUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
6929
7145
  :param pulumi.Input['KafkaKafkaUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
@@ -7150,7 +7366,7 @@ class KafkaKafkaUserConfigArgs:
7150
7366
  @pulumi.getter(name="kafkaVersion")
7151
7367
  def kafka_version(self) -> Optional[pulumi.Input[str]]:
7152
7368
  """
7153
- Kafka major version.
7369
+ Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`. Kafka major version.
7154
7370
  """
7155
7371
  return pulumi.get(self, "kafka_version")
7156
7372
 
@@ -7344,7 +7560,7 @@ class KafkaKafkaUserConfigKafkaArgs:
7344
7560
  transaction_state_log_segment_bytes: Optional[pulumi.Input[int]] = None):
7345
7561
  """
7346
7562
  :param pulumi.Input[bool] auto_create_topics_enable: Enable auto creation of topics.
7347
- :param pulumi.Input[str] compression_type: Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
7563
+ :param pulumi.Input[str] compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `uncompressed`, `producer`. Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
7348
7564
  :param pulumi.Input[int] connections_max_idle_ms: Idle connections timeout: the server socket processor threads close the connections that idle for longer than this.
7349
7565
  :param pulumi.Input[int] default_replication_factor: Replication factor for autocreated topics.
7350
7566
  :param pulumi.Input[int] group_initial_rebalance_delay_ms: The amount of time, in milliseconds, the group coordinator will wait for more consumers to join a new group before performing the first rebalance. A longer delay means potentially fewer rebalances, but increases the time until processing begins. The default value for this is 3 seconds. During development and testing it might be desirable to set this to 0 in order to not delay test execution time.
@@ -7354,7 +7570,7 @@ class KafkaKafkaUserConfigKafkaArgs:
7354
7570
  :param pulumi.Input[int] log_cleaner_max_compaction_lag_ms: The maximum amount of time message will remain uncompacted. Only applicable for logs that are being compacted.
7355
7571
  :param pulumi.Input[float] log_cleaner_min_cleanable_ratio: Controls log compactor frequency. Larger value means more frequent compactions but also more space wasted for logs. Consider setting log.cleaner.max.compaction.lag.ms to enforce compactions sooner, instead of setting a very high value for this option.
7356
7572
  :param pulumi.Input[int] log_cleaner_min_compaction_lag_ms: The minimum time a message will remain uncompacted in the log. Only applicable for logs that are being compacted.
7357
- :param pulumi.Input[str] log_cleanup_policy: The default cleanup policy for segments beyond the retention window.
7573
+ :param pulumi.Input[str] log_cleanup_policy: Enum: `delete`, `compact`, `compact,delete`. The default cleanup policy for segments beyond the retention window.
7358
7574
  :param pulumi.Input[int] log_flush_interval_messages: The number of messages accumulated on a log partition before messages are flushed to disk.
7359
7575
  :param pulumi.Input[int] log_flush_interval_ms: The maximum time in ms that a message in any topic is kept in memory before flushed to disk. If not set, the value in log.flush.scheduler.interval.ms is used.
7360
7576
  :param pulumi.Input[int] log_index_interval_bytes: The interval with which Kafka adds an entry to the offset index.
@@ -7363,7 +7579,7 @@ class KafkaKafkaUserConfigKafkaArgs:
7363
7579
  :param pulumi.Input[int] log_local_retention_ms: The number of milliseconds to keep the local log segments before it gets eligible for deletion. If set to -2, the value of log.retention.ms is used. The effective value should always be less than or equal to log.retention.ms value.
7364
7580
  :param pulumi.Input[bool] log_message_downconversion_enable: This configuration controls whether down-conversion of message formats is enabled to satisfy consume requests.
7365
7581
  :param pulumi.Input[int] log_message_timestamp_difference_max_ms: The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message.
7366
- :param pulumi.Input[str] log_message_timestamp_type: Define whether the timestamp in the message is message create time or log append time.
7582
+ :param pulumi.Input[str] log_message_timestamp_type: Enum: `CreateTime`, `LogAppendTime`. Define whether the timestamp in the message is message create time or log append time.
7367
7583
  :param pulumi.Input[bool] log_preallocate: Should pre allocate file when create new segment?
7368
7584
  :param pulumi.Input[int] log_retention_bytes: The maximum size of the log before deleting messages.
7369
7585
  :param pulumi.Input[int] log_retention_hours: The number of hours to keep a log file before deleting it.
@@ -7499,7 +7715,7 @@ class KafkaKafkaUserConfigKafkaArgs:
7499
7715
  @pulumi.getter(name="compressionType")
7500
7716
  def compression_type(self) -> Optional[pulumi.Input[str]]:
7501
7717
  """
7502
- Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
7718
+ Enum: `gzip`, `snappy`, `lz4`, `zstd`, `uncompressed`, `producer`. Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
7503
7719
  """
7504
7720
  return pulumi.get(self, "compression_type")
7505
7721
 
@@ -7619,7 +7835,7 @@ class KafkaKafkaUserConfigKafkaArgs:
7619
7835
  @pulumi.getter(name="logCleanupPolicy")
7620
7836
  def log_cleanup_policy(self) -> Optional[pulumi.Input[str]]:
7621
7837
  """
7622
- The default cleanup policy for segments beyond the retention window.
7838
+ Enum: `delete`, `compact`, `compact,delete`. The default cleanup policy for segments beyond the retention window.
7623
7839
  """
7624
7840
  return pulumi.get(self, "log_cleanup_policy")
7625
7841
 
@@ -7727,7 +7943,7 @@ class KafkaKafkaUserConfigKafkaArgs:
7727
7943
  @pulumi.getter(name="logMessageTimestampType")
7728
7944
  def log_message_timestamp_type(self) -> Optional[pulumi.Input[str]]:
7729
7945
  """
7730
- Define whether the timestamp in the message is message create time or log append time.
7946
+ Enum: `CreateTime`, `LogAppendTime`. Define whether the timestamp in the message is message create time or log append time.
7731
7947
  """
7732
7948
  return pulumi.get(self, "log_message_timestamp_type")
7733
7949
 
@@ -8095,10 +8311,10 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
8095
8311
  scheduled_rebalance_max_delay_ms: Optional[pulumi.Input[int]] = None,
8096
8312
  session_timeout_ms: Optional[pulumi.Input[int]] = None):
8097
8313
  """
8098
- :param pulumi.Input[str] connector_client_config_override_policy: Defines what client configurations can be overridden by the connector. Default is None.
8099
- :param pulumi.Input[str] consumer_auto_offset_reset: What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
8314
+ :param pulumi.Input[str] connector_client_config_override_policy: Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
8315
+ :param pulumi.Input[str] consumer_auto_offset_reset: Enum: `earliest`, `latest`. What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
8100
8316
  :param pulumi.Input[int] consumer_fetch_max_bytes: Records are fetched in batches by the consumer, and if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned to ensure that the consumer can make progress. As such, this is not a absolute maximum.
8101
- :param pulumi.Input[str] consumer_isolation_level: Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
8317
+ :param pulumi.Input[str] consumer_isolation_level: Enum: `read_uncommitted`, `read_committed`. Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
8102
8318
  :param pulumi.Input[int] consumer_max_partition_fetch_bytes: Records are fetched in batches by the consumer.If the first record batch in the first non-empty partition of the fetch is larger than this limit, the batch will still be returned to ensure that the consumer can make progress.
8103
8319
  :param pulumi.Input[int] consumer_max_poll_interval_ms: The maximum delay in milliseconds between invocations of poll() when using consumer group management (defaults to 300000).
8104
8320
  :param pulumi.Input[int] consumer_max_poll_records: The maximum number of records returned in a single call to poll() (defaults to 500).
@@ -8106,7 +8322,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
8106
8322
  :param pulumi.Input[int] offset_flush_timeout_ms: Maximum number of milliseconds to wait for records to flush and partition offset data to be committed to offset storage before cancelling the process and restoring the offset data to be committed in a future attempt (defaults to 5000).
8107
8323
  :param pulumi.Input[int] producer_batch_size: This setting gives the upper bound of the batch size to be sent. If there are fewer than this many bytes accumulated for this partition, the producer will 'linger' for the linger.ms time waiting for more records to show up. A batch size of zero will disable batching entirely (defaults to 16384).
8108
8324
  :param pulumi.Input[int] producer_buffer_memory: The total bytes of memory the producer can use to buffer records waiting to be sent to the broker (defaults to 33554432).
8109
- :param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
8325
+ :param pulumi.Input[str] producer_compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
8110
8326
  :param pulumi.Input[int] producer_linger_ms: This setting gives the upper bound on the delay for batching: once there is batch.size worth of records for a partition it will be sent immediately regardless of this setting, however if there are fewer than this many bytes accumulated for this partition the producer will 'linger' for the specified time waiting for more records to show up. Defaults to 0.
8111
8327
  :param pulumi.Input[int] producer_max_request_size: This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.
8112
8328
  :param pulumi.Input[int] scheduled_rebalance_max_delay_ms: The maximum delay that is scheduled in order to wait for the return of one or more departed workers before rebalancing and reassigning their connectors and tasks to the group. During this period the connectors and tasks of the departed workers remain unassigned. Defaults to 5 minutes.
@@ -8149,7 +8365,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
8149
8365
  @pulumi.getter(name="connectorClientConfigOverridePolicy")
8150
8366
  def connector_client_config_override_policy(self) -> Optional[pulumi.Input[str]]:
8151
8367
  """
8152
- Defines what client configurations can be overridden by the connector. Default is None.
8368
+ Enum: `None`, `All`. Defines what client configurations can be overridden by the connector. Default is None.
8153
8369
  """
8154
8370
  return pulumi.get(self, "connector_client_config_override_policy")
8155
8371
 
@@ -8161,7 +8377,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
8161
8377
  @pulumi.getter(name="consumerAutoOffsetReset")
8162
8378
  def consumer_auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
8163
8379
  """
8164
- What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
8380
+ Enum: `earliest`, `latest`. What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
8165
8381
  """
8166
8382
  return pulumi.get(self, "consumer_auto_offset_reset")
8167
8383
 
@@ -8185,7 +8401,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
8185
8401
  @pulumi.getter(name="consumerIsolationLevel")
8186
8402
  def consumer_isolation_level(self) -> Optional[pulumi.Input[str]]:
8187
8403
  """
8188
- Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
8404
+ Enum: `read_uncommitted`, `read_committed`. Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
8189
8405
  """
8190
8406
  return pulumi.get(self, "consumer_isolation_level")
8191
8407
 
@@ -8281,7 +8497,7 @@ class KafkaKafkaUserConfigKafkaConnectConfigArgs:
8281
8497
  @pulumi.getter(name="producerCompressionType")
8282
8498
  def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
8283
8499
  """
8284
- Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
8500
+ Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
8285
8501
  """
8286
8502
  return pulumi.get(self, "producer_compression_type")
8287
8503
 
@@ -8354,11 +8570,11 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
8354
8570
  """
8355
8571
  :param pulumi.Input[bool] consumer_enable_auto_commit: If true the consumer's offset will be periodically committed to Kafka in the background. The default value is `true`.
8356
8572
  :param pulumi.Input[int] consumer_request_max_bytes: Maximum number of bytes in unencoded message keys and values by a single request. The default value is `67108864`.
8357
- :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`.
8358
- :param pulumi.Input[str] name_strategy: Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
8573
+ :param pulumi.Input[int] consumer_request_timeout_ms: Enum: `1000`, `15000`, `30000`. The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
8574
+ :param pulumi.Input[str] name_strategy: Enum: `topic_name`, `record_name`, `topic_record_name`. Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
8359
8575
  :param pulumi.Input[bool] name_strategy_validation: If true, validate that given schema is registered under expected subject name by the used name strategy when producing messages. The default value is `true`.
8360
- :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`.
8361
- :param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
8576
+ :param pulumi.Input[str] producer_acks: Enum: `all`, `-1`, `0`, `1`. The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
8577
+ :param pulumi.Input[str] producer_compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
8362
8578
  :param pulumi.Input[int] producer_linger_ms: Wait for up to the given delay to allow batching records together. The default value is `0`.
8363
8579
  :param pulumi.Input[int] producer_max_request_size: The maximum size of a request in bytes. Note that Kafka broker can also cap the record batch size. The default value is `1048576`.
8364
8580
  :param pulumi.Input[int] simpleconsumer_pool_size_max: Maximum number of SimpleConsumers that can be instantiated per broker. The default value is `25`.
@@ -8412,7 +8628,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
8412
8628
  @pulumi.getter(name="consumerRequestTimeoutMs")
8413
8629
  def consumer_request_timeout_ms(self) -> Optional[pulumi.Input[int]]:
8414
8630
  """
8415
- The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
8631
+ Enum: `1000`, `15000`, `30000`. The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
8416
8632
  """
8417
8633
  return pulumi.get(self, "consumer_request_timeout_ms")
8418
8634
 
@@ -8424,7 +8640,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
8424
8640
  @pulumi.getter(name="nameStrategy")
8425
8641
  def name_strategy(self) -> Optional[pulumi.Input[str]]:
8426
8642
  """
8427
- Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
8643
+ Enum: `topic_name`, `record_name`, `topic_record_name`. Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
8428
8644
  """
8429
8645
  return pulumi.get(self, "name_strategy")
8430
8646
 
@@ -8448,7 +8664,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
8448
8664
  @pulumi.getter(name="producerAcks")
8449
8665
  def producer_acks(self) -> Optional[pulumi.Input[str]]:
8450
8666
  """
8451
- The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
8667
+ Enum: `all`, `-1`, `0`, `1`. The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
8452
8668
  """
8453
8669
  return pulumi.get(self, "producer_acks")
8454
8670
 
@@ -8460,7 +8676,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
8460
8676
  @pulumi.getter(name="producerCompressionType")
8461
8677
  def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
8462
8678
  """
8463
- Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
8679
+ Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
8464
8680
  """
8465
8681
  return pulumi.get(self, "producer_compression_type")
8466
8682
 
@@ -10224,6 +10440,45 @@ class M3AggregatorComponentArgs:
10224
10440
  pulumi.set(self, "usage", value)
10225
10441
 
10226
10442
 
10443
+ @pulumi.input_type
10444
+ class M3AggregatorM3aggregatorArgs:
10445
+ def __init__(__self__, *,
10446
+ aggregator_http_uri: Optional[pulumi.Input[str]] = None,
10447
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
10448
+ """
10449
+ :param pulumi.Input[str] aggregator_http_uri: M3 Aggregator HTTP URI.
10450
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: M3 Aggregator server URIs.
10451
+ """
10452
+ if aggregator_http_uri is not None:
10453
+ pulumi.set(__self__, "aggregator_http_uri", aggregator_http_uri)
10454
+ if uris is not None:
10455
+ pulumi.set(__self__, "uris", uris)
10456
+
10457
+ @property
10458
+ @pulumi.getter(name="aggregatorHttpUri")
10459
+ def aggregator_http_uri(self) -> Optional[pulumi.Input[str]]:
10460
+ """
10461
+ M3 Aggregator HTTP URI.
10462
+ """
10463
+ return pulumi.get(self, "aggregator_http_uri")
10464
+
10465
+ @aggregator_http_uri.setter
10466
+ def aggregator_http_uri(self, value: Optional[pulumi.Input[str]]):
10467
+ pulumi.set(self, "aggregator_http_uri", value)
10468
+
10469
+ @property
10470
+ @pulumi.getter
10471
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
10472
+ """
10473
+ M3 Aggregator server URIs.
10474
+ """
10475
+ return pulumi.get(self, "uris")
10476
+
10477
+ @uris.setter
10478
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
10479
+ pulumi.set(self, "uris", value)
10480
+
10481
+
10227
10482
  @pulumi.input_type
10228
10483
  class M3AggregatorM3aggregatorUserConfigArgs:
10229
10484
  def __init__(__self__, *,
@@ -10240,8 +10495,8 @@ class M3AggregatorM3aggregatorUserConfigArgs:
10240
10495
  :param pulumi.Input[Sequence[pulumi.Input['M3AggregatorM3aggregatorUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
10241
10496
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
10242
10497
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
10243
- :param pulumi.Input[str] m3_version: M3 major version (deprecated, use m3aggregator_version).
10244
- :param pulumi.Input[str] m3aggregator_version: M3 major version (the minimum compatible version).
10498
+ :param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5`. M3 major version (deprecated, use m3aggregator_version).
10499
+ :param pulumi.Input[str] m3aggregator_version: Enum: `1.1`, `1.2`, `1.5`. M3 major version (the minimum compatible version).
10245
10500
  :param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
10246
10501
  :param pulumi.Input[bool] static_ips: Use static public IP addresses.
10247
10502
  """
@@ -10320,7 +10575,7 @@ class M3AggregatorM3aggregatorUserConfigArgs:
10320
10575
  @pulumi.getter(name="m3Version")
10321
10576
  def m3_version(self) -> Optional[pulumi.Input[str]]:
10322
10577
  """
10323
- M3 major version (deprecated, use m3aggregator_version).
10578
+ Enum: `1.1`, `1.2`, `1.5`. M3 major version (deprecated, use m3aggregator_version).
10324
10579
  """
10325
10580
  return pulumi.get(self, "m3_version")
10326
10581
 
@@ -10332,7 +10587,7 @@ class M3AggregatorM3aggregatorUserConfigArgs:
10332
10587
  @pulumi.getter(name="m3aggregatorVersion")
10333
10588
  def m3aggregator_version(self) -> Optional[pulumi.Input[str]]:
10334
10589
  """
10335
- M3 major version (the minimum compatible version).
10590
+ Enum: `1.1`, `1.2`, `1.5`. M3 major version (the minimum compatible version).
10336
10591
  """
10337
10592
  return pulumi.get(self, "m3aggregator_version")
10338
10593
 
@@ -10634,6 +10889,109 @@ class M3DbComponentArgs:
10634
10889
  pulumi.set(self, "usage", value)
10635
10890
 
10636
10891
 
10892
+ @pulumi.input_type
10893
+ class M3DbM3dbArgs:
10894
+ def __init__(__self__, *,
10895
+ http_cluster_uri: Optional[pulumi.Input[str]] = None,
10896
+ http_node_uri: Optional[pulumi.Input[str]] = None,
10897
+ influxdb_uri: Optional[pulumi.Input[str]] = None,
10898
+ prometheus_remote_read_uri: Optional[pulumi.Input[str]] = None,
10899
+ prometheus_remote_write_uri: Optional[pulumi.Input[str]] = None,
10900
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
10901
+ """
10902
+ :param pulumi.Input[str] http_cluster_uri: M3DB cluster URI.
10903
+ :param pulumi.Input[str] http_node_uri: M3DB node URI.
10904
+ :param pulumi.Input[str] influxdb_uri: InfluxDB URI.
10905
+ :param pulumi.Input[str] prometheus_remote_read_uri: Prometheus remote read URI.
10906
+ :param pulumi.Input[str] prometheus_remote_write_uri: Prometheus remote write URI.
10907
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: M3DB server URIs.
10908
+ """
10909
+ if http_cluster_uri is not None:
10910
+ pulumi.set(__self__, "http_cluster_uri", http_cluster_uri)
10911
+ if http_node_uri is not None:
10912
+ pulumi.set(__self__, "http_node_uri", http_node_uri)
10913
+ if influxdb_uri is not None:
10914
+ pulumi.set(__self__, "influxdb_uri", influxdb_uri)
10915
+ if prometheus_remote_read_uri is not None:
10916
+ pulumi.set(__self__, "prometheus_remote_read_uri", prometheus_remote_read_uri)
10917
+ if prometheus_remote_write_uri is not None:
10918
+ pulumi.set(__self__, "prometheus_remote_write_uri", prometheus_remote_write_uri)
10919
+ if uris is not None:
10920
+ pulumi.set(__self__, "uris", uris)
10921
+
10922
+ @property
10923
+ @pulumi.getter(name="httpClusterUri")
10924
+ def http_cluster_uri(self) -> Optional[pulumi.Input[str]]:
10925
+ """
10926
+ M3DB cluster URI.
10927
+ """
10928
+ return pulumi.get(self, "http_cluster_uri")
10929
+
10930
+ @http_cluster_uri.setter
10931
+ def http_cluster_uri(self, value: Optional[pulumi.Input[str]]):
10932
+ pulumi.set(self, "http_cluster_uri", value)
10933
+
10934
+ @property
10935
+ @pulumi.getter(name="httpNodeUri")
10936
+ def http_node_uri(self) -> Optional[pulumi.Input[str]]:
10937
+ """
10938
+ M3DB node URI.
10939
+ """
10940
+ return pulumi.get(self, "http_node_uri")
10941
+
10942
+ @http_node_uri.setter
10943
+ def http_node_uri(self, value: Optional[pulumi.Input[str]]):
10944
+ pulumi.set(self, "http_node_uri", value)
10945
+
10946
+ @property
10947
+ @pulumi.getter(name="influxdbUri")
10948
+ def influxdb_uri(self) -> Optional[pulumi.Input[str]]:
10949
+ """
10950
+ InfluxDB URI.
10951
+ """
10952
+ return pulumi.get(self, "influxdb_uri")
10953
+
10954
+ @influxdb_uri.setter
10955
+ def influxdb_uri(self, value: Optional[pulumi.Input[str]]):
10956
+ pulumi.set(self, "influxdb_uri", value)
10957
+
10958
+ @property
10959
+ @pulumi.getter(name="prometheusRemoteReadUri")
10960
+ def prometheus_remote_read_uri(self) -> Optional[pulumi.Input[str]]:
10961
+ """
10962
+ Prometheus remote read URI.
10963
+ """
10964
+ return pulumi.get(self, "prometheus_remote_read_uri")
10965
+
10966
+ @prometheus_remote_read_uri.setter
10967
+ def prometheus_remote_read_uri(self, value: Optional[pulumi.Input[str]]):
10968
+ pulumi.set(self, "prometheus_remote_read_uri", value)
10969
+
10970
+ @property
10971
+ @pulumi.getter(name="prometheusRemoteWriteUri")
10972
+ def prometheus_remote_write_uri(self) -> Optional[pulumi.Input[str]]:
10973
+ """
10974
+ Prometheus remote write URI.
10975
+ """
10976
+ return pulumi.get(self, "prometheus_remote_write_uri")
10977
+
10978
+ @prometheus_remote_write_uri.setter
10979
+ def prometheus_remote_write_uri(self, value: Optional[pulumi.Input[str]]):
10980
+ pulumi.set(self, "prometheus_remote_write_uri", value)
10981
+
10982
+ @property
10983
+ @pulumi.getter
10984
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
10985
+ """
10986
+ M3DB server URIs.
10987
+ """
10988
+ return pulumi.get(self, "uris")
10989
+
10990
+ @uris.setter
10991
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
10992
+ pulumi.set(self, "uris", value)
10993
+
10994
+
10637
10995
  @pulumi.input_type
10638
10996
  class M3DbM3dbUserConfigArgs:
10639
10997
  def __init__(__self__, *,
@@ -10663,9 +11021,9 @@ class M3DbM3dbUserConfigArgs:
10663
11021
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
10664
11022
  :param pulumi.Input['M3DbM3dbUserConfigLimitsArgs'] limits: M3 limits
10665
11023
  :param pulumi.Input['M3DbM3dbUserConfigM3Args'] m3: M3 specific configuration options
10666
- :param pulumi.Input[str] m3_version: M3 major version (deprecated, use m3db_version).
11024
+ :param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5`. M3 major version (deprecated, use m3db_version).
10667
11025
  :param pulumi.Input[bool] m3coordinator_enable_graphite_carbon_ingest: Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
10668
- :param pulumi.Input[str] m3db_version: M3 major version (the minimum compatible version).
11026
+ :param pulumi.Input[str] m3db_version: Enum: `1.1`, `1.2`, `1.5`. M3 major version (the minimum compatible version).
10669
11027
  :param pulumi.Input[Sequence[pulumi.Input['M3DbM3dbUserConfigNamespaceArgs']]] namespaces: List of M3 namespaces
10670
11028
  :param pulumi.Input['M3DbM3dbUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
10671
11029
  :param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
@@ -10806,7 +11164,7 @@ class M3DbM3dbUserConfigArgs:
10806
11164
  @pulumi.getter(name="m3Version")
10807
11165
  def m3_version(self) -> Optional[pulumi.Input[str]]:
10808
11166
  """
10809
- M3 major version (deprecated, use m3db_version).
11167
+ Enum: `1.1`, `1.2`, `1.5`. M3 major version (deprecated, use m3db_version).
10810
11168
  """
10811
11169
  return pulumi.get(self, "m3_version")
10812
11170
 
@@ -10830,7 +11188,7 @@ class M3DbM3dbUserConfigArgs:
10830
11188
  @pulumi.getter(name="m3dbVersion")
10831
11189
  def m3db_version(self) -> Optional[pulumi.Input[str]]:
10832
11190
  """
10833
- M3 major version (the minimum compatible version).
11191
+ Enum: `1.1`, `1.2`, `1.5`. M3 major version (the minimum compatible version).
10834
11192
  """
10835
11193
  return pulumi.get(self, "m3db_version")
10836
11194
 
@@ -11147,7 +11505,7 @@ class M3DbM3dbUserConfigNamespaceArgs:
11147
11505
  resolution: Optional[pulumi.Input[str]] = None):
11148
11506
  """
11149
11507
  :param pulumi.Input[str] name: The name of the namespace.
11150
- :param pulumi.Input[str] type: The type of aggregation (aggregated/unaggregated).
11508
+ :param pulumi.Input[str] type: Enum: `aggregated`, `unaggregated`. The type of aggregation (aggregated/unaggregated).
11151
11509
  :param pulumi.Input['M3DbM3dbUserConfigNamespaceOptionsArgs'] options: Namespace options
11152
11510
  :param pulumi.Input[str] resolution: The resolution for an aggregated namespace.
11153
11511
  """
@@ -11174,7 +11532,7 @@ class M3DbM3dbUserConfigNamespaceArgs:
11174
11532
  @pulumi.getter
11175
11533
  def type(self) -> pulumi.Input[str]:
11176
11534
  """
11177
- The type of aggregation (aggregated/unaggregated).
11535
+ Enum: `aggregated`, `unaggregated`. The type of aggregation (aggregated/unaggregated).
11178
11536
  """
11179
11537
  return pulumi.get(self, "type")
11180
11538
 
@@ -11864,85 +12222,275 @@ class MySqlComponentArgs:
11864
12222
 
11865
12223
 
11866
12224
  @pulumi.input_type
11867
- class MySqlMysqlUserConfigArgs:
12225
+ class MySqlMysqlArgs:
11868
12226
  def __init__(__self__, *,
11869
- additional_backup_regions: Optional[pulumi.Input[str]] = None,
11870
- admin_password: Optional[pulumi.Input[str]] = None,
11871
- admin_username: Optional[pulumi.Input[str]] = None,
11872
- backup_hour: Optional[pulumi.Input[int]] = None,
11873
- backup_minute: Optional[pulumi.Input[int]] = None,
11874
- binlog_retention_period: Optional[pulumi.Input[int]] = None,
11875
- ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]]] = None,
11876
- ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
11877
- ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
11878
- migration: Optional[pulumi.Input['MySqlMysqlUserConfigMigrationArgs']] = None,
11879
- mysql: Optional[pulumi.Input['MySqlMysqlUserConfigMysqlArgs']] = None,
11880
- mysql_version: Optional[pulumi.Input[str]] = None,
11881
- private_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs']] = None,
11882
- privatelink_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs']] = None,
11883
- project_to_fork_from: Optional[pulumi.Input[str]] = None,
11884
- public_access: Optional[pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs']] = None,
11885
- recovery_target_time: Optional[pulumi.Input[str]] = None,
11886
- service_log: Optional[pulumi.Input[bool]] = None,
11887
- service_to_fork_from: Optional[pulumi.Input[str]] = None,
11888
- static_ips: Optional[pulumi.Input[bool]] = None):
12227
+ params: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]] = None,
12228
+ replica_uri: Optional[pulumi.Input[str]] = None,
12229
+ standby_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12230
+ syncing_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12231
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
12232
+ """
12233
+ :param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]] params: MySQL connection parameters
12234
+ :param pulumi.Input[str] replica_uri: MySQL replica URI for services with a replica
12235
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uris: MySQL standby connection URIs
12236
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] syncing_uris: MySQL syncing connection URIs
12237
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: MySQL master connection URIs
12238
+ """
12239
+ if params is not None:
12240
+ pulumi.set(__self__, "params", params)
12241
+ if replica_uri is not None:
12242
+ pulumi.set(__self__, "replica_uri", replica_uri)
12243
+ if standby_uris is not None:
12244
+ pulumi.set(__self__, "standby_uris", standby_uris)
12245
+ if syncing_uris is not None:
12246
+ pulumi.set(__self__, "syncing_uris", syncing_uris)
12247
+ if uris is not None:
12248
+ pulumi.set(__self__, "uris", uris)
12249
+
12250
+ @property
12251
+ @pulumi.getter
12252
+ def params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]]:
11889
12253
  """
11890
- :param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
11891
- :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.
11892
- :param pulumi.Input[str] admin_username: Custom username for admin user. This must be set only when a new service is being created.
11893
- :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.
11894
- :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.
11895
- :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.
11896
- :param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
11897
- :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
11898
- :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
11899
- :param pulumi.Input['MySqlMysqlUserConfigMigrationArgs'] migration: Migrate data from existing server
11900
- :param pulumi.Input['MySqlMysqlUserConfigMysqlArgs'] mysql: mysql.conf configuration values
11901
- :param pulumi.Input[str] mysql_version: MySQL major version.
11902
- :param pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
11903
- :param pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
11904
- :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.
11905
- :param pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
11906
- :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.
11907
- :param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
11908
- :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.
11909
- :param pulumi.Input[bool] static_ips: Use static public IP addresses.
12254
+ MySQL connection parameters
11910
12255
  """
11911
- if additional_backup_regions is not None:
11912
- pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
11913
- if admin_password is not None:
11914
- pulumi.set(__self__, "admin_password", admin_password)
11915
- if admin_username is not None:
11916
- pulumi.set(__self__, "admin_username", admin_username)
11917
- if backup_hour is not None:
11918
- pulumi.set(__self__, "backup_hour", backup_hour)
11919
- if backup_minute is not None:
11920
- pulumi.set(__self__, "backup_minute", backup_minute)
11921
- if binlog_retention_period is not None:
11922
- pulumi.set(__self__, "binlog_retention_period", binlog_retention_period)
11923
- if ip_filter_objects is not None:
11924
- pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
11925
- if ip_filter_strings is not None:
11926
- pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
11927
- if ip_filters is not None:
11928
- warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
11929
- pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
11930
- if ip_filters is not None:
11931
- pulumi.set(__self__, "ip_filters", ip_filters)
11932
- if migration is not None:
11933
- pulumi.set(__self__, "migration", migration)
11934
- if mysql is not None:
11935
- pulumi.set(__self__, "mysql", mysql)
11936
- if mysql_version is not None:
11937
- pulumi.set(__self__, "mysql_version", mysql_version)
11938
- if private_access is not None:
11939
- pulumi.set(__self__, "private_access", private_access)
11940
- if privatelink_access is not None:
11941
- pulumi.set(__self__, "privatelink_access", privatelink_access)
11942
- if project_to_fork_from is not None:
11943
- pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
11944
- if public_access is not None:
11945
- pulumi.set(__self__, "public_access", public_access)
12256
+ return pulumi.get(self, "params")
12257
+
12258
+ @params.setter
12259
+ def params(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]]):
12260
+ pulumi.set(self, "params", value)
12261
+
12262
+ @property
12263
+ @pulumi.getter(name="replicaUri")
12264
+ def replica_uri(self) -> Optional[pulumi.Input[str]]:
12265
+ """
12266
+ MySQL replica URI for services with a replica
12267
+ """
12268
+ return pulumi.get(self, "replica_uri")
12269
+
12270
+ @replica_uri.setter
12271
+ def replica_uri(self, value: Optional[pulumi.Input[str]]):
12272
+ pulumi.set(self, "replica_uri", value)
12273
+
12274
+ @property
12275
+ @pulumi.getter(name="standbyUris")
12276
+ def standby_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
12277
+ """
12278
+ MySQL standby connection URIs
12279
+ """
12280
+ return pulumi.get(self, "standby_uris")
12281
+
12282
+ @standby_uris.setter
12283
+ def standby_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
12284
+ pulumi.set(self, "standby_uris", value)
12285
+
12286
+ @property
12287
+ @pulumi.getter(name="syncingUris")
12288
+ def syncing_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
12289
+ """
12290
+ MySQL syncing connection URIs
12291
+ """
12292
+ return pulumi.get(self, "syncing_uris")
12293
+
12294
+ @syncing_uris.setter
12295
+ def syncing_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
12296
+ pulumi.set(self, "syncing_uris", value)
12297
+
12298
+ @property
12299
+ @pulumi.getter
12300
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
12301
+ """
12302
+ MySQL master connection URIs
12303
+ """
12304
+ return pulumi.get(self, "uris")
12305
+
12306
+ @uris.setter
12307
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
12308
+ pulumi.set(self, "uris", value)
12309
+
12310
+
12311
+ @pulumi.input_type
12312
+ class MySqlMysqlParamArgs:
12313
+ def __init__(__self__, *,
12314
+ database_name: Optional[pulumi.Input[str]] = None,
12315
+ host: Optional[pulumi.Input[str]] = None,
12316
+ password: Optional[pulumi.Input[str]] = None,
12317
+ port: Optional[pulumi.Input[int]] = None,
12318
+ sslmode: Optional[pulumi.Input[str]] = None,
12319
+ user: Optional[pulumi.Input[str]] = None):
12320
+ """
12321
+ :param pulumi.Input[str] database_name: Primary MySQL database name
12322
+ :param pulumi.Input[str] host: MySQL host IP or name
12323
+ :param pulumi.Input[str] password: MySQL admin user password
12324
+ :param pulumi.Input[int] port: MySQL port
12325
+ :param pulumi.Input[str] sslmode: MySQL sslmode setting (currently always "require")
12326
+ :param pulumi.Input[str] user: MySQL admin user name
12327
+ """
12328
+ if database_name is not None:
12329
+ pulumi.set(__self__, "database_name", database_name)
12330
+ if host is not None:
12331
+ pulumi.set(__self__, "host", host)
12332
+ if password is not None:
12333
+ pulumi.set(__self__, "password", password)
12334
+ if port is not None:
12335
+ pulumi.set(__self__, "port", port)
12336
+ if sslmode is not None:
12337
+ pulumi.set(__self__, "sslmode", sslmode)
12338
+ if user is not None:
12339
+ pulumi.set(__self__, "user", user)
12340
+
12341
+ @property
12342
+ @pulumi.getter(name="databaseName")
12343
+ def database_name(self) -> Optional[pulumi.Input[str]]:
12344
+ """
12345
+ Primary MySQL database name
12346
+ """
12347
+ return pulumi.get(self, "database_name")
12348
+
12349
+ @database_name.setter
12350
+ def database_name(self, value: Optional[pulumi.Input[str]]):
12351
+ pulumi.set(self, "database_name", value)
12352
+
12353
+ @property
12354
+ @pulumi.getter
12355
+ def host(self) -> Optional[pulumi.Input[str]]:
12356
+ """
12357
+ MySQL host IP or name
12358
+ """
12359
+ return pulumi.get(self, "host")
12360
+
12361
+ @host.setter
12362
+ def host(self, value: Optional[pulumi.Input[str]]):
12363
+ pulumi.set(self, "host", value)
12364
+
12365
+ @property
12366
+ @pulumi.getter
12367
+ def password(self) -> Optional[pulumi.Input[str]]:
12368
+ """
12369
+ MySQL admin user password
12370
+ """
12371
+ return pulumi.get(self, "password")
12372
+
12373
+ @password.setter
12374
+ def password(self, value: Optional[pulumi.Input[str]]):
12375
+ pulumi.set(self, "password", value)
12376
+
12377
+ @property
12378
+ @pulumi.getter
12379
+ def port(self) -> Optional[pulumi.Input[int]]:
12380
+ """
12381
+ MySQL port
12382
+ """
12383
+ return pulumi.get(self, "port")
12384
+
12385
+ @port.setter
12386
+ def port(self, value: Optional[pulumi.Input[int]]):
12387
+ pulumi.set(self, "port", value)
12388
+
12389
+ @property
12390
+ @pulumi.getter
12391
+ def sslmode(self) -> Optional[pulumi.Input[str]]:
12392
+ """
12393
+ MySQL sslmode setting (currently always "require")
12394
+ """
12395
+ return pulumi.get(self, "sslmode")
12396
+
12397
+ @sslmode.setter
12398
+ def sslmode(self, value: Optional[pulumi.Input[str]]):
12399
+ pulumi.set(self, "sslmode", value)
12400
+
12401
+ @property
12402
+ @pulumi.getter
12403
+ def user(self) -> Optional[pulumi.Input[str]]:
12404
+ """
12405
+ MySQL admin user name
12406
+ """
12407
+ return pulumi.get(self, "user")
12408
+
12409
+ @user.setter
12410
+ def user(self, value: Optional[pulumi.Input[str]]):
12411
+ pulumi.set(self, "user", value)
12412
+
12413
+
12414
+ @pulumi.input_type
12415
+ class MySqlMysqlUserConfigArgs:
12416
+ def __init__(__self__, *,
12417
+ additional_backup_regions: Optional[pulumi.Input[str]] = None,
12418
+ admin_password: Optional[pulumi.Input[str]] = None,
12419
+ admin_username: Optional[pulumi.Input[str]] = None,
12420
+ backup_hour: Optional[pulumi.Input[int]] = None,
12421
+ backup_minute: Optional[pulumi.Input[int]] = None,
12422
+ binlog_retention_period: Optional[pulumi.Input[int]] = None,
12423
+ ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]]] = None,
12424
+ ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12425
+ ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12426
+ migration: Optional[pulumi.Input['MySqlMysqlUserConfigMigrationArgs']] = None,
12427
+ mysql: Optional[pulumi.Input['MySqlMysqlUserConfigMysqlArgs']] = None,
12428
+ mysql_version: Optional[pulumi.Input[str]] = None,
12429
+ private_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs']] = None,
12430
+ privatelink_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs']] = None,
12431
+ project_to_fork_from: Optional[pulumi.Input[str]] = None,
12432
+ public_access: Optional[pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs']] = None,
12433
+ recovery_target_time: Optional[pulumi.Input[str]] = None,
12434
+ service_log: Optional[pulumi.Input[bool]] = None,
12435
+ service_to_fork_from: Optional[pulumi.Input[str]] = None,
12436
+ static_ips: Optional[pulumi.Input[bool]] = None):
12437
+ """
12438
+ :param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
12439
+ :param pulumi.Input[str] admin_password: Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
12440
+ :param pulumi.Input[str] admin_username: Custom username for admin user. This must be set only when a new service is being created.
12441
+ :param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
12442
+ :param pulumi.Input[int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
12443
+ :param pulumi.Input[int] binlog_retention_period: The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
12444
+ :param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
12445
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
12446
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
12447
+ :param pulumi.Input['MySqlMysqlUserConfigMigrationArgs'] migration: Migrate data from existing server
12448
+ :param pulumi.Input['MySqlMysqlUserConfigMysqlArgs'] mysql: mysql.conf configuration values
12449
+ :param pulumi.Input[str] mysql_version: Enum: `8`. MySQL major version.
12450
+ :param pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
12451
+ :param pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
12452
+ :param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
12453
+ :param pulumi.Input['MySqlMysqlUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
12454
+ :param pulumi.Input[str] recovery_target_time: Recovery target time when forking a service. This has effect only when a new service is being created.
12455
+ :param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
12456
+ :param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
12457
+ :param pulumi.Input[bool] static_ips: Use static public IP addresses.
12458
+ """
12459
+ if additional_backup_regions is not None:
12460
+ pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
12461
+ if admin_password is not None:
12462
+ pulumi.set(__self__, "admin_password", admin_password)
12463
+ if admin_username is not None:
12464
+ pulumi.set(__self__, "admin_username", admin_username)
12465
+ if backup_hour is not None:
12466
+ pulumi.set(__self__, "backup_hour", backup_hour)
12467
+ if backup_minute is not None:
12468
+ pulumi.set(__self__, "backup_minute", backup_minute)
12469
+ if binlog_retention_period is not None:
12470
+ pulumi.set(__self__, "binlog_retention_period", binlog_retention_period)
12471
+ if ip_filter_objects is not None:
12472
+ pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
12473
+ if ip_filter_strings is not None:
12474
+ pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
12475
+ if ip_filters is not None:
12476
+ warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
12477
+ pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
12478
+ if ip_filters is not None:
12479
+ pulumi.set(__self__, "ip_filters", ip_filters)
12480
+ if migration is not None:
12481
+ pulumi.set(__self__, "migration", migration)
12482
+ if mysql is not None:
12483
+ pulumi.set(__self__, "mysql", mysql)
12484
+ if mysql_version is not None:
12485
+ pulumi.set(__self__, "mysql_version", mysql_version)
12486
+ if private_access is not None:
12487
+ pulumi.set(__self__, "private_access", private_access)
12488
+ if privatelink_access is not None:
12489
+ pulumi.set(__self__, "privatelink_access", privatelink_access)
12490
+ if project_to_fork_from is not None:
12491
+ pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
12492
+ if public_access is not None:
12493
+ pulumi.set(__self__, "public_access", public_access)
11946
12494
  if recovery_target_time is not None:
11947
12495
  pulumi.set(__self__, "recovery_target_time", recovery_target_time)
11948
12496
  if service_log is not None:
@@ -12091,7 +12639,7 @@ class MySqlMysqlUserConfigArgs:
12091
12639
  @pulumi.getter(name="mysqlVersion")
12092
12640
  def mysql_version(self) -> Optional[pulumi.Input[str]]:
12093
12641
  """
12094
- MySQL major version.
12642
+ Enum: `8`. MySQL major version.
12095
12643
  """
12096
12644
  return pulumi.get(self, "mysql_version")
12097
12645
 
@@ -12250,7 +12798,7 @@ class MySqlMysqlUserConfigMigrationArgs:
12250
12798
  :param pulumi.Input[int] port: Port number of the server where to migrate data from.
12251
12799
  :param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
12252
12800
  :param pulumi.Input[str] ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
12253
- :param pulumi.Input[str] method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
12801
+ :param pulumi.Input[str] method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
12254
12802
  :param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
12255
12803
  :param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
12256
12804
  :param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
@@ -12322,7 +12870,7 @@ class MySqlMysqlUserConfigMigrationArgs:
12322
12870
  @pulumi.getter
12323
12871
  def method(self) -> Optional[pulumi.Input[str]]:
12324
12872
  """
12325
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
12873
+ Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
12326
12874
  """
12327
12875
  return pulumi.get(self, "method")
12328
12876
 
@@ -12418,7 +12966,7 @@ class MySqlMysqlUserConfigMysqlArgs:
12418
12966
  :param pulumi.Input[int] innodb_thread_concurrency: Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
12419
12967
  :param pulumi.Input[int] innodb_write_io_threads: The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
12420
12968
  :param pulumi.Input[int] interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
12421
- :param pulumi.Input[str] internal_tmp_mem_storage_engine: The storage engine for in-memory internal temporary tables.
12969
+ :param pulumi.Input[str] internal_tmp_mem_storage_engine: Enum: `TempTable`, `MEMORY`. The storage engine for in-memory internal temporary tables.
12422
12970
  :param pulumi.Input[float] long_query_time: The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute. Default is 10s.
12423
12971
  :param pulumi.Input[int] max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
12424
12972
  :param pulumi.Input[int] max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp*table*size. Default is 16777216 (16M).
@@ -12701,7 +13249,7 @@ class MySqlMysqlUserConfigMysqlArgs:
12701
13249
  @pulumi.getter(name="internalTmpMemStorageEngine")
12702
13250
  def internal_tmp_mem_storage_engine(self) -> Optional[pulumi.Input[str]]:
12703
13251
  """
12704
- The storage engine for in-memory internal temporary tables.
13252
+ Enum: `TempTable`, `MEMORY`. The storage engine for in-memory internal temporary tables.
12705
13253
  """
12706
13254
  return pulumi.get(self, "internal_tmp_mem_storage_engine")
12707
13255
 
@@ -13253,12 +13801,40 @@ class OpenSearchComponentArgs:
13253
13801
  @pulumi.input_type
13254
13802
  class OpenSearchOpensearchArgs:
13255
13803
  def __init__(__self__, *,
13256
- opensearch_dashboards_uri: Optional[pulumi.Input[str]] = None):
13804
+ kibana_uri: Optional[pulumi.Input[str]] = None,
13805
+ opensearch_dashboards_uri: Optional[pulumi.Input[str]] = None,
13806
+ password: Optional[pulumi.Input[str]] = None,
13807
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
13808
+ username: Optional[pulumi.Input[str]] = None):
13257
13809
  """
13810
+ :param pulumi.Input[str] kibana_uri: URI for Kibana dashboard frontend
13258
13811
  :param pulumi.Input[str] opensearch_dashboards_uri: URI for OpenSearch dashboard frontend
13812
+ :param pulumi.Input[str] password: OpenSearch password
13813
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: OpenSearch server URIs.
13814
+ :param pulumi.Input[str] username: OpenSearch username
13259
13815
  """
13816
+ if kibana_uri is not None:
13817
+ pulumi.set(__self__, "kibana_uri", kibana_uri)
13260
13818
  if opensearch_dashboards_uri is not None:
13261
13819
  pulumi.set(__self__, "opensearch_dashboards_uri", opensearch_dashboards_uri)
13820
+ if password is not None:
13821
+ pulumi.set(__self__, "password", password)
13822
+ if uris is not None:
13823
+ pulumi.set(__self__, "uris", uris)
13824
+ if username is not None:
13825
+ pulumi.set(__self__, "username", username)
13826
+
13827
+ @property
13828
+ @pulumi.getter(name="kibanaUri")
13829
+ def kibana_uri(self) -> Optional[pulumi.Input[str]]:
13830
+ """
13831
+ URI for Kibana dashboard frontend
13832
+ """
13833
+ return pulumi.get(self, "kibana_uri")
13834
+
13835
+ @kibana_uri.setter
13836
+ def kibana_uri(self, value: Optional[pulumi.Input[str]]):
13837
+ pulumi.set(self, "kibana_uri", value)
13262
13838
 
13263
13839
  @property
13264
13840
  @pulumi.getter(name="opensearchDashboardsUri")
@@ -13272,6 +13848,42 @@ class OpenSearchOpensearchArgs:
13272
13848
  def opensearch_dashboards_uri(self, value: Optional[pulumi.Input[str]]):
13273
13849
  pulumi.set(self, "opensearch_dashboards_uri", value)
13274
13850
 
13851
+ @property
13852
+ @pulumi.getter
13853
+ def password(self) -> Optional[pulumi.Input[str]]:
13854
+ """
13855
+ OpenSearch password
13856
+ """
13857
+ return pulumi.get(self, "password")
13858
+
13859
+ @password.setter
13860
+ def password(self, value: Optional[pulumi.Input[str]]):
13861
+ pulumi.set(self, "password", value)
13862
+
13863
+ @property
13864
+ @pulumi.getter
13865
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
13866
+ """
13867
+ OpenSearch server URIs.
13868
+ """
13869
+ return pulumi.get(self, "uris")
13870
+
13871
+ @uris.setter
13872
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
13873
+ pulumi.set(self, "uris", value)
13874
+
13875
+ @property
13876
+ @pulumi.getter
13877
+ def username(self) -> Optional[pulumi.Input[str]]:
13878
+ """
13879
+ OpenSearch username
13880
+ """
13881
+ return pulumi.get(self, "username")
13882
+
13883
+ @username.setter
13884
+ def username(self, value: Optional[pulumi.Input[str]]):
13885
+ pulumi.set(self, "username", value)
13886
+
13275
13887
 
13276
13888
  @pulumi.input_type
13277
13889
  class OpenSearchOpensearchUserConfigArgs:
@@ -13313,7 +13925,7 @@ class OpenSearchOpensearchUserConfigArgs:
13313
13925
  :param pulumi.Input['OpenSearchOpensearchUserConfigOpenidArgs'] openid: OpenSearch OpenID Connect Configuration
13314
13926
  :param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchArgs'] opensearch: OpenSearch settings
13315
13927
  :param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDashboardsArgs'] opensearch_dashboards: OpenSearch Dashboards settings
13316
- :param pulumi.Input[str] opensearch_version: OpenSearch major version.
13928
+ :param pulumi.Input[str] opensearch_version: Enum: `1`, `2`. OpenSearch major version.
13317
13929
  :param pulumi.Input['OpenSearchOpensearchUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
13318
13930
  :param pulumi.Input['OpenSearchOpensearchUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
13319
13931
  :param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
@@ -13537,7 +14149,7 @@ class OpenSearchOpensearchUserConfigArgs:
13537
14149
  @pulumi.getter(name="opensearchVersion")
13538
14150
  def opensearch_version(self) -> Optional[pulumi.Input[str]]:
13539
14151
  """
13540
- OpenSearch major version.
14152
+ Enum: `1`, `2`. OpenSearch major version.
13541
14153
  """
13542
14154
  return pulumi.get(self, "opensearch_version")
13543
14155
 
@@ -13663,7 +14275,7 @@ class OpenSearchOpensearchUserConfigIndexPatternArgs:
13663
14275
  """
13664
14276
  :param pulumi.Input[int] max_index_count: Maximum number of indexes to keep.
13665
14277
  :param pulumi.Input[str] pattern: fnmatch pattern.
13666
- :param pulumi.Input[str] sorting_algorithm: Deletion sorting algorithm. The default value is `creation_date`.
14278
+ :param pulumi.Input[str] sorting_algorithm: Enum: `alphabetical`, `creation_date`. Deletion sorting algorithm. The default value is `creation_date`.
13667
14279
  """
13668
14280
  pulumi.set(__self__, "max_index_count", max_index_count)
13669
14281
  pulumi.set(__self__, "pattern", pattern)
@@ -13698,7 +14310,7 @@ class OpenSearchOpensearchUserConfigIndexPatternArgs:
13698
14310
  @pulumi.getter(name="sortingAlgorithm")
13699
14311
  def sorting_algorithm(self) -> Optional[pulumi.Input[str]]:
13700
14312
  """
13701
- Deletion sorting algorithm. The default value is `creation_date`.
14313
+ Enum: `alphabetical`, `creation_date`. Deletion sorting algorithm. The default value is `creation_date`.
13702
14314
  """
13703
14315
  return pulumi.get(self, "sorting_algorithm")
13704
14316
 
@@ -14721,12 +15333,12 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
14721
15333
  type: Optional[pulumi.Input[str]] = None):
14722
15334
  """
14723
15335
  :param pulumi.Input[int] allowed_tries: The number of login attempts allowed before login is blocked.
14724
- :param pulumi.Input[str] authentication_backend: internal*authentication*backend*limiting.authentication*backend.
15336
+ :param pulumi.Input[str] authentication_backend: Enum: `internal`. internal*authentication*backend*limiting.authentication*backend.
14725
15337
  :param pulumi.Input[int] block_expiry_seconds: The duration of time that login remains blocked after a failed login.
14726
15338
  :param pulumi.Input[int] max_blocked_clients: internal*authentication*backend*limiting.max*blocked_clients.
14727
15339
  :param pulumi.Input[int] max_tracked_clients: The maximum number of tracked IP addresses that have failed login.
14728
15340
  :param pulumi.Input[int] time_window_seconds: The window of time in which the value for `allowed_tries` is enforced.
14729
- :param pulumi.Input[str] type: internal*authentication*backend_limiting.type.
15341
+ :param pulumi.Input[str] type: Enum: `username`. internal*authentication*backend_limiting.type.
14730
15342
  """
14731
15343
  if allowed_tries is not None:
14732
15344
  pulumi.set(__self__, "allowed_tries", allowed_tries)
@@ -14759,7 +15371,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
14759
15371
  @pulumi.getter(name="authenticationBackend")
14760
15372
  def authentication_backend(self) -> Optional[pulumi.Input[str]]:
14761
15373
  """
14762
- internal*authentication*backend*limiting.authentication*backend.
15374
+ Enum: `internal`. internal*authentication*backend*limiting.authentication*backend.
14763
15375
  """
14764
15376
  return pulumi.get(self, "authentication_backend")
14765
15377
 
@@ -14819,7 +15431,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthen
14819
15431
  @pulumi.getter
14820
15432
  def type(self) -> Optional[pulumi.Input[str]]:
14821
15433
  """
14822
- internal*authentication*backend_limiting.type.
15434
+ Enum: `username`. internal*authentication*backend_limiting.type.
14823
15435
  """
14824
15436
  return pulumi.get(self, "type")
14825
15437
 
@@ -14843,7 +15455,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
14843
15455
  :param pulumi.Input[int] max_blocked_clients: The maximum number of blocked IP addresses.
14844
15456
  :param pulumi.Input[int] max_tracked_clients: The maximum number of tracked IP addresses that have failed login.
14845
15457
  :param pulumi.Input[int] time_window_seconds: The window of time in which the value for `allowed_tries` is enforced.
14846
- :param pulumi.Input[str] type: The type of rate limiting.
15458
+ :param pulumi.Input[str] type: Enum: `ip`. The type of rate limiting.
14847
15459
  """
14848
15460
  if allowed_tries is not None:
14849
15461
  pulumi.set(__self__, "allowed_tries", allowed_tries)
@@ -14922,7 +15534,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
14922
15534
  @pulumi.getter
14923
15535
  def type(self) -> Optional[pulumi.Input[str]]:
14924
15536
  """
14925
- The type of rate limiting.
15537
+ Enum: `ip`. The type of rate limiting.
14926
15538
  """
14927
15539
  return pulumi.get(self, "type")
14928
15540
 
@@ -15304,62 +15916,204 @@ class OpenSearchServiceIntegrationArgs:
15304
15916
 
15305
15917
 
15306
15918
  @pulumi.input_type
15307
- class OpenSearchTagArgs:
15919
+ class OpenSearchTagArgs:
15920
+ def __init__(__self__, *,
15921
+ key: pulumi.Input[str],
15922
+ value: pulumi.Input[str]):
15923
+ """
15924
+ :param pulumi.Input[str] key: Service tag key
15925
+ :param pulumi.Input[str] value: Service tag value
15926
+ """
15927
+ pulumi.set(__self__, "key", key)
15928
+ pulumi.set(__self__, "value", value)
15929
+
15930
+ @property
15931
+ @pulumi.getter
15932
+ def key(self) -> pulumi.Input[str]:
15933
+ """
15934
+ Service tag key
15935
+ """
15936
+ return pulumi.get(self, "key")
15937
+
15938
+ @key.setter
15939
+ def key(self, value: pulumi.Input[str]):
15940
+ pulumi.set(self, "key", value)
15941
+
15942
+ @property
15943
+ @pulumi.getter
15944
+ def value(self) -> pulumi.Input[str]:
15945
+ """
15946
+ Service tag value
15947
+ """
15948
+ return pulumi.get(self, "value")
15949
+
15950
+ @value.setter
15951
+ def value(self, value: pulumi.Input[str]):
15952
+ pulumi.set(self, "value", value)
15953
+
15954
+
15955
+ @pulumi.input_type
15956
+ class OpenSearchTechEmailArgs:
15957
+ def __init__(__self__, *,
15958
+ email: pulumi.Input[str]):
15959
+ """
15960
+ :param pulumi.Input[str] email: An email address to contact for technical issues
15961
+ """
15962
+ pulumi.set(__self__, "email", email)
15963
+
15964
+ @property
15965
+ @pulumi.getter
15966
+ def email(self) -> pulumi.Input[str]:
15967
+ """
15968
+ An email address to contact for technical issues
15969
+ """
15970
+ return pulumi.get(self, "email")
15971
+
15972
+ @email.setter
15973
+ def email(self, value: pulumi.Input[str]):
15974
+ pulumi.set(self, "email", value)
15975
+
15976
+
15977
+ @pulumi.input_type
15978
+ class OrganizationApplicationUserTimeoutsArgs:
15979
+ def __init__(__self__, *,
15980
+ create: Optional[pulumi.Input[str]] = None,
15981
+ delete: Optional[pulumi.Input[str]] = None,
15982
+ read: Optional[pulumi.Input[str]] = None,
15983
+ update: Optional[pulumi.Input[str]] = None):
15984
+ """
15985
+ :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).
15986
+ :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.
15987
+ :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.
15988
+ :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).
15989
+ """
15990
+ if create is not None:
15991
+ pulumi.set(__self__, "create", create)
15992
+ if delete is not None:
15993
+ pulumi.set(__self__, "delete", delete)
15994
+ if read is not None:
15995
+ pulumi.set(__self__, "read", read)
15996
+ if update is not None:
15997
+ pulumi.set(__self__, "update", update)
15998
+
15999
+ @property
16000
+ @pulumi.getter
16001
+ def create(self) -> Optional[pulumi.Input[str]]:
16002
+ """
16003
+ 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).
16004
+ """
16005
+ return pulumi.get(self, "create")
16006
+
16007
+ @create.setter
16008
+ def create(self, value: Optional[pulumi.Input[str]]):
16009
+ pulumi.set(self, "create", value)
16010
+
16011
+ @property
16012
+ @pulumi.getter
16013
+ def delete(self) -> Optional[pulumi.Input[str]]:
16014
+ """
16015
+ 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.
16016
+ """
16017
+ return pulumi.get(self, "delete")
16018
+
16019
+ @delete.setter
16020
+ def delete(self, value: Optional[pulumi.Input[str]]):
16021
+ pulumi.set(self, "delete", value)
16022
+
16023
+ @property
16024
+ @pulumi.getter
16025
+ def read(self) -> Optional[pulumi.Input[str]]:
16026
+ """
16027
+ 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.
16028
+ """
16029
+ return pulumi.get(self, "read")
16030
+
16031
+ @read.setter
16032
+ def read(self, value: Optional[pulumi.Input[str]]):
16033
+ pulumi.set(self, "read", value)
16034
+
16035
+ @property
16036
+ @pulumi.getter
16037
+ def update(self) -> Optional[pulumi.Input[str]]:
16038
+ """
16039
+ 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).
16040
+ """
16041
+ return pulumi.get(self, "update")
16042
+
16043
+ @update.setter
16044
+ def update(self, value: Optional[pulumi.Input[str]]):
16045
+ pulumi.set(self, "update", value)
16046
+
16047
+
16048
+ @pulumi.input_type
16049
+ class OrganizationApplicationUserTokenTimeoutsArgs:
15308
16050
  def __init__(__self__, *,
15309
- key: pulumi.Input[str],
15310
- value: pulumi.Input[str]):
16051
+ create: Optional[pulumi.Input[str]] = None,
16052
+ delete: Optional[pulumi.Input[str]] = None,
16053
+ read: Optional[pulumi.Input[str]] = None,
16054
+ update: Optional[pulumi.Input[str]] = None):
15311
16055
  """
15312
- :param pulumi.Input[str] key: Service tag key
15313
- :param pulumi.Input[str] value: Service tag value
16056
+ :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).
16057
+ :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.
16058
+ :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.
16059
+ :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).
15314
16060
  """
15315
- pulumi.set(__self__, "key", key)
15316
- pulumi.set(__self__, "value", value)
16061
+ if create is not None:
16062
+ pulumi.set(__self__, "create", create)
16063
+ if delete is not None:
16064
+ pulumi.set(__self__, "delete", delete)
16065
+ if read is not None:
16066
+ pulumi.set(__self__, "read", read)
16067
+ if update is not None:
16068
+ pulumi.set(__self__, "update", update)
15317
16069
 
15318
16070
  @property
15319
16071
  @pulumi.getter
15320
- def key(self) -> pulumi.Input[str]:
16072
+ def create(self) -> Optional[pulumi.Input[str]]:
15321
16073
  """
15322
- Service tag key
16074
+ 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).
15323
16075
  """
15324
- return pulumi.get(self, "key")
16076
+ return pulumi.get(self, "create")
15325
16077
 
15326
- @key.setter
15327
- def key(self, value: pulumi.Input[str]):
15328
- pulumi.set(self, "key", value)
16078
+ @create.setter
16079
+ def create(self, value: Optional[pulumi.Input[str]]):
16080
+ pulumi.set(self, "create", value)
15329
16081
 
15330
16082
  @property
15331
16083
  @pulumi.getter
15332
- def value(self) -> pulumi.Input[str]:
16084
+ def delete(self) -> Optional[pulumi.Input[str]]:
15333
16085
  """
15334
- Service tag value
16086
+ 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.
15335
16087
  """
15336
- return pulumi.get(self, "value")
15337
-
15338
- @value.setter
15339
- def value(self, value: pulumi.Input[str]):
15340
- pulumi.set(self, "value", value)
16088
+ return pulumi.get(self, "delete")
15341
16089
 
16090
+ @delete.setter
16091
+ def delete(self, value: Optional[pulumi.Input[str]]):
16092
+ pulumi.set(self, "delete", value)
15342
16093
 
15343
- @pulumi.input_type
15344
- class OpenSearchTechEmailArgs:
15345
- def __init__(__self__, *,
15346
- email: pulumi.Input[str]):
16094
+ @property
16095
+ @pulumi.getter
16096
+ def read(self) -> Optional[pulumi.Input[str]]:
15347
16097
  """
15348
- :param pulumi.Input[str] email: An email address to contact for technical issues
16098
+ 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.
15349
16099
  """
15350
- pulumi.set(__self__, "email", email)
16100
+ return pulumi.get(self, "read")
16101
+
16102
+ @read.setter
16103
+ def read(self, value: Optional[pulumi.Input[str]]):
16104
+ pulumi.set(self, "read", value)
15351
16105
 
15352
16106
  @property
15353
16107
  @pulumi.getter
15354
- def email(self) -> pulumi.Input[str]:
16108
+ def update(self) -> Optional[pulumi.Input[str]]:
15355
16109
  """
15356
- An email address to contact for technical issues
16110
+ 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).
15357
16111
  """
15358
- return pulumi.get(self, "email")
16112
+ return pulumi.get(self, "update")
15359
16113
 
15360
- @email.setter
15361
- def email(self, value: pulumi.Input[str]):
15362
- pulumi.set(self, "email", value)
16114
+ @update.setter
16115
+ def update(self, value: Optional[pulumi.Input[str]]):
16116
+ pulumi.set(self, "update", value)
15363
16117
 
15364
16118
 
15365
16119
  @pulumi.input_type
@@ -15713,32 +16467,46 @@ class PgComponentArgs:
15713
16467
  @pulumi.input_type
15714
16468
  class PgPgArgs:
15715
16469
  def __init__(__self__, *,
16470
+ bouncer: Optional[pulumi.Input[str]] = None,
15716
16471
  dbname: Optional[pulumi.Input[str]] = None,
15717
16472
  host: Optional[pulumi.Input[str]] = None,
15718
16473
  max_connections: Optional[pulumi.Input[int]] = None,
16474
+ params: Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]] = None,
15719
16475
  password: Optional[pulumi.Input[str]] = None,
15720
16476
  port: Optional[pulumi.Input[int]] = None,
15721
16477
  replica_uri: Optional[pulumi.Input[str]] = None,
15722
16478
  sslmode: Optional[pulumi.Input[str]] = None,
16479
+ standby_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
16480
+ syncing_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
15723
16481
  uri: Optional[pulumi.Input[str]] = None,
16482
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
15724
16483
  user: Optional[pulumi.Input[str]] = None):
15725
16484
  """
16485
+ :param pulumi.Input[str] bouncer: Bouncer connection details
15726
16486
  :param pulumi.Input[str] dbname: Primary PostgreSQL database name
15727
16487
  :param pulumi.Input[str] host: PostgreSQL master node host IP or name
15728
16488
  :param pulumi.Input[int] max_connections: Connection limit
16489
+ :param pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]] params: PostgreSQL connection parameters
15729
16490
  :param pulumi.Input[str] password: PostgreSQL admin user password
15730
16491
  :param pulumi.Input[int] port: PostgreSQL port
15731
16492
  :param pulumi.Input[str] replica_uri: PostgreSQL replica URI for services with a replica
15732
16493
  :param pulumi.Input[str] sslmode: PostgreSQL sslmode setting (currently always "require")
16494
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uris: PostgreSQL standby connection URIs
16495
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] syncing_uris: PostgreSQL syncing connection URIs
15733
16496
  :param pulumi.Input[str] uri: PostgreSQL master connection URI
16497
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: PostgreSQL master connection URIs
15734
16498
  :param pulumi.Input[str] user: PostgreSQL admin user name
15735
16499
  """
16500
+ if bouncer is not None:
16501
+ pulumi.set(__self__, "bouncer", bouncer)
15736
16502
  if dbname is not None:
15737
16503
  pulumi.set(__self__, "dbname", dbname)
15738
16504
  if host is not None:
15739
16505
  pulumi.set(__self__, "host", host)
15740
16506
  if max_connections is not None:
15741
16507
  pulumi.set(__self__, "max_connections", max_connections)
16508
+ if params is not None:
16509
+ pulumi.set(__self__, "params", params)
15742
16510
  if password is not None:
15743
16511
  pulumi.set(__self__, "password", password)
15744
16512
  if port is not None:
@@ -15747,11 +16515,29 @@ class PgPgArgs:
15747
16515
  pulumi.set(__self__, "replica_uri", replica_uri)
15748
16516
  if sslmode is not None:
15749
16517
  pulumi.set(__self__, "sslmode", sslmode)
16518
+ if standby_uris is not None:
16519
+ pulumi.set(__self__, "standby_uris", standby_uris)
16520
+ if syncing_uris is not None:
16521
+ pulumi.set(__self__, "syncing_uris", syncing_uris)
15750
16522
  if uri is not None:
15751
16523
  pulumi.set(__self__, "uri", uri)
16524
+ if uris is not None:
16525
+ pulumi.set(__self__, "uris", uris)
15752
16526
  if user is not None:
15753
16527
  pulumi.set(__self__, "user", user)
15754
16528
 
16529
+ @property
16530
+ @pulumi.getter
16531
+ def bouncer(self) -> Optional[pulumi.Input[str]]:
16532
+ """
16533
+ Bouncer connection details
16534
+ """
16535
+ return pulumi.get(self, "bouncer")
16536
+
16537
+ @bouncer.setter
16538
+ def bouncer(self, value: Optional[pulumi.Input[str]]):
16539
+ pulumi.set(self, "bouncer", value)
16540
+
15755
16541
  @property
15756
16542
  @pulumi.getter
15757
16543
  def dbname(self) -> Optional[pulumi.Input[str]]:
@@ -15788,6 +16574,18 @@ class PgPgArgs:
15788
16574
  def max_connections(self, value: Optional[pulumi.Input[int]]):
15789
16575
  pulumi.set(self, "max_connections", value)
15790
16576
 
16577
+ @property
16578
+ @pulumi.getter
16579
+ def params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]]:
16580
+ """
16581
+ PostgreSQL connection parameters
16582
+ """
16583
+ return pulumi.get(self, "params")
16584
+
16585
+ @params.setter
16586
+ def params(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PgPgParamArgs']]]]):
16587
+ pulumi.set(self, "params", value)
16588
+
15791
16589
  @property
15792
16590
  @pulumi.getter
15793
16591
  def password(self) -> Optional[pulumi.Input[str]]:
@@ -15836,6 +16634,30 @@ class PgPgArgs:
15836
16634
  def sslmode(self, value: Optional[pulumi.Input[str]]):
15837
16635
  pulumi.set(self, "sslmode", value)
15838
16636
 
16637
+ @property
16638
+ @pulumi.getter(name="standbyUris")
16639
+ def standby_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
16640
+ """
16641
+ PostgreSQL standby connection URIs
16642
+ """
16643
+ return pulumi.get(self, "standby_uris")
16644
+
16645
+ @standby_uris.setter
16646
+ def standby_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
16647
+ pulumi.set(self, "standby_uris", value)
16648
+
16649
+ @property
16650
+ @pulumi.getter(name="syncingUris")
16651
+ def syncing_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
16652
+ """
16653
+ PostgreSQL syncing connection URIs
16654
+ """
16655
+ return pulumi.get(self, "syncing_uris")
16656
+
16657
+ @syncing_uris.setter
16658
+ def syncing_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
16659
+ pulumi.set(self, "syncing_uris", value)
16660
+
15839
16661
  @property
15840
16662
  @pulumi.getter
15841
16663
  def uri(self) -> Optional[pulumi.Input[str]]:
@@ -15848,6 +16670,121 @@ class PgPgArgs:
15848
16670
  def uri(self, value: Optional[pulumi.Input[str]]):
15849
16671
  pulumi.set(self, "uri", value)
15850
16672
 
16673
+ @property
16674
+ @pulumi.getter
16675
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
16676
+ """
16677
+ PostgreSQL master connection URIs
16678
+ """
16679
+ return pulumi.get(self, "uris")
16680
+
16681
+ @uris.setter
16682
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
16683
+ pulumi.set(self, "uris", value)
16684
+
16685
+ @property
16686
+ @pulumi.getter
16687
+ def user(self) -> Optional[pulumi.Input[str]]:
16688
+ """
16689
+ PostgreSQL admin user name
16690
+ """
16691
+ return pulumi.get(self, "user")
16692
+
16693
+ @user.setter
16694
+ def user(self, value: Optional[pulumi.Input[str]]):
16695
+ pulumi.set(self, "user", value)
16696
+
16697
+
16698
+ @pulumi.input_type
16699
+ class PgPgParamArgs:
16700
+ def __init__(__self__, *,
16701
+ database_name: Optional[pulumi.Input[str]] = None,
16702
+ host: Optional[pulumi.Input[str]] = None,
16703
+ password: Optional[pulumi.Input[str]] = None,
16704
+ port: Optional[pulumi.Input[int]] = None,
16705
+ sslmode: Optional[pulumi.Input[str]] = None,
16706
+ user: Optional[pulumi.Input[str]] = None):
16707
+ """
16708
+ :param pulumi.Input[str] database_name: Primary PostgreSQL database name
16709
+ :param pulumi.Input[str] host: PostgreSQL host IP or name
16710
+ :param pulumi.Input[str] password: PostgreSQL admin user password
16711
+ :param pulumi.Input[int] port: PostgreSQL port
16712
+ :param pulumi.Input[str] sslmode: PostgreSQL sslmode setting (currently always "require")
16713
+ :param pulumi.Input[str] user: PostgreSQL admin user name
16714
+ """
16715
+ if database_name is not None:
16716
+ pulumi.set(__self__, "database_name", database_name)
16717
+ if host is not None:
16718
+ pulumi.set(__self__, "host", host)
16719
+ if password is not None:
16720
+ pulumi.set(__self__, "password", password)
16721
+ if port is not None:
16722
+ pulumi.set(__self__, "port", port)
16723
+ if sslmode is not None:
16724
+ pulumi.set(__self__, "sslmode", sslmode)
16725
+ if user is not None:
16726
+ pulumi.set(__self__, "user", user)
16727
+
16728
+ @property
16729
+ @pulumi.getter(name="databaseName")
16730
+ def database_name(self) -> Optional[pulumi.Input[str]]:
16731
+ """
16732
+ Primary PostgreSQL database name
16733
+ """
16734
+ return pulumi.get(self, "database_name")
16735
+
16736
+ @database_name.setter
16737
+ def database_name(self, value: Optional[pulumi.Input[str]]):
16738
+ pulumi.set(self, "database_name", value)
16739
+
16740
+ @property
16741
+ @pulumi.getter
16742
+ def host(self) -> Optional[pulumi.Input[str]]:
16743
+ """
16744
+ PostgreSQL host IP or name
16745
+ """
16746
+ return pulumi.get(self, "host")
16747
+
16748
+ @host.setter
16749
+ def host(self, value: Optional[pulumi.Input[str]]):
16750
+ pulumi.set(self, "host", value)
16751
+
16752
+ @property
16753
+ @pulumi.getter
16754
+ def password(self) -> Optional[pulumi.Input[str]]:
16755
+ """
16756
+ PostgreSQL admin user password
16757
+ """
16758
+ return pulumi.get(self, "password")
16759
+
16760
+ @password.setter
16761
+ def password(self, value: Optional[pulumi.Input[str]]):
16762
+ pulumi.set(self, "password", value)
16763
+
16764
+ @property
16765
+ @pulumi.getter
16766
+ def port(self) -> Optional[pulumi.Input[int]]:
16767
+ """
16768
+ PostgreSQL port
16769
+ """
16770
+ return pulumi.get(self, "port")
16771
+
16772
+ @port.setter
16773
+ def port(self, value: Optional[pulumi.Input[int]]):
16774
+ pulumi.set(self, "port", value)
16775
+
16776
+ @property
16777
+ @pulumi.getter
16778
+ def sslmode(self) -> Optional[pulumi.Input[str]]:
16779
+ """
16780
+ PostgreSQL sslmode setting (currently always "require")
16781
+ """
16782
+ return pulumi.get(self, "sslmode")
16783
+
16784
+ @sslmode.setter
16785
+ def sslmode(self, value: Optional[pulumi.Input[str]]):
16786
+ pulumi.set(self, "sslmode", value)
16787
+
15851
16788
  @property
15852
16789
  @pulumi.getter
15853
16790
  def user(self) -> Optional[pulumi.Input[str]]:
@@ -15912,7 +16849,7 @@ class PgPgUserConfigArgs:
15912
16849
  :param pulumi.Input[bool] pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
15913
16850
  :param pulumi.Input[str] pg_service_to_fork_from: Name of the PG Service from which to fork (deprecated, use service*to*fork_from). This has effect only when a new service is being created.
15914
16851
  :param pulumi.Input[bool] pg_stat_monitor_enable: Enable the pg*stat*monitor extension. Enabling this extension will cause the cluster to be restarted.When this extension is enabled, pg*stat*statements results for utility commands are unreliable. The default value is `false`.
15915
- :param pulumi.Input[str] pg_version: PostgreSQL major version.
16852
+ :param pulumi.Input[str] pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`. PostgreSQL major version.
15916
16853
  :param pulumi.Input['PgPgUserConfigPgauditArgs'] pgaudit: System-wide settings for the pgaudit extension
15917
16854
  :param pulumi.Input['PgPgUserConfigPgbouncerArgs'] pgbouncer: PGBouncer connection pooling settings
15918
16855
  :param pulumi.Input['PgPgUserConfigPglookoutArgs'] pglookout: System-wide settings for pglookout
@@ -15925,9 +16862,9 @@ class PgPgUserConfigArgs:
15925
16862
  :param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
15926
16863
  :param pulumi.Input[float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
15927
16864
  :param pulumi.Input[bool] static_ips: Use static public IP addresses.
15928
- :param pulumi.Input[str] synchronous_replication: Synchronous replication type. Note that the service plan also needs to support synchronous replication.
16865
+ :param pulumi.Input[str] synchronous_replication: Enum: `quorum`, `off`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
15929
16866
  :param pulumi.Input['PgPgUserConfigTimescaledbArgs'] timescaledb: System-wide settings for the timescaledb extension
15930
- :param pulumi.Input[str] variant: Variant of the PostgreSQL service, may affect the features that are exposed by default.
16867
+ :param pulumi.Input[str] variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
15931
16868
  :param pulumi.Input[int] work_mem: Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB).
15932
16869
  """
15933
16870
  if additional_backup_regions is not None:
@@ -16191,7 +17128,7 @@ class PgPgUserConfigArgs:
16191
17128
  @pulumi.getter(name="pgVersion")
16192
17129
  def pg_version(self) -> Optional[pulumi.Input[str]]:
16193
17130
  """
16194
- PostgreSQL major version.
17131
+ Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`. PostgreSQL major version.
16195
17132
  """
16196
17133
  return pulumi.get(self, "pg_version")
16197
17134
 
@@ -16347,7 +17284,7 @@ class PgPgUserConfigArgs:
16347
17284
  @pulumi.getter(name="synchronousReplication")
16348
17285
  def synchronous_replication(self) -> Optional[pulumi.Input[str]]:
16349
17286
  """
16350
- Synchronous replication type. Note that the service plan also needs to support synchronous replication.
17287
+ Enum: `quorum`, `off`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
16351
17288
  """
16352
17289
  return pulumi.get(self, "synchronous_replication")
16353
17290
 
@@ -16371,7 +17308,7 @@ class PgPgUserConfigArgs:
16371
17308
  @pulumi.getter
16372
17309
  def variant(self) -> Optional[pulumi.Input[str]]:
16373
17310
  """
16374
- Variant of the PostgreSQL service, may affect the features that are exposed by default.
17311
+ Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
16375
17312
  """
16376
17313
  return pulumi.get(self, "variant")
16377
17314
 
@@ -16446,7 +17383,7 @@ class PgPgUserConfigMigrationArgs:
16446
17383
  :param pulumi.Input[int] port: Port number of the server where to migrate data from.
16447
17384
  :param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
16448
17385
  :param pulumi.Input[str] ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
16449
- :param pulumi.Input[str] method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
17386
+ :param pulumi.Input[str] method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
16450
17387
  :param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
16451
17388
  :param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
16452
17389
  :param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
@@ -16518,7 +17455,7 @@ class PgPgUserConfigMigrationArgs:
16518
17455
  @pulumi.getter
16519
17456
  def method(self) -> Optional[pulumi.Input[str]]:
16520
17457
  """
16521
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
17458
+ Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
16522
17459
  """
16523
17460
  return pulumi.get(self, "method")
16524
17461
 
@@ -16630,12 +17567,12 @@ class PgPgUserConfigPgArgs:
16630
17567
  :param pulumi.Input[int] bgwriter_lru_maxpages: In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100.
16631
17568
  :param pulumi.Input[float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter*lru*multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter*lru*maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
16632
17569
  :param pulumi.Input[int] deadlock_timeout: This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
16633
- :param pulumi.Input[str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
17570
+ :param pulumi.Input[str] default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
16634
17571
  :param pulumi.Input[int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
16635
17572
  :param pulumi.Input[bool] jit: Controls system-wide use of Just-in-Time Compilation (JIT).
16636
17573
  :param pulumi.Input[int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
16637
- :param pulumi.Input[str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged.
16638
- :param pulumi.Input[str] log_line_prefix: Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
17574
+ :param pulumi.Input[str] log_error_verbosity: Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
17575
+ :param pulumi.Input[str] log_line_prefix: Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
16639
17576
  :param pulumi.Input[int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
16640
17577
  :param pulumi.Input[int] log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
16641
17578
  :param pulumi.Input[int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
@@ -16656,13 +17593,13 @@ class PgPgUserConfigPgArgs:
16656
17593
  :param pulumi.Input[str] pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks.
16657
17594
  :param pulumi.Input[bool] pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring.
16658
17595
  :param pulumi.Input[int] pg_stat_monitor_dot_pgsm_max_buckets: Sets the maximum number of buckets.
16659
- :param pulumi.Input[str] pg_stat_statements_dot_track: Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
17596
+ :param pulumi.Input[str] pg_stat_statements_dot_track: Enum: `all`, `top`, `none`. Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
16660
17597
  :param pulumi.Input[int] temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited.
16661
17598
  :param pulumi.Input[str] timezone: PostgreSQL service timezone.
16662
17599
  :param pulumi.Input[int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
16663
- :param pulumi.Input[str] track_commit_timestamp: Record commit time of transactions.
16664
- :param pulumi.Input[str] track_functions: Enables tracking of function call counts and time used.
16665
- :param pulumi.Input[str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
17600
+ :param pulumi.Input[str] track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
17601
+ :param pulumi.Input[str] track_functions: Enum: `all`, `pl`, `none`. Enables tracking of function call counts and time used.
17602
+ :param pulumi.Input[str] track_io_timing: Enum: `off`, `on`. Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
16666
17603
  :param pulumi.Input[int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout.
16667
17604
  :param pulumi.Input[int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance.
16668
17605
  """
@@ -16937,7 +17874,7 @@ class PgPgUserConfigPgArgs:
16937
17874
  @pulumi.getter(name="defaultToastCompression")
16938
17875
  def default_toast_compression(self) -> Optional[pulumi.Input[str]]:
16939
17876
  """
16940
- Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
17877
+ Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
16941
17878
  """
16942
17879
  return pulumi.get(self, "default_toast_compression")
16943
17880
 
@@ -16985,7 +17922,7 @@ class PgPgUserConfigPgArgs:
16985
17922
  @pulumi.getter(name="logErrorVerbosity")
16986
17923
  def log_error_verbosity(self) -> Optional[pulumi.Input[str]]:
16987
17924
  """
16988
- Controls the amount of detail written in the server log for each message that is logged.
17925
+ Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
16989
17926
  """
16990
17927
  return pulumi.get(self, "log_error_verbosity")
16991
17928
 
@@ -16997,7 +17934,7 @@ class PgPgUserConfigPgArgs:
16997
17934
  @pulumi.getter(name="logLinePrefix")
16998
17935
  def log_line_prefix(self) -> Optional[pulumi.Input[str]]:
16999
17936
  """
17000
- Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
17937
+ Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
17001
17938
  """
17002
17939
  return pulumi.get(self, "log_line_prefix")
17003
17940
 
@@ -17249,7 +18186,7 @@ class PgPgUserConfigPgArgs:
17249
18186
  @pulumi.getter(name="pgStatStatementsDotTrack")
17250
18187
  def pg_stat_statements_dot_track(self) -> Optional[pulumi.Input[str]]:
17251
18188
  """
17252
- Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
18189
+ Enum: `all`, `top`, `none`. Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
17253
18190
  """
17254
18191
  return pulumi.get(self, "pg_stat_statements_dot_track")
17255
18192
 
@@ -17297,7 +18234,7 @@ class PgPgUserConfigPgArgs:
17297
18234
  @pulumi.getter(name="trackCommitTimestamp")
17298
18235
  def track_commit_timestamp(self) -> Optional[pulumi.Input[str]]:
17299
18236
  """
17300
- Record commit time of transactions.
18237
+ Enum: `off`, `on`. Record commit time of transactions.
17301
18238
  """
17302
18239
  return pulumi.get(self, "track_commit_timestamp")
17303
18240
 
@@ -17309,7 +18246,7 @@ class PgPgUserConfigPgArgs:
17309
18246
  @pulumi.getter(name="trackFunctions")
17310
18247
  def track_functions(self) -> Optional[pulumi.Input[str]]:
17311
18248
  """
17312
- Enables tracking of function call counts and time used.
18249
+ Enum: `all`, `pl`, `none`. Enables tracking of function call counts and time used.
17313
18250
  """
17314
18251
  return pulumi.get(self, "track_functions")
17315
18252
 
@@ -17321,7 +18258,7 @@ class PgPgUserConfigPgArgs:
17321
18258
  @pulumi.getter(name="trackIoTiming")
17322
18259
  def track_io_timing(self) -> Optional[pulumi.Input[str]]:
17323
18260
  """
17324
- Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
18261
+ Enum: `off`, `on`. Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
17325
18262
  """
17326
18263
  return pulumi.get(self, "track_io_timing")
17327
18264
 
@@ -17492,7 +18429,7 @@ class PgPgUserConfigPgauditArgs:
17492
18429
  :param pulumi.Input[bool] feature_enabled: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved. The default value is `false`.
17493
18430
  :param pulumi.Input[bool] log_catalog: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. The default value is `true`.
17494
18431
  :param pulumi.Input[bool] log_client: Specifies whether log messages will be visible to a client process such as psql. The default value is `false`.
17495
- :param pulumi.Input[str] log_level: Specifies the log level that will be used for log entries. The default value is `log`.
18432
+ :param pulumi.Input[str] log_level: Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `notice`, `warning`, `log`. Specifies the log level that will be used for log entries. The default value is `log`.
17496
18433
  :param pulumi.Input[int] log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. The default value is `-1`.
17497
18434
  :param pulumi.Input[bool] log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. The default value is `true`.
17498
18435
  :param pulumi.Input[bool] log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. The default value is `false`.
@@ -17573,7 +18510,7 @@ class PgPgUserConfigPgauditArgs:
17573
18510
  @pulumi.getter(name="logLevel")
17574
18511
  def log_level(self) -> Optional[pulumi.Input[str]]:
17575
18512
  """
17576
- Specifies the log level that will be used for log entries. The default value is `log`.
18513
+ Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `notice`, `warning`, `log`. Specifies the log level that will be used for log entries. The default value is `log`.
17577
18514
  """
17578
18515
  return pulumi.get(self, "log_level")
17579
18516
 
@@ -17717,7 +18654,7 @@ class PgPgUserConfigPgbouncerArgs:
17717
18654
  """
17718
18655
  :param pulumi.Input[int] autodb_idle_timeout: If the automatically created database pools have been unused this many seconds, they are freed. If 0 then timeout is disabled. (seconds). The default value is `3600`.
17719
18656
  :param pulumi.Input[int] autodb_max_db_connections: Do not allow more than this many server connections per database (regardless of user). Setting it to 0 means unlimited.
17720
- :param pulumi.Input[str] autodb_pool_mode: PGBouncer pool mode. The default value is `transaction`.
18657
+ :param pulumi.Input[str] autodb_pool_mode: Enum: `session`, `transaction`, `statement`. PGBouncer pool mode. The default value is `transaction`.
17721
18658
  :param pulumi.Input[int] autodb_pool_size: If non-zero then create automatically a pool of that size per user when a pool doesn't exist. The default value is `0`.
17722
18659
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_startup_parameters: List of parameters to ignore when given in startup packet.
17723
18660
  :param pulumi.Input[int] min_pool_size: Add more server connections to pool if below this number. Improves behavior when usual load comes suddenly back after period of total inactivity. The value is effectively capped at the pool size. The default value is `0`.
@@ -17772,7 +18709,7 @@ class PgPgUserConfigPgbouncerArgs:
17772
18709
  @pulumi.getter(name="autodbPoolMode")
17773
18710
  def autodb_pool_mode(self) -> Optional[pulumi.Input[str]]:
17774
18711
  """
17775
- PGBouncer pool mode. The default value is `transaction`.
18712
+ Enum: `session`, `transaction`, `statement`. PGBouncer pool mode. The default value is `transaction`.
17776
18713
  """
17777
18714
  return pulumi.get(self, "autodb_pool_mode")
17778
18715
 
@@ -18332,6 +19269,77 @@ class RedisComponentArgs:
18332
19269
  pulumi.set(self, "usage", value)
18333
19270
 
18334
19271
 
19272
+ @pulumi.input_type
19273
+ class RedisRedisArgs:
19274
+ def __init__(__self__, *,
19275
+ password: Optional[pulumi.Input[str]] = None,
19276
+ replica_uri: Optional[pulumi.Input[str]] = None,
19277
+ slave_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
19278
+ uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
19279
+ """
19280
+ :param pulumi.Input[str] password: Redis password.
19281
+ :param pulumi.Input[str] replica_uri: Redis replica server URI.
19282
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] slave_uris: Redis slave server URIs.
19283
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Redis server URIs.
19284
+ """
19285
+ if password is not None:
19286
+ pulumi.set(__self__, "password", password)
19287
+ if replica_uri is not None:
19288
+ pulumi.set(__self__, "replica_uri", replica_uri)
19289
+ if slave_uris is not None:
19290
+ pulumi.set(__self__, "slave_uris", slave_uris)
19291
+ if uris is not None:
19292
+ pulumi.set(__self__, "uris", uris)
19293
+
19294
+ @property
19295
+ @pulumi.getter
19296
+ def password(self) -> Optional[pulumi.Input[str]]:
19297
+ """
19298
+ Redis password.
19299
+ """
19300
+ return pulumi.get(self, "password")
19301
+
19302
+ @password.setter
19303
+ def password(self, value: Optional[pulumi.Input[str]]):
19304
+ pulumi.set(self, "password", value)
19305
+
19306
+ @property
19307
+ @pulumi.getter(name="replicaUri")
19308
+ def replica_uri(self) -> Optional[pulumi.Input[str]]:
19309
+ """
19310
+ Redis replica server URI.
19311
+ """
19312
+ return pulumi.get(self, "replica_uri")
19313
+
19314
+ @replica_uri.setter
19315
+ def replica_uri(self, value: Optional[pulumi.Input[str]]):
19316
+ pulumi.set(self, "replica_uri", value)
19317
+
19318
+ @property
19319
+ @pulumi.getter(name="slaveUris")
19320
+ def slave_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
19321
+ """
19322
+ Redis slave server URIs.
19323
+ """
19324
+ return pulumi.get(self, "slave_uris")
19325
+
19326
+ @slave_uris.setter
19327
+ def slave_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
19328
+ pulumi.set(self, "slave_uris", value)
19329
+
19330
+ @property
19331
+ @pulumi.getter
19332
+ def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
19333
+ """
19334
+ Redis server URIs.
19335
+ """
19336
+ return pulumi.get(self, "uris")
19337
+
19338
+ @uris.setter
19339
+ def uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
19340
+ pulumi.set(self, "uris", value)
19341
+
19342
+
18335
19343
  @pulumi.input_type
18336
19344
  class RedisRedisUserConfigArgs:
18337
19345
  def __init__(__self__, *,
@@ -18371,18 +19379,18 @@ class RedisRedisUserConfigArgs:
18371
19379
  :param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created.
18372
19380
  :param pulumi.Input['RedisRedisUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
18373
19381
  :param pulumi.Input[str] recovery_basebackup_name: Name of the basebackup to restore in forked service.
18374
- :param pulumi.Input[str] redis_acl_channels_default: Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
19382
+ :param pulumi.Input[str] redis_acl_channels_default: Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
18375
19383
  :param pulumi.Input[int] redis_io_threads: Set Redis IO thread count. Changing this will cause a restart of the Redis service.
18376
19384
  :param pulumi.Input[int] redis_lfu_decay_time: LFU maxmemory-policy counter decay time in minutes. The default value is `1`.
18377
19385
  :param pulumi.Input[int] redis_lfu_log_factor: Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. The default value is `10`.
18378
- :param pulumi.Input[str] redis_maxmemory_policy: Redis maxmemory-policy. The default value is `noeviction`.
19386
+ :param pulumi.Input[str] redis_maxmemory_policy: Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Redis maxmemory-policy. The default value is `noeviction`.
18379
19387
  :param pulumi.Input[str] redis_notify_keyspace_events: Set notify-keyspace-events option.
18380
19388
  :param pulumi.Input[int] redis_number_of_databases: Set number of Redis databases. Changing this will cause a restart of the Redis service.
18381
- :param pulumi.Input[str] redis_persistence: When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
19389
+ :param pulumi.Input[str] redis_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
18382
19390
  :param pulumi.Input[int] redis_pubsub_client_output_buffer_limit: Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
18383
19391
  :param pulumi.Input[bool] redis_ssl: Require SSL to access Redis. The default value is `true`.
18384
19392
  :param pulumi.Input[int] redis_timeout: Redis idle connection timeout in seconds. The default value is `300`.
18385
- :param pulumi.Input[str] redis_version: Redis major version.
19393
+ :param pulumi.Input[str] redis_version: Enum: `7.0`. Redis major version.
18386
19394
  :param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
18387
19395
  :param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
18388
19396
  :param pulumi.Input[bool] static_ips: Use static public IP addresses.
@@ -18568,7 +19576,7 @@ class RedisRedisUserConfigArgs:
18568
19576
  @pulumi.getter(name="redisAclChannelsDefault")
18569
19577
  def redis_acl_channels_default(self) -> Optional[pulumi.Input[str]]:
18570
19578
  """
18571
- Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
19579
+ Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
18572
19580
  """
18573
19581
  return pulumi.get(self, "redis_acl_channels_default")
18574
19582
 
@@ -18616,7 +19624,7 @@ class RedisRedisUserConfigArgs:
18616
19624
  @pulumi.getter(name="redisMaxmemoryPolicy")
18617
19625
  def redis_maxmemory_policy(self) -> Optional[pulumi.Input[str]]:
18618
19626
  """
18619
- Redis maxmemory-policy. The default value is `noeviction`.
19627
+ Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Redis maxmemory-policy. The default value is `noeviction`.
18620
19628
  """
18621
19629
  return pulumi.get(self, "redis_maxmemory_policy")
18622
19630
 
@@ -18652,7 +19660,7 @@ class RedisRedisUserConfigArgs:
18652
19660
  @pulumi.getter(name="redisPersistence")
18653
19661
  def redis_persistence(self) -> Optional[pulumi.Input[str]]:
18654
19662
  """
18655
- When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
19663
+ Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
18656
19664
  """
18657
19665
  return pulumi.get(self, "redis_persistence")
18658
19666
 
@@ -18700,7 +19708,7 @@ class RedisRedisUserConfigArgs:
18700
19708
  @pulumi.getter(name="redisVersion")
18701
19709
  def redis_version(self) -> Optional[pulumi.Input[str]]:
18702
19710
  """
18703
- Redis major version.
19711
+ Enum: `7.0`. Redis major version.
18704
19712
  """
18705
19713
  return pulumi.get(self, "redis_version")
18706
19714
 
@@ -18799,7 +19807,7 @@ class RedisRedisUserConfigMigrationArgs:
18799
19807
  :param pulumi.Input[int] port: Port number of the server where to migrate data from.
18800
19808
  :param pulumi.Input[str] dbname: Database name for bootstrapping the initial connection.
18801
19809
  :param pulumi.Input[str] ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
18802
- :param pulumi.Input[str] method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
19810
+ :param pulumi.Input[str] method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
18803
19811
  :param pulumi.Input[str] password: Password for authentication with the server where to migrate data from.
18804
19812
  :param pulumi.Input[bool] ssl: The server where to migrate data from is secured with SSL. The default value is `true`.
18805
19813
  :param pulumi.Input[str] username: User name for authentication with the server where to migrate data from.
@@ -18871,7 +19879,7 @@ class RedisRedisUserConfigMigrationArgs:
18871
19879
  @pulumi.getter
18872
19880
  def method(self) -> Optional[pulumi.Input[str]]:
18873
19881
  """
18874
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
19882
+ Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
18875
19883
  """
18876
19884
  return pulumi.get(self, "method")
18877
19885
 
@@ -19170,13 +20178,13 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
19170
20178
  skip_broken_messages: Optional[pulumi.Input[int]] = None):
19171
20179
  """
19172
20180
  :param pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigTableColumnArgs']]] columns: Table columns
19173
- :param pulumi.Input[str] data_format: Message data format. The default value is `JSONEachRow`.
20181
+ :param pulumi.Input[str] data_format: Enum: `Avro`, `CSV`, `JSONAsString`, `JSONCompactEachRow`, `JSONCompactStringsEachRow`, `JSONEachRow`, `JSONStringsEachRow`, `MsgPack`, `TSKV`, `TSV`, `TabSeparated`, `RawBLOB`, `AvroConfluent`. Message data format. The default value is `JSONEachRow`.
19174
20182
  :param pulumi.Input[str] group_name: Kafka consumers group. The default value is `clickhouse`.
19175
20183
  :param pulumi.Input[str] name: Name of the table.
19176
20184
  :param pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigTableTopicArgs']]] topics: Kafka topics
19177
- :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`.
19178
- :param pulumi.Input[str] date_time_input_format: Method to read DateTime from text input formats. The default value is `basic`.
19179
- :param pulumi.Input[str] handle_error_mode: How to handle errors for Kafka engine. The default value is `default`.
20185
+ :param pulumi.Input[str] auto_offset_reset: Enum: `smallest`, `earliest`, `beginning`, `largest`, `latest`, `end`. Action to take when there is no initial offset in offset store or the desired offset is out of range. The default value is `earliest`.
20186
+ :param pulumi.Input[str] date_time_input_format: Enum: `basic`, `best_effort`, `best_effort_us`. Method to read DateTime from text input formats. The default value is `basic`.
20187
+ :param pulumi.Input[str] handle_error_mode: Enum: `default`, `stream`. How to handle errors for Kafka engine. The default value is `default`.
19180
20188
  :param pulumi.Input[int] max_block_size: Number of row collected by poll(s) for flushing data from Kafka. The default value is `0`.
19181
20189
  :param pulumi.Input[int] max_rows_per_message: The maximum number of rows produced in one kafka message for row-based formats. The default value is `1`.
19182
20190
  :param pulumi.Input[int] num_consumers: The number of consumers per table per replica. The default value is `1`.
@@ -19221,7 +20229,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
19221
20229
  @pulumi.getter(name="dataFormat")
19222
20230
  def data_format(self) -> pulumi.Input[str]:
19223
20231
  """
19224
- Message data format. The default value is `JSONEachRow`.
20232
+ Enum: `Avro`, `CSV`, `JSONAsString`, `JSONCompactEachRow`, `JSONCompactStringsEachRow`, `JSONEachRow`, `JSONStringsEachRow`, `MsgPack`, `TSKV`, `TSV`, `TabSeparated`, `RawBLOB`, `AvroConfluent`. Message data format. The default value is `JSONEachRow`.
19225
20233
  """
19226
20234
  return pulumi.get(self, "data_format")
19227
20235
 
@@ -19269,7 +20277,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
19269
20277
  @pulumi.getter(name="autoOffsetReset")
19270
20278
  def auto_offset_reset(self) -> Optional[pulumi.Input[str]]:
19271
20279
  """
19272
- Action to take when there is no initial offset in offset store or the desired offset is out of range. The default value is `earliest`.
20280
+ Enum: `smallest`, `earliest`, `beginning`, `largest`, `latest`, `end`. Action to take when there is no initial offset in offset store or the desired offset is out of range. The default value is `earliest`.
19273
20281
  """
19274
20282
  return pulumi.get(self, "auto_offset_reset")
19275
20283
 
@@ -19281,7 +20289,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
19281
20289
  @pulumi.getter(name="dateTimeInputFormat")
19282
20290
  def date_time_input_format(self) -> Optional[pulumi.Input[str]]:
19283
20291
  """
19284
- Method to read DateTime from text input formats. The default value is `basic`.
20292
+ Enum: `basic`, `best_effort`, `best_effort_us`. Method to read DateTime from text input formats. The default value is `basic`.
19285
20293
  """
19286
20294
  return pulumi.get(self, "date_time_input_format")
19287
20295
 
@@ -19293,7 +20301,7 @@ class ServiceIntegrationClickhouseKafkaUserConfigTableArgs:
19293
20301
  @pulumi.getter(name="handleErrorMode")
19294
20302
  def handle_error_mode(self) -> Optional[pulumi.Input[str]]:
19295
20303
  """
19296
- How to handle errors for Kafka engine. The default value is `default`.
20304
+ Enum: `default`, `stream`. How to handle errors for Kafka engine. The default value is `default`.
19297
20305
  """
19298
20306
  return pulumi.get(self, "handle_error_mode")
19299
20307
 
@@ -19487,6 +20495,7 @@ class ServiceIntegrationClickhousePostgresqlUserConfigDatabaseArgs:
19487
20495
  class ServiceIntegrationDatadogUserConfigArgs:
19488
20496
  def __init__(__self__, *,
19489
20497
  datadog_dbm_enabled: Optional[pulumi.Input[bool]] = None,
20498
+ datadog_pgbouncer_enabled: Optional[pulumi.Input[bool]] = None,
19490
20499
  datadog_tags: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]]] = None,
19491
20500
  exclude_consumer_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
19492
20501
  exclude_topics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -19498,6 +20507,7 @@ class ServiceIntegrationDatadogUserConfigArgs:
19498
20507
  redis: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigRedisArgs']] = None):
19499
20508
  """
19500
20509
  :param pulumi.Input[bool] datadog_dbm_enabled: Enable Datadog Database Monitoring.
20510
+ :param pulumi.Input[bool] datadog_pgbouncer_enabled: Enable Datadog PgBouncer Metric Tracking.
19501
20511
  :param pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]] datadog_tags: Custom tags provided by user
19502
20512
  :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_consumer_groups: List of custom metrics.
19503
20513
  :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_topics: List of topics to exclude.
@@ -19510,6 +20520,8 @@ class ServiceIntegrationDatadogUserConfigArgs:
19510
20520
  """
19511
20521
  if datadog_dbm_enabled is not None:
19512
20522
  pulumi.set(__self__, "datadog_dbm_enabled", datadog_dbm_enabled)
20523
+ if datadog_pgbouncer_enabled is not None:
20524
+ pulumi.set(__self__, "datadog_pgbouncer_enabled", datadog_pgbouncer_enabled)
19513
20525
  if datadog_tags is not None:
19514
20526
  pulumi.set(__self__, "datadog_tags", datadog_tags)
19515
20527
  if exclude_consumer_groups is not None:
@@ -19541,6 +20553,18 @@ class ServiceIntegrationDatadogUserConfigArgs:
19541
20553
  def datadog_dbm_enabled(self, value: Optional[pulumi.Input[bool]]):
19542
20554
  pulumi.set(self, "datadog_dbm_enabled", value)
19543
20555
 
20556
+ @property
20557
+ @pulumi.getter(name="datadogPgbouncerEnabled")
20558
+ def datadog_pgbouncer_enabled(self) -> Optional[pulumi.Input[bool]]:
20559
+ """
20560
+ Enable Datadog PgBouncer Metric Tracking.
20561
+ """
20562
+ return pulumi.get(self, "datadog_pgbouncer_enabled")
20563
+
20564
+ @datadog_pgbouncer_enabled.setter
20565
+ def datadog_pgbouncer_enabled(self, value: Optional[pulumi.Input[bool]]):
20566
+ pulumi.set(self, "datadog_pgbouncer_enabled", value)
20567
+
19544
20568
  @property
19545
20569
  @pulumi.getter(name="datadogTags")
19546
20570
  def datadog_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationDatadogUserConfigDatadogTagArgs']]]]:
@@ -19799,7 +20823,7 @@ class ServiceIntegrationEndpointDatadogUserConfigArgs:
19799
20823
  :param pulumi.Input[int] kafka_consumer_check_instances: Number of separate instances to fetch kafka consumer statistics with.
19800
20824
  :param pulumi.Input[int] kafka_consumer_stats_timeout: Number of seconds that datadog will wait to get consumer statistics from brokers.
19801
20825
  :param pulumi.Input[int] max_partition_contexts: Maximum number of partition contexts to send.
19802
- :param pulumi.Input[str] site: Datadog intake site. Defaults to datadoghq.com.
20826
+ :param pulumi.Input[str] site: Enum: `datadoghq.com`, `datadoghq.eu`, `us3.datadoghq.com`, `us5.datadoghq.com`, `ddog-gov.com`, `ap1.datadoghq.com`. Datadog intake site. Defaults to datadoghq.com.
19803
20827
  """
19804
20828
  pulumi.set(__self__, "datadog_api_key", datadog_api_key)
19805
20829
  if datadog_tags is not None:
@@ -19891,7 +20915,7 @@ class ServiceIntegrationEndpointDatadogUserConfigArgs:
19891
20915
  @pulumi.getter
19892
20916
  def site(self) -> Optional[pulumi.Input[str]]:
19893
20917
  """
19894
- Datadog intake site. Defaults to datadoghq.com.
20918
+ Enum: `datadoghq.com`, `datadoghq.eu`, `us3.datadoghq.com`, `us5.datadoghq.com`, `ddog-gov.com`, `ap1.datadoghq.com`. Datadog intake site. Defaults to datadoghq.com.
19895
20919
  """
19896
20920
  return pulumi.get(self, "site")
19897
20921
 
@@ -20261,14 +21285,14 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
20261
21285
  ssl_endpoint_identification_algorithm: Optional[pulumi.Input[str]] = None):
20262
21286
  """
20263
21287
  :param pulumi.Input[str] bootstrap_servers: Bootstrap servers.
20264
- :param pulumi.Input[str] security_protocol: Security protocol.
20265
- :param pulumi.Input[str] sasl_mechanism: SASL mechanism used for connections to the Kafka server.
21288
+ :param pulumi.Input[str] security_protocol: Enum: `PLAINTEXT`, `SSL`, `SASL_PLAINTEXT`, `SASL_SSL`. Security protocol.
21289
+ :param pulumi.Input[str] sasl_mechanism: Enum: `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`. SASL mechanism used for connections to the Kafka server.
20266
21290
  :param pulumi.Input[str] sasl_plain_password: Password for SASL PLAIN mechanism in the Kafka server.
20267
21291
  :param pulumi.Input[str] sasl_plain_username: Username for SASL PLAIN mechanism in the Kafka server.
20268
21292
  :param pulumi.Input[str] ssl_ca_cert: PEM-encoded CA certificate.
20269
21293
  :param pulumi.Input[str] ssl_client_cert: PEM-encoded client certificate.
20270
21294
  :param pulumi.Input[str] ssl_client_key: PEM-encoded client key.
20271
- :param pulumi.Input[str] ssl_endpoint_identification_algorithm: The endpoint identification algorithm to validate server hostname using server certificate.
21295
+ :param pulumi.Input[str] ssl_endpoint_identification_algorithm: Enum: `https`, ``. The endpoint identification algorithm to validate server hostname using server certificate.
20272
21296
  """
20273
21297
  pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
20274
21298
  pulumi.set(__self__, "security_protocol", security_protocol)
@@ -20303,7 +21327,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
20303
21327
  @pulumi.getter(name="securityProtocol")
20304
21328
  def security_protocol(self) -> pulumi.Input[str]:
20305
21329
  """
20306
- Security protocol.
21330
+ Enum: `PLAINTEXT`, `SSL`, `SASL_PLAINTEXT`, `SASL_SSL`. Security protocol.
20307
21331
  """
20308
21332
  return pulumi.get(self, "security_protocol")
20309
21333
 
@@ -20315,7 +21339,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
20315
21339
  @pulumi.getter(name="saslMechanism")
20316
21340
  def sasl_mechanism(self) -> Optional[pulumi.Input[str]]:
20317
21341
  """
20318
- SASL mechanism used for connections to the Kafka server.
21342
+ Enum: `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`. SASL mechanism used for connections to the Kafka server.
20319
21343
  """
20320
21344
  return pulumi.get(self, "sasl_mechanism")
20321
21345
 
@@ -20387,7 +21411,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
20387
21411
  @pulumi.getter(name="sslEndpointIdentificationAlgorithm")
20388
21412
  def ssl_endpoint_identification_algorithm(self) -> Optional[pulumi.Input[str]]:
20389
21413
  """
20390
- The endpoint identification algorithm to validate server hostname using server certificate.
21414
+ Enum: `https`, ``. The endpoint identification algorithm to validate server hostname using server certificate.
20391
21415
  """
20392
21416
  return pulumi.get(self, "ssl_endpoint_identification_algorithm")
20393
21417
 
@@ -20501,7 +21525,7 @@ class ServiceIntegrationEndpointExternalPostgresqlArgs:
20501
21525
  :param pulumi.Input[str] password: Password.
20502
21526
  :param pulumi.Input[str] ssl_client_certificate: Client certificate.
20503
21527
  :param pulumi.Input[str] ssl_client_key: Client key.
20504
- :param pulumi.Input[str] ssl_mode: SSL Mode. The default value is `verify-full`.
21528
+ :param pulumi.Input[str] ssl_mode: Enum: `disable`, `allow`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL Mode. The default value is `verify-full`.
20505
21529
  :param pulumi.Input[str] ssl_root_cert: SSL Root Cert.
20506
21530
  """
20507
21531
  pulumi.set(__self__, "host", host)
@@ -20608,7 +21632,7 @@ class ServiceIntegrationEndpointExternalPostgresqlArgs:
20608
21632
  @pulumi.getter(name="sslMode")
20609
21633
  def ssl_mode(self) -> Optional[pulumi.Input[str]]:
20610
21634
  """
20611
- SSL Mode. The default value is `verify-full`.
21635
+ Enum: `disable`, `allow`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL Mode. The default value is `verify-full`.
20612
21636
  """
20613
21637
  return pulumi.get(self, "ssl_mode")
20614
21638
 
@@ -20637,7 +21661,7 @@ class ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs:
20637
21661
  basic_auth_password: Optional[pulumi.Input[str]] = None,
20638
21662
  basic_auth_username: Optional[pulumi.Input[str]] = None):
20639
21663
  """
20640
- :param pulumi.Input[str] authentication: Authentication method.
21664
+ :param pulumi.Input[str] authentication: Enum: `none`, `basic`. Authentication method.
20641
21665
  :param pulumi.Input[str] url: Schema Registry URL.
20642
21666
  :param pulumi.Input[str] basic_auth_password: Basic authentication password.
20643
21667
  :param pulumi.Input[str] basic_auth_username: Basic authentication user name.
@@ -20653,7 +21677,7 @@ class ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs:
20653
21677
  @pulumi.getter
20654
21678
  def authentication(self) -> pulumi.Input[str]:
20655
21679
  """
20656
- Authentication method.
21680
+ Enum: `none`, `basic`. Authentication method.
20657
21681
  """
20658
21682
  return pulumi.get(self, "authentication")
20659
21683
 
@@ -20790,7 +21814,7 @@ class ServiceIntegrationEndpointRsyslogUserConfigArgs:
20790
21814
  max_message_size: Optional[pulumi.Input[int]] = None,
20791
21815
  sd: Optional[pulumi.Input[str]] = None):
20792
21816
  """
20793
- :param pulumi.Input[str] format: Message format. The default value is `rfc5424`.
21817
+ :param pulumi.Input[str] format: Enum: `rfc5424`, `rfc3164`, `custom`. Message format. The default value is `rfc5424`.
20794
21818
  :param pulumi.Input[int] port: Rsyslog server port. The default value is `514`.
20795
21819
  :param pulumi.Input[str] server: Rsyslog server IP address or hostname.
20796
21820
  :param pulumi.Input[bool] tls: Require TLS. The default value is `true`.
@@ -20822,7 +21846,7 @@ class ServiceIntegrationEndpointRsyslogUserConfigArgs:
20822
21846
  @pulumi.getter
20823
21847
  def format(self) -> pulumi.Input[str]:
20824
21848
  """
20825
- Message format. The default value is `rfc5424`.
21849
+ Enum: `rfc5424`, `rfc3164`, `custom`. Message format. The default value is `rfc5424`.
20826
21850
  """
20827
21851
  return pulumi.get(self, "format")
20828
21852
 
@@ -21305,7 +22329,7 @@ class ServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormakerArgs:
21305
22329
  :param pulumi.Input[int] consumer_fetch_min_bytes: The minimum amount of data the server should return for a fetch request.
21306
22330
  :param pulumi.Input[int] producer_batch_size: The batch size in bytes producer will attempt to collect before publishing to broker.
21307
22331
  :param pulumi.Input[int] producer_buffer_memory: The amount of bytes producer can use for buffering data before publishing to broker.
21308
- :param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
22332
+ :param pulumi.Input[str] producer_compression_type: Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
21309
22333
  :param pulumi.Input[int] producer_linger_ms: The linger time (ms) for waiting new data to arrive for publishing.
21310
22334
  :param pulumi.Input[int] producer_max_request_size: The maximum request size in bytes.
21311
22335
  """
@@ -21362,7 +22386,7 @@ class ServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormakerArgs:
21362
22386
  @pulumi.getter(name="producerCompressionType")
21363
22387
  def producer_compression_type(self) -> Optional[pulumi.Input[str]]:
21364
22388
  """
21365
- Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
22389
+ Enum: `gzip`, `snappy`, `lz4`, `zstd`, `none`. Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
21366
22390
  """
21367
22391
  return pulumi.get(self, "producer_compression_type")
21368
22392