pulumi-aiven 6.18.0__py3-none-any.whl → 6.18.0a1717478109__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 +1106 -1650
- pulumi_aiven/_utilities.py +0 -35
- pulumi_aiven/account.py +27 -9
- pulumi_aiven/account_authentication.py +4 -10
- pulumi_aiven/account_team.py +8 -16
- pulumi_aiven/account_team_member.py +8 -16
- pulumi_aiven/account_team_project.py +8 -16
- pulumi_aiven/azure_privatelink_connection_approval.py +2 -2
- pulumi_aiven/billing_group.py +9 -3
- pulumi_aiven/cassandra.py +9 -3
- pulumi_aiven/clickhouse.py +9 -3
- pulumi_aiven/dragonfly.py +9 -3
- pulumi_aiven/flink.py +9 -3
- pulumi_aiven/flink_application_version.py +18 -6
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -14
- pulumi_aiven/get_project.py +1 -1
- pulumi_aiven/grafana.py +9 -3
- pulumi_aiven/influx_db.py +9 -3
- pulumi_aiven/kafka.py +18 -6
- pulumi_aiven/kafka_connect.py +9 -3
- pulumi_aiven/kafka_mirror_maker.py +9 -3
- pulumi_aiven/m3_aggregator.py +9 -3
- pulumi_aiven/m3_db.py +9 -3
- pulumi_aiven/mirror_maker_replication_flow.py +0 -63
- pulumi_aiven/my_sql.py +9 -3
- pulumi_aiven/open_search.py +9 -3
- pulumi_aiven/organization.py +2 -2
- pulumi_aiven/organization_group_project.py +2 -2
- pulumi_aiven/organization_user.py +12 -4
- pulumi_aiven/organization_user_group.py +2 -2
- pulumi_aiven/organization_user_group_member.py +2 -2
- pulumi_aiven/organizational_unit.py +2 -2
- pulumi_aiven/outputs.py +2245 -3107
- pulumi_aiven/pg.py +9 -3
- pulumi_aiven/project.py +36 -18
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +9 -3
- pulumi_aiven/transit_gateway_vpc_attachment.py +9 -3
- {pulumi_aiven-6.18.0.dist-info → pulumi_aiven-6.18.0a1717478109.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.18.0.dist-info → pulumi_aiven-6.18.0a1717478109.dist-info}/RECORD +42 -42
- {pulumi_aiven-6.18.0.dist-info → pulumi_aiven-6.18.0a1717478109.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.18.0.dist-info → pulumi_aiven-6.18.0a1717478109.dist-info}/top_level.txt +0 -0
|
@@ -21,7 +21,6 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
21
21
|
service_name: pulumi.Input[str],
|
|
22
22
|
source_cluster: pulumi.Input[str],
|
|
23
23
|
target_cluster: pulumi.Input[str],
|
|
24
|
-
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
25
24
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
26
25
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
27
26
|
replication_factor: Optional[pulumi.Input[int]] = None,
|
|
@@ -38,7 +37,6 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
38
37
|
:param pulumi.Input[str] service_name: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
39
38
|
:param pulumi.Input[str] source_cluster: Source cluster alias. Maximum length: `128`.
|
|
40
39
|
:param pulumi.Input[str] target_cluster: Target cluster alias. Maximum length: `128`.
|
|
41
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
42
40
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
43
41
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
44
42
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
@@ -54,8 +52,6 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
54
52
|
pulumi.set(__self__, "service_name", service_name)
|
|
55
53
|
pulumi.set(__self__, "source_cluster", source_cluster)
|
|
56
54
|
pulumi.set(__self__, "target_cluster", target_cluster)
|
|
57
|
-
if config_properties_excludes is not None:
|
|
58
|
-
pulumi.set(__self__, "config_properties_excludes", config_properties_excludes)
|
|
59
55
|
if emit_backward_heartbeats_enabled is not None:
|
|
60
56
|
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
61
57
|
if emit_heartbeats_enabled is not None:
|
|
@@ -155,18 +151,6 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
155
151
|
def target_cluster(self, value: pulumi.Input[str]):
|
|
156
152
|
pulumi.set(self, "target_cluster", value)
|
|
157
153
|
|
|
158
|
-
@property
|
|
159
|
-
@pulumi.getter(name="configPropertiesExcludes")
|
|
160
|
-
def config_properties_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
161
|
-
"""
|
|
162
|
-
List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
163
|
-
"""
|
|
164
|
-
return pulumi.get(self, "config_properties_excludes")
|
|
165
|
-
|
|
166
|
-
@config_properties_excludes.setter
|
|
167
|
-
def config_properties_excludes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
168
|
-
pulumi.set(self, "config_properties_excludes", value)
|
|
169
|
-
|
|
170
154
|
@property
|
|
171
155
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
172
156
|
def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -255,7 +239,6 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
255
239
|
@pulumi.input_type
|
|
256
240
|
class _MirrorMakerReplicationFlowState:
|
|
257
241
|
def __init__(__self__, *,
|
|
258
|
-
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
259
242
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
260
243
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
261
244
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -272,7 +255,6 @@ class _MirrorMakerReplicationFlowState:
|
|
|
272
255
|
topics_blacklists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
273
256
|
"""
|
|
274
257
|
Input properties used for looking up and filtering MirrorMakerReplicationFlow resources.
|
|
275
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
276
258
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
277
259
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
278
260
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
@@ -288,8 +270,6 @@ class _MirrorMakerReplicationFlowState:
|
|
|
288
270
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics: List of topics and/or regular expressions to replicate
|
|
289
271
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists: List of topics and/or regular expressions to not replicate.
|
|
290
272
|
"""
|
|
291
|
-
if config_properties_excludes is not None:
|
|
292
|
-
pulumi.set(__self__, "config_properties_excludes", config_properties_excludes)
|
|
293
273
|
if emit_backward_heartbeats_enabled is not None:
|
|
294
274
|
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
295
275
|
if emit_heartbeats_enabled is not None:
|
|
@@ -319,18 +299,6 @@ class _MirrorMakerReplicationFlowState:
|
|
|
319
299
|
if topics_blacklists is not None:
|
|
320
300
|
pulumi.set(__self__, "topics_blacklists", topics_blacklists)
|
|
321
301
|
|
|
322
|
-
@property
|
|
323
|
-
@pulumi.getter(name="configPropertiesExcludes")
|
|
324
|
-
def config_properties_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
325
|
-
"""
|
|
326
|
-
List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
327
|
-
"""
|
|
328
|
-
return pulumi.get(self, "config_properties_excludes")
|
|
329
|
-
|
|
330
|
-
@config_properties_excludes.setter
|
|
331
|
-
def config_properties_excludes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
332
|
-
pulumi.set(self, "config_properties_excludes", value)
|
|
333
|
-
|
|
334
302
|
@property
|
|
335
303
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
336
304
|
def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -505,7 +473,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
505
473
|
def __init__(__self__,
|
|
506
474
|
resource_name: str,
|
|
507
475
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
508
|
-
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
509
476
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
510
477
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
511
478
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -541,14 +508,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
541
508
|
".*[\\\\-\\\\.]internal",
|
|
542
509
|
".*\\\\.replica",
|
|
543
510
|
"__.*",
|
|
544
|
-
],
|
|
545
|
-
config_properties_excludes=[
|
|
546
|
-
"follower\\\\.replication\\\\.throttled\\\\.replicas",
|
|
547
|
-
"leader\\\\.replication\\\\.throttled\\\\.replicas",
|
|
548
|
-
"message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms",
|
|
549
|
-
"message\\\\.timestamp\\\\.type",
|
|
550
|
-
"unclean\\\\.leader\\\\.election\\\\.enable",
|
|
551
|
-
"min\\\\.insync\\\\.replicas",
|
|
552
511
|
])
|
|
553
512
|
```
|
|
554
513
|
|
|
@@ -560,7 +519,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
560
519
|
|
|
561
520
|
:param str resource_name: The name of the resource.
|
|
562
521
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
563
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
564
522
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
565
523
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
566
524
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
@@ -602,14 +560,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
602
560
|
".*[\\\\-\\\\.]internal",
|
|
603
561
|
".*\\\\.replica",
|
|
604
562
|
"__.*",
|
|
605
|
-
],
|
|
606
|
-
config_properties_excludes=[
|
|
607
|
-
"follower\\\\.replication\\\\.throttled\\\\.replicas",
|
|
608
|
-
"leader\\\\.replication\\\\.throttled\\\\.replicas",
|
|
609
|
-
"message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms",
|
|
610
|
-
"message\\\\.timestamp\\\\.type",
|
|
611
|
-
"unclean\\\\.leader\\\\.election\\\\.enable",
|
|
612
|
-
"min\\\\.insync\\\\.replicas",
|
|
613
563
|
])
|
|
614
564
|
```
|
|
615
565
|
|
|
@@ -634,7 +584,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
634
584
|
def _internal_init(__self__,
|
|
635
585
|
resource_name: str,
|
|
636
586
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
637
|
-
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
638
587
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
639
588
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
640
589
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -658,7 +607,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
658
607
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
659
608
|
__props__ = MirrorMakerReplicationFlowArgs.__new__(MirrorMakerReplicationFlowArgs)
|
|
660
609
|
|
|
661
|
-
__props__.__dict__["config_properties_excludes"] = config_properties_excludes
|
|
662
610
|
__props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
|
|
663
611
|
__props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
|
|
664
612
|
if enable is None and not opts.urn:
|
|
@@ -697,7 +645,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
697
645
|
def get(resource_name: str,
|
|
698
646
|
id: pulumi.Input[str],
|
|
699
647
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
700
|
-
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
701
648
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
702
649
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
703
650
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -719,7 +666,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
719
666
|
:param str resource_name: The unique name of the resulting resource.
|
|
720
667
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
721
668
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
722
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
723
669
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
724
670
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
725
671
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
@@ -739,7 +685,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
739
685
|
|
|
740
686
|
__props__ = _MirrorMakerReplicationFlowState.__new__(_MirrorMakerReplicationFlowState)
|
|
741
687
|
|
|
742
|
-
__props__.__dict__["config_properties_excludes"] = config_properties_excludes
|
|
743
688
|
__props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
|
|
744
689
|
__props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
|
|
745
690
|
__props__.__dict__["enable"] = enable
|
|
@@ -756,14 +701,6 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
756
701
|
__props__.__dict__["topics_blacklists"] = topics_blacklists
|
|
757
702
|
return MirrorMakerReplicationFlow(resource_name, opts=opts, __props__=__props__)
|
|
758
703
|
|
|
759
|
-
@property
|
|
760
|
-
@pulumi.getter(name="configPropertiesExcludes")
|
|
761
|
-
def config_properties_excludes(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
762
|
-
"""
|
|
763
|
-
List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
764
|
-
"""
|
|
765
|
-
return pulumi.get(self, "config_properties_excludes")
|
|
766
|
-
|
|
767
704
|
@property
|
|
768
705
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
769
706
|
def emit_backward_heartbeats_enabled(self) -> pulumi.Output[Optional[bool]]:
|
pulumi_aiven/my_sql.py
CHANGED
|
@@ -146,11 +146,13 @@ 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.""")
|
|
150
149
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
151
150
|
"""
|
|
152
151
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
153
152
|
"""
|
|
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
|
+
|
|
154
156
|
return pulumi.get(self, "disk_space")
|
|
155
157
|
|
|
156
158
|
@disk_space.setter
|
|
@@ -438,11 +440,13 @@ class _MySqlState:
|
|
|
438
440
|
|
|
439
441
|
@property
|
|
440
442
|
@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.""")
|
|
442
443
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
443
444
|
"""
|
|
444
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.
|
|
445
446
|
"""
|
|
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
|
+
|
|
446
450
|
return pulumi.get(self, "disk_space")
|
|
447
451
|
|
|
448
452
|
@disk_space.setter
|
|
@@ -1063,11 +1067,13 @@ class MySql(pulumi.CustomResource):
|
|
|
1063
1067
|
|
|
1064
1068
|
@property
|
|
1065
1069
|
@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.""")
|
|
1067
1070
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1068
1071
|
"""
|
|
1069
1072
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1070
1073
|
"""
|
|
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
|
+
|
|
1071
1077
|
return pulumi.get(self, "disk_space")
|
|
1072
1078
|
|
|
1073
1079
|
@property
|
pulumi_aiven/open_search.py
CHANGED
|
@@ -146,11 +146,13 @@ 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.""")
|
|
150
149
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
151
150
|
"""
|
|
152
151
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
153
152
|
"""
|
|
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
|
+
|
|
154
156
|
return pulumi.get(self, "disk_space")
|
|
155
157
|
|
|
156
158
|
@disk_space.setter
|
|
@@ -438,11 +440,13 @@ class _OpenSearchState:
|
|
|
438
440
|
|
|
439
441
|
@property
|
|
440
442
|
@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.""")
|
|
442
443
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
443
444
|
"""
|
|
444
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.
|
|
445
446
|
"""
|
|
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
|
+
|
|
446
450
|
return pulumi.get(self, "disk_space")
|
|
447
451
|
|
|
448
452
|
@disk_space.setter
|
|
@@ -1065,11 +1069,13 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1065
1069
|
|
|
1066
1070
|
@property
|
|
1067
1071
|
@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.""")
|
|
1069
1072
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1070
1073
|
"""
|
|
1071
1074
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1072
1075
|
"""
|
|
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
|
+
|
|
1073
1079
|
return pulumi.get(self, "disk_space")
|
|
1074
1080
|
|
|
1075
1081
|
@property
|
pulumi_aiven/organization.py
CHANGED
|
@@ -142,7 +142,7 @@ class Organization(pulumi.CustomResource):
|
|
|
142
142
|
timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationTimeoutsArgs']]] = None,
|
|
143
143
|
__props__=None):
|
|
144
144
|
"""
|
|
145
|
-
Creates and manages an [organization](https://aiven.io/docs/platform/concepts/
|
|
145
|
+
Creates and manages an [organization](https://aiven.io/docs/platform/concepts/projects_accounts_access).
|
|
146
146
|
|
|
147
147
|
## Example Usage
|
|
148
148
|
|
|
@@ -170,7 +170,7 @@ class Organization(pulumi.CustomResource):
|
|
|
170
170
|
args: Optional[OrganizationArgs] = None,
|
|
171
171
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
172
172
|
"""
|
|
173
|
-
Creates and manages an [organization](https://aiven.io/docs/platform/concepts/
|
|
173
|
+
Creates and manages an [organization](https://aiven.io/docs/platform/concepts/projects_accounts_access).
|
|
174
174
|
|
|
175
175
|
## Example Usage
|
|
176
176
|
|
|
@@ -157,7 +157,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
157
157
|
timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationGroupProjectTimeoutsArgs']]] = None,
|
|
158
158
|
__props__=None):
|
|
159
159
|
"""
|
|
160
|
-
Adds and manages a [group](https://aiven.io/docs/platform/
|
|
160
|
+
Adds and manages a [group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups) of users as [members of a project](https://aiven.io/docs/platform/reference/project-member-privileges).
|
|
161
161
|
|
|
162
162
|
## Example Usage
|
|
163
163
|
|
|
@@ -201,7 +201,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
201
201
|
args: OrganizationGroupProjectArgs,
|
|
202
202
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
203
203
|
"""
|
|
204
|
-
Adds and manages a [group](https://aiven.io/docs/platform/
|
|
204
|
+
Adds and manages a [group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups) of users as [members of a project](https://aiven.io/docs/platform/reference/project-member-privileges).
|
|
205
205
|
|
|
206
206
|
## Example Usage
|
|
207
207
|
|
|
@@ -88,11 +88,13 @@ 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. """)
|
|
92
91
|
def accepted(self) -> Optional[pulumi.Input[bool]]:
|
|
93
92
|
"""
|
|
94
93
|
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.
|
|
95
94
|
"""
|
|
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
|
+
|
|
96
98
|
return pulumi.get(self, "accepted")
|
|
97
99
|
|
|
98
100
|
@accepted.setter
|
|
@@ -113,11 +115,13 @@ class _OrganizationUserState:
|
|
|
113
115
|
|
|
114
116
|
@property
|
|
115
117
|
@pulumi.getter(name="invitedBy")
|
|
116
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
|
|
117
118
|
def invited_by(self) -> Optional[pulumi.Input[str]]:
|
|
118
119
|
"""
|
|
119
120
|
The email address of the user who sent an invitation to the user.
|
|
120
121
|
"""
|
|
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
|
+
|
|
121
125
|
return pulumi.get(self, "invited_by")
|
|
122
126
|
|
|
123
127
|
@invited_by.setter
|
|
@@ -264,11 +268,13 @@ class OrganizationUser(pulumi.CustomResource):
|
|
|
264
268
|
|
|
265
269
|
@property
|
|
266
270
|
@pulumi.getter
|
|
267
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
|
|
268
271
|
def accepted(self) -> pulumi.Output[bool]:
|
|
269
272
|
"""
|
|
270
273
|
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.
|
|
271
274
|
"""
|
|
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
|
+
|
|
272
278
|
return pulumi.get(self, "accepted")
|
|
273
279
|
|
|
274
280
|
@property
|
|
@@ -281,11 +287,13 @@ class OrganizationUser(pulumi.CustomResource):
|
|
|
281
287
|
|
|
282
288
|
@property
|
|
283
289
|
@pulumi.getter(name="invitedBy")
|
|
284
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
|
|
285
290
|
def invited_by(self) -> pulumi.Output[str]:
|
|
286
291
|
"""
|
|
287
292
|
The email address of the user who sent an invitation to the user.
|
|
288
293
|
"""
|
|
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
|
+
|
|
289
297
|
return pulumi.get(self, "invited_by")
|
|
290
298
|
|
|
291
299
|
@property
|
|
@@ -179,7 +179,7 @@ class OrganizationUserGroup(pulumi.CustomResource):
|
|
|
179
179
|
organization_id: Optional[pulumi.Input[str]] = None,
|
|
180
180
|
__props__=None):
|
|
181
181
|
"""
|
|
182
|
-
Creates and manages a [user group](https://aiven.io/docs/platform/
|
|
182
|
+
Creates and manages a [user group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups) in an organization.
|
|
183
183
|
|
|
184
184
|
## Example Usage
|
|
185
185
|
|
|
@@ -212,7 +212,7 @@ class OrganizationUserGroup(pulumi.CustomResource):
|
|
|
212
212
|
args: OrganizationUserGroupArgs,
|
|
213
213
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
214
214
|
"""
|
|
215
|
-
Creates and manages a [user group](https://aiven.io/docs/platform/
|
|
215
|
+
Creates and manages a [user group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups) in an organization.
|
|
216
216
|
|
|
217
217
|
## Example Usage
|
|
218
218
|
|
|
@@ -173,7 +173,7 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
|
|
|
173
173
|
user_id: Optional[pulumi.Input[str]] = None,
|
|
174
174
|
__props__=None):
|
|
175
175
|
"""
|
|
176
|
-
Adds and manages users in a [user group](https://aiven.io/docs/platform/
|
|
176
|
+
Adds and manages users in a [user group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups).
|
|
177
177
|
|
|
178
178
|
## Example Usage
|
|
179
179
|
|
|
@@ -210,7 +210,7 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
|
|
|
210
210
|
args: OrganizationUserGroupMemberArgs,
|
|
211
211
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
212
212
|
"""
|
|
213
|
-
Adds and manages users in a [user group](https://aiven.io/docs/platform/
|
|
213
|
+
Adds and manages users in a [user group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups).
|
|
214
214
|
|
|
215
215
|
## Example Usage
|
|
216
216
|
|
|
@@ -147,7 +147,7 @@ class OrganizationalUnit(pulumi.CustomResource):
|
|
|
147
147
|
parent_id: Optional[pulumi.Input[str]] = None,
|
|
148
148
|
__props__=None):
|
|
149
149
|
"""
|
|
150
|
-
Creates and manages an [organizational unit](https://aiven.io/docs/platform/concepts/
|
|
150
|
+
Creates and manages an [organizational unit](https://aiven.io/docs/platform/concepts/projects_accounts_access) in an Aiven organization.
|
|
151
151
|
|
|
152
152
|
## Example Usage
|
|
153
153
|
|
|
@@ -178,7 +178,7 @@ class OrganizationalUnit(pulumi.CustomResource):
|
|
|
178
178
|
args: OrganizationalUnitArgs,
|
|
179
179
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
180
180
|
"""
|
|
181
|
-
Creates and manages an [organizational unit](https://aiven.io/docs/platform/concepts/
|
|
181
|
+
Creates and manages an [organizational unit](https://aiven.io/docs/platform/concepts/projects_accounts_access) in an Aiven organization.
|
|
182
182
|
|
|
183
183
|
## Example Usage
|
|
184
184
|
|