pulumi-aiven 6.18.0a1719033317__py3-none-any.whl → 6.18.0a1719260539__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.0a1719260539.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.18.0a1719033317.dist-info → pulumi_aiven-6.18.0a1719260539.dist-info}/RECORD +30 -30
- {pulumi_aiven-6.18.0a1719033317.dist-info → pulumi_aiven-6.18.0a1719260539.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.18.0a1719033317.dist-info → pulumi_aiven-6.18.0a1719260539.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py
CHANGED
|
@@ -443,13 +443,11 @@ class CassandraCassandraUserConfigArgs:
|
|
|
443
443
|
|
|
444
444
|
@property
|
|
445
445
|
@pulumi.getter(name="additionalBackupRegions")
|
|
446
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
446
447
|
def additional_backup_regions(self) -> Optional[pulumi.Input[str]]:
|
|
447
448
|
"""
|
|
448
449
|
Additional Cloud Regions for Backup Replication.
|
|
449
450
|
"""
|
|
450
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
451
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
452
|
-
|
|
453
451
|
return pulumi.get(self, "additional_backup_regions")
|
|
454
452
|
|
|
455
453
|
@additional_backup_regions.setter
|
|
@@ -530,13 +528,11 @@ class CassandraCassandraUserConfigArgs:
|
|
|
530
528
|
|
|
531
529
|
@property
|
|
532
530
|
@pulumi.getter(name="ipFilters")
|
|
531
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
533
532
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
534
533
|
"""
|
|
535
534
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
536
535
|
"""
|
|
537
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
538
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
539
|
-
|
|
540
536
|
return pulumi.get(self, "ip_filters")
|
|
541
537
|
|
|
542
538
|
@ip_filters.setter
|
|
@@ -1091,13 +1087,11 @@ class ClickhouseClickhouseUserConfigArgs:
|
|
|
1091
1087
|
|
|
1092
1088
|
@property
|
|
1093
1089
|
@pulumi.getter(name="additionalBackupRegions")
|
|
1090
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
1094
1091
|
def additional_backup_regions(self) -> Optional[pulumi.Input[str]]:
|
|
1095
1092
|
"""
|
|
1096
1093
|
Additional Cloud Regions for Backup Replication.
|
|
1097
1094
|
"""
|
|
1098
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
1099
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
1100
|
-
|
|
1101
1095
|
return pulumi.get(self, "additional_backup_regions")
|
|
1102
1096
|
|
|
1103
1097
|
@additional_backup_regions.setter
|
|
@@ -1130,13 +1124,11 @@ class ClickhouseClickhouseUserConfigArgs:
|
|
|
1130
1124
|
|
|
1131
1125
|
@property
|
|
1132
1126
|
@pulumi.getter(name="ipFilters")
|
|
1127
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
1133
1128
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1134
1129
|
"""
|
|
1135
1130
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
1136
1131
|
"""
|
|
1137
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
1138
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
1139
|
-
|
|
1140
1132
|
return pulumi.get(self, "ip_filters")
|
|
1141
1133
|
|
|
1142
1134
|
@ip_filters.setter
|
|
@@ -2156,13 +2148,11 @@ class DragonflyDragonflyUserConfigArgs:
|
|
|
2156
2148
|
|
|
2157
2149
|
@property
|
|
2158
2150
|
@pulumi.getter(name="ipFilters")
|
|
2151
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
2159
2152
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2160
2153
|
"""
|
|
2161
2154
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
2162
2155
|
"""
|
|
2163
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
2164
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
2165
|
-
|
|
2166
2156
|
return pulumi.get(self, "ip_filters")
|
|
2167
2157
|
|
|
2168
2158
|
@ip_filters.setter
|
|
@@ -2946,13 +2936,11 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2946
2936
|
|
|
2947
2937
|
@property
|
|
2948
2938
|
@pulumi.getter(name="additionalBackupRegions")
|
|
2939
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
2949
2940
|
def additional_backup_regions(self) -> Optional[pulumi.Input[str]]:
|
|
2950
2941
|
"""
|
|
2951
2942
|
Additional Cloud Regions for Backup Replication.
|
|
2952
2943
|
"""
|
|
2953
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
2954
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
2955
|
-
|
|
2956
2944
|
return pulumi.get(self, "additional_backup_regions")
|
|
2957
2945
|
|
|
2958
2946
|
@additional_backup_regions.setter
|
|
@@ -2997,13 +2985,11 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2997
2985
|
|
|
2998
2986
|
@property
|
|
2999
2987
|
@pulumi.getter(name="ipFilters")
|
|
2988
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
3000
2989
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3001
2990
|
"""
|
|
3002
2991
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
3003
2992
|
"""
|
|
3004
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
3005
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
3006
|
-
|
|
3007
2993
|
return pulumi.get(self, "ip_filters")
|
|
3008
2994
|
|
|
3009
2995
|
@ip_filters.setter
|
|
@@ -3881,13 +3867,11 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
3881
3867
|
|
|
3882
3868
|
@property
|
|
3883
3869
|
@pulumi.getter(name="ipFilters")
|
|
3870
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
3884
3871
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3885
3872
|
"""
|
|
3886
3873
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
3887
3874
|
"""
|
|
3888
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
3889
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
3890
|
-
|
|
3891
3875
|
return pulumi.get(self, "ip_filters")
|
|
3892
3876
|
|
|
3893
3877
|
@ip_filters.setter
|
|
@@ -5482,13 +5466,11 @@ class InfluxDbInfluxdbUserConfigArgs:
|
|
|
5482
5466
|
|
|
5483
5467
|
@property
|
|
5484
5468
|
@pulumi.getter(name="additionalBackupRegions")
|
|
5469
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
5485
5470
|
def additional_backup_regions(self) -> Optional[pulumi.Input[str]]:
|
|
5486
5471
|
"""
|
|
5487
5472
|
Additional Cloud Regions for Backup Replication.
|
|
5488
5473
|
"""
|
|
5489
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
5490
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
5491
|
-
|
|
5492
5474
|
return pulumi.get(self, "additional_backup_regions")
|
|
5493
5475
|
|
|
5494
5476
|
@additional_backup_regions.setter
|
|
@@ -5545,13 +5527,11 @@ class InfluxDbInfluxdbUserConfigArgs:
|
|
|
5545
5527
|
|
|
5546
5528
|
@property
|
|
5547
5529
|
@pulumi.getter(name="ipFilters")
|
|
5530
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
5548
5531
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
5549
5532
|
"""
|
|
5550
5533
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
5551
5534
|
"""
|
|
5552
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
5553
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
5554
|
-
|
|
5555
5535
|
return pulumi.get(self, "ip_filters")
|
|
5556
5536
|
|
|
5557
5537
|
@ip_filters.setter
|
|
@@ -6301,13 +6281,11 @@ class KafkaConnectKafkaConnectUserConfigArgs:
|
|
|
6301
6281
|
|
|
6302
6282
|
@property
|
|
6303
6283
|
@pulumi.getter(name="additionalBackupRegions")
|
|
6284
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
6304
6285
|
def additional_backup_regions(self) -> Optional[pulumi.Input[str]]:
|
|
6305
6286
|
"""
|
|
6306
6287
|
Additional Cloud Regions for Backup Replication.
|
|
6307
6288
|
"""
|
|
6308
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
6309
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
6310
|
-
|
|
6311
6289
|
return pulumi.get(self, "additional_backup_regions")
|
|
6312
6290
|
|
|
6313
6291
|
@additional_backup_regions.setter
|
|
@@ -6340,13 +6318,11 @@ class KafkaConnectKafkaConnectUserConfigArgs:
|
|
|
6340
6318
|
|
|
6341
6319
|
@property
|
|
6342
6320
|
@pulumi.getter(name="ipFilters")
|
|
6321
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
6343
6322
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
6344
6323
|
"""
|
|
6345
6324
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
6346
6325
|
"""
|
|
6347
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
6348
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
6349
|
-
|
|
6350
6326
|
return pulumi.get(self, "ip_filters")
|
|
6351
6327
|
|
|
6352
6328
|
@ip_filters.setter
|
|
@@ -7200,13 +7176,11 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7200
7176
|
|
|
7201
7177
|
@property
|
|
7202
7178
|
@pulumi.getter(name="additionalBackupRegions")
|
|
7179
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
7203
7180
|
def additional_backup_regions(self) -> Optional[pulumi.Input[str]]:
|
|
7204
7181
|
"""
|
|
7205
7182
|
Additional Cloud Regions for Backup Replication.
|
|
7206
7183
|
"""
|
|
7207
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
7208
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
7209
|
-
|
|
7210
7184
|
return pulumi.get(self, "additional_backup_regions")
|
|
7211
7185
|
|
|
7212
7186
|
@additional_backup_regions.setter
|
|
@@ -7263,13 +7237,11 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7263
7237
|
|
|
7264
7238
|
@property
|
|
7265
7239
|
@pulumi.getter(name="ipFilters")
|
|
7240
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
7266
7241
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
7267
7242
|
"""
|
|
7268
7243
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
7269
7244
|
"""
|
|
7270
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
7271
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
7272
|
-
|
|
7273
7245
|
return pulumi.get(self, "ip_filters")
|
|
7274
7246
|
|
|
7275
7247
|
@ip_filters.setter
|
|
@@ -9066,13 +9038,11 @@ class KafkaKafkaUserConfigTieredStorageArgs:
|
|
|
9066
9038
|
|
|
9067
9039
|
@property
|
|
9068
9040
|
@pulumi.getter(name="localCache")
|
|
9041
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
9069
9042
|
def local_cache(self) -> Optional[pulumi.Input['KafkaKafkaUserConfigTieredStorageLocalCacheArgs']]:
|
|
9070
9043
|
"""
|
|
9071
9044
|
Local cache configuration
|
|
9072
9045
|
"""
|
|
9073
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
9074
|
-
pulumi.log.warn("""local_cache is deprecated: This property is deprecated.""")
|
|
9075
|
-
|
|
9076
9046
|
return pulumi.get(self, "local_cache")
|
|
9077
9047
|
|
|
9078
9048
|
@local_cache.setter
|
|
@@ -9095,13 +9065,11 @@ class KafkaKafkaUserConfigTieredStorageLocalCacheArgs:
|
|
|
9095
9065
|
|
|
9096
9066
|
@property
|
|
9097
9067
|
@pulumi.getter
|
|
9068
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
9098
9069
|
def size(self) -> Optional[pulumi.Input[int]]:
|
|
9099
9070
|
"""
|
|
9100
9071
|
Local cache size in bytes.
|
|
9101
9072
|
"""
|
|
9102
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
9103
|
-
pulumi.log.warn("""size is deprecated: This property is deprecated.""")
|
|
9104
|
-
|
|
9105
9073
|
return pulumi.get(self, "size")
|
|
9106
9074
|
|
|
9107
9075
|
@size.setter
|
|
@@ -9286,13 +9254,11 @@ class KafkaMirrorMakerKafkaMirrormakerUserConfigArgs:
|
|
|
9286
9254
|
|
|
9287
9255
|
@property
|
|
9288
9256
|
@pulumi.getter(name="additionalBackupRegions")
|
|
9257
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
9289
9258
|
def additional_backup_regions(self) -> Optional[pulumi.Input[str]]:
|
|
9290
9259
|
"""
|
|
9291
9260
|
Additional Cloud Regions for Backup Replication.
|
|
9292
9261
|
"""
|
|
9293
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
9294
|
-
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
9295
|
-
|
|
9296
9262
|
return pulumi.get(self, "additional_backup_regions")
|
|
9297
9263
|
|
|
9298
9264
|
@additional_backup_regions.setter
|
|
@@ -9325,13 +9291,11 @@ class KafkaMirrorMakerKafkaMirrormakerUserConfigArgs:
|
|
|
9325
9291
|
|
|
9326
9292
|
@property
|
|
9327
9293
|
@pulumi.getter(name="ipFilters")
|
|
9294
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
9328
9295
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
9329
9296
|
"""
|
|
9330
9297
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
9331
9298
|
"""
|
|
9332
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
9333
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
9334
|
-
|
|
9335
9299
|
return pulumi.get(self, "ip_filters")
|
|
9336
9300
|
|
|
9337
9301
|
@ip_filters.setter
|
|
@@ -10251,13 +10215,11 @@ class KafkaTopicConfigArgs:
|
|
|
10251
10215
|
|
|
10252
10216
|
@property
|
|
10253
10217
|
@pulumi.getter(name="uncleanLeaderElectionEnable")
|
|
10218
|
+
@_utilities.deprecated("""This field is deprecated and no longer functional.""")
|
|
10254
10219
|
def unclean_leader_election_enable(self) -> Optional[pulumi.Input[bool]]:
|
|
10255
10220
|
"""
|
|
10256
10221
|
unclean.leader.election.enable value; This field is deprecated and no longer functional.
|
|
10257
10222
|
"""
|
|
10258
|
-
warnings.warn("""This field is deprecated and no longer functional.""", DeprecationWarning)
|
|
10259
|
-
pulumi.log.warn("""unclean_leader_election_enable is deprecated: This field is deprecated and no longer functional.""")
|
|
10260
|
-
|
|
10261
10223
|
return pulumi.get(self, "unclean_leader_election_enable")
|
|
10262
10224
|
|
|
10263
10225
|
@unclean_leader_election_enable.setter
|
|
@@ -10556,13 +10518,11 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10556
10518
|
|
|
10557
10519
|
@property
|
|
10558
10520
|
@pulumi.getter(name="ipFilters")
|
|
10521
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
10559
10522
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
10560
10523
|
"""
|
|
10561
10524
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10562
10525
|
"""
|
|
10563
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
10564
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
10565
|
-
|
|
10566
10526
|
return pulumi.get(self, "ip_filters")
|
|
10567
10527
|
|
|
10568
10528
|
@ip_filters.setter
|
|
@@ -11121,13 +11081,11 @@ class M3DbM3dbUserConfigArgs:
|
|
|
11121
11081
|
|
|
11122
11082
|
@property
|
|
11123
11083
|
@pulumi.getter(name="ipFilters")
|
|
11084
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
11124
11085
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
11125
11086
|
"""
|
|
11126
11087
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
11127
11088
|
"""
|
|
11128
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
11129
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
11130
|
-
|
|
11131
11089
|
return pulumi.get(self, "ip_filters")
|
|
11132
11090
|
|
|
11133
11091
|
@ip_filters.setter
|
|
@@ -11863,13 +11821,11 @@ class M3DbM3dbUserConfigRulesMappingArgs:
|
|
|
11863
11821
|
|
|
11864
11822
|
@property
|
|
11865
11823
|
@pulumi.getter
|
|
11824
|
+
@_utilities.deprecated("""Deprecated. Use `namespaces_string` instead.""")
|
|
11866
11825
|
def namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
11867
11826
|
"""
|
|
11868
11827
|
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).
|
|
11869
11828
|
"""
|
|
11870
|
-
warnings.warn("""Deprecated. Use `namespaces_string` instead.""", DeprecationWarning)
|
|
11871
|
-
pulumi.log.warn("""namespaces is deprecated: Deprecated. Use `namespaces_string` instead.""")
|
|
11872
|
-
|
|
11873
11829
|
return pulumi.get(self, "namespaces")
|
|
11874
11830
|
|
|
11875
11831
|
@namespaces.setter
|
|
@@ -12596,13 +12552,11 @@ class MySqlMysqlUserConfigArgs:
|
|
|
12596
12552
|
|
|
12597
12553
|
@property
|
|
12598
12554
|
@pulumi.getter(name="ipFilters")
|
|
12555
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
12599
12556
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
12600
12557
|
"""
|
|
12601
12558
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
12602
12559
|
"""
|
|
12603
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
12604
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
12605
|
-
|
|
12606
12560
|
return pulumi.get(self, "ip_filters")
|
|
12607
12561
|
|
|
12608
12562
|
@ip_filters.setter
|
|
@@ -14070,13 +14024,11 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
14070
14024
|
|
|
14071
14025
|
@property
|
|
14072
14026
|
@pulumi.getter(name="ipFilters")
|
|
14027
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
14073
14028
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
14074
14029
|
"""
|
|
14075
14030
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
14076
14031
|
"""
|
|
14077
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
14078
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
14079
|
-
|
|
14080
14032
|
return pulumi.get(self, "ip_filters")
|
|
14081
14033
|
|
|
14082
14034
|
@ip_filters.setter
|
|
@@ -16892,13 +16844,11 @@ class PgPgUserConfigArgs:
|
|
|
16892
16844
|
|
|
16893
16845
|
@property
|
|
16894
16846
|
@pulumi.getter(name="ipFilters")
|
|
16847
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
16895
16848
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
16896
16849
|
"""
|
|
16897
16850
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
16898
16851
|
"""
|
|
16899
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
16900
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
16901
|
-
|
|
16902
16852
|
return pulumi.get(self, "ip_filters")
|
|
16903
16853
|
|
|
16904
16854
|
@ip_filters.setter
|
|
@@ -16931,13 +16881,11 @@ class PgPgUserConfigArgs:
|
|
|
16931
16881
|
|
|
16932
16882
|
@property
|
|
16933
16883
|
@pulumi.getter(name="pgQualstats")
|
|
16884
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
16934
16885
|
def pg_qualstats(self) -> Optional[pulumi.Input['PgPgUserConfigPgQualstatsArgs']]:
|
|
16935
16886
|
"""
|
|
16936
16887
|
System-wide settings for the pg*qualstats extension
|
|
16937
16888
|
"""
|
|
16938
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
16939
|
-
pulumi.log.warn("""pg_qualstats is deprecated: This property is deprecated.""")
|
|
16940
|
-
|
|
16941
16889
|
return pulumi.get(self, "pg_qualstats")
|
|
16942
16890
|
|
|
16943
16891
|
@pg_qualstats.setter
|
|
@@ -18190,13 +18138,11 @@ class PgPgUserConfigPgQualstatsArgs:
|
|
|
18190
18138
|
|
|
18191
18139
|
@property
|
|
18192
18140
|
@pulumi.getter
|
|
18141
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
18193
18142
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
18194
18143
|
"""
|
|
18195
18144
|
Enable / Disable pg_qualstats. The default value is `false`.
|
|
18196
18145
|
"""
|
|
18197
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
18198
|
-
pulumi.log.warn("""enabled is deprecated: This property is deprecated.""")
|
|
18199
|
-
|
|
18200
18146
|
return pulumi.get(self, "enabled")
|
|
18201
18147
|
|
|
18202
18148
|
@enabled.setter
|
|
@@ -18205,13 +18151,11 @@ class PgPgUserConfigPgQualstatsArgs:
|
|
|
18205
18151
|
|
|
18206
18152
|
@property
|
|
18207
18153
|
@pulumi.getter(name="minErrEstimateNum")
|
|
18154
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
18208
18155
|
def min_err_estimate_num(self) -> Optional[pulumi.Input[int]]:
|
|
18209
18156
|
"""
|
|
18210
18157
|
Error estimation num threshold to save quals. The default value is `0`.
|
|
18211
18158
|
"""
|
|
18212
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
18213
|
-
pulumi.log.warn("""min_err_estimate_num is deprecated: This property is deprecated.""")
|
|
18214
|
-
|
|
18215
18159
|
return pulumi.get(self, "min_err_estimate_num")
|
|
18216
18160
|
|
|
18217
18161
|
@min_err_estimate_num.setter
|
|
@@ -18220,13 +18164,11 @@ class PgPgUserConfigPgQualstatsArgs:
|
|
|
18220
18164
|
|
|
18221
18165
|
@property
|
|
18222
18166
|
@pulumi.getter(name="minErrEstimateRatio")
|
|
18167
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
18223
18168
|
def min_err_estimate_ratio(self) -> Optional[pulumi.Input[int]]:
|
|
18224
18169
|
"""
|
|
18225
18170
|
Error estimation ratio threshold to save quals. The default value is `0`.
|
|
18226
18171
|
"""
|
|
18227
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
18228
|
-
pulumi.log.warn("""min_err_estimate_ratio is deprecated: This property is deprecated.""")
|
|
18229
|
-
|
|
18230
18172
|
return pulumi.get(self, "min_err_estimate_ratio")
|
|
18231
18173
|
|
|
18232
18174
|
@min_err_estimate_ratio.setter
|
|
@@ -18235,13 +18177,11 @@ class PgPgUserConfigPgQualstatsArgs:
|
|
|
18235
18177
|
|
|
18236
18178
|
@property
|
|
18237
18179
|
@pulumi.getter(name="trackConstants")
|
|
18180
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
18238
18181
|
def track_constants(self) -> Optional[pulumi.Input[bool]]:
|
|
18239
18182
|
"""
|
|
18240
18183
|
Enable / Disable pg_qualstats constants tracking. The default value is `true`.
|
|
18241
18184
|
"""
|
|
18242
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
18243
|
-
pulumi.log.warn("""track_constants is deprecated: This property is deprecated.""")
|
|
18244
|
-
|
|
18245
18185
|
return pulumi.get(self, "track_constants")
|
|
18246
18186
|
|
|
18247
18187
|
@track_constants.setter
|
|
@@ -18250,13 +18190,11 @@ class PgPgUserConfigPgQualstatsArgs:
|
|
|
18250
18190
|
|
|
18251
18191
|
@property
|
|
18252
18192
|
@pulumi.getter(name="trackPgCatalog")
|
|
18193
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
18253
18194
|
def track_pg_catalog(self) -> Optional[pulumi.Input[bool]]:
|
|
18254
18195
|
"""
|
|
18255
18196
|
Track quals on system catalogs too. The default value is `false`.
|
|
18256
18197
|
"""
|
|
18257
|
-
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
18258
|
-
pulumi.log.warn("""track_pg_catalog is deprecated: This property is deprecated.""")
|
|
18259
|
-
|
|
18260
18198
|
return pulumi.get(self, "track_pg_catalog")
|
|
18261
18199
|
|
|
18262
18200
|
@track_pg_catalog.setter
|
|
@@ -19343,13 +19281,11 @@ class RedisRedisUserConfigArgs:
|
|
|
19343
19281
|
|
|
19344
19282
|
@property
|
|
19345
19283
|
@pulumi.getter(name="ipFilters")
|
|
19284
|
+
@_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
|
|
19346
19285
|
def ip_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
19347
19286
|
"""
|
|
19348
19287
|
Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
19349
19288
|
"""
|
|
19350
|
-
warnings.warn("""Deprecated. Use `ip_filter_string` instead.""", DeprecationWarning)
|
|
19351
|
-
pulumi.log.warn("""ip_filters is deprecated: Deprecated. Use `ip_filter_string` instead.""")
|
|
19352
|
-
|
|
19353
19289
|
return pulumi.get(self, "ip_filters")
|
|
19354
19290
|
|
|
19355
19291
|
@ip_filters.setter
|
pulumi_aiven/_utilities.py
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
import asyncio
|
|
7
|
+
import functools
|
|
7
8
|
import importlib.metadata
|
|
8
9
|
import importlib.util
|
|
9
10
|
import inspect
|
|
@@ -11,6 +12,7 @@ import json
|
|
|
11
12
|
import os
|
|
12
13
|
import sys
|
|
13
14
|
import typing
|
|
15
|
+
import warnings
|
|
14
16
|
|
|
15
17
|
import pulumi
|
|
16
18
|
import pulumi.runtime
|
|
@@ -19,6 +21,8 @@ from pulumi.runtime.sync_await import _sync_await
|
|
|
19
21
|
from semver import VersionInfo as SemverVersion
|
|
20
22
|
from parver import Version as PEP440Version
|
|
21
23
|
|
|
24
|
+
C = typing.TypeVar("C", bound=typing.Callable)
|
|
25
|
+
|
|
22
26
|
|
|
23
27
|
def get_env(*args):
|
|
24
28
|
for v in args:
|
|
@@ -287,5 +291,36 @@ async def _await_output(o: pulumi.Output[typing.Any]) -> typing.Tuple[object, bo
|
|
|
287
291
|
await o._resources,
|
|
288
292
|
)
|
|
289
293
|
|
|
294
|
+
|
|
295
|
+
# This is included to provide an upgrade path for users who are using a version
|
|
296
|
+
# of the Pulumi SDK (<3.121.0) that does not include the `deprecated` decorator.
|
|
297
|
+
def deprecated(message: str) -> typing.Callable[[C], C]:
|
|
298
|
+
"""
|
|
299
|
+
Decorator to indicate a function is deprecated.
|
|
300
|
+
|
|
301
|
+
As well as inserting appropriate statements to indicate that the function is
|
|
302
|
+
deprecated, this decorator also tags the function with a special attribute
|
|
303
|
+
so that Pulumi code can detect that it is deprecated and react appropriately
|
|
304
|
+
in certain situations.
|
|
305
|
+
|
|
306
|
+
message is the deprecation message that should be printed if the function is called.
|
|
307
|
+
"""
|
|
308
|
+
|
|
309
|
+
def decorator(fn: C) -> C:
|
|
310
|
+
if not callable(fn):
|
|
311
|
+
raise TypeError("Expected fn to be callable")
|
|
312
|
+
|
|
313
|
+
@functools.wraps(fn)
|
|
314
|
+
def deprecated_fn(*args, **kwargs):
|
|
315
|
+
warnings.warn(message)
|
|
316
|
+
pulumi.warn(f"{fn.__name__} is deprecated: {message}")
|
|
317
|
+
|
|
318
|
+
return fn(*args, **kwargs)
|
|
319
|
+
|
|
320
|
+
deprecated_fn.__dict__["_pulumi_deprecated_callable"] = fn
|
|
321
|
+
return typing.cast(C, deprecated_fn)
|
|
322
|
+
|
|
323
|
+
return decorator
|
|
324
|
+
|
|
290
325
|
def get_plugin_download_url():
|
|
291
326
|
return None
|
pulumi_aiven/account.py
CHANGED
|
@@ -43,13 +43,11 @@ class AccountArgs:
|
|
|
43
43
|
|
|
44
44
|
@property
|
|
45
45
|
@pulumi.getter(name="primaryBillingGroupId")
|
|
46
|
+
@_utilities.deprecated("""The new Organization resource won't have it, and will not have a replacement.""")
|
|
46
47
|
def primary_billing_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
47
48
|
"""
|
|
48
49
|
Billing group id
|
|
49
50
|
"""
|
|
50
|
-
warnings.warn("""The new Organization resource won't have it, and will not have a replacement.""", DeprecationWarning)
|
|
51
|
-
pulumi.log.warn("""primary_billing_group_id is deprecated: The new Organization resource won't have it, and will not have a replacement.""")
|
|
52
|
-
|
|
53
51
|
return pulumi.get(self, "primary_billing_group_id")
|
|
54
52
|
|
|
55
53
|
@primary_billing_group_id.setter
|
|
@@ -110,13 +108,11 @@ class _AccountState:
|
|
|
110
108
|
|
|
111
109
|
@property
|
|
112
110
|
@pulumi.getter(name="accountId")
|
|
111
|
+
@_utilities.deprecated("""The new Organization resource won't have it, use the built-in ID field instead.""")
|
|
113
112
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
|
114
113
|
"""
|
|
115
114
|
Account id
|
|
116
115
|
"""
|
|
117
|
-
warnings.warn("""The new Organization resource won't have it, use the built-in ID field instead.""", DeprecationWarning)
|
|
118
|
-
pulumi.log.warn("""account_id is deprecated: The new Organization resource won't have it, use the built-in ID field instead.""")
|
|
119
|
-
|
|
120
116
|
return pulumi.get(self, "account_id")
|
|
121
117
|
|
|
122
118
|
@account_id.setter
|
|
@@ -137,13 +133,11 @@ class _AccountState:
|
|
|
137
133
|
|
|
138
134
|
@property
|
|
139
135
|
@pulumi.getter(name="isAccountOwner")
|
|
136
|
+
@_utilities.deprecated("""The new Organization resource won't have it, and will not have a replacement.""")
|
|
140
137
|
def is_account_owner(self) -> Optional[pulumi.Input[bool]]:
|
|
141
138
|
"""
|
|
142
139
|
If true, user is part of the owners team for this account
|
|
143
140
|
"""
|
|
144
|
-
warnings.warn("""The new Organization resource won't have it, and will not have a replacement.""", DeprecationWarning)
|
|
145
|
-
pulumi.log.warn("""is_account_owner is deprecated: The new Organization resource won't have it, and will not have a replacement.""")
|
|
146
|
-
|
|
147
141
|
return pulumi.get(self, "is_account_owner")
|
|
148
142
|
|
|
149
143
|
@is_account_owner.setter
|
|
@@ -164,13 +158,11 @@ class _AccountState:
|
|
|
164
158
|
|
|
165
159
|
@property
|
|
166
160
|
@pulumi.getter(name="ownerTeamId")
|
|
161
|
+
@_utilities.deprecated("""The new Organization resource won't have it, and will not have a replacement.""")
|
|
167
162
|
def owner_team_id(self) -> Optional[pulumi.Input[str]]:
|
|
168
163
|
"""
|
|
169
164
|
Owner team id
|
|
170
165
|
"""
|
|
171
|
-
warnings.warn("""The new Organization resource won't have it, and will not have a replacement.""", DeprecationWarning)
|
|
172
|
-
pulumi.log.warn("""owner_team_id is deprecated: The new Organization resource won't have it, and will not have a replacement.""")
|
|
173
|
-
|
|
174
166
|
return pulumi.get(self, "owner_team_id")
|
|
175
167
|
|
|
176
168
|
@owner_team_id.setter
|
|
@@ -179,13 +171,11 @@ class _AccountState:
|
|
|
179
171
|
|
|
180
172
|
@property
|
|
181
173
|
@pulumi.getter(name="primaryBillingGroupId")
|
|
174
|
+
@_utilities.deprecated("""The new Organization resource won't have it, and will not have a replacement.""")
|
|
182
175
|
def primary_billing_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
183
176
|
"""
|
|
184
177
|
Billing group id
|
|
185
178
|
"""
|
|
186
|
-
warnings.warn("""The new Organization resource won't have it, and will not have a replacement.""", DeprecationWarning)
|
|
187
|
-
pulumi.log.warn("""primary_billing_group_id is deprecated: The new Organization resource won't have it, and will not have a replacement.""")
|
|
188
|
-
|
|
189
179
|
return pulumi.get(self, "primary_billing_group_id")
|
|
190
180
|
|
|
191
181
|
@primary_billing_group_id.setter
|
|
@@ -360,13 +350,11 @@ class Account(pulumi.CustomResource):
|
|
|
360
350
|
|
|
361
351
|
@property
|
|
362
352
|
@pulumi.getter(name="accountId")
|
|
353
|
+
@_utilities.deprecated("""The new Organization resource won't have it, use the built-in ID field instead.""")
|
|
363
354
|
def account_id(self) -> pulumi.Output[str]:
|
|
364
355
|
"""
|
|
365
356
|
Account id
|
|
366
357
|
"""
|
|
367
|
-
warnings.warn("""The new Organization resource won't have it, use the built-in ID field instead.""", DeprecationWarning)
|
|
368
|
-
pulumi.log.warn("""account_id is deprecated: The new Organization resource won't have it, use the built-in ID field instead.""")
|
|
369
|
-
|
|
370
358
|
return pulumi.get(self, "account_id")
|
|
371
359
|
|
|
372
360
|
@property
|
|
@@ -379,13 +367,11 @@ class Account(pulumi.CustomResource):
|
|
|
379
367
|
|
|
380
368
|
@property
|
|
381
369
|
@pulumi.getter(name="isAccountOwner")
|
|
370
|
+
@_utilities.deprecated("""The new Organization resource won't have it, and will not have a replacement.""")
|
|
382
371
|
def is_account_owner(self) -> pulumi.Output[bool]:
|
|
383
372
|
"""
|
|
384
373
|
If true, user is part of the owners team for this account
|
|
385
374
|
"""
|
|
386
|
-
warnings.warn("""The new Organization resource won't have it, and will not have a replacement.""", DeprecationWarning)
|
|
387
|
-
pulumi.log.warn("""is_account_owner is deprecated: The new Organization resource won't have it, and will not have a replacement.""")
|
|
388
|
-
|
|
389
375
|
return pulumi.get(self, "is_account_owner")
|
|
390
376
|
|
|
391
377
|
@property
|
|
@@ -398,24 +384,20 @@ class Account(pulumi.CustomResource):
|
|
|
398
384
|
|
|
399
385
|
@property
|
|
400
386
|
@pulumi.getter(name="ownerTeamId")
|
|
387
|
+
@_utilities.deprecated("""The new Organization resource won't have it, and will not have a replacement.""")
|
|
401
388
|
def owner_team_id(self) -> pulumi.Output[str]:
|
|
402
389
|
"""
|
|
403
390
|
Owner team id
|
|
404
391
|
"""
|
|
405
|
-
warnings.warn("""The new Organization resource won't have it, and will not have a replacement.""", DeprecationWarning)
|
|
406
|
-
pulumi.log.warn("""owner_team_id is deprecated: The new Organization resource won't have it, and will not have a replacement.""")
|
|
407
|
-
|
|
408
392
|
return pulumi.get(self, "owner_team_id")
|
|
409
393
|
|
|
410
394
|
@property
|
|
411
395
|
@pulumi.getter(name="primaryBillingGroupId")
|
|
396
|
+
@_utilities.deprecated("""The new Organization resource won't have it, and will not have a replacement.""")
|
|
412
397
|
def primary_billing_group_id(self) -> pulumi.Output[Optional[str]]:
|
|
413
398
|
"""
|
|
414
399
|
Billing group id
|
|
415
400
|
"""
|
|
416
|
-
warnings.warn("""The new Organization resource won't have it, and will not have a replacement.""", DeprecationWarning)
|
|
417
|
-
pulumi.log.warn("""primary_billing_group_id is deprecated: The new Organization resource won't have it, and will not have a replacement.""")
|
|
418
|
-
|
|
419
401
|
return pulumi.get(self, "primary_billing_group_id")
|
|
420
402
|
|
|
421
403
|
@property
|