pulumi-aiven 6.18.0a1719033317__py3-none-any.whl → 6.18.0a1719292452__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 +32 -96
- pulumi_aiven/_utilities.py +35 -0
- pulumi_aiven/account.py +9 -27
- pulumi_aiven/azure_privatelink_connection_approval.py +2 -2
- pulumi_aiven/billing_group.py +3 -9
- pulumi_aiven/cassandra.py +3 -9
- pulumi_aiven/clickhouse.py +3 -9
- pulumi_aiven/dragonfly.py +3 -9
- pulumi_aiven/flink.py +3 -9
- pulumi_aiven/flink_application_version.py +6 -18
- pulumi_aiven/grafana.py +3 -9
- pulumi_aiven/influx_db.py +3 -9
- pulumi_aiven/kafka.py +6 -18
- pulumi_aiven/kafka_connect.py +3 -9
- pulumi_aiven/kafka_mirror_maker.py +3 -9
- pulumi_aiven/m3_aggregator.py +3 -9
- pulumi_aiven/m3_db.py +3 -9
- pulumi_aiven/my_sql.py +3 -9
- pulumi_aiven/open_search.py +3 -9
- pulumi_aiven/organization_user.py +4 -12
- pulumi_aiven/outputs.py +66 -198
- pulumi_aiven/pg.py +3 -9
- pulumi_aiven/project.py +9 -27
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +3 -9
- pulumi_aiven/transit_gateway_vpc_attachment.py +3 -9
- {pulumi_aiven-6.18.0a1719033317.dist-info → pulumi_aiven-6.18.0a1719292452.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.18.0a1719033317.dist-info → pulumi_aiven-6.18.0a1719292452.dist-info}/RECORD +30 -30
- {pulumi_aiven-6.18.0a1719033317.dist-info → pulumi_aiven-6.18.0a1719292452.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.18.0a1719033317.dist-info → pulumi_aiven-6.18.0a1719292452.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py
CHANGED
|
@@ -728,13 +728,11 @@ class CassandraCassandraUserConfig(dict):
|
|
|
728
728
|
|
|
729
729
|
@property
|
|
730
730
|
@pulumi.getter(name="additionalBackupRegions")
|
|
731
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
731
732
|
def additional_backup_regions(self) -> Optional[str]:
|
|
732
733
|
"""
|
|
733
734
|
Additional Cloud Regions for Backup Replication.
|
|
734
735
|
"""
|
|
735
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
736
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
737
|
-
|
|
738
736
|
return pulumi.get(self, "additional_backup_regions")
|
|
739
737
|
|
|
740
738
|
@property
|
|
@@ -787,13 +785,11 @@ class CassandraCassandraUserConfig(dict):
|
|
|
787
785
|
|
|
788
786
|
@property
|
|
789
787
|
@pulumi.getter(name="ipFilters")
|
|
788
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
790
789
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
791
790
|
"""
|
|
792
791
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
793
792
|
"""
|
|
794
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
795
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
796
|
-
|
|
797
793
|
return pulumi.get(self, "ip_filters")
|
|
798
794
|
|
|
799
795
|
@property
|
|
@@ -1316,13 +1312,11 @@ class ClickhouseClickhouseUserConfig(dict):
|
|
|
1316
1312
|
|
|
1317
1313
|
@property
|
|
1318
1314
|
@pulumi.getter(name="additionalBackupRegions")
|
|
1315
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
1319
1316
|
def additional_backup_regions(self) -> Optional[str]:
|
|
1320
1317
|
"""
|
|
1321
1318
|
Additional Cloud Regions for Backup Replication.
|
|
1322
1319
|
"""
|
|
1323
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
1324
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
1325
|
-
|
|
1326
1320
|
return pulumi.get(self, "additional_backup_regions")
|
|
1327
1321
|
|
|
1328
1322
|
@property
|
|
@@ -1343,13 +1337,11 @@ class ClickhouseClickhouseUserConfig(dict):
|
|
|
1343
1337
|
|
|
1344
1338
|
@property
|
|
1345
1339
|
@pulumi.getter(name="ipFilters")
|
|
1340
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
1346
1341
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
1347
1342
|
"""
|
|
1348
1343
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
1349
1344
|
"""
|
|
1350
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
1351
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
1352
|
-
|
|
1353
1345
|
return pulumi.get(self, "ip_filters")
|
|
1354
1346
|
|
|
1355
1347
|
@property
|
|
@@ -2327,13 +2319,11 @@ class DragonflyDragonflyUserConfig(dict):
|
|
|
2327
2319
|
|
|
2328
2320
|
@property
|
|
2329
2321
|
@pulumi.getter(name="ipFilters")
|
|
2322
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
2330
2323
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
2331
2324
|
"""
|
|
2332
2325
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
2333
2326
|
"""
|
|
2334
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
2335
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
2336
|
-
|
|
2337
2327
|
return pulumi.get(self, "ip_filters")
|
|
2338
2328
|
|
|
2339
2329
|
@property
|
|
@@ -3078,13 +3068,11 @@ class FlinkFlinkUserConfig(dict):
|
|
|
3078
3068
|
|
|
3079
3069
|
@property
|
|
3080
3070
|
@pulumi.getter(name="additionalBackupRegions")
|
|
3071
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
3081
3072
|
def additional_backup_regions(self) -> Optional[str]:
|
|
3082
3073
|
"""
|
|
3083
3074
|
Additional Cloud Regions for Backup Replication.
|
|
3084
3075
|
"""
|
|
3085
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
3086
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
3087
|
-
|
|
3088
3076
|
return pulumi.get(self, "additional_backup_regions")
|
|
3089
3077
|
|
|
3090
3078
|
@property
|
|
@@ -3113,13 +3101,11 @@ class FlinkFlinkUserConfig(dict):
|
|
|
3113
3101
|
|
|
3114
3102
|
@property
|
|
3115
3103
|
@pulumi.getter(name="ipFilters")
|
|
3104
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
3116
3105
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
3117
3106
|
"""
|
|
3118
3107
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
3119
3108
|
"""
|
|
3120
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
3121
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
3122
|
-
|
|
3123
3109
|
return pulumi.get(self, "ip_filters")
|
|
3124
3110
|
|
|
3125
3111
|
@property
|
|
@@ -3935,13 +3921,11 @@ class GrafanaGrafanaUserConfig(dict):
|
|
|
3935
3921
|
|
|
3936
3922
|
@property
|
|
3937
3923
|
@pulumi.getter(name="ipFilters")
|
|
3924
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
3938
3925
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
3939
3926
|
"""
|
|
3940
3927
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
3941
3928
|
"""
|
|
3942
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
3943
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
3944
|
-
|
|
3945
3929
|
return pulumi.get(self, "ip_filters")
|
|
3946
3930
|
|
|
3947
3931
|
@property
|
|
@@ -5468,13 +5452,11 @@ class InfluxDbInfluxdbUserConfig(dict):
|
|
|
5468
5452
|
|
|
5469
5453
|
@property
|
|
5470
5454
|
@pulumi.getter(name="additionalBackupRegions")
|
|
5455
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
5471
5456
|
def additional_backup_regions(self) -> Optional[str]:
|
|
5472
5457
|
"""
|
|
5473
5458
|
Additional Cloud Regions for Backup Replication.
|
|
5474
5459
|
"""
|
|
5475
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
5476
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
5477
|
-
|
|
5478
5460
|
return pulumi.get(self, "additional_backup_regions")
|
|
5479
5461
|
|
|
5480
5462
|
@property
|
|
@@ -5511,13 +5493,11 @@ class InfluxDbInfluxdbUserConfig(dict):
|
|
|
5511
5493
|
|
|
5512
5494
|
@property
|
|
5513
5495
|
@pulumi.getter(name="ipFilters")
|
|
5496
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
5514
5497
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
5515
5498
|
"""
|
|
5516
5499
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
5517
5500
|
"""
|
|
5518
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
5519
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
5520
|
-
|
|
5521
5501
|
return pulumi.get(self, "ip_filters")
|
|
5522
5502
|
|
|
5523
5503
|
@property
|
|
@@ -6214,13 +6194,11 @@ class KafkaConnectKafkaConnectUserConfig(dict):
|
|
|
6214
6194
|
|
|
6215
6195
|
@property
|
|
6216
6196
|
@pulumi.getter(name="additionalBackupRegions")
|
|
6197
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
6217
6198
|
def additional_backup_regions(self) -> Optional[str]:
|
|
6218
6199
|
"""
|
|
6219
6200
|
Additional Cloud Regions for Backup Replication.
|
|
6220
6201
|
"""
|
|
6221
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
6222
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
6223
|
-
|
|
6224
6202
|
return pulumi.get(self, "additional_backup_regions")
|
|
6225
6203
|
|
|
6226
6204
|
@property
|
|
@@ -6241,13 +6219,11 @@ class KafkaConnectKafkaConnectUserConfig(dict):
|
|
|
6241
6219
|
|
|
6242
6220
|
@property
|
|
6243
6221
|
@pulumi.getter(name="ipFilters")
|
|
6222
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
6244
6223
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
6245
6224
|
"""
|
|
6246
6225
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
6247
6226
|
"""
|
|
6248
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
6249
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
6250
|
-
|
|
6251
6227
|
return pulumi.get(self, "ip_filters")
|
|
6252
6228
|
|
|
6253
6229
|
@property
|
|
@@ -7114,13 +7090,11 @@ class KafkaKafkaUserConfig(dict):
|
|
|
7114
7090
|
|
|
7115
7091
|
@property
|
|
7116
7092
|
@pulumi.getter(name="additionalBackupRegions")
|
|
7093
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
7117
7094
|
def additional_backup_regions(self) -> Optional[str]:
|
|
7118
7095
|
"""
|
|
7119
7096
|
Additional Cloud Regions for Backup Replication.
|
|
7120
7097
|
"""
|
|
7121
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
7122
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
7123
|
-
|
|
7124
7098
|
return pulumi.get(self, "additional_backup_regions")
|
|
7125
7099
|
|
|
7126
7100
|
@property
|
|
@@ -7157,13 +7131,11 @@ class KafkaKafkaUserConfig(dict):
|
|
|
7157
7131
|
|
|
7158
7132
|
@property
|
|
7159
7133
|
@pulumi.getter(name="ipFilters")
|
|
7134
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
7160
7135
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
7161
7136
|
"""
|
|
7162
7137
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
7163
7138
|
"""
|
|
7164
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
7165
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
7166
|
-
|
|
7167
7139
|
return pulumi.get(self, "ip_filters")
|
|
7168
7140
|
|
|
7169
7141
|
@property
|
|
@@ -8797,13 +8769,11 @@ class KafkaKafkaUserConfigTieredStorage(dict):
|
|
|
8797
8769
|
|
|
8798
8770
|
@property
|
|
8799
8771
|
@pulumi.getter(name="localCache")
|
|
8772
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
8800
8773
|
def local_cache(self) -> Optional['outputs.KafkaKafkaUserConfigTieredStorageLocalCache']:
|
|
8801
8774
|
"""
|
|
8802
8775
|
Local cache configuration
|
|
8803
8776
|
"""
|
|
8804
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
8805
|
-
pulumi.log.warn("""local_cache is deprecated: This property is deprecated.""")
|
|
8806
|
-
|
|
8807
8777
|
return pulumi.get(self, "local_cache")
|
|
8808
8778
|
|
|
8809
8779
|
|
|
@@ -8819,13 +8789,11 @@ class KafkaKafkaUserConfigTieredStorageLocalCache(dict):
|
|
|
8819
8789
|
|
|
8820
8790
|
@property
|
|
8821
8791
|
@pulumi.getter
|
|
8792
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
8822
8793
|
def size(self) -> Optional[int]:
|
|
8823
8794
|
"""
|
|
8824
8795
|
Local cache size in bytes.
|
|
8825
8796
|
"""
|
|
8826
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
8827
|
-
pulumi.log.warn("""size is deprecated: This property is deprecated.""")
|
|
8828
|
-
|
|
8829
8797
|
return pulumi.get(self, "size")
|
|
8830
8798
|
|
|
8831
8799
|
|
|
@@ -9016,13 +8984,11 @@ class KafkaMirrorMakerKafkaMirrormakerUserConfig(dict):
|
|
|
9016
8984
|
|
|
9017
8985
|
@property
|
|
9018
8986
|
@pulumi.getter(name="additionalBackupRegions")
|
|
8987
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
9019
8988
|
def additional_backup_regions(self) -> Optional[str]:
|
|
9020
8989
|
"""
|
|
9021
8990
|
Additional Cloud Regions for Backup Replication.
|
|
9022
8991
|
"""
|
|
9023
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
9024
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
9025
|
-
|
|
9026
8992
|
return pulumi.get(self, "additional_backup_regions")
|
|
9027
8993
|
|
|
9028
8994
|
@property
|
|
@@ -9043,13 +9009,11 @@ class KafkaMirrorMakerKafkaMirrormakerUserConfig(dict):
|
|
|
9043
9009
|
|
|
9044
9010
|
@property
|
|
9045
9011
|
@pulumi.getter(name="ipFilters")
|
|
9012
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
9046
9013
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
9047
9014
|
"""
|
|
9048
9015
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
9049
9016
|
"""
|
|
9050
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
9051
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
9052
|
-
|
|
9053
9017
|
return pulumi.get(self, "ip_filters")
|
|
9054
9018
|
|
|
9055
9019
|
@property
|
|
@@ -9890,13 +9854,11 @@ class KafkaTopicConfig(dict):
|
|
|
9890
9854
|
|
|
9891
9855
|
@property
|
|
9892
9856
|
@pulumi.getter(name="uncleanLeaderElectionEnable")
|
|
9857
|
+
@_utilities.deprecated("""This field is deprecated and no longer functional.""")
|
|
9893
9858
|
def unclean_leader_election_enable(self) -> Optional[bool]:
|
|
9894
9859
|
"""
|
|
9895
9860
|
unclean.leader.election.enable value; This field is deprecated and no longer functional.
|
|
9896
9861
|
"""
|
|
9897
|
-
warnings.warn("""This field is deprecated and no longer functional.""", DeprecationWarning)
|
|
9898
|
-
pulumi.log.warn("""unclean_leader_election_enable is deprecated: This field is deprecated and no longer functional.""")
|
|
9899
|
-
|
|
9900
9862
|
return pulumi.get(self, "unclean_leader_election_enable")
|
|
9901
9863
|
|
|
9902
9864
|
|
|
@@ -10195,13 +10157,11 @@ class M3AggregatorM3aggregatorUserConfig(dict):
|
|
|
10195
10157
|
|
|
10196
10158
|
@property
|
|
10197
10159
|
@pulumi.getter(name="ipFilters")
|
|
10160
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
10198
10161
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
10199
10162
|
"""
|
|
10200
10163
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10201
10164
|
"""
|
|
10202
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
10203
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
10204
|
-
|
|
10205
10165
|
return pulumi.get(self, "ip_filters")
|
|
10206
10166
|
|
|
10207
10167
|
@property
|
|
@@ -10743,13 +10703,11 @@ class M3DbM3dbUserConfig(dict):
|
|
|
10743
10703
|
|
|
10744
10704
|
@property
|
|
10745
10705
|
@pulumi.getter(name="ipFilters")
|
|
10706
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
10746
10707
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
10747
10708
|
"""
|
|
10748
10709
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10749
10710
|
"""
|
|
10750
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
10751
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
10752
|
-
|
|
10753
10711
|
return pulumi.get(self, "ip_filters")
|
|
10754
10712
|
|
|
10755
10713
|
@property
|
|
@@ -11434,13 +11392,11 @@ class M3DbM3dbUserConfigRulesMapping(dict):
|
|
|
11434
11392
|
|
|
11435
11393
|
@property
|
|
11436
11394
|
@pulumi.getter
|
|
11395
|
+
@_utilities.deprecated("""Deprecated. Use `namespaces_string` instead.""")
|
|
11437
11396
|
def namespaces(self) -> Optional[Sequence[str]]:
|
|
11438
11397
|
"""
|
|
11439
11398
|
This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
|
|
11440
11399
|
"""
|
|
11441
|
-
warnings.warn("""Deprecated. Use `namespaces_string` instead.""", DeprecationWarning)
|
|
11442
|
-
pulumi.log.warn("""namespaces is deprecated: Deprecated. Use `namespaces_string` instead.""")
|
|
11443
|
-
|
|
11444
11400
|
return pulumi.get(self, "namespaces")
|
|
11445
11401
|
|
|
11446
11402
|
@property
|
|
@@ -12131,13 +12087,11 @@ class MySqlMysqlUserConfig(dict):
|
|
|
12131
12087
|
|
|
12132
12088
|
@property
|
|
12133
12089
|
@pulumi.getter(name="ipFilters")
|
|
12090
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
12134
12091
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
12135
12092
|
"""
|
|
12136
12093
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
12137
12094
|
"""
|
|
12138
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
12139
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
12140
|
-
|
|
12141
12095
|
return pulumi.get(self, "ip_filters")
|
|
12142
12096
|
|
|
12143
12097
|
@property
|
|
@@ -13462,13 +13416,11 @@ class OpenSearchOpensearchUserConfig(dict):
|
|
|
13462
13416
|
|
|
13463
13417
|
@property
|
|
13464
13418
|
@pulumi.getter(name="ipFilters")
|
|
13419
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
13465
13420
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
13466
13421
|
"""
|
|
13467
13422
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
13468
13423
|
"""
|
|
13469
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
13470
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
13471
|
-
|
|
13472
13424
|
return pulumi.get(self, "ip_filters")
|
|
13473
13425
|
|
|
13474
13426
|
@property
|
|
@@ -16101,13 +16053,11 @@ class PgPgUserConfig(dict):
|
|
|
16101
16053
|
|
|
16102
16054
|
@property
|
|
16103
16055
|
@pulumi.getter(name="ipFilters")
|
|
16056
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
16104
16057
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
16105
16058
|
"""
|
|
16106
16059
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
16107
16060
|
"""
|
|
16108
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
16109
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
16110
|
-
|
|
16111
16061
|
return pulumi.get(self, "ip_filters")
|
|
16112
16062
|
|
|
16113
16063
|
@property
|
|
@@ -16128,13 +16078,11 @@ class PgPgUserConfig(dict):
|
|
|
16128
16078
|
|
|
16129
16079
|
@property
|
|
16130
16080
|
@pulumi.getter(name="pgQualstats")
|
|
16081
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
16131
16082
|
def pg_qualstats(self) -> Optional['outputs.PgPgUserConfigPgQualstats']:
|
|
16132
16083
|
"""
|
|
16133
16084
|
System-wide settings for the pg*qualstats extension
|
|
16134
16085
|
"""
|
|
16135
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
16136
|
-
pulumi.log.warn("""pg_qualstats is deprecated: This property is deprecated.""")
|
|
16137
|
-
|
|
16138
16086
|
return pulumi.get(self, "pg_qualstats")
|
|
16139
16087
|
|
|
16140
16088
|
@property
|
|
@@ -17201,57 +17149,47 @@ class PgPgUserConfigPgQualstats(dict):
|
|
|
17201
17149
|
|
|
17202
17150
|
@property
|
|
17203
17151
|
@pulumi.getter
|
|
17152
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
17204
17153
|
def enabled(self) -> Optional[bool]:
|
|
17205
17154
|
"""
|
|
17206
17155
|
Enable / Disable pg_qualstats. The default value is `false`.
|
|
17207
17156
|
"""
|
|
17208
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
17209
|
-
pulumi.log.warn("""enabled is deprecated: This property is deprecated.""")
|
|
17210
|
-
|
|
17211
17157
|
return pulumi.get(self, "enabled")
|
|
17212
17158
|
|
|
17213
17159
|
@property
|
|
17214
17160
|
@pulumi.getter(name="minErrEstimateNum")
|
|
17161
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
17215
17162
|
def min_err_estimate_num(self) -> Optional[int]:
|
|
17216
17163
|
"""
|
|
17217
17164
|
Error estimation num threshold to save quals. The default value is `0`.
|
|
17218
17165
|
"""
|
|
17219
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
17220
|
-
pulumi.log.warn("""min_err_estimate_num is deprecated: This property is deprecated.""")
|
|
17221
|
-
|
|
17222
17166
|
return pulumi.get(self, "min_err_estimate_num")
|
|
17223
17167
|
|
|
17224
17168
|
@property
|
|
17225
17169
|
@pulumi.getter(name="minErrEstimateRatio")
|
|
17170
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
17226
17171
|
def min_err_estimate_ratio(self) -> Optional[int]:
|
|
17227
17172
|
"""
|
|
17228
17173
|
Error estimation ratio threshold to save quals. The default value is `0`.
|
|
17229
17174
|
"""
|
|
17230
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
17231
|
-
pulumi.log.warn("""min_err_estimate_ratio is deprecated: This property is deprecated.""")
|
|
17232
|
-
|
|
17233
17175
|
return pulumi.get(self, "min_err_estimate_ratio")
|
|
17234
17176
|
|
|
17235
17177
|
@property
|
|
17236
17178
|
@pulumi.getter(name="trackConstants")
|
|
17179
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
17237
17180
|
def track_constants(self) -> Optional[bool]:
|
|
17238
17181
|
"""
|
|
17239
17182
|
Enable / Disable pg_qualstats constants tracking. The default value is `true`.
|
|
17240
17183
|
"""
|
|
17241
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
17242
|
-
pulumi.log.warn("""track_constants is deprecated: This property is deprecated.""")
|
|
17243
|
-
|
|
17244
17184
|
return pulumi.get(self, "track_constants")
|
|
17245
17185
|
|
|
17246
17186
|
@property
|
|
17247
17187
|
@pulumi.getter(name="trackPgCatalog")
|
|
17188
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
17248
17189
|
def track_pg_catalog(self) -> Optional[bool]:
|
|
17249
17190
|
"""
|
|
17250
17191
|
Track quals on system catalogs too. The default value is `false`.
|
|
17251
17192
|
"""
|
|
17252
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
17253
|
-
pulumi.log.warn("""track_pg_catalog is deprecated: This property is deprecated.""")
|
|
17254
|
-
|
|
17255
17193
|
return pulumi.get(self, "track_pg_catalog")
|
|
17256
17194
|
|
|
17257
17195
|
|
|
@@ -18333,13 +18271,11 @@ class RedisRedisUserConfig(dict):
|
|
|
18333
18271
|
|
|
18334
18272
|
@property
|
|
18335
18273
|
@pulumi.getter(name="ipFilters")
|
|
18274
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
18336
18275
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
18337
18276
|
"""
|
|
18338
18277
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
18339
18278
|
"""
|
|
18340
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
18341
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
18342
|
-
|
|
18343
18279
|
return pulumi.get(self, "ip_filters")
|
|
18344
18280
|
|
|
18345
18281
|
@property
|
|
@@ -21988,13 +21924,11 @@ class GetCassandaCassandraUserConfigResult(dict):
|
|
|
21988
21924
|
|
|
21989
21925
|
@property
|
|
21990
21926
|
@pulumi.getter(name="additionalBackupRegions")
|
|
21927
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
21991
21928
|
def additional_backup_regions(self) -> Optional[str]:
|
|
21992
21929
|
"""
|
|
21993
21930
|
Additional Cloud Regions for Backup Replication.
|
|
21994
21931
|
"""
|
|
21995
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
21996
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
21997
|
-
|
|
21998
21932
|
return pulumi.get(self, "additional_backup_regions")
|
|
21999
21933
|
|
|
22000
21934
|
@property
|
|
@@ -22047,13 +21981,11 @@ class GetCassandaCassandraUserConfigResult(dict):
|
|
|
22047
21981
|
|
|
22048
21982
|
@property
|
|
22049
21983
|
@pulumi.getter(name="ipFilters")
|
|
21984
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
22050
21985
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
22051
21986
|
"""
|
|
22052
21987
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
22053
21988
|
"""
|
|
22054
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
22055
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
22056
|
-
|
|
22057
21989
|
return pulumi.get(self, "ip_filters")
|
|
22058
21990
|
|
|
22059
21991
|
@property
|
|
@@ -22493,13 +22425,11 @@ class GetCassandraCassandraUserConfigResult(dict):
|
|
|
22493
22425
|
|
|
22494
22426
|
@property
|
|
22495
22427
|
@pulumi.getter(name="additionalBackupRegions")
|
|
22428
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
22496
22429
|
def additional_backup_regions(self) -> Optional[str]:
|
|
22497
22430
|
"""
|
|
22498
22431
|
Additional Cloud Regions for Backup Replication.
|
|
22499
22432
|
"""
|
|
22500
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
22501
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
22502
|
-
|
|
22503
22433
|
return pulumi.get(self, "additional_backup_regions")
|
|
22504
22434
|
|
|
22505
22435
|
@property
|
|
@@ -22552,13 +22482,11 @@ class GetCassandraCassandraUserConfigResult(dict):
|
|
|
22552
22482
|
|
|
22553
22483
|
@property
|
|
22554
22484
|
@pulumi.getter(name="ipFilters")
|
|
22485
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
22555
22486
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
22556
22487
|
"""
|
|
22557
22488
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
22558
22489
|
"""
|
|
22559
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
22560
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
22561
|
-
|
|
22562
22490
|
return pulumi.get(self, "ip_filters")
|
|
22563
22491
|
|
|
22564
22492
|
@property
|
|
@@ -22978,13 +22906,11 @@ class GetClickhouseClickhouseUserConfigResult(dict):
|
|
|
22978
22906
|
|
|
22979
22907
|
@property
|
|
22980
22908
|
@pulumi.getter(name="additionalBackupRegions")
|
|
22909
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
22981
22910
|
def additional_backup_regions(self) -> Optional[str]:
|
|
22982
22911
|
"""
|
|
22983
22912
|
Additional Cloud Regions for Backup Replication.
|
|
22984
22913
|
"""
|
|
22985
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
22986
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
22987
|
-
|
|
22988
22914
|
return pulumi.get(self, "additional_backup_regions")
|
|
22989
22915
|
|
|
22990
22916
|
@property
|
|
@@ -23005,13 +22931,11 @@ class GetClickhouseClickhouseUserConfigResult(dict):
|
|
|
23005
22931
|
|
|
23006
22932
|
@property
|
|
23007
22933
|
@pulumi.getter(name="ipFilters")
|
|
22934
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
23008
22935
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
23009
22936
|
"""
|
|
23010
22937
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
23011
22938
|
"""
|
|
23012
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
23013
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
23014
|
-
|
|
23015
22939
|
return pulumi.get(self, "ip_filters")
|
|
23016
22940
|
|
|
23017
22941
|
@property
|
|
@@ -23691,13 +23615,11 @@ class GetDragonflyDragonflyUserConfigResult(dict):
|
|
|
23691
23615
|
|
|
23692
23616
|
@property
|
|
23693
23617
|
@pulumi.getter(name="ipFilters")
|
|
23618
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
23694
23619
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
23695
23620
|
"""
|
|
23696
23621
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
23697
23622
|
"""
|
|
23698
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
23699
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
23700
|
-
|
|
23701
23623
|
return pulumi.get(self, "ip_filters")
|
|
23702
23624
|
|
|
23703
23625
|
@property
|
|
@@ -24290,13 +24212,11 @@ class GetFlinkFlinkUserConfigResult(dict):
|
|
|
24290
24212
|
|
|
24291
24213
|
@property
|
|
24292
24214
|
@pulumi.getter(name="additionalBackupRegions")
|
|
24215
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
24293
24216
|
def additional_backup_regions(self) -> Optional[str]:
|
|
24294
24217
|
"""
|
|
24295
24218
|
Additional Cloud Regions for Backup Replication.
|
|
24296
24219
|
"""
|
|
24297
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
24298
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
24299
|
-
|
|
24300
24220
|
return pulumi.get(self, "additional_backup_regions")
|
|
24301
24221
|
|
|
24302
24222
|
@property
|
|
@@ -24325,13 +24245,11 @@ class GetFlinkFlinkUserConfigResult(dict):
|
|
|
24325
24245
|
|
|
24326
24246
|
@property
|
|
24327
24247
|
@pulumi.getter(name="ipFilters")
|
|
24248
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
24328
24249
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
24329
24250
|
"""
|
|
24330
24251
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
24331
24252
|
"""
|
|
24332
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
24333
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
24334
|
-
|
|
24335
24253
|
return pulumi.get(self, "ip_filters")
|
|
24336
24254
|
|
|
24337
24255
|
@property
|
|
@@ -25001,13 +24919,11 @@ class GetGrafanaGrafanaUserConfigResult(dict):
|
|
|
25001
24919
|
|
|
25002
24920
|
@property
|
|
25003
24921
|
@pulumi.getter(name="ipFilters")
|
|
24922
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
25004
24923
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
25005
24924
|
"""
|
|
25006
24925
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
25007
24926
|
"""
|
|
25008
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
25009
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
25010
|
-
|
|
25011
24927
|
return pulumi.get(self, "ip_filters")
|
|
25012
24928
|
|
|
25013
24929
|
@property
|
|
@@ -26208,13 +26124,11 @@ class GetInfluxDbInfluxdbUserConfigResult(dict):
|
|
|
26208
26124
|
|
|
26209
26125
|
@property
|
|
26210
26126
|
@pulumi.getter(name="additionalBackupRegions")
|
|
26127
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
26211
26128
|
def additional_backup_regions(self) -> Optional[str]:
|
|
26212
26129
|
"""
|
|
26213
26130
|
Additional Cloud Regions for Backup Replication.
|
|
26214
26131
|
"""
|
|
26215
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
26216
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
26217
|
-
|
|
26218
26132
|
return pulumi.get(self, "additional_backup_regions")
|
|
26219
26133
|
|
|
26220
26134
|
@property
|
|
@@ -26251,13 +26165,11 @@ class GetInfluxDbInfluxdbUserConfigResult(dict):
|
|
|
26251
26165
|
|
|
26252
26166
|
@property
|
|
26253
26167
|
@pulumi.getter(name="ipFilters")
|
|
26168
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
26254
26169
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
26255
26170
|
"""
|
|
26256
26171
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
26257
26172
|
"""
|
|
26258
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
26259
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
26260
|
-
|
|
26261
26173
|
return pulumi.get(self, "ip_filters")
|
|
26262
26174
|
|
|
26263
26175
|
@property
|
|
@@ -26817,13 +26729,11 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
|
|
|
26817
26729
|
|
|
26818
26730
|
@property
|
|
26819
26731
|
@pulumi.getter(name="additionalBackupRegions")
|
|
26732
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
26820
26733
|
def additional_backup_regions(self) -> Optional[str]:
|
|
26821
26734
|
"""
|
|
26822
26735
|
Additional Cloud Regions for Backup Replication.
|
|
26823
26736
|
"""
|
|
26824
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
26825
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
26826
|
-
|
|
26827
26737
|
return pulumi.get(self, "additional_backup_regions")
|
|
26828
26738
|
|
|
26829
26739
|
@property
|
|
@@ -26844,13 +26754,11 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
|
|
|
26844
26754
|
|
|
26845
26755
|
@property
|
|
26846
26756
|
@pulumi.getter(name="ipFilters")
|
|
26757
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
26847
26758
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
26848
26759
|
"""
|
|
26849
26760
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
26850
26761
|
"""
|
|
26851
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
26852
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
26853
|
-
|
|
26854
26762
|
return pulumi.get(self, "ip_filters")
|
|
26855
26763
|
|
|
26856
26764
|
@property
|
|
@@ -27510,13 +27418,11 @@ class GetKafkaKafkaUserConfigResult(dict):
|
|
|
27510
27418
|
|
|
27511
27419
|
@property
|
|
27512
27420
|
@pulumi.getter(name="additionalBackupRegions")
|
|
27421
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
27513
27422
|
def additional_backup_regions(self) -> Optional[str]:
|
|
27514
27423
|
"""
|
|
27515
27424
|
Additional Cloud Regions for Backup Replication.
|
|
27516
27425
|
"""
|
|
27517
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
27518
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
27519
|
-
|
|
27520
27426
|
return pulumi.get(self, "additional_backup_regions")
|
|
27521
27427
|
|
|
27522
27428
|
@property
|
|
@@ -27553,13 +27459,11 @@ class GetKafkaKafkaUserConfigResult(dict):
|
|
|
27553
27459
|
|
|
27554
27460
|
@property
|
|
27555
27461
|
@pulumi.getter(name="ipFilters")
|
|
27462
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
27556
27463
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
27557
27464
|
"""
|
|
27558
27465
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
27559
27466
|
"""
|
|
27560
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
27561
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
27562
|
-
|
|
27563
27467
|
return pulumi.get(self, "ip_filters")
|
|
27564
27468
|
|
|
27565
27469
|
@property
|
|
@@ -28905,13 +28809,11 @@ class GetKafkaKafkaUserConfigTieredStorageResult(dict):
|
|
|
28905
28809
|
|
|
28906
28810
|
@property
|
|
28907
28811
|
@pulumi.getter(name="localCache")
|
|
28812
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
28908
28813
|
def local_cache(self) -> Optional['outputs.GetKafkaKafkaUserConfigTieredStorageLocalCacheResult']:
|
|
28909
28814
|
"""
|
|
28910
28815
|
Local cache configuration
|
|
28911
28816
|
"""
|
|
28912
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
28913
|
-
pulumi.log.warn("""local_cache is deprecated: This property is deprecated.""")
|
|
28914
|
-
|
|
28915
28817
|
return pulumi.get(self, "local_cache")
|
|
28916
28818
|
|
|
28917
28819
|
|
|
@@ -28927,13 +28829,11 @@ class GetKafkaKafkaUserConfigTieredStorageLocalCacheResult(dict):
|
|
|
28927
28829
|
|
|
28928
28830
|
@property
|
|
28929
28831
|
@pulumi.getter
|
|
28832
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
28930
28833
|
def size(self) -> Optional[int]:
|
|
28931
28834
|
"""
|
|
28932
28835
|
Local cache size in bytes.
|
|
28933
28836
|
"""
|
|
28934
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
28935
|
-
pulumi.log.warn("""size is deprecated: This property is deprecated.""")
|
|
28936
|
-
|
|
28937
28837
|
return pulumi.get(self, "size")
|
|
28938
28838
|
|
|
28939
28839
|
|
|
@@ -29068,13 +28968,11 @@ class GetKafkaMirrorMakerKafkaMirrormakerUserConfigResult(dict):
|
|
|
29068
28968
|
|
|
29069
28969
|
@property
|
|
29070
28970
|
@pulumi.getter(name="additionalBackupRegions")
|
|
28971
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
29071
28972
|
def additional_backup_regions(self) -> Optional[str]:
|
|
29072
28973
|
"""
|
|
29073
28974
|
Additional Cloud Regions for Backup Replication.
|
|
29074
28975
|
"""
|
|
29075
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
29076
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
29077
|
-
|
|
29078
28976
|
return pulumi.get(self, "additional_backup_regions")
|
|
29079
28977
|
|
|
29080
28978
|
@property
|
|
@@ -29095,13 +28993,11 @@ class GetKafkaMirrorMakerKafkaMirrormakerUserConfigResult(dict):
|
|
|
29095
28993
|
|
|
29096
28994
|
@property
|
|
29097
28995
|
@pulumi.getter(name="ipFilters")
|
|
28996
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
29098
28997
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
29099
28998
|
"""
|
|
29100
28999
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
29101
29000
|
"""
|
|
29102
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
29103
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
29104
|
-
|
|
29105
29001
|
return pulumi.get(self, "ip_filters")
|
|
29106
29002
|
|
|
29107
29003
|
@property
|
|
@@ -29798,13 +29694,11 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
29798
29694
|
|
|
29799
29695
|
@property
|
|
29800
29696
|
@pulumi.getter(name="uncleanLeaderElectionEnable")
|
|
29697
|
+
@_utilities.deprecated("""This field is deprecated and no longer functional.""")
|
|
29801
29698
|
def unclean_leader_election_enable(self) -> Optional[bool]:
|
|
29802
29699
|
"""
|
|
29803
29700
|
unclean.leader.election.enable value; This field is deprecated and no longer functional.
|
|
29804
29701
|
"""
|
|
29805
|
-
warnings.warn("""This field is deprecated and no longer functional.""", DeprecationWarning)
|
|
29806
|
-
pulumi.log.warn("""unclean_leader_election_enable is deprecated: This field is deprecated and no longer functional.""")
|
|
29807
|
-
|
|
29808
29702
|
return pulumi.get(self, "unclean_leader_election_enable")
|
|
29809
29703
|
|
|
29810
29704
|
|
|
@@ -30026,13 +29920,11 @@ class GetM3AggregatorM3aggregatorUserConfigResult(dict):
|
|
|
30026
29920
|
|
|
30027
29921
|
@property
|
|
30028
29922
|
@pulumi.getter(name="ipFilters")
|
|
29923
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
30029
29924
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
30030
29925
|
"""
|
|
30031
29926
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
30032
29927
|
"""
|
|
30033
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
30034
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
30035
|
-
|
|
30036
29928
|
return pulumi.get(self, "ip_filters")
|
|
30037
29929
|
|
|
30038
29930
|
@property
|
|
@@ -30454,13 +30346,11 @@ class GetM3DbM3dbUserConfigResult(dict):
|
|
|
30454
30346
|
|
|
30455
30347
|
@property
|
|
30456
30348
|
@pulumi.getter(name="ipFilters")
|
|
30349
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
30457
30350
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
30458
30351
|
"""
|
|
30459
30352
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
30460
30353
|
"""
|
|
30461
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
30462
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
30463
|
-
|
|
30464
30354
|
return pulumi.get(self, "ip_filters")
|
|
30465
30355
|
|
|
30466
30356
|
@property
|
|
@@ -31017,13 +30907,11 @@ class GetM3DbM3dbUserConfigRulesMappingResult(dict):
|
|
|
31017
30907
|
|
|
31018
30908
|
@property
|
|
31019
30909
|
@pulumi.getter
|
|
30910
|
+
@_utilities.deprecated("""Deprecated. Use `namespaces_string` instead.""")
|
|
31020
30911
|
def namespaces(self) -> Optional[Sequence[str]]:
|
|
31021
30912
|
"""
|
|
31022
30913
|
This rule will be used to store the metrics in the given namespace(s). If a namespace is target of rules, the global default aggregation will be automatically disabled. Note that specifying filters that match no namespaces whatsoever will be returned as an error. Filter the namespace by glob (=wildcards).
|
|
31023
30914
|
"""
|
|
31024
|
-
warnings.warn("""Deprecated. Use `namespaces_string` instead.""", DeprecationWarning)
|
|
31025
|
-
pulumi.log.warn("""namespaces is deprecated: Deprecated. Use `namespaces_string` instead.""")
|
|
31026
|
-
|
|
31027
30915
|
return pulumi.get(self, "namespaces")
|
|
31028
30916
|
|
|
31029
30917
|
@property
|
|
@@ -31568,13 +31456,11 @@ class GetMySqlMysqlUserConfigResult(dict):
|
|
|
31568
31456
|
|
|
31569
31457
|
@property
|
|
31570
31458
|
@pulumi.getter(name="ipFilters")
|
|
31459
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
31571
31460
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
31572
31461
|
"""
|
|
31573
31462
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
31574
31463
|
"""
|
|
31575
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
31576
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
31577
|
-
|
|
31578
31464
|
return pulumi.get(self, "ip_filters")
|
|
31579
31465
|
|
|
31580
31466
|
@property
|
|
@@ -32682,13 +32568,11 @@ class GetOpenSearchOpensearchUserConfigResult(dict):
|
|
|
32682
32568
|
|
|
32683
32569
|
@property
|
|
32684
32570
|
@pulumi.getter(name="ipFilters")
|
|
32571
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
32685
32572
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
32686
32573
|
"""
|
|
32687
32574
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
32688
32575
|
"""
|
|
32689
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
32690
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
32691
|
-
|
|
32692
32576
|
return pulumi.get(self, "ip_filters")
|
|
32693
32577
|
|
|
32694
32578
|
@property
|
|
@@ -34645,13 +34529,11 @@ class GetPgPgUserConfigResult(dict):
|
|
|
34645
34529
|
|
|
34646
34530
|
@property
|
|
34647
34531
|
@pulumi.getter(name="ipFilters")
|
|
34532
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
34648
34533
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
34649
34534
|
"""
|
|
34650
34535
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
34651
34536
|
"""
|
|
34652
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
34653
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
34654
|
-
|
|
34655
34537
|
return pulumi.get(self, "ip_filters")
|
|
34656
34538
|
|
|
34657
34539
|
@property
|
|
@@ -34672,13 +34554,11 @@ class GetPgPgUserConfigResult(dict):
|
|
|
34672
34554
|
|
|
34673
34555
|
@property
|
|
34674
34556
|
@pulumi.getter(name="pgQualstats")
|
|
34557
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
34675
34558
|
def pg_qualstats(self) -> Optional['outputs.GetPgPgUserConfigPgQualstatsResult']:
|
|
34676
34559
|
"""
|
|
34677
34560
|
System-wide settings for the pg_qualstats extension
|
|
34678
34561
|
"""
|
|
34679
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
34680
|
-
pulumi.log.warn("""pg_qualstats is deprecated: This property is deprecated.""")
|
|
34681
|
-
|
|
34682
34562
|
return pulumi.get(self, "pg_qualstats")
|
|
34683
34563
|
|
|
34684
34564
|
@property
|
|
@@ -35596,57 +35476,47 @@ class GetPgPgUserConfigPgQualstatsResult(dict):
|
|
|
35596
35476
|
|
|
35597
35477
|
@property
|
|
35598
35478
|
@pulumi.getter
|
|
35479
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
35599
35480
|
def enabled(self) -> Optional[bool]:
|
|
35600
35481
|
"""
|
|
35601
35482
|
Enable / Disable pg_qualstats. The default value is `false`.
|
|
35602
35483
|
"""
|
|
35603
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
35604
|
-
pulumi.log.warn("""enabled is deprecated: This property is deprecated.""")
|
|
35605
|
-
|
|
35606
35484
|
return pulumi.get(self, "enabled")
|
|
35607
35485
|
|
|
35608
35486
|
@property
|
|
35609
35487
|
@pulumi.getter(name="minErrEstimateNum")
|
|
35488
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
35610
35489
|
def min_err_estimate_num(self) -> Optional[int]:
|
|
35611
35490
|
"""
|
|
35612
35491
|
Error estimation num threshold to save quals. The default value is `0`.
|
|
35613
35492
|
"""
|
|
35614
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
35615
|
-
pulumi.log.warn("""min_err_estimate_num is deprecated: This property is deprecated.""")
|
|
35616
|
-
|
|
35617
35493
|
return pulumi.get(self, "min_err_estimate_num")
|
|
35618
35494
|
|
|
35619
35495
|
@property
|
|
35620
35496
|
@pulumi.getter(name="minErrEstimateRatio")
|
|
35497
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
35621
35498
|
def min_err_estimate_ratio(self) -> Optional[int]:
|
|
35622
35499
|
"""
|
|
35623
35500
|
Error estimation ratio threshold to save quals. The default value is `0`.
|
|
35624
35501
|
"""
|
|
35625
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
35626
|
-
pulumi.log.warn("""min_err_estimate_ratio is deprecated: This property is deprecated.""")
|
|
35627
|
-
|
|
35628
35502
|
return pulumi.get(self, "min_err_estimate_ratio")
|
|
35629
35503
|
|
|
35630
35504
|
@property
|
|
35631
35505
|
@pulumi.getter(name="trackConstants")
|
|
35506
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
35632
35507
|
def track_constants(self) -> Optional[bool]:
|
|
35633
35508
|
"""
|
|
35634
35509
|
Enable / Disable pg_qualstats constants tracking. The default value is `true`.
|
|
35635
35510
|
"""
|
|
35636
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
35637
|
-
pulumi.log.warn("""track_constants is deprecated: This property is deprecated.""")
|
|
35638
|
-
|
|
35639
35511
|
return pulumi.get(self, "track_constants")
|
|
35640
35512
|
|
|
35641
35513
|
@property
|
|
35642
35514
|
@pulumi.getter(name="trackPgCatalog")
|
|
35515
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
35643
35516
|
def track_pg_catalog(self) -> Optional[bool]:
|
|
35644
35517
|
"""
|
|
35645
35518
|
Track quals on system catalogs too. The default value is `false`.
|
|
35646
35519
|
"""
|
|
35647
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
35648
|
-
pulumi.log.warn("""track_pg_catalog is deprecated: This property is deprecated.""")
|
|
35649
|
-
|
|
35650
35520
|
return pulumi.get(self, "track_pg_catalog")
|
|
35651
35521
|
|
|
35652
35522
|
|
|
@@ -36490,13 +36360,11 @@ class GetRedisRedisUserConfigResult(dict):
|
|
|
36490
36360
|
|
|
36491
36361
|
@property
|
|
36492
36362
|
@pulumi.getter(name="ipFilters")
|
|
36363
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
36493
36364
|
def ip_filters(self) -> Optional[Sequence[str]]:
|
|
36494
36365
|
"""
|
|
36495
36366
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
36496
36367
|
"""
|
|
36497
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
36498
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
36499
|
-
|
|
36500
36368
|
return pulumi.get(self, "ip_filters")
|
|
36501
36369
|
|
|
36502
36370
|
@property
|