pulumi-aiven 6.29.0a1733375305__py3-none-any.whl → 6.29.0a1733489396__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/__init__.py +9 -0
- pulumi_aiven/_inputs.py +513 -36
- pulumi_aiven/billing_group.py +7 -7
- pulumi_aiven/get_billing_group.py +1 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +15 -1
- pulumi_aiven/get_valkey_user.py +9 -9
- pulumi_aiven/kafka_native_acl.py +534 -0
- pulumi_aiven/mirror_maker_replication_flow.py +47 -0
- pulumi_aiven/outputs.py +719 -48
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/valkey.py +2 -2
- pulumi_aiven/valkey_user.py +142 -48
- {pulumi_aiven-6.29.0a1733375305.dist-info → pulumi_aiven-6.29.0a1733489396.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.29.0a1733375305.dist-info → pulumi_aiven-6.29.0a1733489396.dist-info}/RECORD +16 -15
- {pulumi_aiven-6.29.0a1733375305.dist-info → pulumi_aiven-6.29.0a1733489396.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.29.0a1733375305.dist-info → pulumi_aiven-6.29.0a1733489396.dist-info}/top_level.txt +0 -0
pulumi_aiven/billing_group.py
CHANGED
|
@@ -48,7 +48,7 @@ class BillingGroupArgs:
|
|
|
48
48
|
:param pulumi.Input[str] country_code: Two-letter country code.
|
|
49
49
|
:param pulumi.Input[str] name: Name of the billing group.
|
|
50
50
|
:param pulumi.Input[str] parent_id: Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
51
|
-
:param pulumi.Input[str] state:
|
|
51
|
+
:param pulumi.Input[str] state: Address state.
|
|
52
52
|
:param pulumi.Input[str] vat_id: The VAT identification number for your company.
|
|
53
53
|
:param pulumi.Input[str] zip_code: Zip or postal code.
|
|
54
54
|
"""
|
|
@@ -235,7 +235,7 @@ class BillingGroupArgs:
|
|
|
235
235
|
@pulumi.getter
|
|
236
236
|
def state(self) -> Optional[pulumi.Input[str]]:
|
|
237
237
|
"""
|
|
238
|
-
|
|
238
|
+
Address state.
|
|
239
239
|
"""
|
|
240
240
|
return pulumi.get(self, "state")
|
|
241
241
|
|
|
@@ -300,7 +300,7 @@ class _BillingGroupState:
|
|
|
300
300
|
:param pulumi.Input[str] country_code: Two-letter country code.
|
|
301
301
|
:param pulumi.Input[str] name: Name of the billing group.
|
|
302
302
|
:param pulumi.Input[str] parent_id: Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
303
|
-
:param pulumi.Input[str] state:
|
|
303
|
+
:param pulumi.Input[str] state: Address state.
|
|
304
304
|
:param pulumi.Input[str] vat_id: The VAT identification number for your company.
|
|
305
305
|
:param pulumi.Input[str] zip_code: Zip or postal code.
|
|
306
306
|
"""
|
|
@@ -487,7 +487,7 @@ class _BillingGroupState:
|
|
|
487
487
|
@pulumi.getter
|
|
488
488
|
def state(self) -> Optional[pulumi.Input[str]]:
|
|
489
489
|
"""
|
|
490
|
-
|
|
490
|
+
Address state.
|
|
491
491
|
"""
|
|
492
492
|
return pulumi.get(self, "state")
|
|
493
493
|
|
|
@@ -580,7 +580,7 @@ class BillingGroup(pulumi.CustomResource):
|
|
|
580
580
|
:param pulumi.Input[str] country_code: Two-letter country code.
|
|
581
581
|
:param pulumi.Input[str] name: Name of the billing group.
|
|
582
582
|
:param pulumi.Input[str] parent_id: Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
583
|
-
:param pulumi.Input[str] state:
|
|
583
|
+
:param pulumi.Input[str] state: Address state.
|
|
584
584
|
:param pulumi.Input[str] vat_id: The VAT identification number for your company.
|
|
585
585
|
:param pulumi.Input[str] zip_code: Zip or postal code.
|
|
586
586
|
"""
|
|
@@ -713,7 +713,7 @@ class BillingGroup(pulumi.CustomResource):
|
|
|
713
713
|
:param pulumi.Input[str] country_code: Two-letter country code.
|
|
714
714
|
:param pulumi.Input[str] name: Name of the billing group.
|
|
715
715
|
:param pulumi.Input[str] parent_id: Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
716
|
-
:param pulumi.Input[str] state:
|
|
716
|
+
:param pulumi.Input[str] state: Address state.
|
|
717
717
|
:param pulumi.Input[str] vat_id: The VAT identification number for your company.
|
|
718
718
|
:param pulumi.Input[str] zip_code: Zip or postal code.
|
|
719
719
|
"""
|
|
@@ -839,7 +839,7 @@ class BillingGroup(pulumi.CustomResource):
|
|
|
839
839
|
@pulumi.getter
|
|
840
840
|
def state(self) -> pulumi.Output[Optional[str]]:
|
|
841
841
|
"""
|
|
842
|
-
|
|
842
|
+
Address state.
|
|
843
843
|
"""
|
|
844
844
|
return pulumi.get(self, "state")
|
|
845
845
|
|
|
@@ -26,7 +26,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
26
26
|
"""
|
|
27
27
|
A collection of values returned by getMirrorMakerReplicationFlow.
|
|
28
28
|
"""
|
|
29
|
-
def __init__(__self__, config_properties_excludes=None, emit_backward_heartbeats_enabled=None, emit_heartbeats_enabled=None, enable=None, id=None, offset_syncs_topic_location=None, project=None, replication_factor=None, replication_policy_class=None, service_name=None, source_cluster=None, sync_group_offsets_enabled=None, sync_group_offsets_interval_seconds=None, target_cluster=None, topics=None, topics_blacklists=None):
|
|
29
|
+
def __init__(__self__, config_properties_excludes=None, emit_backward_heartbeats_enabled=None, emit_heartbeats_enabled=None, enable=None, exactly_once_delivery_enabled=None, id=None, offset_syncs_topic_location=None, project=None, replication_factor=None, replication_policy_class=None, service_name=None, source_cluster=None, sync_group_offsets_enabled=None, sync_group_offsets_interval_seconds=None, target_cluster=None, topics=None, topics_blacklists=None):
|
|
30
30
|
if config_properties_excludes and not isinstance(config_properties_excludes, list):
|
|
31
31
|
raise TypeError("Expected argument 'config_properties_excludes' to be a list")
|
|
32
32
|
pulumi.set(__self__, "config_properties_excludes", config_properties_excludes)
|
|
@@ -39,6 +39,9 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
39
39
|
if enable and not isinstance(enable, bool):
|
|
40
40
|
raise TypeError("Expected argument 'enable' to be a bool")
|
|
41
41
|
pulumi.set(__self__, "enable", enable)
|
|
42
|
+
if exactly_once_delivery_enabled and not isinstance(exactly_once_delivery_enabled, bool):
|
|
43
|
+
raise TypeError("Expected argument 'exactly_once_delivery_enabled' to be a bool")
|
|
44
|
+
pulumi.set(__self__, "exactly_once_delivery_enabled", exactly_once_delivery_enabled)
|
|
42
45
|
if id and not isinstance(id, str):
|
|
43
46
|
raise TypeError("Expected argument 'id' to be a str")
|
|
44
47
|
pulumi.set(__self__, "id", id)
|
|
@@ -108,6 +111,14 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
108
111
|
"""
|
|
109
112
|
return pulumi.get(self, "enable")
|
|
110
113
|
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter(name="exactlyOnceDeliveryEnabled")
|
|
116
|
+
def exactly_once_delivery_enabled(self) -> bool:
|
|
117
|
+
"""
|
|
118
|
+
Whether to enable exactly-once message delivery. We recommend you set this to `enabled` for new replications. The default value is `false`.
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "exactly_once_delivery_enabled")
|
|
121
|
+
|
|
111
122
|
@property
|
|
112
123
|
@pulumi.getter
|
|
113
124
|
def id(self) -> str:
|
|
@@ -215,6 +226,7 @@ class AwaitableGetMirrorMakerReplicationFlowResult(GetMirrorMakerReplicationFlow
|
|
|
215
226
|
emit_backward_heartbeats_enabled=self.emit_backward_heartbeats_enabled,
|
|
216
227
|
emit_heartbeats_enabled=self.emit_heartbeats_enabled,
|
|
217
228
|
enable=self.enable,
|
|
229
|
+
exactly_once_delivery_enabled=self.exactly_once_delivery_enabled,
|
|
218
230
|
id=self.id,
|
|
219
231
|
offset_syncs_topic_location=self.offset_syncs_topic_location,
|
|
220
232
|
project=self.project,
|
|
@@ -268,6 +280,7 @@ def get_mirror_maker_replication_flow(project: Optional[str] = None,
|
|
|
268
280
|
emit_backward_heartbeats_enabled=pulumi.get(__ret__, 'emit_backward_heartbeats_enabled'),
|
|
269
281
|
emit_heartbeats_enabled=pulumi.get(__ret__, 'emit_heartbeats_enabled'),
|
|
270
282
|
enable=pulumi.get(__ret__, 'enable'),
|
|
283
|
+
exactly_once_delivery_enabled=pulumi.get(__ret__, 'exactly_once_delivery_enabled'),
|
|
271
284
|
id=pulumi.get(__ret__, 'id'),
|
|
272
285
|
offset_syncs_topic_location=pulumi.get(__ret__, 'offset_syncs_topic_location'),
|
|
273
286
|
project=pulumi.get(__ret__, 'project'),
|
|
@@ -318,6 +331,7 @@ def get_mirror_maker_replication_flow_output(project: Optional[pulumi.Input[str]
|
|
|
318
331
|
emit_backward_heartbeats_enabled=pulumi.get(__response__, 'emit_backward_heartbeats_enabled'),
|
|
319
332
|
emit_heartbeats_enabled=pulumi.get(__response__, 'emit_heartbeats_enabled'),
|
|
320
333
|
enable=pulumi.get(__response__, 'enable'),
|
|
334
|
+
exactly_once_delivery_enabled=pulumi.get(__response__, 'exactly_once_delivery_enabled'),
|
|
321
335
|
id=pulumi.get(__response__, 'id'),
|
|
322
336
|
offset_syncs_topic_location=pulumi.get(__response__, 'offset_syncs_topic_location'),
|
|
323
337
|
project=pulumi.get(__response__, 'project'),
|
pulumi_aiven/get_valkey_user.py
CHANGED
|
@@ -70,7 +70,7 @@ class GetValkeyUserResult:
|
|
|
70
70
|
@pulumi.getter
|
|
71
71
|
def password(self) -> str:
|
|
72
72
|
"""
|
|
73
|
-
The
|
|
73
|
+
The Valkey service user's password.
|
|
74
74
|
"""
|
|
75
75
|
return pulumi.get(self, "password")
|
|
76
76
|
|
|
@@ -94,7 +94,7 @@ class GetValkeyUserResult:
|
|
|
94
94
|
@pulumi.getter
|
|
95
95
|
def type(self) -> str:
|
|
96
96
|
"""
|
|
97
|
-
|
|
97
|
+
User account type, such as primary or regular account.
|
|
98
98
|
"""
|
|
99
99
|
return pulumi.get(self, "type")
|
|
100
100
|
|
|
@@ -102,7 +102,7 @@ class GetValkeyUserResult:
|
|
|
102
102
|
@pulumi.getter
|
|
103
103
|
def username(self) -> str:
|
|
104
104
|
"""
|
|
105
|
-
|
|
105
|
+
Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
106
106
|
"""
|
|
107
107
|
return pulumi.get(self, "username")
|
|
108
108
|
|
|
@@ -110,7 +110,7 @@ class GetValkeyUserResult:
|
|
|
110
110
|
@pulumi.getter(name="valkeyAclCategories")
|
|
111
111
|
def valkey_acl_categories(self) -> Sequence[str]:
|
|
112
112
|
"""
|
|
113
|
-
|
|
113
|
+
Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "valkey_acl_categories")
|
|
116
116
|
|
|
@@ -118,7 +118,7 @@ class GetValkeyUserResult:
|
|
|
118
118
|
@pulumi.getter(name="valkeyAclChannels")
|
|
119
119
|
def valkey_acl_channels(self) -> Sequence[str]:
|
|
120
120
|
"""
|
|
121
|
-
|
|
121
|
+
Allows and disallows access to pub/sub channels. Entries are defined as standard glob patterns. Changing this property forces recreation of the resource.
|
|
122
122
|
"""
|
|
123
123
|
return pulumi.get(self, "valkey_acl_channels")
|
|
124
124
|
|
|
@@ -126,7 +126,7 @@ class GetValkeyUserResult:
|
|
|
126
126
|
@pulumi.getter(name="valkeyAclCommands")
|
|
127
127
|
def valkey_acl_commands(self) -> Sequence[str]:
|
|
128
128
|
"""
|
|
129
|
-
Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
129
|
+
Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
130
130
|
"""
|
|
131
131
|
return pulumi.get(self, "valkey_acl_commands")
|
|
132
132
|
|
|
@@ -134,7 +134,7 @@ class GetValkeyUserResult:
|
|
|
134
134
|
@pulumi.getter(name="valkeyAclKeys")
|
|
135
135
|
def valkey_acl_keys(self) -> Sequence[str]:
|
|
136
136
|
"""
|
|
137
|
-
|
|
137
|
+
Key access rules. Entries are defined as standard glob patterns. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
138
138
|
"""
|
|
139
139
|
return pulumi.get(self, "valkey_acl_keys")
|
|
140
140
|
|
|
@@ -167,7 +167,7 @@ def get_valkey_user(project: Optional[str] = None,
|
|
|
167
167
|
|
|
168
168
|
:param str project: 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.
|
|
169
169
|
:param str service_name: The name of the service that 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.
|
|
170
|
-
:param str username:
|
|
170
|
+
:param str username: Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
171
171
|
"""
|
|
172
172
|
__args__ = dict()
|
|
173
173
|
__args__['project'] = project
|
|
@@ -197,7 +197,7 @@ def get_valkey_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
197
197
|
|
|
198
198
|
:param str project: 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.
|
|
199
199
|
:param str service_name: The name of the service that 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.
|
|
200
|
-
:param str username:
|
|
200
|
+
:param str username: Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
201
201
|
"""
|
|
202
202
|
__args__ = dict()
|
|
203
203
|
__args__['project'] = project
|