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
|
@@ -207,7 +207,7 @@ class AzurePrivatelinkConnectionApproval(pulumi.CustomResource):
|
|
|
207
207
|
isManualConnection: True,
|
|
208
208
|
requestMessage: default.name,
|
|
209
209
|
}],
|
|
210
|
-
opts=pulumi.ResourceOptions(depends_on=[privatelink]))
|
|
210
|
+
opts = pulumi.ResourceOptions(depends_on=[privatelink]))
|
|
211
211
|
approval = aiven.AzurePrivatelinkConnectionApproval("approval",
|
|
212
212
|
project=aiven_project_id,
|
|
213
213
|
service_name=default.service_name,
|
|
@@ -277,7 +277,7 @@ class AzurePrivatelinkConnectionApproval(pulumi.CustomResource):
|
|
|
277
277
|
isManualConnection: True,
|
|
278
278
|
requestMessage: default.name,
|
|
279
279
|
}],
|
|
280
|
-
opts=pulumi.ResourceOptions(depends_on=[privatelink]))
|
|
280
|
+
opts = pulumi.ResourceOptions(depends_on=[privatelink]))
|
|
281
281
|
approval = aiven.AzurePrivatelinkConnectionApproval("approval",
|
|
282
282
|
project=aiven_project_id,
|
|
283
283
|
service_name=default.service_name,
|
pulumi_aiven/billing_group.py
CHANGED
|
@@ -83,13 +83,11 @@ class BillingGroupArgs:
|
|
|
83
83
|
|
|
84
84
|
@property
|
|
85
85
|
@pulumi.getter(name="accountId")
|
|
86
|
+
@_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
|
|
86
87
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
|
87
88
|
"""
|
|
88
89
|
Account ID.
|
|
89
90
|
"""
|
|
90
|
-
warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
|
|
91
|
-
pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
|
|
92
|
-
|
|
93
91
|
return pulumi.get(self, "account_id")
|
|
94
92
|
|
|
95
93
|
@account_id.setter
|
|
@@ -337,13 +335,11 @@ class _BillingGroupState:
|
|
|
337
335
|
|
|
338
336
|
@property
|
|
339
337
|
@pulumi.getter(name="accountId")
|
|
338
|
+
@_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
|
|
340
339
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
|
341
340
|
"""
|
|
342
341
|
Account ID.
|
|
343
342
|
"""
|
|
344
|
-
warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
|
|
345
|
-
pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
|
|
346
|
-
|
|
347
343
|
return pulumi.get(self, "account_id")
|
|
348
344
|
|
|
349
345
|
@account_id.setter
|
|
@@ -739,13 +735,11 @@ class BillingGroup(pulumi.CustomResource):
|
|
|
739
735
|
|
|
740
736
|
@property
|
|
741
737
|
@pulumi.getter(name="accountId")
|
|
738
|
+
@_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
|
|
742
739
|
def account_id(self) -> pulumi.Output[Optional[str]]:
|
|
743
740
|
"""
|
|
744
741
|
Account ID.
|
|
745
742
|
"""
|
|
746
|
-
warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
|
|
747
|
-
pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
|
|
748
|
-
|
|
749
743
|
return pulumi.get(self, "account_id")
|
|
750
744
|
|
|
751
745
|
@property
|
pulumi_aiven/cassandra.py
CHANGED
|
@@ -170,13 +170,11 @@ class CassandraArgs:
|
|
|
170
170
|
|
|
171
171
|
@property
|
|
172
172
|
@pulumi.getter(name="diskSpace")
|
|
173
|
+
@_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.""")
|
|
173
174
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
174
175
|
"""
|
|
175
176
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
176
177
|
"""
|
|
177
|
-
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)
|
|
178
|
-
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.""")
|
|
179
|
-
|
|
180
178
|
return pulumi.get(self, "disk_space")
|
|
181
179
|
|
|
182
180
|
@disk_space.setter
|
|
@@ -464,13 +462,11 @@ class _CassandraState:
|
|
|
464
462
|
|
|
465
463
|
@property
|
|
466
464
|
@pulumi.getter(name="diskSpace")
|
|
465
|
+
@_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.""")
|
|
467
466
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
468
467
|
"""
|
|
469
468
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
470
469
|
"""
|
|
471
|
-
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)
|
|
472
|
-
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.""")
|
|
473
|
-
|
|
474
470
|
return pulumi.get(self, "disk_space")
|
|
475
471
|
|
|
476
472
|
@disk_space.setter
|
|
@@ -1075,13 +1071,11 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1075
1071
|
|
|
1076
1072
|
@property
|
|
1077
1073
|
@pulumi.getter(name="diskSpace")
|
|
1074
|
+
@_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.""")
|
|
1078
1075
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1079
1076
|
"""
|
|
1080
1077
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1081
1078
|
"""
|
|
1082
|
-
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)
|
|
1083
|
-
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.""")
|
|
1084
|
-
|
|
1085
1079
|
return pulumi.get(self, "disk_space")
|
|
1086
1080
|
|
|
1087
1081
|
@property
|
pulumi_aiven/clickhouse.py
CHANGED
|
@@ -170,13 +170,11 @@ class ClickhouseArgs:
|
|
|
170
170
|
|
|
171
171
|
@property
|
|
172
172
|
@pulumi.getter(name="diskSpace")
|
|
173
|
+
@_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.""")
|
|
173
174
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
174
175
|
"""
|
|
175
176
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
176
177
|
"""
|
|
177
|
-
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)
|
|
178
|
-
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.""")
|
|
179
|
-
|
|
180
178
|
return pulumi.get(self, "disk_space")
|
|
181
179
|
|
|
182
180
|
@disk_space.setter
|
|
@@ -464,13 +462,11 @@ class _ClickhouseState:
|
|
|
464
462
|
|
|
465
463
|
@property
|
|
466
464
|
@pulumi.getter(name="diskSpace")
|
|
465
|
+
@_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.""")
|
|
467
466
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
468
467
|
"""
|
|
469
468
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
470
469
|
"""
|
|
471
|
-
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)
|
|
472
|
-
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.""")
|
|
473
|
-
|
|
474
470
|
return pulumi.get(self, "disk_space")
|
|
475
471
|
|
|
476
472
|
@disk_space.setter
|
|
@@ -1063,13 +1059,11 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
1063
1059
|
|
|
1064
1060
|
@property
|
|
1065
1061
|
@pulumi.getter(name="diskSpace")
|
|
1062
|
+
@_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.""")
|
|
1066
1063
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1067
1064
|
"""
|
|
1068
1065
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1069
1066
|
"""
|
|
1070
|
-
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)
|
|
1071
|
-
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.""")
|
|
1072
|
-
|
|
1073
1067
|
return pulumi.get(self, "disk_space")
|
|
1074
1068
|
|
|
1075
1069
|
@property
|
pulumi_aiven/dragonfly.py
CHANGED
|
@@ -146,13 +146,11 @@ class DragonflyArgs:
|
|
|
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 _DragonflyState:
|
|
|
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
|
|
@@ -1049,13 +1045,11 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1049
1045
|
|
|
1050
1046
|
@property
|
|
1051
1047
|
@pulumi.getter(name="diskSpace")
|
|
1048
|
+
@_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.""")
|
|
1052
1049
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1053
1050
|
"""
|
|
1054
1051
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1055
1052
|
"""
|
|
1056
|
-
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)
|
|
1057
|
-
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.""")
|
|
1058
|
-
|
|
1059
1053
|
return pulumi.get(self, "disk_space")
|
|
1060
1054
|
|
|
1061
1055
|
@property
|
pulumi_aiven/flink.py
CHANGED
|
@@ -146,13 +146,11 @@ class FlinkArgs:
|
|
|
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 _FlinkState:
|
|
|
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 Flink(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
|
|
@@ -116,13 +116,11 @@ class FlinkApplicationVersionArgs:
|
|
|
116
116
|
|
|
117
117
|
@property
|
|
118
118
|
@pulumi.getter
|
|
119
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
|
|
119
120
|
def sinks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]]]:
|
|
120
121
|
"""
|
|
121
122
|
Application sinks
|
|
122
123
|
"""
|
|
123
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""", DeprecationWarning)
|
|
124
|
-
pulumi.log.warn("""sinks is deprecated: This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
|
|
125
|
-
|
|
126
124
|
return pulumi.get(self, "sinks")
|
|
127
125
|
|
|
128
126
|
@sinks.setter
|
|
@@ -143,13 +141,11 @@ class FlinkApplicationVersionArgs:
|
|
|
143
141
|
|
|
144
142
|
@property
|
|
145
143
|
@pulumi.getter
|
|
144
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `source` instead.""")
|
|
146
145
|
def sources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]]]:
|
|
147
146
|
"""
|
|
148
147
|
Application sources
|
|
149
148
|
"""
|
|
150
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. Use `source` instead.""", DeprecationWarning)
|
|
151
|
-
pulumi.log.warn("""sources is deprecated: This field is deprecated and will be removed in the next major release. Use `source` instead.""")
|
|
152
|
-
|
|
153
149
|
return pulumi.get(self, "sources")
|
|
154
150
|
|
|
155
151
|
@sources.setter
|
|
@@ -304,13 +300,11 @@ class _FlinkApplicationVersionState:
|
|
|
304
300
|
|
|
305
301
|
@property
|
|
306
302
|
@pulumi.getter
|
|
303
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
|
|
307
304
|
def sinks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]]]:
|
|
308
305
|
"""
|
|
309
306
|
Application sinks
|
|
310
307
|
"""
|
|
311
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""", DeprecationWarning)
|
|
312
|
-
pulumi.log.warn("""sinks is deprecated: This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
|
|
313
|
-
|
|
314
308
|
return pulumi.get(self, "sinks")
|
|
315
309
|
|
|
316
310
|
@sinks.setter
|
|
@@ -331,13 +325,11 @@ class _FlinkApplicationVersionState:
|
|
|
331
325
|
|
|
332
326
|
@property
|
|
333
327
|
@pulumi.getter
|
|
328
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `source` instead.""")
|
|
334
329
|
def sources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]]]:
|
|
335
330
|
"""
|
|
336
331
|
Application sources
|
|
337
332
|
"""
|
|
338
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. Use `source` instead.""", DeprecationWarning)
|
|
339
|
-
pulumi.log.warn("""sources is deprecated: This field is deprecated and will be removed in the next major release. Use `source` instead.""")
|
|
340
|
-
|
|
341
333
|
return pulumi.get(self, "sources")
|
|
342
334
|
|
|
343
335
|
@sources.setter
|
|
@@ -670,13 +662,11 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
670
662
|
|
|
671
663
|
@property
|
|
672
664
|
@pulumi.getter
|
|
665
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
|
|
673
666
|
def sinks(self) -> pulumi.Output[Optional[Sequence['outputs.FlinkApplicationVersionSink']]]:
|
|
674
667
|
"""
|
|
675
668
|
Application sinks
|
|
676
669
|
"""
|
|
677
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""", DeprecationWarning)
|
|
678
|
-
pulumi.log.warn("""sinks is deprecated: This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
|
|
679
|
-
|
|
680
670
|
return pulumi.get(self, "sinks")
|
|
681
671
|
|
|
682
672
|
@property
|
|
@@ -689,13 +679,11 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
689
679
|
|
|
690
680
|
@property
|
|
691
681
|
@pulumi.getter
|
|
682
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `source` instead.""")
|
|
692
683
|
def sources(self) -> pulumi.Output[Optional[Sequence['outputs.FlinkApplicationVersionSource']]]:
|
|
693
684
|
"""
|
|
694
685
|
Application sources
|
|
695
686
|
"""
|
|
696
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release. Use `source` instead.""", DeprecationWarning)
|
|
697
|
-
pulumi.log.warn("""sources is deprecated: This field is deprecated and will be removed in the next major release. Use `source` instead.""")
|
|
698
|
-
|
|
699
687
|
return pulumi.get(self, "sources")
|
|
700
688
|
|
|
701
689
|
@property
|
pulumi_aiven/grafana.py
CHANGED
|
@@ -135,13 +135,11 @@ class GrafanaArgs:
|
|
|
135
135
|
|
|
136
136
|
@property
|
|
137
137
|
@pulumi.getter(name="diskSpace")
|
|
138
|
+
@_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.""")
|
|
138
139
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
139
140
|
"""
|
|
140
141
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
141
142
|
"""
|
|
142
|
-
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)
|
|
143
|
-
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.""")
|
|
144
|
-
|
|
145
143
|
return pulumi.get(self, "disk_space")
|
|
146
144
|
|
|
147
145
|
@disk_space.setter
|
|
@@ -441,13 +439,11 @@ class _GrafanaState:
|
|
|
441
439
|
|
|
442
440
|
@property
|
|
443
441
|
@pulumi.getter(name="diskSpace")
|
|
442
|
+
@_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.""")
|
|
444
443
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
445
444
|
"""
|
|
446
445
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
447
446
|
"""
|
|
448
|
-
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)
|
|
449
|
-
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.""")
|
|
450
|
-
|
|
451
447
|
return pulumi.get(self, "disk_space")
|
|
452
448
|
|
|
453
449
|
@disk_space.setter
|
|
@@ -1058,13 +1054,11 @@ class Grafana(pulumi.CustomResource):
|
|
|
1058
1054
|
|
|
1059
1055
|
@property
|
|
1060
1056
|
@pulumi.getter(name="diskSpace")
|
|
1057
|
+
@_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.""")
|
|
1061
1058
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1062
1059
|
"""
|
|
1063
1060
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1064
1061
|
"""
|
|
1065
|
-
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)
|
|
1066
|
-
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.""")
|
|
1067
|
-
|
|
1068
1062
|
return pulumi.get(self, "disk_space")
|
|
1069
1063
|
|
|
1070
1064
|
@property
|
pulumi_aiven/influx_db.py
CHANGED
|
@@ -180,14 +180,12 @@ class InfluxDbArgs:
|
|
|
180
180
|
|
|
181
181
|
@property
|
|
182
182
|
@pulumi.getter(name="diskSpace")
|
|
183
|
+
@_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.""")
|
|
183
184
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
184
185
|
"""
|
|
185
186
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
186
187
|
will result in the service rebalancing.
|
|
187
188
|
"""
|
|
188
|
-
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)
|
|
189
|
-
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.""")
|
|
190
|
-
|
|
191
189
|
return pulumi.get(self, "disk_space")
|
|
192
190
|
|
|
193
191
|
@disk_space.setter
|
|
@@ -511,14 +509,12 @@ class _InfluxDbState:
|
|
|
511
509
|
|
|
512
510
|
@property
|
|
513
511
|
@pulumi.getter(name="diskSpace")
|
|
512
|
+
@_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.""")
|
|
514
513
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
515
514
|
"""
|
|
516
515
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
517
516
|
will result in the service rebalancing.
|
|
518
517
|
"""
|
|
519
|
-
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)
|
|
520
|
-
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.""")
|
|
521
|
-
|
|
522
518
|
return pulumi.get(self, "disk_space")
|
|
523
519
|
|
|
524
520
|
@disk_space.setter
|
|
@@ -1141,14 +1137,12 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1141
1137
|
|
|
1142
1138
|
@property
|
|
1143
1139
|
@pulumi.getter(name="diskSpace")
|
|
1140
|
+
@_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.""")
|
|
1144
1141
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1145
1142
|
"""
|
|
1146
1143
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
1147
1144
|
will result in the service rebalancing.
|
|
1148
1145
|
"""
|
|
1149
|
-
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)
|
|
1150
|
-
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.""")
|
|
1151
|
-
|
|
1152
1146
|
return pulumi.get(self, "disk_space")
|
|
1153
1147
|
|
|
1154
1148
|
@property
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -169,13 +169,11 @@ class KafkaArgs:
|
|
|
169
169
|
|
|
170
170
|
@property
|
|
171
171
|
@pulumi.getter(name="diskSpace")
|
|
172
|
+
@_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.""")
|
|
172
173
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
173
174
|
"""
|
|
174
175
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
175
176
|
"""
|
|
176
|
-
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)
|
|
177
|
-
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.""")
|
|
178
|
-
|
|
179
177
|
return pulumi.get(self, "disk_space")
|
|
180
178
|
|
|
181
179
|
@disk_space.setter
|
|
@@ -208,13 +206,11 @@ class KafkaArgs:
|
|
|
208
206
|
|
|
209
207
|
@property
|
|
210
208
|
@pulumi.getter
|
|
209
|
+
@_utilities.deprecated("""Usage of this field is discouraged.""")
|
|
211
210
|
def karapace(self) -> Optional[pulumi.Input[bool]]:
|
|
212
211
|
"""
|
|
213
212
|
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
214
213
|
"""
|
|
215
|
-
warnings.warn("""Usage of this field is discouraged.""", DeprecationWarning)
|
|
216
|
-
pulumi.log.warn("""karapace is deprecated: Usage of this field is discouraged.""")
|
|
217
|
-
|
|
218
214
|
return pulumi.get(self, "karapace")
|
|
219
215
|
|
|
220
216
|
@karapace.setter
|
|
@@ -501,13 +497,11 @@ class _KafkaState:
|
|
|
501
497
|
|
|
502
498
|
@property
|
|
503
499
|
@pulumi.getter(name="diskSpace")
|
|
500
|
+
@_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.""")
|
|
504
501
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
505
502
|
"""
|
|
506
503
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
507
504
|
"""
|
|
508
|
-
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)
|
|
509
|
-
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.""")
|
|
510
|
-
|
|
511
505
|
return pulumi.get(self, "disk_space")
|
|
512
506
|
|
|
513
507
|
@disk_space.setter
|
|
@@ -588,13 +582,11 @@ class _KafkaState:
|
|
|
588
582
|
|
|
589
583
|
@property
|
|
590
584
|
@pulumi.getter
|
|
585
|
+
@_utilities.deprecated("""Usage of this field is discouraged.""")
|
|
591
586
|
def karapace(self) -> Optional[pulumi.Input[bool]]:
|
|
592
587
|
"""
|
|
593
588
|
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
594
589
|
"""
|
|
595
|
-
warnings.warn("""Usage of this field is discouraged.""", DeprecationWarning)
|
|
596
|
-
pulumi.log.warn("""karapace is deprecated: Usage of this field is discouraged.""")
|
|
597
|
-
|
|
598
590
|
return pulumi.get(self, "karapace")
|
|
599
591
|
|
|
600
592
|
@karapace.setter
|
|
@@ -1173,13 +1165,11 @@ class Kafka(pulumi.CustomResource):
|
|
|
1173
1165
|
|
|
1174
1166
|
@property
|
|
1175
1167
|
@pulumi.getter(name="diskSpace")
|
|
1168
|
+
@_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.""")
|
|
1176
1169
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1177
1170
|
"""
|
|
1178
1171
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1179
1172
|
"""
|
|
1180
|
-
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)
|
|
1181
|
-
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.""")
|
|
1182
|
-
|
|
1183
1173
|
return pulumi.get(self, "disk_space")
|
|
1184
1174
|
|
|
1185
1175
|
@property
|
|
@@ -1232,13 +1222,11 @@ class Kafka(pulumi.CustomResource):
|
|
|
1232
1222
|
|
|
1233
1223
|
@property
|
|
1234
1224
|
@pulumi.getter
|
|
1225
|
+
@_utilities.deprecated("""Usage of this field is discouraged.""")
|
|
1235
1226
|
def karapace(self) -> pulumi.Output[Optional[bool]]:
|
|
1236
1227
|
"""
|
|
1237
1228
|
Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
1238
1229
|
"""
|
|
1239
|
-
warnings.warn("""Usage of this field is discouraged.""", DeprecationWarning)
|
|
1240
|
-
pulumi.log.warn("""karapace is deprecated: Usage of this field is discouraged.""")
|
|
1241
|
-
|
|
1242
1230
|
return pulumi.get(self, "karapace")
|
|
1243
1231
|
|
|
1244
1232
|
@property
|
pulumi_aiven/kafka_connect.py
CHANGED
|
@@ -142,13 +142,11 @@ class KafkaConnectArgs:
|
|
|
142
142
|
|
|
143
143
|
@property
|
|
144
144
|
@pulumi.getter(name="diskSpace")
|
|
145
|
+
@_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.""")
|
|
145
146
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
146
147
|
"""
|
|
147
148
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
148
149
|
"""
|
|
149
|
-
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)
|
|
150
|
-
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.""")
|
|
151
|
-
|
|
152
150
|
return pulumi.get(self, "disk_space")
|
|
153
151
|
|
|
154
152
|
@disk_space.setter
|
|
@@ -420,13 +418,11 @@ class _KafkaConnectState:
|
|
|
420
418
|
|
|
421
419
|
@property
|
|
422
420
|
@pulumi.getter(name="diskSpace")
|
|
421
|
+
@_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.""")
|
|
423
422
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
424
423
|
"""
|
|
425
424
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
426
425
|
"""
|
|
427
|
-
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)
|
|
428
|
-
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.""")
|
|
429
|
-
|
|
430
426
|
return pulumi.get(self, "disk_space")
|
|
431
427
|
|
|
432
428
|
@disk_space.setter
|
|
@@ -1024,13 +1020,11 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1024
1020
|
|
|
1025
1021
|
@property
|
|
1026
1022
|
@pulumi.getter(name="diskSpace")
|
|
1023
|
+
@_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.""")
|
|
1027
1024
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1028
1025
|
"""
|
|
1029
1026
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1030
1027
|
"""
|
|
1031
|
-
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)
|
|
1032
|
-
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.""")
|
|
1033
|
-
|
|
1034
1028
|
return pulumi.get(self, "disk_space")
|
|
1035
1029
|
|
|
1036
1030
|
@property
|
|
@@ -142,13 +142,11 @@ class KafkaMirrorMakerArgs:
|
|
|
142
142
|
|
|
143
143
|
@property
|
|
144
144
|
@pulumi.getter(name="diskSpace")
|
|
145
|
+
@_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.""")
|
|
145
146
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
146
147
|
"""
|
|
147
148
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
148
149
|
"""
|
|
149
|
-
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)
|
|
150
|
-
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.""")
|
|
151
|
-
|
|
152
150
|
return pulumi.get(self, "disk_space")
|
|
153
151
|
|
|
154
152
|
@disk_space.setter
|
|
@@ -420,13 +418,11 @@ class _KafkaMirrorMakerState:
|
|
|
420
418
|
|
|
421
419
|
@property
|
|
422
420
|
@pulumi.getter(name="diskSpace")
|
|
421
|
+
@_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.""")
|
|
423
422
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
424
423
|
"""
|
|
425
424
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
426
425
|
"""
|
|
427
|
-
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)
|
|
428
|
-
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.""")
|
|
429
|
-
|
|
430
426
|
return pulumi.get(self, "disk_space")
|
|
431
427
|
|
|
432
428
|
@disk_space.setter
|
|
@@ -1020,13 +1016,11 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1020
1016
|
|
|
1021
1017
|
@property
|
|
1022
1018
|
@pulumi.getter(name="diskSpace")
|
|
1019
|
+
@_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.""")
|
|
1023
1020
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1024
1021
|
"""
|
|
1025
1022
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1026
1023
|
"""
|
|
1027
|
-
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)
|
|
1028
|
-
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.""")
|
|
1029
|
-
|
|
1030
1024
|
return pulumi.get(self, "disk_space")
|
|
1031
1025
|
|
|
1032
1026
|
@property
|