pulumi-aiven 6.16.0a1716589862__py3-none-any.whl → 6.17.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +30 -174
- pulumi_aiven/get_mirror_maker_replication_flow.py +14 -1
- pulumi_aiven/get_organization_application_user.py +15 -8
- pulumi_aiven/mirror_maker_replication_flow.py +47 -0
- pulumi_aiven/organization_application_user.py +52 -45
- pulumi_aiven/organization_application_user_token.py +15 -51
- pulumi_aiven/outputs.py +62 -174
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.16.0a1716589862.dist-info → pulumi_aiven-6.17.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0a1716589862.dist-info → pulumi_aiven-6.17.0.dist-info}/RECORD +12 -12
- {pulumi_aiven-6.16.0a1716589862.dist-info → pulumi_aiven-6.17.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0a1716589862.dist-info → pulumi_aiven-6.17.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py
CHANGED
|
@@ -179,8 +179,6 @@ __all__ = [
|
|
|
179
179
|
'OpenSearchServiceIntegration',
|
|
180
180
|
'OpenSearchTag',
|
|
181
181
|
'OpenSearchTechEmail',
|
|
182
|
-
'OrganizationApplicationUserTimeouts',
|
|
183
|
-
'OrganizationApplicationUserTokenTimeouts',
|
|
184
182
|
'OrganizationGroupProjectTimeouts',
|
|
185
183
|
'OrganizationTimeouts',
|
|
186
184
|
'OrganizationUserGroupMemberTimeouts',
|
|
@@ -682,7 +680,7 @@ class CassandraCassandraUserConfig(dict):
|
|
|
682
680
|
:param 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.
|
|
683
681
|
:param 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.
|
|
684
682
|
:param 'CassandraCassandraUserConfigCassandraArgs' cassandra: Cassandra configuration values
|
|
685
|
-
:param str cassandra_version: Enum: `3`, `4`, `4.1
|
|
683
|
+
:param str cassandra_version: Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
686
684
|
:param Sequence['CassandraCassandraUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
687
685
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
688
686
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -767,7 +765,7 @@ class CassandraCassandraUserConfig(dict):
|
|
|
767
765
|
@pulumi.getter(name="cassandraVersion")
|
|
768
766
|
def cassandra_version(self) -> Optional[str]:
|
|
769
767
|
"""
|
|
770
|
-
Enum: `3`, `4`, `4.1
|
|
768
|
+
Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
771
769
|
"""
|
|
772
770
|
return pulumi.get(self, "cassandra_version")
|
|
773
771
|
|
|
@@ -2241,7 +2239,7 @@ class DragonflyDragonflyUserConfig(dict):
|
|
|
2241
2239
|
static_ips: Optional[bool] = None):
|
|
2242
2240
|
"""
|
|
2243
2241
|
:param bool cache_mode: Evict entries when getting close to maxmemory limit. The default value is `false`.
|
|
2244
|
-
:param str dragonfly_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
2242
|
+
:param str dragonfly_persistence: Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
2245
2243
|
:param bool dragonfly_ssl: Require SSL to access Dragonfly. The default value is `true`.
|
|
2246
2244
|
:param Sequence['DragonflyDragonflyUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
2247
2245
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -2299,7 +2297,7 @@ class DragonflyDragonflyUserConfig(dict):
|
|
|
2299
2297
|
@pulumi.getter(name="dragonflyPersistence")
|
|
2300
2298
|
def dragonfly_persistence(self) -> Optional[str]:
|
|
2301
2299
|
"""
|
|
2302
|
-
Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
2300
|
+
Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
2303
2301
|
"""
|
|
2304
2302
|
return pulumi.get(self, "dragonfly_persistence")
|
|
2305
2303
|
|
|
@@ -3050,7 +3048,7 @@ class FlinkFlinkUserConfig(dict):
|
|
|
3050
3048
|
static_ips: Optional[bool] = None):
|
|
3051
3049
|
"""
|
|
3052
3050
|
:param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
3053
|
-
:param str flink_version: Enum: `1.16
|
|
3051
|
+
:param str flink_version: Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
3054
3052
|
:param Sequence['FlinkFlinkUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
3055
3053
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
3056
3054
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -3093,7 +3091,7 @@ class FlinkFlinkUserConfig(dict):
|
|
|
3093
3091
|
@pulumi.getter(name="flinkVersion")
|
|
3094
3092
|
def flink_version(self) -> Optional[str]:
|
|
3095
3093
|
"""
|
|
3096
|
-
Enum: `1.16
|
|
3094
|
+
Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
3097
3095
|
"""
|
|
3098
3096
|
return pulumi.get(self, "flink_version")
|
|
3099
3097
|
|
|
@@ -7059,7 +7057,7 @@ class KafkaKafkaUserConfig(dict):
|
|
|
7059
7057
|
:param bool kafka_rest: Enable Kafka-REST service. The default value is `false`.
|
|
7060
7058
|
:param bool kafka_rest_authorization: Enable authorization in Kafka-REST service.
|
|
7061
7059
|
:param 'KafkaKafkaUserConfigKafkaRestConfigArgs' kafka_rest_config: Kafka REST configuration
|
|
7062
|
-
:param str kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
7060
|
+
:param str kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
7063
7061
|
:param 'KafkaKafkaUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
7064
7062
|
:param 'KafkaKafkaUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
|
|
7065
7063
|
:param 'KafkaKafkaUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
|
|
@@ -7228,7 +7226,7 @@ class KafkaKafkaUserConfig(dict):
|
|
|
7228
7226
|
@pulumi.getter(name="kafkaVersion")
|
|
7229
7227
|
def kafka_version(self) -> Optional[str]:
|
|
7230
7228
|
"""
|
|
7231
|
-
Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
7229
|
+
Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
7232
7230
|
"""
|
|
7233
7231
|
return pulumi.get(self, "kafka_version")
|
|
7234
7232
|
|
|
@@ -10149,8 +10147,8 @@ class M3AggregatorM3aggregatorUserConfig(dict):
|
|
|
10149
10147
|
:param Sequence['M3AggregatorM3aggregatorUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
10150
10148
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10151
10149
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10152
|
-
:param str m3_version: Enum: `1.1`, `1.2`, `1.5
|
|
10153
|
-
:param str m3aggregator_version: Enum: `1.1`, `1.2`, `1.5
|
|
10150
|
+
:param str m3_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
10151
|
+
:param str m3aggregator_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10154
10152
|
:param bool service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
10155
10153
|
:param bool static_ips: Use static public IP addresses.
|
|
10156
10154
|
"""
|
|
@@ -10210,7 +10208,7 @@ class M3AggregatorM3aggregatorUserConfig(dict):
|
|
|
10210
10208
|
@pulumi.getter(name="m3Version")
|
|
10211
10209
|
def m3_version(self) -> Optional[str]:
|
|
10212
10210
|
"""
|
|
10213
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
10211
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
10214
10212
|
"""
|
|
10215
10213
|
return pulumi.get(self, "m3_version")
|
|
10216
10214
|
|
|
@@ -10218,7 +10216,7 @@ class M3AggregatorM3aggregatorUserConfig(dict):
|
|
|
10218
10216
|
@pulumi.getter(name="m3aggregatorVersion")
|
|
10219
10217
|
def m3aggregator_version(self) -> Optional[str]:
|
|
10220
10218
|
"""
|
|
10221
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
10219
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10222
10220
|
"""
|
|
10223
10221
|
return pulumi.get(self, "m3aggregator_version")
|
|
10224
10222
|
|
|
@@ -10662,9 +10660,9 @@ class M3DbM3dbUserConfig(dict):
|
|
|
10662
10660
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10663
10661
|
:param 'M3DbM3dbUserConfigLimitsArgs' limits: M3 limits
|
|
10664
10662
|
:param 'M3DbM3dbUserConfigM3Args' m3: M3 specific configuration options
|
|
10665
|
-
:param str m3_version: Enum: `1.1`, `1.2`, `1.5
|
|
10663
|
+
:param str m3_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
10666
10664
|
:param 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.
|
|
10667
|
-
:param str m3db_version: Enum: `1.1`, `1.2`, `1.5
|
|
10665
|
+
:param str m3db_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10668
10666
|
:param Sequence['M3DbM3dbUserConfigNamespaceArgs'] namespaces: List of M3 namespaces
|
|
10669
10667
|
:param 'M3DbM3dbUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
10670
10668
|
:param 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.
|
|
@@ -10774,7 +10772,7 @@ class M3DbM3dbUserConfig(dict):
|
|
|
10774
10772
|
@pulumi.getter(name="m3Version")
|
|
10775
10773
|
def m3_version(self) -> Optional[str]:
|
|
10776
10774
|
"""
|
|
10777
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
10775
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
10778
10776
|
"""
|
|
10779
10777
|
return pulumi.get(self, "m3_version")
|
|
10780
10778
|
|
|
@@ -10790,7 +10788,7 @@ class M3DbM3dbUserConfig(dict):
|
|
|
10790
10788
|
@pulumi.getter(name="m3dbVersion")
|
|
10791
10789
|
def m3db_version(self) -> Optional[str]:
|
|
10792
10790
|
"""
|
|
10793
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
10791
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10794
10792
|
"""
|
|
10795
10793
|
return pulumi.get(self, "m3db_version")
|
|
10796
10794
|
|
|
@@ -12016,7 +12014,7 @@ class MySqlMysqlUserConfig(dict):
|
|
|
12016
12014
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
12017
12015
|
:param 'MySqlMysqlUserConfigMigrationArgs' migration: Migrate data from existing server
|
|
12018
12016
|
:param 'MySqlMysqlUserConfigMysqlArgs' mysql: mysql.conf configuration values
|
|
12019
|
-
:param str mysql_version: Enum: `8
|
|
12017
|
+
:param str mysql_version: Enum: `8`, and newer. MySQL major version.
|
|
12020
12018
|
:param 'MySqlMysqlUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
12021
12019
|
:param 'MySqlMysqlUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
|
|
12022
12020
|
:param 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.
|
|
@@ -12162,7 +12160,7 @@ class MySqlMysqlUserConfig(dict):
|
|
|
12162
12160
|
@pulumi.getter(name="mysqlVersion")
|
|
12163
12161
|
def mysql_version(self) -> Optional[str]:
|
|
12164
12162
|
"""
|
|
12165
|
-
Enum: `8
|
|
12163
|
+
Enum: `8`, and newer. MySQL major version.
|
|
12166
12164
|
"""
|
|
12167
12165
|
return pulumi.get(self, "mysql_version")
|
|
12168
12166
|
|
|
@@ -13348,7 +13346,7 @@ class OpenSearchOpensearchUserConfig(dict):
|
|
|
13348
13346
|
:param 'OpenSearchOpensearchUserConfigOpenidArgs' openid: OpenSearch OpenID Connect Configuration
|
|
13349
13347
|
:param 'OpenSearchOpensearchUserConfigOpensearchArgs' opensearch: OpenSearch settings
|
|
13350
13348
|
:param 'OpenSearchOpensearchUserConfigOpensearchDashboardsArgs' opensearch_dashboards: OpenSearch Dashboards settings
|
|
13351
|
-
:param str opensearch_version: Enum: `1`, `2
|
|
13349
|
+
:param str opensearch_version: Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
13352
13350
|
:param 'OpenSearchOpensearchUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
13353
13351
|
:param 'OpenSearchOpensearchUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
|
|
13354
13352
|
:param 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.
|
|
@@ -13517,7 +13515,7 @@ class OpenSearchOpensearchUserConfig(dict):
|
|
|
13517
13515
|
@pulumi.getter(name="opensearchVersion")
|
|
13518
13516
|
def opensearch_version(self) -> Optional[str]:
|
|
13519
13517
|
"""
|
|
13520
|
-
Enum: `1`, `2
|
|
13518
|
+
Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
13521
13519
|
"""
|
|
13522
13520
|
return pulumi.get(self, "opensearch_version")
|
|
13523
13521
|
|
|
@@ -15257,116 +15255,6 @@ class OpenSearchTechEmail(dict):
|
|
|
15257
15255
|
return pulumi.get(self, "email")
|
|
15258
15256
|
|
|
15259
15257
|
|
|
15260
|
-
@pulumi.output_type
|
|
15261
|
-
class OrganizationApplicationUserTimeouts(dict):
|
|
15262
|
-
def __init__(__self__, *,
|
|
15263
|
-
create: Optional[str] = None,
|
|
15264
|
-
delete: Optional[str] = None,
|
|
15265
|
-
read: Optional[str] = None,
|
|
15266
|
-
update: Optional[str] = None):
|
|
15267
|
-
"""
|
|
15268
|
-
:param 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).
|
|
15269
|
-
:param 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.
|
|
15270
|
-
:param 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.
|
|
15271
|
-
:param 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).
|
|
15272
|
-
"""
|
|
15273
|
-
if create is not None:
|
|
15274
|
-
pulumi.set(__self__, "create", create)
|
|
15275
|
-
if delete is not None:
|
|
15276
|
-
pulumi.set(__self__, "delete", delete)
|
|
15277
|
-
if read is not None:
|
|
15278
|
-
pulumi.set(__self__, "read", read)
|
|
15279
|
-
if update is not None:
|
|
15280
|
-
pulumi.set(__self__, "update", update)
|
|
15281
|
-
|
|
15282
|
-
@property
|
|
15283
|
-
@pulumi.getter
|
|
15284
|
-
def create(self) -> Optional[str]:
|
|
15285
|
-
"""
|
|
15286
|
-
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).
|
|
15287
|
-
"""
|
|
15288
|
-
return pulumi.get(self, "create")
|
|
15289
|
-
|
|
15290
|
-
@property
|
|
15291
|
-
@pulumi.getter
|
|
15292
|
-
def delete(self) -> Optional[str]:
|
|
15293
|
-
"""
|
|
15294
|
-
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.
|
|
15295
|
-
"""
|
|
15296
|
-
return pulumi.get(self, "delete")
|
|
15297
|
-
|
|
15298
|
-
@property
|
|
15299
|
-
@pulumi.getter
|
|
15300
|
-
def read(self) -> Optional[str]:
|
|
15301
|
-
"""
|
|
15302
|
-
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.
|
|
15303
|
-
"""
|
|
15304
|
-
return pulumi.get(self, "read")
|
|
15305
|
-
|
|
15306
|
-
@property
|
|
15307
|
-
@pulumi.getter
|
|
15308
|
-
def update(self) -> Optional[str]:
|
|
15309
|
-
"""
|
|
15310
|
-
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).
|
|
15311
|
-
"""
|
|
15312
|
-
return pulumi.get(self, "update")
|
|
15313
|
-
|
|
15314
|
-
|
|
15315
|
-
@pulumi.output_type
|
|
15316
|
-
class OrganizationApplicationUserTokenTimeouts(dict):
|
|
15317
|
-
def __init__(__self__, *,
|
|
15318
|
-
create: Optional[str] = None,
|
|
15319
|
-
delete: Optional[str] = None,
|
|
15320
|
-
read: Optional[str] = None,
|
|
15321
|
-
update: Optional[str] = None):
|
|
15322
|
-
"""
|
|
15323
|
-
:param 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).
|
|
15324
|
-
:param 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.
|
|
15325
|
-
:param 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.
|
|
15326
|
-
:param 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).
|
|
15327
|
-
"""
|
|
15328
|
-
if create is not None:
|
|
15329
|
-
pulumi.set(__self__, "create", create)
|
|
15330
|
-
if delete is not None:
|
|
15331
|
-
pulumi.set(__self__, "delete", delete)
|
|
15332
|
-
if read is not None:
|
|
15333
|
-
pulumi.set(__self__, "read", read)
|
|
15334
|
-
if update is not None:
|
|
15335
|
-
pulumi.set(__self__, "update", update)
|
|
15336
|
-
|
|
15337
|
-
@property
|
|
15338
|
-
@pulumi.getter
|
|
15339
|
-
def create(self) -> Optional[str]:
|
|
15340
|
-
"""
|
|
15341
|
-
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).
|
|
15342
|
-
"""
|
|
15343
|
-
return pulumi.get(self, "create")
|
|
15344
|
-
|
|
15345
|
-
@property
|
|
15346
|
-
@pulumi.getter
|
|
15347
|
-
def delete(self) -> Optional[str]:
|
|
15348
|
-
"""
|
|
15349
|
-
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.
|
|
15350
|
-
"""
|
|
15351
|
-
return pulumi.get(self, "delete")
|
|
15352
|
-
|
|
15353
|
-
@property
|
|
15354
|
-
@pulumi.getter
|
|
15355
|
-
def read(self) -> Optional[str]:
|
|
15356
|
-
"""
|
|
15357
|
-
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.
|
|
15358
|
-
"""
|
|
15359
|
-
return pulumi.get(self, "read")
|
|
15360
|
-
|
|
15361
|
-
@property
|
|
15362
|
-
@pulumi.getter
|
|
15363
|
-
def update(self) -> Optional[str]:
|
|
15364
|
-
"""
|
|
15365
|
-
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).
|
|
15366
|
-
"""
|
|
15367
|
-
return pulumi.get(self, "update")
|
|
15368
|
-
|
|
15369
|
-
|
|
15370
15258
|
@pulumi.output_type
|
|
15371
15259
|
class OrganizationGroupProjectTimeouts(dict):
|
|
15372
15260
|
def __init__(__self__, *,
|
|
@@ -16064,7 +15952,7 @@ class PgPgUserConfig(dict):
|
|
|
16064
15952
|
:param bool pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
16065
15953
|
:param 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.
|
|
16066
15954
|
:param 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`.
|
|
16067
|
-
:param str pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
15955
|
+
:param str pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
16068
15956
|
:param 'PgPgUserConfigPgauditArgs' pgaudit: System-wide settings for the pgaudit extension
|
|
16069
15957
|
:param 'PgPgUserConfigPgbouncerArgs' pgbouncer: PGBouncer connection pooling settings
|
|
16070
15958
|
:param 'PgPgUserConfigPglookoutArgs' pglookout: System-wide settings for pglookout
|
|
@@ -16277,7 +16165,7 @@ class PgPgUserConfig(dict):
|
|
|
16277
16165
|
@pulumi.getter(name="pgVersion")
|
|
16278
16166
|
def pg_version(self) -> Optional[str]:
|
|
16279
16167
|
"""
|
|
16280
|
-
Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
16168
|
+
Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
16281
16169
|
"""
|
|
16282
16170
|
return pulumi.get(self, "pg_version")
|
|
16283
16171
|
|
|
@@ -16739,7 +16627,7 @@ class PgPgUserConfigPg(dict):
|
|
|
16739
16627
|
:param bool jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
16740
16628
|
:param 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.
|
|
16741
16629
|
:param str log_error_verbosity: Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
|
|
16742
|
-
:param 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
|
|
16630
|
+
:param 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.
|
|
16743
16631
|
:param int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
16744
16632
|
:param int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
16745
16633
|
:param int max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
@@ -17025,7 +16913,7 @@ class PgPgUserConfigPg(dict):
|
|
|
17025
16913
|
@pulumi.getter(name="logLinePrefix")
|
|
17026
16914
|
def log_line_prefix(self) -> Optional[str]:
|
|
17027
16915
|
"""
|
|
17028
|
-
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
|
|
16916
|
+
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.
|
|
17029
16917
|
"""
|
|
17030
16918
|
return pulumi.get(self, "log_line_prefix")
|
|
17031
16919
|
|
|
@@ -18359,11 +18247,11 @@ class RedisRedisUserConfig(dict):
|
|
|
18359
18247
|
:param 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`.
|
|
18360
18248
|
:param str redis_notify_keyspace_events: Set notify-keyspace-events option.
|
|
18361
18249
|
:param int redis_number_of_databases: Set number of Redis databases. Changing this will cause a restart of the Redis service.
|
|
18362
|
-
:param 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
|
|
18250
|
+
:param str redis_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
18363
18251
|
:param 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.
|
|
18364
18252
|
:param bool redis_ssl: Require SSL to access Redis. The default value is `true`.
|
|
18365
18253
|
:param int redis_timeout: Redis idle connection timeout in seconds. The default value is `300`.
|
|
18366
|
-
:param str redis_version: Enum: `7.0
|
|
18254
|
+
:param str redis_version: Enum: `7.0`, and newer. Redis major version.
|
|
18367
18255
|
:param bool service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
18368
18256
|
:param str service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
|
|
18369
18257
|
:param bool static_ips: Use static public IP addresses.
|
|
@@ -18562,7 +18450,7 @@ class RedisRedisUserConfig(dict):
|
|
|
18562
18450
|
@pulumi.getter(name="redisPersistence")
|
|
18563
18451
|
def redis_persistence(self) -> Optional[str]:
|
|
18564
18452
|
"""
|
|
18565
|
-
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
|
|
18453
|
+
Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
18566
18454
|
"""
|
|
18567
18455
|
return pulumi.get(self, "redis_persistence")
|
|
18568
18456
|
|
|
@@ -18594,7 +18482,7 @@ class RedisRedisUserConfig(dict):
|
|
|
18594
18482
|
@pulumi.getter(name="redisVersion")
|
|
18595
18483
|
def redis_version(self) -> Optional[str]:
|
|
18596
18484
|
"""
|
|
18597
|
-
Enum: `7.0
|
|
18485
|
+
Enum: `7.0`, and newer. Redis major version.
|
|
18598
18486
|
"""
|
|
18599
18487
|
return pulumi.get(self, "redis_version")
|
|
18600
18488
|
|
|
@@ -20121,7 +20009,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfig(dict):
|
|
|
20121
20009
|
:param str ssl_ca_cert: PEM-encoded CA certificate.
|
|
20122
20010
|
:param str ssl_client_cert: PEM-encoded client certificate.
|
|
20123
20011
|
:param str ssl_client_key: PEM-encoded client key.
|
|
20124
|
-
:param str ssl_endpoint_identification_algorithm: Enum: `https
|
|
20012
|
+
:param str ssl_endpoint_identification_algorithm: Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
20125
20013
|
"""
|
|
20126
20014
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
|
20127
20015
|
pulumi.set(__self__, "security_protocol", security_protocol)
|
|
@@ -20208,7 +20096,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfig(dict):
|
|
|
20208
20096
|
@pulumi.getter(name="sslEndpointIdentificationAlgorithm")
|
|
20209
20097
|
def ssl_endpoint_identification_algorithm(self) -> Optional[str]:
|
|
20210
20098
|
"""
|
|
20211
|
-
Enum: `https
|
|
20099
|
+
Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
20212
20100
|
"""
|
|
20213
20101
|
return pulumi.get(self, "ssl_endpoint_identification_algorithm")
|
|
20214
20102
|
|
|
@@ -22052,7 +21940,7 @@ class GetCassandaCassandraUserConfigResult(dict):
|
|
|
22052
21940
|
:param 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.
|
|
22053
21941
|
:param 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.
|
|
22054
21942
|
:param 'GetCassandaCassandraUserConfigCassandraArgs' cassandra: Cassandra configuration values
|
|
22055
|
-
:param str cassandra_version: Enum: `3`, `4`, `4.1
|
|
21943
|
+
:param str cassandra_version: Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
22056
21944
|
:param Sequence['GetCassandaCassandraUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
22057
21945
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
22058
21946
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -22137,7 +22025,7 @@ class GetCassandaCassandraUserConfigResult(dict):
|
|
|
22137
22025
|
@pulumi.getter(name="cassandraVersion")
|
|
22138
22026
|
def cassandra_version(self) -> Optional[str]:
|
|
22139
22027
|
"""
|
|
22140
|
-
Enum: `3`, `4`, `4.1
|
|
22028
|
+
Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
22141
22029
|
"""
|
|
22142
22030
|
return pulumi.get(self, "cassandra_version")
|
|
22143
22031
|
|
|
@@ -22557,7 +22445,7 @@ class GetCassandraCassandraUserConfigResult(dict):
|
|
|
22557
22445
|
:param 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.
|
|
22558
22446
|
:param 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.
|
|
22559
22447
|
:param 'GetCassandraCassandraUserConfigCassandraArgs' cassandra: Cassandra configuration values
|
|
22560
|
-
:param str cassandra_version: Enum: `3`, `4`, `4.1
|
|
22448
|
+
:param str cassandra_version: Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
22561
22449
|
:param Sequence['GetCassandraCassandraUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
22562
22450
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
22563
22451
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -22642,7 +22530,7 @@ class GetCassandraCassandraUserConfigResult(dict):
|
|
|
22642
22530
|
@pulumi.getter(name="cassandraVersion")
|
|
22643
22531
|
def cassandra_version(self) -> Optional[str]:
|
|
22644
22532
|
"""
|
|
22645
|
-
Enum: `3`, `4`, `4.1
|
|
22533
|
+
Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
22646
22534
|
"""
|
|
22647
22535
|
return pulumi.get(self, "cassandra_version")
|
|
22648
22536
|
|
|
@@ -23715,7 +23603,7 @@ class GetDragonflyDragonflyUserConfigResult(dict):
|
|
|
23715
23603
|
static_ips: Optional[bool] = None):
|
|
23716
23604
|
"""
|
|
23717
23605
|
:param bool cache_mode: Evict entries when getting close to maxmemory limit. The default value is `false`.
|
|
23718
|
-
:param str dragonfly_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
23606
|
+
:param str dragonfly_persistence: Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
23719
23607
|
:param bool dragonfly_ssl: Require SSL to access Dragonfly. The default value is `true`.
|
|
23720
23608
|
:param Sequence['GetDragonflyDragonflyUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
23721
23609
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -23773,7 +23661,7 @@ class GetDragonflyDragonflyUserConfigResult(dict):
|
|
|
23773
23661
|
@pulumi.getter(name="dragonflyPersistence")
|
|
23774
23662
|
def dragonfly_persistence(self) -> Optional[str]:
|
|
23775
23663
|
"""
|
|
23776
|
-
Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
23664
|
+
Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
23777
23665
|
"""
|
|
23778
23666
|
return pulumi.get(self, "dragonfly_persistence")
|
|
23779
23667
|
|
|
@@ -24372,7 +24260,7 @@ class GetFlinkFlinkUserConfigResult(dict):
|
|
|
24372
24260
|
static_ips: Optional[bool] = None):
|
|
24373
24261
|
"""
|
|
24374
24262
|
:param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
24375
|
-
:param str flink_version: Enum: `1.16
|
|
24263
|
+
:param str flink_version: Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
24376
24264
|
:param Sequence['GetFlinkFlinkUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
24377
24265
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
24378
24266
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -24415,7 +24303,7 @@ class GetFlinkFlinkUserConfigResult(dict):
|
|
|
24415
24303
|
@pulumi.getter(name="flinkVersion")
|
|
24416
24304
|
def flink_version(self) -> Optional[str]:
|
|
24417
24305
|
"""
|
|
24418
|
-
Enum: `1.16
|
|
24306
|
+
Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
24419
24307
|
"""
|
|
24420
24308
|
return pulumi.get(self, "flink_version")
|
|
24421
24309
|
|
|
@@ -27565,7 +27453,7 @@ class GetKafkaKafkaUserConfigResult(dict):
|
|
|
27565
27453
|
:param bool kafka_rest: Enable Kafka-REST service. The default value is `false`.
|
|
27566
27454
|
:param bool kafka_rest_authorization: Enable authorization in Kafka-REST service.
|
|
27567
27455
|
:param 'GetKafkaKafkaUserConfigKafkaRestConfigArgs' kafka_rest_config: Kafka REST configuration
|
|
27568
|
-
:param str kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
27456
|
+
:param str kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
27569
27457
|
:param 'GetKafkaKafkaUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
27570
27458
|
:param 'GetKafkaKafkaUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
|
|
27571
27459
|
:param 'GetKafkaKafkaUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
|
|
@@ -27734,7 +27622,7 @@ class GetKafkaKafkaUserConfigResult(dict):
|
|
|
27734
27622
|
@pulumi.getter(name="kafkaVersion")
|
|
27735
27623
|
def kafka_version(self) -> Optional[str]:
|
|
27736
27624
|
"""
|
|
27737
|
-
Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
27625
|
+
Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
27738
27626
|
"""
|
|
27739
27627
|
return pulumi.get(self, "kafka_version")
|
|
27740
27628
|
|
|
@@ -30090,8 +29978,8 @@ class GetM3AggregatorM3aggregatorUserConfigResult(dict):
|
|
|
30090
29978
|
:param Sequence['GetM3AggregatorM3aggregatorUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
30091
29979
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
30092
29980
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
30093
|
-
:param str m3_version: Enum: `1.1`, `1.2`, `1.5
|
|
30094
|
-
:param str m3aggregator_version: Enum: `1.1`, `1.2`, `1.5
|
|
29981
|
+
:param str m3_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
29982
|
+
:param str m3aggregator_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
30095
29983
|
:param bool service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
30096
29984
|
:param bool static_ips: Use static public IP addresses.
|
|
30097
29985
|
"""
|
|
@@ -30151,7 +30039,7 @@ class GetM3AggregatorM3aggregatorUserConfigResult(dict):
|
|
|
30151
30039
|
@pulumi.getter(name="m3Version")
|
|
30152
30040
|
def m3_version(self) -> Optional[str]:
|
|
30153
30041
|
"""
|
|
30154
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
30042
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
30155
30043
|
"""
|
|
30156
30044
|
return pulumi.get(self, "m3_version")
|
|
30157
30045
|
|
|
@@ -30159,7 +30047,7 @@ class GetM3AggregatorM3aggregatorUserConfigResult(dict):
|
|
|
30159
30047
|
@pulumi.getter(name="m3aggregatorVersion")
|
|
30160
30048
|
def m3aggregator_version(self) -> Optional[str]:
|
|
30161
30049
|
"""
|
|
30162
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
30050
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
30163
30051
|
"""
|
|
30164
30052
|
return pulumi.get(self, "m3aggregator_version")
|
|
30165
30053
|
|
|
@@ -30483,9 +30371,9 @@ class GetM3DbM3dbUserConfigResult(dict):
|
|
|
30483
30371
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
30484
30372
|
:param 'GetM3DbM3dbUserConfigLimitsArgs' limits: M3 limits
|
|
30485
30373
|
:param 'GetM3DbM3dbUserConfigM3Args' m3: M3 specific configuration options
|
|
30486
|
-
:param str m3_version: Enum: `1.1`, `1.2`, `1.5
|
|
30374
|
+
:param str m3_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
30487
30375
|
:param 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.
|
|
30488
|
-
:param str m3db_version: Enum: `1.1`, `1.2`, `1.5
|
|
30376
|
+
:param str m3db_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
30489
30377
|
:param Sequence['GetM3DbM3dbUserConfigNamespaceArgs'] namespaces: List of M3 namespaces
|
|
30490
30378
|
:param 'GetM3DbM3dbUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
30491
30379
|
:param 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.
|
|
@@ -30595,7 +30483,7 @@ class GetM3DbM3dbUserConfigResult(dict):
|
|
|
30595
30483
|
@pulumi.getter(name="m3Version")
|
|
30596
30484
|
def m3_version(self) -> Optional[str]:
|
|
30597
30485
|
"""
|
|
30598
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
30486
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
30599
30487
|
"""
|
|
30600
30488
|
return pulumi.get(self, "m3_version")
|
|
30601
30489
|
|
|
@@ -30611,7 +30499,7 @@ class GetM3DbM3dbUserConfigResult(dict):
|
|
|
30611
30499
|
@pulumi.getter(name="m3dbVersion")
|
|
30612
30500
|
def m3db_version(self) -> Optional[str]:
|
|
30613
30501
|
"""
|
|
30614
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
30502
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
30615
30503
|
"""
|
|
30616
30504
|
return pulumi.get(self, "m3db_version")
|
|
30617
30505
|
|
|
@@ -31563,7 +31451,7 @@ class GetMySqlMysqlUserConfigResult(dict):
|
|
|
31563
31451
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
31564
31452
|
:param 'GetMySqlMysqlUserConfigMigrationArgs' migration: Migrate data from existing server
|
|
31565
31453
|
:param 'GetMySqlMysqlUserConfigMysqlArgs' mysql: mysql.conf configuration values
|
|
31566
|
-
:param str mysql_version: Enum: `8
|
|
31454
|
+
:param str mysql_version: Enum: `8`, and newer. MySQL major version.
|
|
31567
31455
|
:param 'GetMySqlMysqlUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
31568
31456
|
:param 'GetMySqlMysqlUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
|
|
31569
31457
|
:param 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.
|
|
@@ -31709,7 +31597,7 @@ class GetMySqlMysqlUserConfigResult(dict):
|
|
|
31709
31597
|
@pulumi.getter(name="mysqlVersion")
|
|
31710
31598
|
def mysql_version(self) -> Optional[str]:
|
|
31711
31599
|
"""
|
|
31712
|
-
Enum: `8
|
|
31600
|
+
Enum: `8`, and newer. MySQL major version.
|
|
31713
31601
|
"""
|
|
31714
31602
|
return pulumi.get(self, "mysql_version")
|
|
31715
31603
|
|
|
@@ -32678,7 +32566,7 @@ class GetOpenSearchOpensearchUserConfigResult(dict):
|
|
|
32678
32566
|
:param 'GetOpenSearchOpensearchUserConfigOpenidArgs' openid: OpenSearch OpenID Connect Configuration
|
|
32679
32567
|
:param 'GetOpenSearchOpensearchUserConfigOpensearchArgs' opensearch: OpenSearch settings
|
|
32680
32568
|
:param 'GetOpenSearchOpensearchUserConfigOpensearchDashboardsArgs' opensearch_dashboards: OpenSearch Dashboards settings
|
|
32681
|
-
:param str opensearch_version: Enum: `1`, `2
|
|
32569
|
+
:param str opensearch_version: Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
32682
32570
|
:param 'GetOpenSearchOpensearchUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
32683
32571
|
:param 'GetOpenSearchOpensearchUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
|
|
32684
32572
|
:param 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.
|
|
@@ -32847,7 +32735,7 @@ class GetOpenSearchOpensearchUserConfigResult(dict):
|
|
|
32847
32735
|
@pulumi.getter(name="opensearchVersion")
|
|
32848
32736
|
def opensearch_version(self) -> Optional[str]:
|
|
32849
32737
|
"""
|
|
32850
|
-
Enum: `1`, `2
|
|
32738
|
+
Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
32851
32739
|
"""
|
|
32852
32740
|
return pulumi.get(self, "opensearch_version")
|
|
32853
32741
|
|
|
@@ -34608,7 +34496,7 @@ class GetPgPgUserConfigResult(dict):
|
|
|
34608
34496
|
:param bool pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
34609
34497
|
:param 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.
|
|
34610
34498
|
:param 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`.
|
|
34611
|
-
:param str pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
34499
|
+
:param str pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
34612
34500
|
:param 'GetPgPgUserConfigPgauditArgs' pgaudit: System-wide settings for the pgaudit extension
|
|
34613
34501
|
:param 'GetPgPgUserConfigPgbouncerArgs' pgbouncer: PGBouncer connection pooling settings
|
|
34614
34502
|
:param 'GetPgPgUserConfigPglookoutArgs' pglookout: System-wide settings for pglookout
|
|
@@ -34821,7 +34709,7 @@ class GetPgPgUserConfigResult(dict):
|
|
|
34821
34709
|
@pulumi.getter(name="pgVersion")
|
|
34822
34710
|
def pg_version(self) -> Optional[str]:
|
|
34823
34711
|
"""
|
|
34824
|
-
Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
34712
|
+
Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
34825
34713
|
"""
|
|
34826
34714
|
return pulumi.get(self, "pg_version")
|
|
34827
34715
|
|
|
@@ -35157,7 +35045,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
35157
35045
|
:param bool jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
35158
35046
|
:param 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.
|
|
35159
35047
|
:param str log_error_verbosity: Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
|
|
35160
|
-
:param 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
|
|
35048
|
+
:param 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.
|
|
35161
35049
|
:param int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
35162
35050
|
:param int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
35163
35051
|
:param int max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
@@ -35443,7 +35331,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
35443
35331
|
@pulumi.getter(name="logLinePrefix")
|
|
35444
35332
|
def log_line_prefix(self) -> Optional[str]:
|
|
35445
35333
|
"""
|
|
35446
|
-
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
|
|
35334
|
+
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.
|
|
35447
35335
|
"""
|
|
35448
35336
|
return pulumi.get(self, "log_line_prefix")
|
|
35449
35337
|
|
|
@@ -36516,11 +36404,11 @@ class GetRedisRedisUserConfigResult(dict):
|
|
|
36516
36404
|
:param 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`.
|
|
36517
36405
|
:param str redis_notify_keyspace_events: Set notify-keyspace-events option.
|
|
36518
36406
|
:param int redis_number_of_databases: Set number of Redis databases. Changing this will cause a restart of the Redis service.
|
|
36519
|
-
:param 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
|
|
36407
|
+
:param str redis_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
36520
36408
|
:param 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.
|
|
36521
36409
|
:param bool redis_ssl: Require SSL to access Redis. The default value is `true`.
|
|
36522
36410
|
:param int redis_timeout: Redis idle connection timeout in seconds. The default value is `300`.
|
|
36523
|
-
:param str redis_version: Enum: `7.0
|
|
36411
|
+
:param str redis_version: Enum: `7.0`, and newer. Redis major version.
|
|
36524
36412
|
:param bool service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
36525
36413
|
:param str service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created.
|
|
36526
36414
|
:param bool static_ips: Use static public IP addresses.
|
|
@@ -36719,7 +36607,7 @@ class GetRedisRedisUserConfigResult(dict):
|
|
|
36719
36607
|
@pulumi.getter(name="redisPersistence")
|
|
36720
36608
|
def redis_persistence(self) -> Optional[str]:
|
|
36721
36609
|
"""
|
|
36722
|
-
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
|
|
36610
|
+
Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
36723
36611
|
"""
|
|
36724
36612
|
return pulumi.get(self, "redis_persistence")
|
|
36725
36613
|
|
|
@@ -36751,7 +36639,7 @@ class GetRedisRedisUserConfigResult(dict):
|
|
|
36751
36639
|
@pulumi.getter(name="redisVersion")
|
|
36752
36640
|
def redis_version(self) -> Optional[str]:
|
|
36753
36641
|
"""
|
|
36754
|
-
Enum: `7.0
|
|
36642
|
+
Enum: `7.0`, and newer. Redis major version.
|
|
36755
36643
|
"""
|
|
36756
36644
|
return pulumi.get(self, "redis_version")
|
|
36757
36645
|
|
|
@@ -37975,7 +37863,7 @@ class GetServiceIntegrationEndpointExternalKafkaUserConfigResult(dict):
|
|
|
37975
37863
|
:param str ssl_ca_cert: PEM-encoded CA certificate.
|
|
37976
37864
|
:param str ssl_client_cert: PEM-encoded client certificate.
|
|
37977
37865
|
:param str ssl_client_key: PEM-encoded client key.
|
|
37978
|
-
:param str ssl_endpoint_identification_algorithm: Enum: `https
|
|
37866
|
+
:param str ssl_endpoint_identification_algorithm: Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
37979
37867
|
"""
|
|
37980
37868
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
|
37981
37869
|
pulumi.set(__self__, "security_protocol", security_protocol)
|
|
@@ -38062,7 +37950,7 @@ class GetServiceIntegrationEndpointExternalKafkaUserConfigResult(dict):
|
|
|
38062
37950
|
@pulumi.getter(name="sslEndpointIdentificationAlgorithm")
|
|
38063
37951
|
def ssl_endpoint_identification_algorithm(self) -> Optional[str]:
|
|
38064
37952
|
"""
|
|
38065
|
-
Enum: `https
|
|
37953
|
+
Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
38066
37954
|
"""
|
|
38067
37955
|
return pulumi.get(self, "ssl_endpoint_identification_algorithm")
|
|
38068
37956
|
|