pulumi-mysql 3.3.0a1743055651__py3-none-any.whl → 3.3.0a1744183149__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-mysql might be problematic. Click here for more details.
- pulumi_mysql/__init__.py +1 -0
- pulumi_mysql/config/__init__.py +1 -0
- pulumi_mysql/config/__init__.pyi +1 -0
- pulumi_mysql/config/vars.py +1 -0
- pulumi_mysql/database.py +43 -42
- pulumi_mysql/grant.py +127 -126
- pulumi_mysql/provider.py +47 -46
- pulumi_mysql/pulumi-plugin.json +1 -1
- pulumi_mysql/role.py +15 -14
- pulumi_mysql/user.py +85 -84
- pulumi_mysql/user_password.py +57 -56
- {pulumi_mysql-3.3.0a1743055651.dist-info → pulumi_mysql-3.3.0a1744183149.dist-info}/METADATA +1 -1
- pulumi_mysql-3.3.0a1744183149.dist-info/RECORD +17 -0
- pulumi_mysql-3.3.0a1743055651.dist-info/RECORD +0 -17
- {pulumi_mysql-3.3.0a1743055651.dist-info → pulumi_mysql-3.3.0a1744183149.dist-info}/WHEEL +0 -0
- {pulumi_mysql-3.3.0a1743055651.dist-info → pulumi_mysql-3.3.0a1744183149.dist-info}/top_level.txt +0 -0
pulumi_mysql/user_password.py
CHANGED
|
@@ -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,14 +20,14 @@ __all__ = ['UserPasswordArgs', 'UserPassword']
|
|
|
19
20
|
@pulumi.input_type
|
|
20
21
|
class UserPasswordArgs:
|
|
21
22
|
def __init__(__self__, *,
|
|
22
|
-
pgp_key: pulumi.Input[str],
|
|
23
|
-
user: pulumi.Input[str],
|
|
24
|
-
host: Optional[pulumi.Input[str]] = None):
|
|
23
|
+
pgp_key: pulumi.Input[builtins.str],
|
|
24
|
+
user: pulumi.Input[builtins.str],
|
|
25
|
+
host: Optional[pulumi.Input[builtins.str]] = None):
|
|
25
26
|
"""
|
|
26
27
|
The set of arguments for constructing a UserPassword resource.
|
|
27
|
-
:param pulumi.Input[str] pgp_key: Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
28
|
-
:param pulumi.Input[str] user: The IAM user to associate with this access key.
|
|
29
|
-
:param pulumi.Input[str] host: The source host of the user. Defaults to `localhost`.
|
|
28
|
+
:param pulumi.Input[builtins.str] pgp_key: Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
29
|
+
:param pulumi.Input[builtins.str] user: The IAM user to associate with this access key.
|
|
30
|
+
:param pulumi.Input[builtins.str] host: The source host of the user. Defaults to `localhost`.
|
|
30
31
|
"""
|
|
31
32
|
pulumi.set(__self__, "pgp_key", pgp_key)
|
|
32
33
|
pulumi.set(__self__, "user", user)
|
|
@@ -35,56 +36,56 @@ class UserPasswordArgs:
|
|
|
35
36
|
|
|
36
37
|
@property
|
|
37
38
|
@pulumi.getter(name="pgpKey")
|
|
38
|
-
def pgp_key(self) -> pulumi.Input[str]:
|
|
39
|
+
def pgp_key(self) -> pulumi.Input[builtins.str]:
|
|
39
40
|
"""
|
|
40
41
|
Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
41
42
|
"""
|
|
42
43
|
return pulumi.get(self, "pgp_key")
|
|
43
44
|
|
|
44
45
|
@pgp_key.setter
|
|
45
|
-
def pgp_key(self, value: pulumi.Input[str]):
|
|
46
|
+
def pgp_key(self, value: pulumi.Input[builtins.str]):
|
|
46
47
|
pulumi.set(self, "pgp_key", value)
|
|
47
48
|
|
|
48
49
|
@property
|
|
49
50
|
@pulumi.getter
|
|
50
|
-
def user(self) -> pulumi.Input[str]:
|
|
51
|
+
def user(self) -> pulumi.Input[builtins.str]:
|
|
51
52
|
"""
|
|
52
53
|
The IAM user to associate with this access key.
|
|
53
54
|
"""
|
|
54
55
|
return pulumi.get(self, "user")
|
|
55
56
|
|
|
56
57
|
@user.setter
|
|
57
|
-
def user(self, value: pulumi.Input[str]):
|
|
58
|
+
def user(self, value: pulumi.Input[builtins.str]):
|
|
58
59
|
pulumi.set(self, "user", value)
|
|
59
60
|
|
|
60
61
|
@property
|
|
61
62
|
@pulumi.getter
|
|
62
|
-
def host(self) -> Optional[pulumi.Input[str]]:
|
|
63
|
+
def host(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
63
64
|
"""
|
|
64
65
|
The source host of the user. Defaults to `localhost`.
|
|
65
66
|
"""
|
|
66
67
|
return pulumi.get(self, "host")
|
|
67
68
|
|
|
68
69
|
@host.setter
|
|
69
|
-
def host(self, value: Optional[pulumi.Input[str]]):
|
|
70
|
+
def host(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
70
71
|
pulumi.set(self, "host", value)
|
|
71
72
|
|
|
72
73
|
|
|
73
74
|
@pulumi.input_type
|
|
74
75
|
class _UserPasswordState:
|
|
75
76
|
def __init__(__self__, *,
|
|
76
|
-
encrypted_password: Optional[pulumi.Input[str]] = None,
|
|
77
|
-
host: Optional[pulumi.Input[str]] = None,
|
|
78
|
-
key_fingerprint: Optional[pulumi.Input[str]] = None,
|
|
79
|
-
pgp_key: Optional[pulumi.Input[str]] = None,
|
|
80
|
-
user: Optional[pulumi.Input[str]] = None):
|
|
77
|
+
encrypted_password: Optional[pulumi.Input[builtins.str]] = None,
|
|
78
|
+
host: Optional[pulumi.Input[builtins.str]] = None,
|
|
79
|
+
key_fingerprint: Optional[pulumi.Input[builtins.str]] = None,
|
|
80
|
+
pgp_key: Optional[pulumi.Input[builtins.str]] = None,
|
|
81
|
+
user: Optional[pulumi.Input[builtins.str]] = None):
|
|
81
82
|
"""
|
|
82
83
|
Input properties used for looking up and filtering UserPassword resources.
|
|
83
|
-
:param pulumi.Input[str] encrypted_password: The encrypted password, base64 encoded.
|
|
84
|
-
:param pulumi.Input[str] host: The source host of the user. Defaults to `localhost`.
|
|
85
|
-
:param pulumi.Input[str] key_fingerprint: The fingerprint of the PGP key used to encrypt the password
|
|
86
|
-
:param pulumi.Input[str] pgp_key: Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
87
|
-
:param pulumi.Input[str] user: The IAM user to associate with this access key.
|
|
84
|
+
:param pulumi.Input[builtins.str] encrypted_password: The encrypted password, base64 encoded.
|
|
85
|
+
:param pulumi.Input[builtins.str] host: The source host of the user. Defaults to `localhost`.
|
|
86
|
+
:param pulumi.Input[builtins.str] key_fingerprint: The fingerprint of the PGP key used to encrypt the password
|
|
87
|
+
:param pulumi.Input[builtins.str] pgp_key: Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
88
|
+
:param pulumi.Input[builtins.str] user: The IAM user to associate with this access key.
|
|
88
89
|
"""
|
|
89
90
|
if encrypted_password is not None:
|
|
90
91
|
pulumi.set(__self__, "encrypted_password", encrypted_password)
|
|
@@ -99,62 +100,62 @@ class _UserPasswordState:
|
|
|
99
100
|
|
|
100
101
|
@property
|
|
101
102
|
@pulumi.getter(name="encryptedPassword")
|
|
102
|
-
def encrypted_password(self) -> Optional[pulumi.Input[str]]:
|
|
103
|
+
def encrypted_password(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
103
104
|
"""
|
|
104
105
|
The encrypted password, base64 encoded.
|
|
105
106
|
"""
|
|
106
107
|
return pulumi.get(self, "encrypted_password")
|
|
107
108
|
|
|
108
109
|
@encrypted_password.setter
|
|
109
|
-
def encrypted_password(self, value: Optional[pulumi.Input[str]]):
|
|
110
|
+
def encrypted_password(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
110
111
|
pulumi.set(self, "encrypted_password", value)
|
|
111
112
|
|
|
112
113
|
@property
|
|
113
114
|
@pulumi.getter
|
|
114
|
-
def host(self) -> Optional[pulumi.Input[str]]:
|
|
115
|
+
def host(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
115
116
|
"""
|
|
116
117
|
The source host of the user. Defaults to `localhost`.
|
|
117
118
|
"""
|
|
118
119
|
return pulumi.get(self, "host")
|
|
119
120
|
|
|
120
121
|
@host.setter
|
|
121
|
-
def host(self, value: Optional[pulumi.Input[str]]):
|
|
122
|
+
def host(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
122
123
|
pulumi.set(self, "host", value)
|
|
123
124
|
|
|
124
125
|
@property
|
|
125
126
|
@pulumi.getter(name="keyFingerprint")
|
|
126
|
-
def key_fingerprint(self) -> Optional[pulumi.Input[str]]:
|
|
127
|
+
def key_fingerprint(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
127
128
|
"""
|
|
128
129
|
The fingerprint of the PGP key used to encrypt the password
|
|
129
130
|
"""
|
|
130
131
|
return pulumi.get(self, "key_fingerprint")
|
|
131
132
|
|
|
132
133
|
@key_fingerprint.setter
|
|
133
|
-
def key_fingerprint(self, value: Optional[pulumi.Input[str]]):
|
|
134
|
+
def key_fingerprint(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
134
135
|
pulumi.set(self, "key_fingerprint", value)
|
|
135
136
|
|
|
136
137
|
@property
|
|
137
138
|
@pulumi.getter(name="pgpKey")
|
|
138
|
-
def pgp_key(self) -> Optional[pulumi.Input[str]]:
|
|
139
|
+
def pgp_key(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
139
140
|
"""
|
|
140
141
|
Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
141
142
|
"""
|
|
142
143
|
return pulumi.get(self, "pgp_key")
|
|
143
144
|
|
|
144
145
|
@pgp_key.setter
|
|
145
|
-
def pgp_key(self, value: Optional[pulumi.Input[str]]):
|
|
146
|
+
def pgp_key(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
146
147
|
pulumi.set(self, "pgp_key", value)
|
|
147
148
|
|
|
148
149
|
@property
|
|
149
150
|
@pulumi.getter
|
|
150
|
-
def user(self) -> Optional[pulumi.Input[str]]:
|
|
151
|
+
def user(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
151
152
|
"""
|
|
152
153
|
The IAM user to associate with this access key.
|
|
153
154
|
"""
|
|
154
155
|
return pulumi.get(self, "user")
|
|
155
156
|
|
|
156
157
|
@user.setter
|
|
157
|
-
def user(self, value: Optional[pulumi.Input[str]]):
|
|
158
|
+
def user(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
158
159
|
pulumi.set(self, "user", value)
|
|
159
160
|
|
|
160
161
|
|
|
@@ -163,9 +164,9 @@ class UserPassword(pulumi.CustomResource):
|
|
|
163
164
|
def __init__(__self__,
|
|
164
165
|
resource_name: str,
|
|
165
166
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
166
|
-
host: Optional[pulumi.Input[str]] = None,
|
|
167
|
-
pgp_key: Optional[pulumi.Input[str]] = None,
|
|
168
|
-
user: Optional[pulumi.Input[str]] = None,
|
|
167
|
+
host: Optional[pulumi.Input[builtins.str]] = None,
|
|
168
|
+
pgp_key: Optional[pulumi.Input[builtins.str]] = None,
|
|
169
|
+
user: Optional[pulumi.Input[builtins.str]] = None,
|
|
169
170
|
__props__=None):
|
|
170
171
|
"""
|
|
171
172
|
The `UserPassword` resource sets and manages a password for a given
|
|
@@ -192,9 +193,9 @@ class UserPassword(pulumi.CustomResource):
|
|
|
192
193
|
|
|
193
194
|
:param str resource_name: The name of the resource.
|
|
194
195
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
195
|
-
:param pulumi.Input[str] host: The source host of the user. Defaults to `localhost`.
|
|
196
|
-
:param pulumi.Input[str] pgp_key: Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
197
|
-
:param pulumi.Input[str] user: The IAM user to associate with this access key.
|
|
196
|
+
:param pulumi.Input[builtins.str] host: The source host of the user. Defaults to `localhost`.
|
|
197
|
+
:param pulumi.Input[builtins.str] pgp_key: Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
198
|
+
:param pulumi.Input[builtins.str] user: The IAM user to associate with this access key.
|
|
198
199
|
"""
|
|
199
200
|
...
|
|
200
201
|
@overload
|
|
@@ -240,9 +241,9 @@ class UserPassword(pulumi.CustomResource):
|
|
|
240
241
|
def _internal_init(__self__,
|
|
241
242
|
resource_name: str,
|
|
242
243
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
243
|
-
host: Optional[pulumi.Input[str]] = None,
|
|
244
|
-
pgp_key: Optional[pulumi.Input[str]] = None,
|
|
245
|
-
user: Optional[pulumi.Input[str]] = None,
|
|
244
|
+
host: Optional[pulumi.Input[builtins.str]] = None,
|
|
245
|
+
pgp_key: Optional[pulumi.Input[builtins.str]] = None,
|
|
246
|
+
user: Optional[pulumi.Input[builtins.str]] = None,
|
|
246
247
|
__props__=None):
|
|
247
248
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
248
249
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -271,11 +272,11 @@ class UserPassword(pulumi.CustomResource):
|
|
|
271
272
|
def get(resource_name: str,
|
|
272
273
|
id: pulumi.Input[str],
|
|
273
274
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
274
|
-
encrypted_password: Optional[pulumi.Input[str]] = None,
|
|
275
|
-
host: Optional[pulumi.Input[str]] = None,
|
|
276
|
-
key_fingerprint: Optional[pulumi.Input[str]] = None,
|
|
277
|
-
pgp_key: Optional[pulumi.Input[str]] = None,
|
|
278
|
-
user: Optional[pulumi.Input[str]] = None) -> 'UserPassword':
|
|
275
|
+
encrypted_password: Optional[pulumi.Input[builtins.str]] = None,
|
|
276
|
+
host: Optional[pulumi.Input[builtins.str]] = None,
|
|
277
|
+
key_fingerprint: Optional[pulumi.Input[builtins.str]] = None,
|
|
278
|
+
pgp_key: Optional[pulumi.Input[builtins.str]] = None,
|
|
279
|
+
user: Optional[pulumi.Input[builtins.str]] = None) -> 'UserPassword':
|
|
279
280
|
"""
|
|
280
281
|
Get an existing UserPassword resource's state with the given name, id, and optional extra
|
|
281
282
|
properties used to qualify the lookup.
|
|
@@ -283,11 +284,11 @@ class UserPassword(pulumi.CustomResource):
|
|
|
283
284
|
:param str resource_name: The unique name of the resulting resource.
|
|
284
285
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
285
286
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
286
|
-
:param pulumi.Input[str] encrypted_password: The encrypted password, base64 encoded.
|
|
287
|
-
:param pulumi.Input[str] host: The source host of the user. Defaults to `localhost`.
|
|
288
|
-
:param pulumi.Input[str] key_fingerprint: The fingerprint of the PGP key used to encrypt the password
|
|
289
|
-
:param pulumi.Input[str] pgp_key: Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
290
|
-
:param pulumi.Input[str] user: The IAM user to associate with this access key.
|
|
287
|
+
:param pulumi.Input[builtins.str] encrypted_password: The encrypted password, base64 encoded.
|
|
288
|
+
:param pulumi.Input[builtins.str] host: The source host of the user. Defaults to `localhost`.
|
|
289
|
+
:param pulumi.Input[builtins.str] key_fingerprint: The fingerprint of the PGP key used to encrypt the password
|
|
290
|
+
:param pulumi.Input[builtins.str] pgp_key: Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
291
|
+
:param pulumi.Input[builtins.str] user: The IAM user to associate with this access key.
|
|
291
292
|
"""
|
|
292
293
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
293
294
|
|
|
@@ -302,7 +303,7 @@ class UserPassword(pulumi.CustomResource):
|
|
|
302
303
|
|
|
303
304
|
@property
|
|
304
305
|
@pulumi.getter(name="encryptedPassword")
|
|
305
|
-
def encrypted_password(self) -> pulumi.Output[str]:
|
|
306
|
+
def encrypted_password(self) -> pulumi.Output[builtins.str]:
|
|
306
307
|
"""
|
|
307
308
|
The encrypted password, base64 encoded.
|
|
308
309
|
"""
|
|
@@ -310,7 +311,7 @@ class UserPassword(pulumi.CustomResource):
|
|
|
310
311
|
|
|
311
312
|
@property
|
|
312
313
|
@pulumi.getter
|
|
313
|
-
def host(self) -> pulumi.Output[Optional[str]]:
|
|
314
|
+
def host(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
314
315
|
"""
|
|
315
316
|
The source host of the user. Defaults to `localhost`.
|
|
316
317
|
"""
|
|
@@ -318,7 +319,7 @@ class UserPassword(pulumi.CustomResource):
|
|
|
318
319
|
|
|
319
320
|
@property
|
|
320
321
|
@pulumi.getter(name="keyFingerprint")
|
|
321
|
-
def key_fingerprint(self) -> pulumi.Output[str]:
|
|
322
|
+
def key_fingerprint(self) -> pulumi.Output[builtins.str]:
|
|
322
323
|
"""
|
|
323
324
|
The fingerprint of the PGP key used to encrypt the password
|
|
324
325
|
"""
|
|
@@ -326,7 +327,7 @@ class UserPassword(pulumi.CustomResource):
|
|
|
326
327
|
|
|
327
328
|
@property
|
|
328
329
|
@pulumi.getter(name="pgpKey")
|
|
329
|
-
def pgp_key(self) -> pulumi.Output[str]:
|
|
330
|
+
def pgp_key(self) -> pulumi.Output[builtins.str]:
|
|
330
331
|
"""
|
|
331
332
|
Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
|
|
332
333
|
"""
|
|
@@ -334,7 +335,7 @@ class UserPassword(pulumi.CustomResource):
|
|
|
334
335
|
|
|
335
336
|
@property
|
|
336
337
|
@pulumi.getter
|
|
337
|
-
def user(self) -> pulumi.Output[str]:
|
|
338
|
+
def user(self) -> pulumi.Output[builtins.str]:
|
|
338
339
|
"""
|
|
339
340
|
The IAM user to associate with this access key.
|
|
340
341
|
"""
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
pulumi_mysql/__init__.py,sha256=opkvdt9Kee1kvqdF2d2XdRcW2q_fo2klwny14U1FM9E,1494
|
|
2
|
+
pulumi_mysql/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
3
|
+
pulumi_mysql/database.py,sha256=HMEgNBS-h83T2BUc4RTlDzan7a8s1ZoFHnjGdLP6y4E,18038
|
|
4
|
+
pulumi_mysql/grant.py,sha256=KHnDeTxuf6_zebNcUPGLhwIhEOW7vw_m2imR6LtB1O8,28168
|
|
5
|
+
pulumi_mysql/provider.py,sha256=2qnIMaBH0xXFoXoV3zG7wUOT3QeD1GNyt30ctwOS4xE,10607
|
|
6
|
+
pulumi_mysql/pulumi-plugin.json,sha256=GftnI6YzJRHupJxbQZtWy9dhA_F4NKMGW-CYv7j-hRM,81
|
|
7
|
+
pulumi_mysql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
pulumi_mysql/role.py,sha256=50_fRWnr2pRRmGYQ6doA_sVVvXM__SPd_T3Hrj8aouE,6037
|
|
9
|
+
pulumi_mysql/user.py,sha256=Qt1gh9C3mPpTgLfbm9SAIYP3sd1Kic4QY422Q3M3MpM,24150
|
|
10
|
+
pulumi_mysql/user_password.py,sha256=2miaF-FK5iYDAR9hIeupiULLZS6KSP7YBLdENW4LctA,14188
|
|
11
|
+
pulumi_mysql/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
12
|
+
pulumi_mysql/config/__init__.pyi,sha256=n2Gip_CAudbM68dPVH6HsjlFBsXzbPxq7ntaDYzcys4,743
|
|
13
|
+
pulumi_mysql/config/vars.py,sha256=RzxC_YsdJkiU_2vADdHaXT8nwwuJk73z57pLx8X8rQE,1557
|
|
14
|
+
pulumi_mysql-3.3.0a1744183149.dist-info/METADATA,sha256=3OcREcfiV52Jr6_WCXa_haCGrbaAVYvur8ztzXGvd_U,3264
|
|
15
|
+
pulumi_mysql-3.3.0a1744183149.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
16
|
+
pulumi_mysql-3.3.0a1744183149.dist-info/top_level.txt,sha256=YQuDOT73Hwh07Tv1JBugii-IBZGk7_h6aYILJIDAh7w,13
|
|
17
|
+
pulumi_mysql-3.3.0a1744183149.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
pulumi_mysql/__init__.py,sha256=HpeSw9x132gS_rWPEzx8HVb37OYcEv3KOANsymLLQ2c,1478
|
|
2
|
-
pulumi_mysql/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
3
|
-
pulumi_mysql/database.py,sha256=Vr_ZQNGHchimnvR9RO4Z1EvcAXUfPaYWaN__5xXBZnM,17644
|
|
4
|
-
pulumi_mysql/grant.py,sha256=ZPW47Hf9pZZkppoXViW8LHdTWlp2BefLF_1sI8XkjKE,27018
|
|
5
|
-
pulumi_mysql/provider.py,sha256=XaEnKhq-ZmbvL1mcWH7k7lkJWti5swqHIDJLR3qfkNE,10177
|
|
6
|
-
pulumi_mysql/pulumi-plugin.json,sha256=1blOw_jzzf0E4KY1E6rjypgg4B-D3caxRP6ut8rkd5U,81
|
|
7
|
-
pulumi_mysql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
pulumi_mysql/role.py,sha256=H0DbcioMehJe8ZlCqWK76HDJ8zvx7NYJqtN2TPGRiz4,5895
|
|
9
|
-
pulumi_mysql/user.py,sha256=BoOwTttfoRcCcsrYdHB8z7_zRk20KlGqQ7GYG6ZpH2M,23378
|
|
10
|
-
pulumi_mysql/user_password.py,sha256=6anPPNa8ipE7tGihX7Q2cblZzo6TVzYh8d6icfs5f40,13668
|
|
11
|
-
pulumi_mysql/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
12
|
-
pulumi_mysql/config/__init__.pyi,sha256=r6xN2l1U1z8L4QhmN8LH-caJ5KmTFO4fxtZh-pXgGlE,727
|
|
13
|
-
pulumi_mysql/config/vars.py,sha256=Kxa3Gb8ezVQHs_PfaErRjgnrxUA6PHloQxisGLjRds4,1541
|
|
14
|
-
pulumi_mysql-3.3.0a1743055651.dist-info/METADATA,sha256=G7lOqJ4wmUiZLbl7SBlKkUJT1h8sdsbdhSAL7isbCqs,3264
|
|
15
|
-
pulumi_mysql-3.3.0a1743055651.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
16
|
-
pulumi_mysql-3.3.0a1743055651.dist-info/top_level.txt,sha256=YQuDOT73Hwh07Tv1JBugii-IBZGk7_h6aYILJIDAh7w,13
|
|
17
|
-
pulumi_mysql-3.3.0a1743055651.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_mysql-3.3.0a1743055651.dist-info → pulumi_mysql-3.3.0a1744183149.dist-info}/top_level.txt
RENAMED
|
File without changes
|