pulumi-kafka 3.9.0a1741413298__py3-none-any.whl → 3.9.1__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-kafka might be problematic. Click here for more details.
- pulumi_kafka/__init__.py +1 -0
- pulumi_kafka/acl.py +100 -98
- pulumi_kafka/config/__init__.py +1 -0
- pulumi_kafka/config/__init__.pyi +11 -0
- pulumi_kafka/config/vars.py +15 -0
- pulumi_kafka/get_topic.py +8 -7
- pulumi_kafka/provider.py +257 -179
- pulumi_kafka/pulumi-plugin.json +1 -1
- pulumi_kafka/quota.py +44 -42
- pulumi_kafka/topic.py +58 -56
- pulumi_kafka/user_scram_credential.py +58 -56
- {pulumi_kafka-3.9.0a1741413298.dist-info → pulumi_kafka-3.9.1.dist-info}/METADATA +4 -4
- pulumi_kafka-3.9.1.dist-info/RECORD +17 -0
- {pulumi_kafka-3.9.0a1741413298.dist-info → pulumi_kafka-3.9.1.dist-info}/WHEEL +1 -1
- pulumi_kafka-3.9.0a1741413298.dist-info/RECORD +0 -17
- {pulumi_kafka-3.9.0a1741413298.dist-info → pulumi_kafka-3.9.1.dist-info}/top_level.txt +0 -0
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -19,16 +20,16 @@ __all__ = ['UserScramCredentialArgs', 'UserScramCredential']
|
|
|
19
20
|
@pulumi.input_type
|
|
20
21
|
class UserScramCredentialArgs:
|
|
21
22
|
def __init__(__self__, *,
|
|
22
|
-
password: pulumi.Input[str],
|
|
23
|
-
scram_mechanism: pulumi.Input[str],
|
|
24
|
-
username: pulumi.Input[str],
|
|
25
|
-
scram_iterations: Optional[pulumi.Input[int]] = None):
|
|
23
|
+
password: pulumi.Input[builtins.str],
|
|
24
|
+
scram_mechanism: pulumi.Input[builtins.str],
|
|
25
|
+
username: pulumi.Input[builtins.str],
|
|
26
|
+
scram_iterations: Optional[pulumi.Input[builtins.int]] = None):
|
|
26
27
|
"""
|
|
27
28
|
The set of arguments for constructing a UserScramCredential resource.
|
|
28
|
-
:param pulumi.Input[str] password: The password of the credential
|
|
29
|
-
:param pulumi.Input[str] scram_mechanism: The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
30
|
-
:param pulumi.Input[str] username: The name of the credential
|
|
31
|
-
:param pulumi.Input[int] scram_iterations: The number of SCRAM iterations used when generating the credential
|
|
29
|
+
:param pulumi.Input[builtins.str] password: The password of the credential
|
|
30
|
+
:param pulumi.Input[builtins.str] scram_mechanism: The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
31
|
+
:param pulumi.Input[builtins.str] username: The name of the credential
|
|
32
|
+
:param pulumi.Input[builtins.int] scram_iterations: The number of SCRAM iterations used when generating the credential
|
|
32
33
|
"""
|
|
33
34
|
pulumi.set(__self__, "password", password)
|
|
34
35
|
pulumi.set(__self__, "scram_mechanism", scram_mechanism)
|
|
@@ -38,66 +39,66 @@ class UserScramCredentialArgs:
|
|
|
38
39
|
|
|
39
40
|
@property
|
|
40
41
|
@pulumi.getter
|
|
41
|
-
def password(self) -> pulumi.Input[str]:
|
|
42
|
+
def password(self) -> pulumi.Input[builtins.str]:
|
|
42
43
|
"""
|
|
43
44
|
The password of the credential
|
|
44
45
|
"""
|
|
45
46
|
return pulumi.get(self, "password")
|
|
46
47
|
|
|
47
48
|
@password.setter
|
|
48
|
-
def password(self, value: pulumi.Input[str]):
|
|
49
|
+
def password(self, value: pulumi.Input[builtins.str]):
|
|
49
50
|
pulumi.set(self, "password", value)
|
|
50
51
|
|
|
51
52
|
@property
|
|
52
53
|
@pulumi.getter(name="scramMechanism")
|
|
53
|
-
def scram_mechanism(self) -> pulumi.Input[str]:
|
|
54
|
+
def scram_mechanism(self) -> pulumi.Input[builtins.str]:
|
|
54
55
|
"""
|
|
55
56
|
The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
56
57
|
"""
|
|
57
58
|
return pulumi.get(self, "scram_mechanism")
|
|
58
59
|
|
|
59
60
|
@scram_mechanism.setter
|
|
60
|
-
def scram_mechanism(self, value: pulumi.Input[str]):
|
|
61
|
+
def scram_mechanism(self, value: pulumi.Input[builtins.str]):
|
|
61
62
|
pulumi.set(self, "scram_mechanism", value)
|
|
62
63
|
|
|
63
64
|
@property
|
|
64
65
|
@pulumi.getter
|
|
65
|
-
def username(self) -> pulumi.Input[str]:
|
|
66
|
+
def username(self) -> pulumi.Input[builtins.str]:
|
|
66
67
|
"""
|
|
67
68
|
The name of the credential
|
|
68
69
|
"""
|
|
69
70
|
return pulumi.get(self, "username")
|
|
70
71
|
|
|
71
72
|
@username.setter
|
|
72
|
-
def username(self, value: pulumi.Input[str]):
|
|
73
|
+
def username(self, value: pulumi.Input[builtins.str]):
|
|
73
74
|
pulumi.set(self, "username", value)
|
|
74
75
|
|
|
75
76
|
@property
|
|
76
77
|
@pulumi.getter(name="scramIterations")
|
|
77
|
-
def scram_iterations(self) -> Optional[pulumi.Input[int]]:
|
|
78
|
+
def scram_iterations(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
78
79
|
"""
|
|
79
80
|
The number of SCRAM iterations used when generating the credential
|
|
80
81
|
"""
|
|
81
82
|
return pulumi.get(self, "scram_iterations")
|
|
82
83
|
|
|
83
84
|
@scram_iterations.setter
|
|
84
|
-
def scram_iterations(self, value: Optional[pulumi.Input[int]]):
|
|
85
|
+
def scram_iterations(self, value: Optional[pulumi.Input[builtins.int]]):
|
|
85
86
|
pulumi.set(self, "scram_iterations", value)
|
|
86
87
|
|
|
87
88
|
|
|
88
89
|
@pulumi.input_type
|
|
89
90
|
class _UserScramCredentialState:
|
|
90
91
|
def __init__(__self__, *,
|
|
91
|
-
password: Optional[pulumi.Input[str]] = None,
|
|
92
|
-
scram_iterations: Optional[pulumi.Input[int]] = None,
|
|
93
|
-
scram_mechanism: Optional[pulumi.Input[str]] = None,
|
|
94
|
-
username: Optional[pulumi.Input[str]] = None):
|
|
92
|
+
password: Optional[pulumi.Input[builtins.str]] = None,
|
|
93
|
+
scram_iterations: Optional[pulumi.Input[builtins.int]] = None,
|
|
94
|
+
scram_mechanism: Optional[pulumi.Input[builtins.str]] = None,
|
|
95
|
+
username: Optional[pulumi.Input[builtins.str]] = None):
|
|
95
96
|
"""
|
|
96
97
|
Input properties used for looking up and filtering UserScramCredential resources.
|
|
97
|
-
:param pulumi.Input[str] password: The password of the credential
|
|
98
|
-
:param pulumi.Input[int] scram_iterations: The number of SCRAM iterations used when generating the credential
|
|
99
|
-
:param pulumi.Input[str] scram_mechanism: The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
100
|
-
:param pulumi.Input[str] username: The name of the credential
|
|
98
|
+
:param pulumi.Input[builtins.str] password: The password of the credential
|
|
99
|
+
:param pulumi.Input[builtins.int] scram_iterations: The number of SCRAM iterations used when generating the credential
|
|
100
|
+
:param pulumi.Input[builtins.str] scram_mechanism: The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
101
|
+
:param pulumi.Input[builtins.str] username: The name of the credential
|
|
101
102
|
"""
|
|
102
103
|
if password is not None:
|
|
103
104
|
pulumi.set(__self__, "password", password)
|
|
@@ -110,71 +111,72 @@ class _UserScramCredentialState:
|
|
|
110
111
|
|
|
111
112
|
@property
|
|
112
113
|
@pulumi.getter
|
|
113
|
-
def password(self) -> Optional[pulumi.Input[str]]:
|
|
114
|
+
def password(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
114
115
|
"""
|
|
115
116
|
The password of the credential
|
|
116
117
|
"""
|
|
117
118
|
return pulumi.get(self, "password")
|
|
118
119
|
|
|
119
120
|
@password.setter
|
|
120
|
-
def password(self, value: Optional[pulumi.Input[str]]):
|
|
121
|
+
def password(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
121
122
|
pulumi.set(self, "password", value)
|
|
122
123
|
|
|
123
124
|
@property
|
|
124
125
|
@pulumi.getter(name="scramIterations")
|
|
125
|
-
def scram_iterations(self) -> Optional[pulumi.Input[int]]:
|
|
126
|
+
def scram_iterations(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
126
127
|
"""
|
|
127
128
|
The number of SCRAM iterations used when generating the credential
|
|
128
129
|
"""
|
|
129
130
|
return pulumi.get(self, "scram_iterations")
|
|
130
131
|
|
|
131
132
|
@scram_iterations.setter
|
|
132
|
-
def scram_iterations(self, value: Optional[pulumi.Input[int]]):
|
|
133
|
+
def scram_iterations(self, value: Optional[pulumi.Input[builtins.int]]):
|
|
133
134
|
pulumi.set(self, "scram_iterations", value)
|
|
134
135
|
|
|
135
136
|
@property
|
|
136
137
|
@pulumi.getter(name="scramMechanism")
|
|
137
|
-
def scram_mechanism(self) -> Optional[pulumi.Input[str]]:
|
|
138
|
+
def scram_mechanism(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
138
139
|
"""
|
|
139
140
|
The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
140
141
|
"""
|
|
141
142
|
return pulumi.get(self, "scram_mechanism")
|
|
142
143
|
|
|
143
144
|
@scram_mechanism.setter
|
|
144
|
-
def scram_mechanism(self, value: Optional[pulumi.Input[str]]):
|
|
145
|
+
def scram_mechanism(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
145
146
|
pulumi.set(self, "scram_mechanism", value)
|
|
146
147
|
|
|
147
148
|
@property
|
|
148
149
|
@pulumi.getter
|
|
149
|
-
def username(self) -> Optional[pulumi.Input[str]]:
|
|
150
|
+
def username(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
150
151
|
"""
|
|
151
152
|
The name of the credential
|
|
152
153
|
"""
|
|
153
154
|
return pulumi.get(self, "username")
|
|
154
155
|
|
|
155
156
|
@username.setter
|
|
156
|
-
def username(self, value: Optional[pulumi.Input[str]]):
|
|
157
|
+
def username(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
157
158
|
pulumi.set(self, "username", value)
|
|
158
159
|
|
|
159
160
|
|
|
161
|
+
@pulumi.type_token("kafka:index/userScramCredential:UserScramCredential")
|
|
160
162
|
class UserScramCredential(pulumi.CustomResource):
|
|
161
163
|
@overload
|
|
162
164
|
def __init__(__self__,
|
|
163
165
|
resource_name: str,
|
|
164
166
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
165
|
-
password: Optional[pulumi.Input[str]] = None,
|
|
166
|
-
scram_iterations: Optional[pulumi.Input[int]] = None,
|
|
167
|
-
scram_mechanism: Optional[pulumi.Input[str]] = None,
|
|
168
|
-
username: Optional[pulumi.Input[str]] = None,
|
|
167
|
+
password: Optional[pulumi.Input[builtins.str]] = None,
|
|
168
|
+
scram_iterations: Optional[pulumi.Input[builtins.int]] = None,
|
|
169
|
+
scram_mechanism: Optional[pulumi.Input[builtins.str]] = None,
|
|
170
|
+
username: Optional[pulumi.Input[builtins.str]] = None,
|
|
169
171
|
__props__=None):
|
|
170
172
|
"""
|
|
171
173
|
Create a UserScramCredential resource with the given unique name, props, and options.
|
|
172
174
|
:param str resource_name: The name of the resource.
|
|
173
175
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
174
|
-
:param pulumi.Input[str] password: The password of the credential
|
|
175
|
-
:param pulumi.Input[int] scram_iterations: The number of SCRAM iterations used when generating the credential
|
|
176
|
-
:param pulumi.Input[str] scram_mechanism: The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
177
|
-
:param pulumi.Input[str] username: The name of the credential
|
|
176
|
+
:param pulumi.Input[builtins.str] password: The password of the credential
|
|
177
|
+
:param pulumi.Input[builtins.int] scram_iterations: The number of SCRAM iterations used when generating the credential
|
|
178
|
+
:param pulumi.Input[builtins.str] scram_mechanism: The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
179
|
+
:param pulumi.Input[builtins.str] username: The name of the credential
|
|
178
180
|
"""
|
|
179
181
|
...
|
|
180
182
|
@overload
|
|
@@ -199,10 +201,10 @@ class UserScramCredential(pulumi.CustomResource):
|
|
|
199
201
|
def _internal_init(__self__,
|
|
200
202
|
resource_name: str,
|
|
201
203
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
202
|
-
password: Optional[pulumi.Input[str]] = None,
|
|
203
|
-
scram_iterations: Optional[pulumi.Input[int]] = None,
|
|
204
|
-
scram_mechanism: Optional[pulumi.Input[str]] = None,
|
|
205
|
-
username: Optional[pulumi.Input[str]] = None,
|
|
204
|
+
password: Optional[pulumi.Input[builtins.str]] = None,
|
|
205
|
+
scram_iterations: Optional[pulumi.Input[builtins.int]] = None,
|
|
206
|
+
scram_mechanism: Optional[pulumi.Input[builtins.str]] = None,
|
|
207
|
+
username: Optional[pulumi.Input[builtins.str]] = None,
|
|
206
208
|
__props__=None):
|
|
207
209
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
208
210
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -234,10 +236,10 @@ class UserScramCredential(pulumi.CustomResource):
|
|
|
234
236
|
def get(resource_name: str,
|
|
235
237
|
id: pulumi.Input[str],
|
|
236
238
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
237
|
-
password: Optional[pulumi.Input[str]] = None,
|
|
238
|
-
scram_iterations: Optional[pulumi.Input[int]] = None,
|
|
239
|
-
scram_mechanism: Optional[pulumi.Input[str]] = None,
|
|
240
|
-
username: Optional[pulumi.Input[str]] = None) -> 'UserScramCredential':
|
|
239
|
+
password: Optional[pulumi.Input[builtins.str]] = None,
|
|
240
|
+
scram_iterations: Optional[pulumi.Input[builtins.int]] = None,
|
|
241
|
+
scram_mechanism: Optional[pulumi.Input[builtins.str]] = None,
|
|
242
|
+
username: Optional[pulumi.Input[builtins.str]] = None) -> 'UserScramCredential':
|
|
241
243
|
"""
|
|
242
244
|
Get an existing UserScramCredential resource's state with the given name, id, and optional extra
|
|
243
245
|
properties used to qualify the lookup.
|
|
@@ -245,10 +247,10 @@ class UserScramCredential(pulumi.CustomResource):
|
|
|
245
247
|
:param str resource_name: The unique name of the resulting resource.
|
|
246
248
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
247
249
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
248
|
-
:param pulumi.Input[str] password: The password of the credential
|
|
249
|
-
:param pulumi.Input[int] scram_iterations: The number of SCRAM iterations used when generating the credential
|
|
250
|
-
:param pulumi.Input[str] scram_mechanism: The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
251
|
-
:param pulumi.Input[str] username: The name of the credential
|
|
250
|
+
:param pulumi.Input[builtins.str] password: The password of the credential
|
|
251
|
+
:param pulumi.Input[builtins.int] scram_iterations: The number of SCRAM iterations used when generating the credential
|
|
252
|
+
:param pulumi.Input[builtins.str] scram_mechanism: The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
253
|
+
:param pulumi.Input[builtins.str] username: The name of the credential
|
|
252
254
|
"""
|
|
253
255
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
254
256
|
|
|
@@ -262,7 +264,7 @@ class UserScramCredential(pulumi.CustomResource):
|
|
|
262
264
|
|
|
263
265
|
@property
|
|
264
266
|
@pulumi.getter
|
|
265
|
-
def password(self) -> pulumi.Output[str]:
|
|
267
|
+
def password(self) -> pulumi.Output[builtins.str]:
|
|
266
268
|
"""
|
|
267
269
|
The password of the credential
|
|
268
270
|
"""
|
|
@@ -270,7 +272,7 @@ class UserScramCredential(pulumi.CustomResource):
|
|
|
270
272
|
|
|
271
273
|
@property
|
|
272
274
|
@pulumi.getter(name="scramIterations")
|
|
273
|
-
def scram_iterations(self) -> pulumi.Output[Optional[int]]:
|
|
275
|
+
def scram_iterations(self) -> pulumi.Output[Optional[builtins.int]]:
|
|
274
276
|
"""
|
|
275
277
|
The number of SCRAM iterations used when generating the credential
|
|
276
278
|
"""
|
|
@@ -278,7 +280,7 @@ class UserScramCredential(pulumi.CustomResource):
|
|
|
278
280
|
|
|
279
281
|
@property
|
|
280
282
|
@pulumi.getter(name="scramMechanism")
|
|
281
|
-
def scram_mechanism(self) -> pulumi.Output[str]:
|
|
283
|
+
def scram_mechanism(self) -> pulumi.Output[builtins.str]:
|
|
282
284
|
"""
|
|
283
285
|
The SCRAM mechanism used to generate the credential (SCRAM-SHA-256, SCRAM-SHA-512)
|
|
284
286
|
"""
|
|
@@ -286,7 +288,7 @@ class UserScramCredential(pulumi.CustomResource):
|
|
|
286
288
|
|
|
287
289
|
@property
|
|
288
290
|
@pulumi.getter
|
|
289
|
-
def username(self) -> pulumi.Output[str]:
|
|
291
|
+
def username(self) -> pulumi.Output[builtins.str]:
|
|
290
292
|
"""
|
|
291
293
|
The name of the credential
|
|
292
294
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_kafka
|
|
3
|
-
Version: 3.9.
|
|
3
|
+
Version: 3.9.1
|
|
4
4
|
Summary: A Pulumi package for creating and managing Kafka.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
@@ -9,9 +9,9 @@ Keywords: pulumi,kafka
|
|
|
9
9
|
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
[](https://github.com/pulumi/pulumi-kafka/actions)
|
|
17
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
pulumi_kafka/__init__.py,sha256=IsbH7KSaZ2DB7YNmpMNRh5F26CLq1LParf__HP_jHUE,1388
|
|
2
|
+
pulumi_kafka/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
3
|
+
pulumi_kafka/acl.py,sha256=NScZ2ud97vhZ2m-ky4Ow7IaA2cCCuNklY5m9Gf7wHYM,24231
|
|
4
|
+
pulumi_kafka/get_topic.py,sha256=cDofzH-lKgQv0iFAt-xM-OUw-8gKk93WdA13EeoKTv8,4475
|
|
5
|
+
pulumi_kafka/provider.py,sha256=GxQFxWR3SNd6xokEv79Mp4_LfhmbgD1PkNfbtj0CRmw,40303
|
|
6
|
+
pulumi_kafka/pulumi-plugin.json,sha256=X_JAzeaxp24XBjeXT0okTEbpQdN4vMO5oEEN7x0K7Hc,64
|
|
7
|
+
pulumi_kafka/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
pulumi_kafka/quota.py,sha256=9FQa4iUjtX3eUhh5yv1fdVUuiKC0uAFRD27b-cX0vbU,11048
|
|
9
|
+
pulumi_kafka/topic.py,sha256=PV8TWoY_YQnirFOut-2guFvFa7k9cMuvZVO787-O7jk,13287
|
|
10
|
+
pulumi_kafka/user_scram_credential.py,sha256=-e_whYVICgoNqDNhX5CBWjkfZRu1HLLcsohn7P3mS3I,13131
|
|
11
|
+
pulumi_kafka/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
12
|
+
pulumi_kafka/config/__init__.pyi,sha256=e2o9vATmMxYbeaFESzQWcRqSqcpysFfsSfF1_jbPoG0,2806
|
|
13
|
+
pulumi_kafka/config/vars.py,sha256=4vGmE_ybnNauTFP5lashMQkI25yeYePNKatVqJH8jSw,5739
|
|
14
|
+
pulumi_kafka-3.9.1.dist-info/METADATA,sha256=EQPJ3fyNgqsU1_H9Uu0N0-N2YsPXe5HubEf3a-ziiJ4,3485
|
|
15
|
+
pulumi_kafka-3.9.1.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
|
16
|
+
pulumi_kafka-3.9.1.dist-info/top_level.txt,sha256=HCtqWX3HYffzpLjMDhzwthd93lraTV-_-aUkZQZOveU,13
|
|
17
|
+
pulumi_kafka-3.9.1.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
pulumi_kafka/__init__.py,sha256=2fx2CAxtcoc4r8E5SweqzjqQVL5mEUcGPtuJ5SLqWWw,1372
|
|
2
|
-
pulumi_kafka/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
3
|
-
pulumi_kafka/acl.py,sha256=klUDB6ZYLSIQQJ7sct7G6rEBqhBSaHRW7WmlrLGH8_g,23291
|
|
4
|
-
pulumi_kafka/get_topic.py,sha256=FvXO65SbBE6xpOMmTzkp9n420c-6fsrOKZuSVpzJ77o,4396
|
|
5
|
-
pulumi_kafka/provider.py,sha256=U6PgXSx4qe4x6DHY26_maTRyCzXYVOrSmG_PApSDl2A,34153
|
|
6
|
-
pulumi_kafka/pulumi-plugin.json,sha256=AacMN_oq6WukYN8Rtoq-rr6lreSjpRwBfnjzSk85nTw,81
|
|
7
|
-
pulumi_kafka/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
pulumi_kafka/quota.py,sha256=8hH-J-bL8a9nvLWgGN1ghjtC5Pjj3acQZQSJ8ZPmqO4,10608
|
|
9
|
-
pulumi_kafka/topic.py,sha256=SsT7pBToxrPfHPcykWXF14ouun_hN8In-Rdqfok4oHE,12721
|
|
10
|
-
pulumi_kafka/user_scram_credential.py,sha256=AF-ZxKp6UoKLErZeIXZy-SzCIk3uLV4YeI5K55qiBaU,12537
|
|
11
|
-
pulumi_kafka/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
12
|
-
pulumi_kafka/config/__init__.pyi,sha256=9Ot5LeNbjmLMI7K4-lyY1Ga2ucl0kJ0pRJrmNrK6LgI,2564
|
|
13
|
-
pulumi_kafka/config/vars.py,sha256=RCk693NGnygdIDyiyhKlXIy5fmq_XhWzgT3Lsu2-UEQ,5237
|
|
14
|
-
pulumi_kafka-3.9.0a1741413298.dist-info/METADATA,sha256=oZhWVPCAq36WWwwOWaN-ARHU4XLFAJAqGfigFT6BaGg,3493
|
|
15
|
-
pulumi_kafka-3.9.0a1741413298.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
16
|
-
pulumi_kafka-3.9.0a1741413298.dist-info/top_level.txt,sha256=HCtqWX3HYffzpLjMDhzwthd93lraTV-_-aUkZQZOveU,13
|
|
17
|
-
pulumi_kafka-3.9.0a1741413298.dist-info/RECORD,,
|
|
File without changes
|