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/m3_aggregator.py
CHANGED
|
@@ -146,13 +146,11 @@ class M3AggregatorArgs:
|
|
|
146
146
|
|
|
147
147
|
@property
|
|
148
148
|
@pulumi.getter(name="diskSpace")
|
|
149
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
149
150
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
150
151
|
"""
|
|
151
152
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
152
153
|
"""
|
|
153
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
154
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
155
|
-
|
|
156
154
|
return pulumi.get(self, "disk_space")
|
|
157
155
|
|
|
158
156
|
@disk_space.setter
|
|
@@ -440,13 +438,11 @@ class _M3AggregatorState:
|
|
|
440
438
|
|
|
441
439
|
@property
|
|
442
440
|
@pulumi.getter(name="diskSpace")
|
|
441
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
443
442
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
444
443
|
"""
|
|
445
444
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
446
445
|
"""
|
|
447
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
448
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
449
|
-
|
|
450
446
|
return pulumi.get(self, "disk_space")
|
|
451
447
|
|
|
452
448
|
@disk_space.setter
|
|
@@ -1053,13 +1049,11 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1053
1049
|
|
|
1054
1050
|
@property
|
|
1055
1051
|
@pulumi.getter(name="diskSpace")
|
|
1052
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1056
1053
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1057
1054
|
"""
|
|
1058
1055
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1059
1056
|
"""
|
|
1060
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
1061
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1062
|
-
|
|
1063
1057
|
return pulumi.get(self, "disk_space")
|
|
1064
1058
|
|
|
1065
1059
|
@property
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -146,13 +146,11 @@ class M3DbArgs:
|
|
|
146
146
|
|
|
147
147
|
@property
|
|
148
148
|
@pulumi.getter(name="diskSpace")
|
|
149
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
149
150
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
150
151
|
"""
|
|
151
152
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
152
153
|
"""
|
|
153
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
154
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
155
|
-
|
|
156
154
|
return pulumi.get(self, "disk_space")
|
|
157
155
|
|
|
158
156
|
@disk_space.setter
|
|
@@ -440,13 +438,11 @@ class _M3DbState:
|
|
|
440
438
|
|
|
441
439
|
@property
|
|
442
440
|
@pulumi.getter(name="diskSpace")
|
|
441
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
443
442
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
444
443
|
"""
|
|
445
444
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
446
445
|
"""
|
|
447
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
448
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
449
|
-
|
|
450
446
|
return pulumi.get(self, "disk_space")
|
|
451
447
|
|
|
452
448
|
@disk_space.setter
|
|
@@ -1061,13 +1057,11 @@ class M3Db(pulumi.CustomResource):
|
|
|
1061
1057
|
|
|
1062
1058
|
@property
|
|
1063
1059
|
@pulumi.getter(name="diskSpace")
|
|
1060
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1064
1061
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1065
1062
|
"""
|
|
1066
1063
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1067
1064
|
"""
|
|
1068
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
1069
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1070
|
-
|
|
1071
1065
|
return pulumi.get(self, "disk_space")
|
|
1072
1066
|
|
|
1073
1067
|
@property
|
pulumi_aiven/my_sql.py
CHANGED
|
@@ -146,13 +146,11 @@ class MySqlArgs:
|
|
|
146
146
|
|
|
147
147
|
@property
|
|
148
148
|
@pulumi.getter(name="diskSpace")
|
|
149
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
149
150
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
150
151
|
"""
|
|
151
152
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
152
153
|
"""
|
|
153
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
154
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
155
|
-
|
|
156
154
|
return pulumi.get(self, "disk_space")
|
|
157
155
|
|
|
158
156
|
@disk_space.setter
|
|
@@ -440,13 +438,11 @@ class _MySqlState:
|
|
|
440
438
|
|
|
441
439
|
@property
|
|
442
440
|
@pulumi.getter(name="diskSpace")
|
|
441
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
443
442
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
444
443
|
"""
|
|
445
444
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
446
445
|
"""
|
|
447
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
448
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
449
|
-
|
|
450
446
|
return pulumi.get(self, "disk_space")
|
|
451
447
|
|
|
452
448
|
@disk_space.setter
|
|
@@ -1067,13 +1063,11 @@ class MySql(pulumi.CustomResource):
|
|
|
1067
1063
|
|
|
1068
1064
|
@property
|
|
1069
1065
|
@pulumi.getter(name="diskSpace")
|
|
1066
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1070
1067
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1071
1068
|
"""
|
|
1072
1069
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1073
1070
|
"""
|
|
1074
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
1075
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1076
|
-
|
|
1077
1071
|
return pulumi.get(self, "disk_space")
|
|
1078
1072
|
|
|
1079
1073
|
@property
|
pulumi_aiven/open_search.py
CHANGED
|
@@ -146,13 +146,11 @@ class OpenSearchArgs:
|
|
|
146
146
|
|
|
147
147
|
@property
|
|
148
148
|
@pulumi.getter(name="diskSpace")
|
|
149
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
149
150
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
150
151
|
"""
|
|
151
152
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
152
153
|
"""
|
|
153
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
154
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
155
|
-
|
|
156
154
|
return pulumi.get(self, "disk_space")
|
|
157
155
|
|
|
158
156
|
@disk_space.setter
|
|
@@ -440,13 +438,11 @@ class _OpenSearchState:
|
|
|
440
438
|
|
|
441
439
|
@property
|
|
442
440
|
@pulumi.getter(name="diskSpace")
|
|
441
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
443
442
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
444
443
|
"""
|
|
445
444
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
446
445
|
"""
|
|
447
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
448
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
449
|
-
|
|
450
446
|
return pulumi.get(self, "disk_space")
|
|
451
447
|
|
|
452
448
|
@disk_space.setter
|
|
@@ -1069,13 +1065,11 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1069
1065
|
|
|
1070
1066
|
@property
|
|
1071
1067
|
@pulumi.getter(name="diskSpace")
|
|
1068
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1072
1069
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1073
1070
|
"""
|
|
1074
1071
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1075
1072
|
"""
|
|
1076
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
1077
|
-
pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1078
|
-
|
|
1079
1073
|
return pulumi.get(self, "disk_space")
|
|
1080
1074
|
|
|
1081
1075
|
@property
|
|
@@ -88,13 +88,11 @@ class _OrganizationUserState:
|
|
|
88
88
|
|
|
89
89
|
@property
|
|
90
90
|
@pulumi.getter
|
|
91
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
|
|
91
92
|
def accepted(self) -> Optional[pulumi.Input[bool]]:
|
|
92
93
|
"""
|
|
93
94
|
This is a boolean flag that determines whether an invitation was accepted or not by the user. `false` value means that the invitation was sent to the user but not yet accepted. `true` means that the user accepted the invitation and now a member of an organization.
|
|
94
95
|
"""
|
|
95
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. """, DeprecationWarning)
|
|
96
|
-
pulumi.log.warn("""accepted is deprecated: This field is deprecated and will be removed in the next major release. """)
|
|
97
|
-
|
|
98
96
|
return pulumi.get(self, "accepted")
|
|
99
97
|
|
|
100
98
|
@accepted.setter
|
|
@@ -115,13 +113,11 @@ class _OrganizationUserState:
|
|
|
115
113
|
|
|
116
114
|
@property
|
|
117
115
|
@pulumi.getter(name="invitedBy")
|
|
116
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
|
|
118
117
|
def invited_by(self) -> Optional[pulumi.Input[str]]:
|
|
119
118
|
"""
|
|
120
119
|
The email address of the user who sent an invitation to the user.
|
|
121
120
|
"""
|
|
122
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. """, DeprecationWarning)
|
|
123
|
-
pulumi.log.warn("""invited_by is deprecated: This field is deprecated and will be removed in the next major release. """)
|
|
124
|
-
|
|
125
121
|
return pulumi.get(self, "invited_by")
|
|
126
122
|
|
|
127
123
|
@invited_by.setter
|
|
@@ -268,13 +264,11 @@ class OrganizationUser(pulumi.CustomResource):
|
|
|
268
264
|
|
|
269
265
|
@property
|
|
270
266
|
@pulumi.getter
|
|
267
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
|
|
271
268
|
def accepted(self) -> pulumi.Output[bool]:
|
|
272
269
|
"""
|
|
273
270
|
This is a boolean flag that determines whether an invitation was accepted or not by the user. `false` value means that the invitation was sent to the user but not yet accepted. `true` means that the user accepted the invitation and now a member of an organization.
|
|
274
271
|
"""
|
|
275
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. """, DeprecationWarning)
|
|
276
|
-
pulumi.log.warn("""accepted is deprecated: This field is deprecated and will be removed in the next major release. """)
|
|
277
|
-
|
|
278
272
|
return pulumi.get(self, "accepted")
|
|
279
273
|
|
|
280
274
|
@property
|
|
@@ -287,13 +281,11 @@ class OrganizationUser(pulumi.CustomResource):
|
|
|
287
281
|
|
|
288
282
|
@property
|
|
289
283
|
@pulumi.getter(name="invitedBy")
|
|
284
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
|
|
290
285
|
def invited_by(self) -> pulumi.Output[str]:
|
|
291
286
|
"""
|
|
292
287
|
The email address of the user who sent an invitation to the user.
|
|
293
288
|
"""
|
|
294
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. """, DeprecationWarning)
|
|
295
|
-
pulumi.log.warn("""invited_by is deprecated: This field is deprecated and will be removed in the next major release. """)
|
|
296
|
-
|
|
297
289
|
return pulumi.get(self, "invited_by")
|
|
298
290
|
|
|
299
291
|
@property
|