pulumi-aiven 6.19.0a1721845827__py3-none-any.whl → 6.20.0__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 +20 -0
- pulumi_aiven/_inputs.py +1089 -29
- pulumi_aiven/account_team.py +12 -4
- pulumi_aiven/account_team_member.py +4 -4
- pulumi_aiven/account_team_project.py +4 -4
- pulumi_aiven/clickhouse.py +22 -22
- pulumi_aiven/clickhouse_database.py +39 -19
- pulumi_aiven/clickhouse_grant.py +80 -82
- pulumi_aiven/clickhouse_role.py +17 -31
- pulumi_aiven/clickhouse_user.py +31 -31
- pulumi_aiven/flink.py +19 -19
- pulumi_aiven/flink_application.py +39 -39
- pulumi_aiven/flink_application_deployment.py +131 -57
- pulumi_aiven/flink_application_version.py +64 -56
- pulumi_aiven/get_clickhouse.py +8 -8
- pulumi_aiven/get_clickhouse_database.py +11 -11
- pulumi_aiven/get_clickhouse_user.py +14 -14
- pulumi_aiven/get_flink.py +7 -7
- pulumi_aiven/get_flink_application.py +16 -16
- pulumi_aiven/get_flink_application_version.py +22 -22
- pulumi_aiven/get_kafka_acl.py +22 -22
- pulumi_aiven/get_kafka_connect.py +6 -6
- pulumi_aiven/get_kafka_connector.py +13 -13
- pulumi_aiven/get_kafka_topic.py +2 -2
- pulumi_aiven/get_kafka_user.py +15 -15
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +1 -1
- pulumi_aiven/get_valkey.py +469 -0
- pulumi_aiven/get_valkey_user.py +206 -0
- pulumi_aiven/kafka_acl.py +43 -39
- pulumi_aiven/kafka_connect.py +66 -14
- pulumi_aiven/kafka_connector.py +46 -40
- pulumi_aiven/kafka_schema_registry_acl.py +2 -2
- pulumi_aiven/kafka_topic.py +16 -16
- pulumi_aiven/kafka_user.py +40 -40
- pulumi_aiven/organization_application_user.py +12 -2
- pulumi_aiven/organization_application_user_token.py +7 -7
- pulumi_aiven/organization_group_project.py +9 -9
- pulumi_aiven/organization_user_group_member.py +13 -9
- pulumi_aiven/outputs.py +2113 -332
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/transit_gateway_vpc_attachment.py +7 -16
- pulumi_aiven/valkey.py +1252 -0
- pulumi_aiven/valkey_user.py +513 -0
- {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.20.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.20.0.dist-info}/RECORD +47 -43
- {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.20.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.20.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/pulumi-plugin.json
CHANGED
|
@@ -25,15 +25,12 @@ class TransitGatewayVpcAttachmentArgs:
|
|
|
25
25
|
:param pulumi.Input[str] peer_vpc: Transit gateway ID. Changing this property forces recreation of the resource.
|
|
26
26
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_peer_network_cidrs: List of private IPv4 ranges to route through the peering connection
|
|
27
27
|
:param pulumi.Input[str] vpc_id: The VPC the peering connection belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
28
|
-
:param pulumi.Input[str] peer_region: AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
28
|
+
:param pulumi.Input[str] peer_region: AWS region of the peered VPC (if not in the same region as Aiven VPC). This value can't be changed.
|
|
29
29
|
"""
|
|
30
30
|
pulumi.set(__self__, "peer_cloud_account", peer_cloud_account)
|
|
31
31
|
pulumi.set(__self__, "peer_vpc", peer_vpc)
|
|
32
32
|
pulumi.set(__self__, "user_peer_network_cidrs", user_peer_network_cidrs)
|
|
33
33
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
34
|
-
if peer_region is not None:
|
|
35
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
|
|
36
|
-
pulumi.log.warn("""peer_region is deprecated: This field is deprecated and will be removed in the next major release.""")
|
|
37
34
|
if peer_region is not None:
|
|
38
35
|
pulumi.set(__self__, "peer_region", peer_region)
|
|
39
36
|
|
|
@@ -87,10 +84,9 @@ class TransitGatewayVpcAttachmentArgs:
|
|
|
87
84
|
|
|
88
85
|
@property
|
|
89
86
|
@pulumi.getter(name="peerRegion")
|
|
90
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
|
|
91
87
|
def peer_region(self) -> Optional[pulumi.Input[str]]:
|
|
92
88
|
"""
|
|
93
|
-
AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
89
|
+
AWS region of the peered VPC (if not in the same region as Aiven VPC). This value can't be changed.
|
|
94
90
|
"""
|
|
95
91
|
return pulumi.get(self, "peer_region")
|
|
96
92
|
|
|
@@ -113,7 +109,7 @@ class _TransitGatewayVpcAttachmentState:
|
|
|
113
109
|
"""
|
|
114
110
|
Input properties used for looking up and filtering TransitGatewayVpcAttachment resources.
|
|
115
111
|
:param pulumi.Input[str] peer_cloud_account: AWS account ID or GCP project ID of the peered VPC. Changing this property forces recreation of the resource.
|
|
116
|
-
:param pulumi.Input[str] peer_region: AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
112
|
+
:param pulumi.Input[str] peer_region: AWS region of the peered VPC (if not in the same region as Aiven VPC). This value can't be changed.
|
|
117
113
|
:param pulumi.Input[str] peer_vpc: Transit gateway ID. Changing this property forces recreation of the resource.
|
|
118
114
|
:param pulumi.Input[str] peering_connection_id: Cloud provider identifier for the peering connection if available
|
|
119
115
|
:param pulumi.Input[str] state: State of the peering connection
|
|
@@ -123,9 +119,6 @@ class _TransitGatewayVpcAttachmentState:
|
|
|
123
119
|
"""
|
|
124
120
|
if peer_cloud_account is not None:
|
|
125
121
|
pulumi.set(__self__, "peer_cloud_account", peer_cloud_account)
|
|
126
|
-
if peer_region is not None:
|
|
127
|
-
warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
|
|
128
|
-
pulumi.log.warn("""peer_region is deprecated: This field is deprecated and will be removed in the next major release.""")
|
|
129
122
|
if peer_region is not None:
|
|
130
123
|
pulumi.set(__self__, "peer_region", peer_region)
|
|
131
124
|
if peer_vpc is not None:
|
|
@@ -155,10 +148,9 @@ class _TransitGatewayVpcAttachmentState:
|
|
|
155
148
|
|
|
156
149
|
@property
|
|
157
150
|
@pulumi.getter(name="peerRegion")
|
|
158
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
|
|
159
151
|
def peer_region(self) -> Optional[pulumi.Input[str]]:
|
|
160
152
|
"""
|
|
161
|
-
AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
153
|
+
AWS region of the peered VPC (if not in the same region as Aiven VPC). This value can't be changed.
|
|
162
154
|
"""
|
|
163
155
|
return pulumi.get(self, "peer_region")
|
|
164
156
|
|
|
@@ -276,7 +268,7 @@ class TransitGatewayVpcAttachment(pulumi.CustomResource):
|
|
|
276
268
|
:param str resource_name: The name of the resource.
|
|
277
269
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
278
270
|
:param pulumi.Input[str] peer_cloud_account: AWS account ID or GCP project ID of the peered VPC. Changing this property forces recreation of the resource.
|
|
279
|
-
:param pulumi.Input[str] peer_region: AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
271
|
+
:param pulumi.Input[str] peer_region: AWS region of the peered VPC (if not in the same region as Aiven VPC). This value can't be changed.
|
|
280
272
|
:param pulumi.Input[str] peer_vpc: Transit gateway ID. Changing this property forces recreation of the resource.
|
|
281
273
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_peer_network_cidrs: List of private IPv4 ranges to route through the peering connection
|
|
282
274
|
:param pulumi.Input[str] vpc_id: The VPC the peering connection belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
@@ -381,7 +373,7 @@ class TransitGatewayVpcAttachment(pulumi.CustomResource):
|
|
|
381
373
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
382
374
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
383
375
|
:param pulumi.Input[str] peer_cloud_account: AWS account ID or GCP project ID of the peered VPC. Changing this property forces recreation of the resource.
|
|
384
|
-
:param pulumi.Input[str] peer_region: AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
376
|
+
:param pulumi.Input[str] peer_region: AWS region of the peered VPC (if not in the same region as Aiven VPC). This value can't be changed.
|
|
385
377
|
:param pulumi.Input[str] peer_vpc: Transit gateway ID. Changing this property forces recreation of the resource.
|
|
386
378
|
:param pulumi.Input[str] peering_connection_id: Cloud provider identifier for the peering connection if available
|
|
387
379
|
:param pulumi.Input[str] state: State of the peering connection
|
|
@@ -413,10 +405,9 @@ class TransitGatewayVpcAttachment(pulumi.CustomResource):
|
|
|
413
405
|
|
|
414
406
|
@property
|
|
415
407
|
@pulumi.getter(name="peerRegion")
|
|
416
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
|
|
417
408
|
def peer_region(self) -> pulumi.Output[Optional[str]]:
|
|
418
409
|
"""
|
|
419
|
-
AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
410
|
+
AWS region of the peered VPC (if not in the same region as Aiven VPC). This value can't be changed.
|
|
420
411
|
"""
|
|
421
412
|
return pulumi.get(self, "peer_region")
|
|
422
413
|
|