pulumi-aiven 6.42.0a1755291473__py3-none-any.whl → 6.42.0a1755315469__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 +235 -75
- pulumi_aiven/m3_aggregator.py +9 -0
- pulumi_aiven/m3_db.py +9 -0
- pulumi_aiven/outputs.py +270 -62
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.42.0a1755291473.dist-info → pulumi_aiven-6.42.0a1755315469.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.42.0a1755291473.dist-info → pulumi_aiven-6.42.0a1755315469.dist-info}/RECORD +9 -9
- {pulumi_aiven-6.42.0a1755291473.dist-info → pulumi_aiven-6.42.0a1755315469.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.42.0a1755291473.dist-info → pulumi_aiven-6.42.0a1755315469.dist-info}/top_level.txt +0 -0
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -70,6 +70,9 @@ class M3AggregatorArgs:
|
|
|
70
70
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
71
71
|
if m3aggregator is not None:
|
|
72
72
|
pulumi.set(__self__, "m3aggregator", m3aggregator)
|
|
73
|
+
if m3aggregator_user_config is not None:
|
|
74
|
+
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
75
|
+
pulumi.log.warn("""m3aggregator_user_config is deprecated: This property is deprecated.""")
|
|
73
76
|
if m3aggregator_user_config is not None:
|
|
74
77
|
pulumi.set(__self__, "m3aggregator_user_config", m3aggregator_user_config)
|
|
75
78
|
if maintenance_window_dow is not None:
|
|
@@ -176,6 +179,7 @@ class M3AggregatorArgs:
|
|
|
176
179
|
|
|
177
180
|
@_builtins.property
|
|
178
181
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
182
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
179
183
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
180
184
|
"""
|
|
181
185
|
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -368,6 +372,9 @@ class _M3AggregatorState:
|
|
|
368
372
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
369
373
|
if m3aggregator is not None:
|
|
370
374
|
pulumi.set(__self__, "m3aggregator", m3aggregator)
|
|
375
|
+
if m3aggregator_user_config is not None:
|
|
376
|
+
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
377
|
+
pulumi.log.warn("""m3aggregator_user_config is deprecated: This property is deprecated.""")
|
|
371
378
|
if m3aggregator_user_config is not None:
|
|
372
379
|
pulumi.set(__self__, "m3aggregator_user_config", m3aggregator_user_config)
|
|
373
380
|
if maintenance_window_dow is not None:
|
|
@@ -519,6 +526,7 @@ class _M3AggregatorState:
|
|
|
519
526
|
|
|
520
527
|
@_builtins.property
|
|
521
528
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
529
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
522
530
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
523
531
|
"""
|
|
524
532
|
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -1104,6 +1112,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1104
1112
|
|
|
1105
1113
|
@_builtins.property
|
|
1106
1114
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
1115
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
1107
1116
|
def m3aggregator_user_config(self) -> pulumi.Output[Optional['outputs.M3AggregatorM3aggregatorUserConfig']]:
|
|
1108
1117
|
"""
|
|
1109
1118
|
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -70,6 +70,9 @@ class M3DbArgs:
|
|
|
70
70
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
71
71
|
if m3db is not None:
|
|
72
72
|
pulumi.set(__self__, "m3db", m3db)
|
|
73
|
+
if m3db_user_config is not None:
|
|
74
|
+
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
75
|
+
pulumi.log.warn("""m3db_user_config is deprecated: This property is deprecated.""")
|
|
73
76
|
if m3db_user_config is not None:
|
|
74
77
|
pulumi.set(__self__, "m3db_user_config", m3db_user_config)
|
|
75
78
|
if maintenance_window_dow is not None:
|
|
@@ -176,6 +179,7 @@ class M3DbArgs:
|
|
|
176
179
|
|
|
177
180
|
@_builtins.property
|
|
178
181
|
@pulumi.getter(name="m3dbUserConfig")
|
|
182
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
179
183
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
180
184
|
"""
|
|
181
185
|
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -368,6 +372,9 @@ class _M3DbState:
|
|
|
368
372
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
369
373
|
if m3db is not None:
|
|
370
374
|
pulumi.set(__self__, "m3db", m3db)
|
|
375
|
+
if m3db_user_config is not None:
|
|
376
|
+
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
377
|
+
pulumi.log.warn("""m3db_user_config is deprecated: This property is deprecated.""")
|
|
371
378
|
if m3db_user_config is not None:
|
|
372
379
|
pulumi.set(__self__, "m3db_user_config", m3db_user_config)
|
|
373
380
|
if maintenance_window_dow is not None:
|
|
@@ -519,6 +526,7 @@ class _M3DbState:
|
|
|
519
526
|
|
|
520
527
|
@_builtins.property
|
|
521
528
|
@pulumi.getter(name="m3dbUserConfig")
|
|
529
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
522
530
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
523
531
|
"""
|
|
524
532
|
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -1124,6 +1132,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1124
1132
|
|
|
1125
1133
|
@_builtins.property
|
|
1126
1134
|
@pulumi.getter(name="m3dbUserConfig")
|
|
1135
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
1127
1136
|
def m3db_user_config(self) -> pulumi.Output[Optional['outputs.M3DbM3dbUserConfig']]:
|
|
1128
1137
|
"""
|
|
1129
1138
|
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|