pulumi-aiven 6.13.0a1709702245__py3-none-any.whl → 6.31.0a1736831339__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 +127 -0
- pulumi_aiven/_inputs.py +32826 -13922
- pulumi_aiven/_utilities.py +41 -5
- pulumi_aiven/account.py +34 -43
- pulumi_aiven/account_authentication.py +24 -9
- pulumi_aiven/account_team.py +37 -12
- pulumi_aiven/account_team_member.py +48 -35
- pulumi_aiven/account_team_project.py +42 -25
- pulumi_aiven/alloydbomni.py +1335 -0
- pulumi_aiven/alloydbomni_database.py +347 -0
- pulumi_aiven/alloydbomni_user.py +433 -0
- pulumi_aiven/aws_privatelink.py +44 -39
- pulumi_aiven/aws_vpc_peering_connection.py +72 -57
- pulumi_aiven/azure_privatelink.py +54 -49
- pulumi_aiven/azure_privatelink_connection_approval.py +136 -33
- pulumi_aiven/azure_vpc_peering_connection.py +86 -73
- pulumi_aiven/billing_group.py +33 -30
- pulumi_aiven/cassandra.py +145 -122
- pulumi_aiven/cassandra_user.py +59 -54
- pulumi_aiven/clickhouse.py +133 -110
- pulumi_aiven/clickhouse_database.py +58 -58
- pulumi_aiven/clickhouse_grant.py +135 -130
- pulumi_aiven/clickhouse_role.py +36 -45
- pulumi_aiven/clickhouse_user.py +50 -45
- pulumi_aiven/config/__init__.pyi +5 -0
- pulumi_aiven/config/vars.py +5 -0
- pulumi_aiven/connection_pool.py +67 -62
- pulumi_aiven/dragonfly.py +1256 -0
- pulumi_aiven/flink.py +104 -100
- pulumi_aiven/flink_application.py +58 -51
- pulumi_aiven/flink_application_deployment.py +178 -73
- pulumi_aiven/flink_application_version.py +179 -96
- pulumi_aiven/gcp_privatelink.py +69 -42
- pulumi_aiven/gcp_privatelink_connection_approval.py +78 -49
- pulumi_aiven/gcp_vpc_peering_connection.py +49 -44
- pulumi_aiven/get_account.py +20 -5
- pulumi_aiven/get_account_authentication.py +31 -5
- pulumi_aiven/get_account_team.py +18 -5
- pulumi_aiven/get_account_team_member.py +29 -14
- pulumi_aiven/get_account_team_project.py +19 -6
- pulumi_aiven/get_alloydbomni.py +499 -0
- pulumi_aiven/get_alloydbomni_database.py +168 -0
- pulumi_aiven/get_alloydbomni_user.py +210 -0
- pulumi_aiven/get_aws_privatelink.py +33 -20
- pulumi_aiven/get_aws_vpc_peering_connection.py +56 -29
- pulumi_aiven/get_azure_privatelink.py +37 -22
- pulumi_aiven/get_azure_vpc_peering_connection.py +77 -28
- pulumi_aiven/get_billing_group.py +31 -8
- pulumi_aiven/get_cassanda.py +55 -19
- pulumi_aiven/get_cassandra.py +55 -19
- pulumi_aiven/get_cassandra_user.py +42 -26
- pulumi_aiven/get_clickhouse.py +55 -19
- pulumi_aiven/get_clickhouse_database.py +35 -22
- pulumi_aiven/get_clickhouse_user.py +40 -25
- pulumi_aiven/get_connection_pool.py +43 -26
- pulumi_aiven/get_dragonfly.py +499 -0
- pulumi_aiven/get_external_identity.py +160 -0
- pulumi_aiven/get_flink.py +55 -19
- pulumi_aiven/get_flink_application.py +44 -27
- pulumi_aiven/get_flink_application_version.py +55 -33
- pulumi_aiven/get_gcp_privatelink.py +63 -7
- pulumi_aiven/get_gcp_vpc_peering_connection.py +39 -24
- pulumi_aiven/get_grafana.py +55 -19
- pulumi_aiven/get_influx_db.py +41 -5
- pulumi_aiven/get_influxdb_database.py +18 -5
- pulumi_aiven/get_influxdb_user.py +21 -5
- pulumi_aiven/get_kafka.py +59 -21
- pulumi_aiven/get_kafka_acl.py +50 -33
- pulumi_aiven/get_kafka_connect.py +54 -32
- pulumi_aiven/get_kafka_connector.py +44 -24
- pulumi_aiven/get_kafka_mirror_maker.py +50 -28
- pulumi_aiven/get_kafka_schema.py +35 -19
- pulumi_aiven/get_kafka_schema_configuration.py +32 -17
- pulumi_aiven/get_kafka_schema_registry_acl.py +37 -20
- pulumi_aiven/get_kafka_topic.py +70 -25
- pulumi_aiven/get_kafka_user.py +42 -26
- pulumi_aiven/get_m3_aggregator.py +51 -15
- pulumi_aiven/get_m3_db.py +55 -19
- pulumi_aiven/get_m3db_user.py +38 -24
- pulumi_aiven/get_mirror_maker_replication_flow.py +86 -21
- pulumi_aiven/get_my_sql.py +50 -14
- pulumi_aiven/get_mysql_database.py +31 -18
- pulumi_aiven/get_mysql_user.py +36 -19
- pulumi_aiven/get_open_search.py +50 -14
- pulumi_aiven/get_open_search_acl_config.py +27 -15
- pulumi_aiven/get_open_search_acl_rule.py +37 -21
- pulumi_aiven/get_opensearch_security_plugin_config.py +29 -15
- pulumi_aiven/get_opensearch_user.py +32 -18
- pulumi_aiven/get_organization.py +25 -13
- pulumi_aiven/get_organization_application_user.py +176 -0
- pulumi_aiven/get_organization_user.py +18 -5
- pulumi_aiven/get_organization_user_group.py +48 -14
- pulumi_aiven/get_organization_user_list.py +121 -0
- pulumi_aiven/get_organizational_unit.py +26 -14
- pulumi_aiven/get_pg.py +55 -19
- pulumi_aiven/get_pg_database.py +39 -24
- pulumi_aiven/get_pg_user.py +44 -27
- pulumi_aiven/get_project.py +43 -22
- pulumi_aiven/get_project_user.py +27 -15
- pulumi_aiven/get_project_vpc.py +31 -19
- pulumi_aiven/get_redis.py +50 -14
- pulumi_aiven/get_redis_user.py +40 -22
- pulumi_aiven/get_service_component.py +40 -18
- pulumi_aiven/get_service_integration.py +163 -49
- pulumi_aiven/get_service_integration_endpoint.py +128 -33
- pulumi_aiven/get_thanos.py +499 -0
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +35 -18
- pulumi_aiven/get_valkey.py +499 -0
- pulumi_aiven/get_valkey_user.py +218 -0
- pulumi_aiven/grafana.py +188 -318
- pulumi_aiven/influx_db.py +127 -90
- pulumi_aiven/influxdb_database.py +40 -55
- pulumi_aiven/influxdb_user.py +47 -42
- pulumi_aiven/kafka.py +157 -140
- pulumi_aiven/kafka_acl.py +64 -53
- pulumi_aiven/kafka_connect.py +201 -328
- pulumi_aiven/kafka_connector.py +67 -56
- pulumi_aiven/kafka_mirror_maker.py +139 -318
- pulumi_aiven/kafka_native_acl.py +588 -0
- pulumi_aiven/kafka_schema.py +65 -56
- pulumi_aiven/kafka_schema_configuration.py +25 -20
- pulumi_aiven/kafka_schema_registry_acl.py +80 -35
- pulumi_aiven/kafka_topic.py +184 -65
- pulumi_aiven/kafka_user.py +59 -54
- pulumi_aiven/m3_aggregator.py +176 -308
- pulumi_aiven/m3_db.py +190 -322
- pulumi_aiven/m3db_user.py +51 -46
- pulumi_aiven/mirror_maker_replication_flow.py +217 -53
- pulumi_aiven/my_sql.py +190 -322
- pulumi_aiven/mysql_database.py +32 -47
- pulumi_aiven/mysql_user.py +37 -32
- pulumi_aiven/open_search.py +128 -105
- pulumi_aiven/open_search_acl_config.py +33 -32
- pulumi_aiven/open_search_acl_rule.py +55 -50
- pulumi_aiven/opensearch_security_plugin_config.py +69 -16
- pulumi_aiven/opensearch_user.py +30 -25
- pulumi_aiven/organization.py +18 -13
- pulumi_aiven/organization_application_user.py +345 -0
- pulumi_aiven/organization_application_user_token.py +711 -0
- pulumi_aiven/organization_group_project.py +349 -0
- pulumi_aiven/organization_permission.py +421 -0
- pulumi_aiven/organization_user.py +25 -46
- pulumi_aiven/organization_user_group.py +64 -23
- pulumi_aiven/organization_user_group_member.py +359 -0
- pulumi_aiven/organizational_unit.py +41 -32
- pulumi_aiven/outputs.py +38509 -21612
- pulumi_aiven/pg.py +92 -88
- pulumi_aiven/pg_database.py +52 -67
- pulumi_aiven/pg_user.py +80 -61
- pulumi_aiven/project.py +111 -102
- pulumi_aiven/project_user.py +44 -31
- pulumi_aiven/project_vpc.py +58 -29
- pulumi_aiven/provider.py +5 -0
- pulumi_aiven/pulumi-plugin.json +2 -1
- pulumi_aiven/redis.py +163 -295
- pulumi_aiven/redis_user.py +58 -53
- pulumi_aiven/service_integration.py +511 -161
- pulumi_aiven/service_integration_endpoint.py +466 -158
- pulumi_aiven/static_ip.py +21 -16
- pulumi_aiven/thanos.py +1262 -0
- pulumi_aiven/transit_gateway_vpc_attachment.py +44 -54
- pulumi_aiven/valkey.py +1256 -0
- pulumi_aiven/valkey_user.py +606 -0
- {pulumi_aiven-6.13.0a1709702245.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/METADATA +7 -6
- pulumi_aiven-6.31.0a1736831339.dist-info/RECORD +169 -0
- {pulumi_aiven-6.13.0a1709702245.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/WHEEL +1 -1
- pulumi_aiven-6.13.0a1709702245.dist-info/RECORD +0 -146
- {pulumi_aiven-6.13.0a1709702245.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['KafkaSchemaRegistryAclArgs', 'KafkaSchemaRegistryAcl']
|
|
@@ -21,11 +26,11 @@ class KafkaSchemaRegistryAclArgs:
|
|
|
21
26
|
username: pulumi.Input[str]):
|
|
22
27
|
"""
|
|
23
28
|
The set of arguments for constructing a KafkaSchemaRegistryAcl resource.
|
|
24
|
-
:param pulumi.Input[str] permission: Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`.
|
|
25
|
-
:param pulumi.Input[str] project:
|
|
26
|
-
:param pulumi.Input[str] resource: Resource name pattern for the Schema Registry ACL entry.
|
|
27
|
-
:param pulumi.Input[str] service_name:
|
|
28
|
-
:param pulumi.Input[str] username: Username pattern for the ACL entry.
|
|
29
|
+
:param pulumi.Input[str] permission: Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`. Changing this property forces recreation of the resource.
|
|
30
|
+
:param pulumi.Input[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.
|
|
31
|
+
:param pulumi.Input[str] resource: Resource name pattern for the Schema Registry ACL entry. Changing this property forces recreation of the resource.
|
|
32
|
+
:param pulumi.Input[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.
|
|
33
|
+
:param pulumi.Input[str] username: Username pattern for the ACL entry. Changing this property forces recreation of the resource.
|
|
29
34
|
"""
|
|
30
35
|
pulumi.set(__self__, "permission", permission)
|
|
31
36
|
pulumi.set(__self__, "project", project)
|
|
@@ -37,7 +42,7 @@ class KafkaSchemaRegistryAclArgs:
|
|
|
37
42
|
@pulumi.getter
|
|
38
43
|
def permission(self) -> pulumi.Input[str]:
|
|
39
44
|
"""
|
|
40
|
-
Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`.
|
|
45
|
+
Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`. Changing this property forces recreation of the resource.
|
|
41
46
|
"""
|
|
42
47
|
return pulumi.get(self, "permission")
|
|
43
48
|
|
|
@@ -49,7 +54,7 @@ class KafkaSchemaRegistryAclArgs:
|
|
|
49
54
|
@pulumi.getter
|
|
50
55
|
def project(self) -> pulumi.Input[str]:
|
|
51
56
|
"""
|
|
52
|
-
|
|
57
|
+
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.
|
|
53
58
|
"""
|
|
54
59
|
return pulumi.get(self, "project")
|
|
55
60
|
|
|
@@ -61,7 +66,7 @@ class KafkaSchemaRegistryAclArgs:
|
|
|
61
66
|
@pulumi.getter
|
|
62
67
|
def resource(self) -> pulumi.Input[str]:
|
|
63
68
|
"""
|
|
64
|
-
Resource name pattern for the Schema Registry ACL entry.
|
|
69
|
+
Resource name pattern for the Schema Registry ACL entry. Changing this property forces recreation of the resource.
|
|
65
70
|
"""
|
|
66
71
|
return pulumi.get(self, "resource")
|
|
67
72
|
|
|
@@ -73,7 +78,7 @@ class KafkaSchemaRegistryAclArgs:
|
|
|
73
78
|
@pulumi.getter(name="serviceName")
|
|
74
79
|
def service_name(self) -> pulumi.Input[str]:
|
|
75
80
|
"""
|
|
76
|
-
|
|
81
|
+
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.
|
|
77
82
|
"""
|
|
78
83
|
return pulumi.get(self, "service_name")
|
|
79
84
|
|
|
@@ -85,7 +90,7 @@ class KafkaSchemaRegistryAclArgs:
|
|
|
85
90
|
@pulumi.getter
|
|
86
91
|
def username(self) -> pulumi.Input[str]:
|
|
87
92
|
"""
|
|
88
|
-
Username pattern for the ACL entry.
|
|
93
|
+
Username pattern for the ACL entry. Changing this property forces recreation of the resource.
|
|
89
94
|
"""
|
|
90
95
|
return pulumi.get(self, "username")
|
|
91
96
|
|
|
@@ -106,11 +111,11 @@ class _KafkaSchemaRegistryAclState:
|
|
|
106
111
|
"""
|
|
107
112
|
Input properties used for looking up and filtering KafkaSchemaRegistryAcl resources.
|
|
108
113
|
:param pulumi.Input[str] acl_id: Kafka Schema Registry ACL ID
|
|
109
|
-
:param pulumi.Input[str] permission: Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`.
|
|
110
|
-
:param pulumi.Input[str] project:
|
|
111
|
-
:param pulumi.Input[str] resource: Resource name pattern for the Schema Registry ACL entry.
|
|
112
|
-
:param pulumi.Input[str] service_name:
|
|
113
|
-
:param pulumi.Input[str] username: Username pattern for the ACL entry.
|
|
114
|
+
:param pulumi.Input[str] permission: Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`. Changing this property forces recreation of the resource.
|
|
115
|
+
:param pulumi.Input[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.
|
|
116
|
+
:param pulumi.Input[str] resource: Resource name pattern for the Schema Registry ACL entry. Changing this property forces recreation of the resource.
|
|
117
|
+
:param pulumi.Input[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.
|
|
118
|
+
:param pulumi.Input[str] username: Username pattern for the ACL entry. Changing this property forces recreation of the resource.
|
|
114
119
|
"""
|
|
115
120
|
if acl_id is not None:
|
|
116
121
|
pulumi.set(__self__, "acl_id", acl_id)
|
|
@@ -141,7 +146,7 @@ class _KafkaSchemaRegistryAclState:
|
|
|
141
146
|
@pulumi.getter
|
|
142
147
|
def permission(self) -> Optional[pulumi.Input[str]]:
|
|
143
148
|
"""
|
|
144
|
-
Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`.
|
|
149
|
+
Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`. Changing this property forces recreation of the resource.
|
|
145
150
|
"""
|
|
146
151
|
return pulumi.get(self, "permission")
|
|
147
152
|
|
|
@@ -153,7 +158,7 @@ class _KafkaSchemaRegistryAclState:
|
|
|
153
158
|
@pulumi.getter
|
|
154
159
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
155
160
|
"""
|
|
156
|
-
|
|
161
|
+
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.
|
|
157
162
|
"""
|
|
158
163
|
return pulumi.get(self, "project")
|
|
159
164
|
|
|
@@ -165,7 +170,7 @@ class _KafkaSchemaRegistryAclState:
|
|
|
165
170
|
@pulumi.getter
|
|
166
171
|
def resource(self) -> Optional[pulumi.Input[str]]:
|
|
167
172
|
"""
|
|
168
|
-
Resource name pattern for the Schema Registry ACL entry.
|
|
173
|
+
Resource name pattern for the Schema Registry ACL entry. Changing this property forces recreation of the resource.
|
|
169
174
|
"""
|
|
170
175
|
return pulumi.get(self, "resource")
|
|
171
176
|
|
|
@@ -177,7 +182,7 @@ class _KafkaSchemaRegistryAclState:
|
|
|
177
182
|
@pulumi.getter(name="serviceName")
|
|
178
183
|
def service_name(self) -> Optional[pulumi.Input[str]]:
|
|
179
184
|
"""
|
|
180
|
-
|
|
185
|
+
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.
|
|
181
186
|
"""
|
|
182
187
|
return pulumi.get(self, "service_name")
|
|
183
188
|
|
|
@@ -189,7 +194,7 @@ class _KafkaSchemaRegistryAclState:
|
|
|
189
194
|
@pulumi.getter
|
|
190
195
|
def username(self) -> Optional[pulumi.Input[str]]:
|
|
191
196
|
"""
|
|
192
|
-
Username pattern for the ACL entry.
|
|
197
|
+
Username pattern for the ACL entry. Changing this property forces recreation of the resource.
|
|
193
198
|
"""
|
|
194
199
|
return pulumi.get(self, "username")
|
|
195
200
|
|
|
@@ -212,13 +217,33 @@ class KafkaSchemaRegistryAcl(pulumi.CustomResource):
|
|
|
212
217
|
"""
|
|
213
218
|
The Resource Kafka Schema Registry ACL resource allows the creation and management of Schema Registry ACLs for an Aiven Kafka service.
|
|
214
219
|
|
|
220
|
+
## Example Usage
|
|
221
|
+
|
|
222
|
+
```python
|
|
223
|
+
import pulumi
|
|
224
|
+
import pulumi_aiven as aiven
|
|
225
|
+
|
|
226
|
+
foo = aiven.KafkaSchemaRegistryAcl("foo",
|
|
227
|
+
project=kafka_schemas_project1["project"],
|
|
228
|
+
service_name=kafka_service1["serviceName"],
|
|
229
|
+
resource="Subject:topic-1",
|
|
230
|
+
username="group-user-*",
|
|
231
|
+
permission="schema_registry_read")
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
## Import
|
|
235
|
+
|
|
236
|
+
```sh
|
|
237
|
+
$ pulumi import aiven:index/kafkaSchemaRegistryAcl:KafkaSchemaRegistryAcl foo PROJECT/SERVICE_NAME/ACL_ID
|
|
238
|
+
```
|
|
239
|
+
|
|
215
240
|
:param str resource_name: The name of the resource.
|
|
216
241
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
217
|
-
:param pulumi.Input[str] permission: Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`.
|
|
218
|
-
:param pulumi.Input[str] project:
|
|
219
|
-
:param pulumi.Input[str] resource: Resource name pattern for the Schema Registry ACL entry.
|
|
220
|
-
:param pulumi.Input[str] service_name:
|
|
221
|
-
:param pulumi.Input[str] username: Username pattern for the ACL entry.
|
|
242
|
+
:param pulumi.Input[str] permission: Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`. Changing this property forces recreation of the resource.
|
|
243
|
+
:param pulumi.Input[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.
|
|
244
|
+
:param pulumi.Input[str] resource: Resource name pattern for the Schema Registry ACL entry. Changing this property forces recreation of the resource.
|
|
245
|
+
:param pulumi.Input[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.
|
|
246
|
+
:param pulumi.Input[str] username: Username pattern for the ACL entry. Changing this property forces recreation of the resource.
|
|
222
247
|
"""
|
|
223
248
|
...
|
|
224
249
|
@overload
|
|
@@ -229,6 +254,26 @@ class KafkaSchemaRegistryAcl(pulumi.CustomResource):
|
|
|
229
254
|
"""
|
|
230
255
|
The Resource Kafka Schema Registry ACL resource allows the creation and management of Schema Registry ACLs for an Aiven Kafka service.
|
|
231
256
|
|
|
257
|
+
## Example Usage
|
|
258
|
+
|
|
259
|
+
```python
|
|
260
|
+
import pulumi
|
|
261
|
+
import pulumi_aiven as aiven
|
|
262
|
+
|
|
263
|
+
foo = aiven.KafkaSchemaRegistryAcl("foo",
|
|
264
|
+
project=kafka_schemas_project1["project"],
|
|
265
|
+
service_name=kafka_service1["serviceName"],
|
|
266
|
+
resource="Subject:topic-1",
|
|
267
|
+
username="group-user-*",
|
|
268
|
+
permission="schema_registry_read")
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
## Import
|
|
272
|
+
|
|
273
|
+
```sh
|
|
274
|
+
$ pulumi import aiven:index/kafkaSchemaRegistryAcl:KafkaSchemaRegistryAcl foo PROJECT/SERVICE_NAME/ACL_ID
|
|
275
|
+
```
|
|
276
|
+
|
|
232
277
|
:param str resource_name: The name of the resource.
|
|
233
278
|
:param KafkaSchemaRegistryAclArgs args: The arguments to use to populate this resource's properties.
|
|
234
279
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -298,11 +343,11 @@ class KafkaSchemaRegistryAcl(pulumi.CustomResource):
|
|
|
298
343
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
299
344
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
300
345
|
:param pulumi.Input[str] acl_id: Kafka Schema Registry ACL ID
|
|
301
|
-
:param pulumi.Input[str] permission: Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`.
|
|
302
|
-
:param pulumi.Input[str] project:
|
|
303
|
-
:param pulumi.Input[str] resource: Resource name pattern for the Schema Registry ACL entry.
|
|
304
|
-
:param pulumi.Input[str] service_name:
|
|
305
|
-
:param pulumi.Input[str] username: Username pattern for the ACL entry.
|
|
346
|
+
:param pulumi.Input[str] permission: Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`. Changing this property forces recreation of the resource.
|
|
347
|
+
:param pulumi.Input[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.
|
|
348
|
+
:param pulumi.Input[str] resource: Resource name pattern for the Schema Registry ACL entry. Changing this property forces recreation of the resource.
|
|
349
|
+
:param pulumi.Input[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.
|
|
350
|
+
:param pulumi.Input[str] username: Username pattern for the ACL entry. Changing this property forces recreation of the resource.
|
|
306
351
|
"""
|
|
307
352
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
308
353
|
|
|
@@ -328,7 +373,7 @@ class KafkaSchemaRegistryAcl(pulumi.CustomResource):
|
|
|
328
373
|
@pulumi.getter
|
|
329
374
|
def permission(self) -> pulumi.Output[str]:
|
|
330
375
|
"""
|
|
331
|
-
Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`.
|
|
376
|
+
Kafka Schema Registry permission to grant. The possible values are `schema_registry_read` and `schema_registry_write`. Changing this property forces recreation of the resource.
|
|
332
377
|
"""
|
|
333
378
|
return pulumi.get(self, "permission")
|
|
334
379
|
|
|
@@ -336,7 +381,7 @@ class KafkaSchemaRegistryAcl(pulumi.CustomResource):
|
|
|
336
381
|
@pulumi.getter
|
|
337
382
|
def project(self) -> pulumi.Output[str]:
|
|
338
383
|
"""
|
|
339
|
-
|
|
384
|
+
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.
|
|
340
385
|
"""
|
|
341
386
|
return pulumi.get(self, "project")
|
|
342
387
|
|
|
@@ -344,7 +389,7 @@ class KafkaSchemaRegistryAcl(pulumi.CustomResource):
|
|
|
344
389
|
@pulumi.getter
|
|
345
390
|
def resource(self) -> pulumi.Output[str]:
|
|
346
391
|
"""
|
|
347
|
-
Resource name pattern for the Schema Registry ACL entry.
|
|
392
|
+
Resource name pattern for the Schema Registry ACL entry. Changing this property forces recreation of the resource.
|
|
348
393
|
"""
|
|
349
394
|
return pulumi.get(self, "resource")
|
|
350
395
|
|
|
@@ -352,7 +397,7 @@ class KafkaSchemaRegistryAcl(pulumi.CustomResource):
|
|
|
352
397
|
@pulumi.getter(name="serviceName")
|
|
353
398
|
def service_name(self) -> pulumi.Output[str]:
|
|
354
399
|
"""
|
|
355
|
-
|
|
400
|
+
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.
|
|
356
401
|
"""
|
|
357
402
|
return pulumi.get(self, "service_name")
|
|
358
403
|
|
|
@@ -360,7 +405,7 @@ class KafkaSchemaRegistryAcl(pulumi.CustomResource):
|
|
|
360
405
|
@pulumi.getter
|
|
361
406
|
def username(self) -> pulumi.Output[str]:
|
|
362
407
|
"""
|
|
363
|
-
Username pattern for the ACL entry.
|
|
408
|
+
Username pattern for the ACL entry. Changing this property forces recreation of the resource.
|
|
364
409
|
"""
|
|
365
410
|
return pulumi.get(self, "username")
|
|
366
411
|
|