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