pulumi-mysql 3.3.0a1749649690__py3-none-any.whl → 3.3.0a1764802396__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.
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -20,72 +19,72 @@ __all__ = ['UserPasswordArgs', 'UserPassword']
20
19
  @pulumi.input_type
21
20
  class UserPasswordArgs:
22
21
  def __init__(__self__, *,
23
- pgp_key: pulumi.Input[builtins.str],
24
- user: pulumi.Input[builtins.str],
25
- host: Optional[pulumi.Input[builtins.str]] = None):
22
+ pgp_key: pulumi.Input[_builtins.str],
23
+ user: pulumi.Input[_builtins.str],
24
+ host: Optional[pulumi.Input[_builtins.str]] = None):
26
25
  """
27
26
  The set of arguments for constructing a UserPassword resource.
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`.
27
+ :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`.
28
+ :param pulumi.Input[_builtins.str] user: The IAM user to associate with this access key.
29
+ :param pulumi.Input[_builtins.str] host: The source host of the user. Defaults to `localhost`.
31
30
  """
32
31
  pulumi.set(__self__, "pgp_key", pgp_key)
33
32
  pulumi.set(__self__, "user", user)
34
33
  if host is not None:
35
34
  pulumi.set(__self__, "host", host)
36
35
 
37
- @property
36
+ @_builtins.property
38
37
  @pulumi.getter(name="pgpKey")
39
- def pgp_key(self) -> pulumi.Input[builtins.str]:
38
+ def pgp_key(self) -> pulumi.Input[_builtins.str]:
40
39
  """
41
40
  Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
42
41
  """
43
42
  return pulumi.get(self, "pgp_key")
44
43
 
45
44
  @pgp_key.setter
46
- def pgp_key(self, value: pulumi.Input[builtins.str]):
45
+ def pgp_key(self, value: pulumi.Input[_builtins.str]):
47
46
  pulumi.set(self, "pgp_key", value)
48
47
 
49
- @property
48
+ @_builtins.property
50
49
  @pulumi.getter
51
- def user(self) -> pulumi.Input[builtins.str]:
50
+ def user(self) -> pulumi.Input[_builtins.str]:
52
51
  """
53
52
  The IAM user to associate with this access key.
54
53
  """
55
54
  return pulumi.get(self, "user")
56
55
 
57
56
  @user.setter
58
- def user(self, value: pulumi.Input[builtins.str]):
57
+ def user(self, value: pulumi.Input[_builtins.str]):
59
58
  pulumi.set(self, "user", value)
60
59
 
61
- @property
60
+ @_builtins.property
62
61
  @pulumi.getter
63
- def host(self) -> Optional[pulumi.Input[builtins.str]]:
62
+ def host(self) -> Optional[pulumi.Input[_builtins.str]]:
64
63
  """
65
64
  The source host of the user. Defaults to `localhost`.
66
65
  """
67
66
  return pulumi.get(self, "host")
68
67
 
69
68
  @host.setter
70
- def host(self, value: Optional[pulumi.Input[builtins.str]]):
69
+ def host(self, value: Optional[pulumi.Input[_builtins.str]]):
71
70
  pulumi.set(self, "host", value)
72
71
 
73
72
 
74
73
  @pulumi.input_type
75
74
  class _UserPasswordState:
76
75
  def __init__(__self__, *,
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):
76
+ encrypted_password: Optional[pulumi.Input[_builtins.str]] = None,
77
+ host: Optional[pulumi.Input[_builtins.str]] = None,
78
+ key_fingerprint: Optional[pulumi.Input[_builtins.str]] = None,
79
+ pgp_key: Optional[pulumi.Input[_builtins.str]] = None,
80
+ user: Optional[pulumi.Input[_builtins.str]] = None):
82
81
  """
83
82
  Input properties used for looking up and filtering UserPassword resources.
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.
83
+ :param pulumi.Input[_builtins.str] encrypted_password: The encrypted password, base64 encoded.
84
+ :param pulumi.Input[_builtins.str] host: The source host of the user. Defaults to `localhost`.
85
+ :param pulumi.Input[_builtins.str] key_fingerprint: The fingerprint of the PGP key used to encrypt the password
86
+ :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`.
87
+ :param pulumi.Input[_builtins.str] user: The IAM user to associate with this access key.
89
88
  """
90
89
  if encrypted_password is not None:
91
90
  pulumi.set(__self__, "encrypted_password", encrypted_password)
@@ -98,64 +97,64 @@ class _UserPasswordState:
98
97
  if user is not None:
99
98
  pulumi.set(__self__, "user", user)
100
99
 
101
- @property
100
+ @_builtins.property
102
101
  @pulumi.getter(name="encryptedPassword")
103
- def encrypted_password(self) -> Optional[pulumi.Input[builtins.str]]:
102
+ def encrypted_password(self) -> Optional[pulumi.Input[_builtins.str]]:
104
103
  """
105
104
  The encrypted password, base64 encoded.
106
105
  """
107
106
  return pulumi.get(self, "encrypted_password")
108
107
 
109
108
  @encrypted_password.setter
110
- def encrypted_password(self, value: Optional[pulumi.Input[builtins.str]]):
109
+ def encrypted_password(self, value: Optional[pulumi.Input[_builtins.str]]):
111
110
  pulumi.set(self, "encrypted_password", value)
112
111
 
113
- @property
112
+ @_builtins.property
114
113
  @pulumi.getter
115
- def host(self) -> Optional[pulumi.Input[builtins.str]]:
114
+ def host(self) -> Optional[pulumi.Input[_builtins.str]]:
116
115
  """
117
116
  The source host of the user. Defaults to `localhost`.
118
117
  """
119
118
  return pulumi.get(self, "host")
120
119
 
121
120
  @host.setter
122
- def host(self, value: Optional[pulumi.Input[builtins.str]]):
121
+ def host(self, value: Optional[pulumi.Input[_builtins.str]]):
123
122
  pulumi.set(self, "host", value)
124
123
 
125
- @property
124
+ @_builtins.property
126
125
  @pulumi.getter(name="keyFingerprint")
127
- def key_fingerprint(self) -> Optional[pulumi.Input[builtins.str]]:
126
+ def key_fingerprint(self) -> Optional[pulumi.Input[_builtins.str]]:
128
127
  """
129
128
  The fingerprint of the PGP key used to encrypt the password
130
129
  """
131
130
  return pulumi.get(self, "key_fingerprint")
132
131
 
133
132
  @key_fingerprint.setter
134
- def key_fingerprint(self, value: Optional[pulumi.Input[builtins.str]]):
133
+ def key_fingerprint(self, value: Optional[pulumi.Input[_builtins.str]]):
135
134
  pulumi.set(self, "key_fingerprint", value)
136
135
 
137
- @property
136
+ @_builtins.property
138
137
  @pulumi.getter(name="pgpKey")
139
- def pgp_key(self) -> Optional[pulumi.Input[builtins.str]]:
138
+ def pgp_key(self) -> Optional[pulumi.Input[_builtins.str]]:
140
139
  """
141
140
  Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
142
141
  """
143
142
  return pulumi.get(self, "pgp_key")
144
143
 
145
144
  @pgp_key.setter
146
- def pgp_key(self, value: Optional[pulumi.Input[builtins.str]]):
145
+ def pgp_key(self, value: Optional[pulumi.Input[_builtins.str]]):
147
146
  pulumi.set(self, "pgp_key", value)
148
147
 
149
- @property
148
+ @_builtins.property
150
149
  @pulumi.getter
151
- def user(self) -> Optional[pulumi.Input[builtins.str]]:
150
+ def user(self) -> Optional[pulumi.Input[_builtins.str]]:
152
151
  """
153
152
  The IAM user to associate with this access key.
154
153
  """
155
154
  return pulumi.get(self, "user")
156
155
 
157
156
  @user.setter
158
- def user(self, value: Optional[pulumi.Input[builtins.str]]):
157
+ def user(self, value: Optional[pulumi.Input[_builtins.str]]):
159
158
  pulumi.set(self, "user", value)
160
159
 
161
160
 
@@ -165,9 +164,9 @@ class UserPassword(pulumi.CustomResource):
165
164
  def __init__(__self__,
166
165
  resource_name: str,
167
166
  opts: Optional[pulumi.ResourceOptions] = None,
168
- host: Optional[pulumi.Input[builtins.str]] = None,
169
- pgp_key: Optional[pulumi.Input[builtins.str]] = None,
170
- user: Optional[pulumi.Input[builtins.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,
171
170
  __props__=None):
172
171
  """
173
172
  The `UserPassword` resource sets and manages a password for a given
@@ -194,9 +193,9 @@ class UserPassword(pulumi.CustomResource):
194
193
 
195
194
  :param str resource_name: The name of the resource.
196
195
  :param pulumi.ResourceOptions opts: Options for the resource.
197
- :param pulumi.Input[builtins.str] host: The source host of the user. Defaults to `localhost`.
198
- :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`.
199
- :param pulumi.Input[builtins.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.
200
199
  """
201
200
  ...
202
201
  @overload
@@ -242,9 +241,9 @@ class UserPassword(pulumi.CustomResource):
242
241
  def _internal_init(__self__,
243
242
  resource_name: str,
244
243
  opts: Optional[pulumi.ResourceOptions] = None,
245
- host: Optional[pulumi.Input[builtins.str]] = None,
246
- pgp_key: Optional[pulumi.Input[builtins.str]] = None,
247
- user: Optional[pulumi.Input[builtins.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,
248
247
  __props__=None):
249
248
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
250
249
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -273,11 +272,11 @@ class UserPassword(pulumi.CustomResource):
273
272
  def get(resource_name: str,
274
273
  id: pulumi.Input[str],
275
274
  opts: Optional[pulumi.ResourceOptions] = None,
276
- encrypted_password: Optional[pulumi.Input[builtins.str]] = None,
277
- host: Optional[pulumi.Input[builtins.str]] = None,
278
- key_fingerprint: Optional[pulumi.Input[builtins.str]] = None,
279
- pgp_key: Optional[pulumi.Input[builtins.str]] = None,
280
- user: Optional[pulumi.Input[builtins.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':
281
280
  """
282
281
  Get an existing UserPassword resource's state with the given name, id, and optional extra
283
282
  properties used to qualify the lookup.
@@ -285,11 +284,11 @@ class UserPassword(pulumi.CustomResource):
285
284
  :param str resource_name: The unique name of the resulting resource.
286
285
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
287
286
  :param pulumi.ResourceOptions opts: Options for the resource.
288
- :param pulumi.Input[builtins.str] encrypted_password: The encrypted password, base64 encoded.
289
- :param pulumi.Input[builtins.str] host: The source host of the user. Defaults to `localhost`.
290
- :param pulumi.Input[builtins.str] key_fingerprint: The fingerprint of the PGP key used to encrypt the password
291
- :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`.
292
- :param pulumi.Input[builtins.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.
293
292
  """
294
293
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
295
294
 
@@ -302,41 +301,41 @@ class UserPassword(pulumi.CustomResource):
302
301
  __props__.__dict__["user"] = user
303
302
  return UserPassword(resource_name, opts=opts, __props__=__props__)
304
303
 
305
- @property
304
+ @_builtins.property
306
305
  @pulumi.getter(name="encryptedPassword")
307
- def encrypted_password(self) -> pulumi.Output[builtins.str]:
306
+ def encrypted_password(self) -> pulumi.Output[_builtins.str]:
308
307
  """
309
308
  The encrypted password, base64 encoded.
310
309
  """
311
310
  return pulumi.get(self, "encrypted_password")
312
311
 
313
- @property
312
+ @_builtins.property
314
313
  @pulumi.getter
315
- def host(self) -> pulumi.Output[Optional[builtins.str]]:
314
+ def host(self) -> pulumi.Output[Optional[_builtins.str]]:
316
315
  """
317
316
  The source host of the user. Defaults to `localhost`.
318
317
  """
319
318
  return pulumi.get(self, "host")
320
319
 
321
- @property
320
+ @_builtins.property
322
321
  @pulumi.getter(name="keyFingerprint")
323
- def key_fingerprint(self) -> pulumi.Output[builtins.str]:
322
+ def key_fingerprint(self) -> pulumi.Output[_builtins.str]:
324
323
  """
325
324
  The fingerprint of the PGP key used to encrypt the password
326
325
  """
327
326
  return pulumi.get(self, "key_fingerprint")
328
327
 
329
- @property
328
+ @_builtins.property
330
329
  @pulumi.getter(name="pgpKey")
331
- def pgp_key(self) -> pulumi.Output[builtins.str]:
330
+ def pgp_key(self) -> pulumi.Output[_builtins.str]:
332
331
  """
333
332
  Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:some_person_that_exists`.
334
333
  """
335
334
  return pulumi.get(self, "pgp_key")
336
335
 
337
- @property
336
+ @_builtins.property
338
337
  @pulumi.getter
339
- def user(self) -> pulumi.Output[builtins.str]:
338
+ def user(self) -> pulumi.Output[_builtins.str]:
340
339
  """
341
340
  The IAM user to associate with this access key.
342
341
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_mysql
3
- Version: 3.3.0a1749649690
3
+ Version: 3.3.0a1764802396
4
4
  Summary: A Pulumi package for creating and managing mysql cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,17 @@
1
+ pulumi_mysql/__init__.py,sha256=CSJEs6aZwlqebw16cADzeGLKMWMqSDm8U-P7KREkRus,1489
2
+ pulumi_mysql/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
3
+ pulumi_mysql/database.py,sha256=keo-9HQQ7HbYuYP4pojhjZoqWTCUbJATemYYJaI92qw,18205
4
+ pulumi_mysql/grant.py,sha256=9oPFZli_flGPN6lQM4N-lylW3IJaR_e7pWhnEsLPDGg,28593
5
+ pulumi_mysql/provider.py,sha256=Q78UOQDclWEundbUw4Sw1iGMIwzewLziB3hFHYzKjbQ,11640
6
+ pulumi_mysql/pulumi-plugin.json,sha256=UhpH7A2MkJdjdZAsY7of3OhXiYrOn9xzbAN-Cp6eXmA,81
7
+ pulumi_mysql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ pulumi_mysql/role.py,sha256=1w8C7eqLe13n9Is_xEI4Bn7s-cKFSB-HAgJA8pylpXs,6108
9
+ pulumi_mysql/user.py,sha256=Rij8sGKbBZN_dGk42-3lxjMR5CeByUwxQdWCT7kF6y8,24441
10
+ pulumi_mysql/user_password.py,sha256=aLUI7gf-BlglPwFcQ7q0D9g4gx_b5uSMwYB3lq8y4LM,14417
11
+ pulumi_mysql/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
12
+ pulumi_mysql/config/__init__.pyi,sha256=Ixgg3IzPO-8tc3y7pHCgXCt-LGauJ-rDwiiYmrp1xBg,726
13
+ pulumi_mysql/config/vars.py,sha256=90CMYpNlXwFXa46D5UUi0iZ6Maql8TQJtn-FtqRBK8U,1620
14
+ pulumi_mysql-3.3.0a1764802396.dist-info/METADATA,sha256=n0fWP_Tnd_hm35i8n-y2s31cFf1pFs3C5asKavUkr2k,3267
15
+ pulumi_mysql-3.3.0a1764802396.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
+ pulumi_mysql-3.3.0a1764802396.dist-info/top_level.txt,sha256=YQuDOT73Hwh07Tv1JBugii-IBZGk7_h6aYILJIDAh7w,13
17
+ pulumi_mysql-3.3.0a1764802396.dist-info/RECORD,,
@@ -1,17 +0,0 @@
1
- pulumi_mysql/__init__.py,sha256=Gwpx11jdZq_MRyorxWT3PNPYsM4tsDxU0weySoS8r7c,1476
2
- pulumi_mysql/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
3
- pulumi_mysql/database.py,sha256=_F_RkwlQGEV3I_2xXvl4JMIkgP-KI7vaOxIsbXWTD94,18072
4
- pulumi_mysql/grant.py,sha256=QcA7s1snG59WylXjCWeKLVcHGbz2-Nx8x3SDjAlkN5Y,28196
5
- pulumi_mysql/provider.py,sha256=WTaarqrTC4aggr4RGMznqDOta4Q597h9lJJQAYR6fBo,11443
6
- pulumi_mysql/pulumi-plugin.json,sha256=FhVv9sT3ut0GKeRM7G_Ri3A6yPK6utShD9BvxBFEwa0,81
7
- pulumi_mysql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- pulumi_mysql/role.py,sha256=kM2FxQM74VArZJjC1lx9f7-Y3gtP0AtiWL5S5qF4vZM,6063
9
- pulumi_mysql/user.py,sha256=2FOGsqoKWg17h6JlUh1fsGlrFEH9POm6WWVes3ARUqI,24176
10
- pulumi_mysql/user_password.py,sha256=VLt3_LLCd_uwtNgogcgi-9DcIPxbAe6POYFL98qPVDc,14230
11
- pulumi_mysql/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
12
- pulumi_mysql/config/__init__.pyi,sha256=QXuVENNtQh01xc3lLWF6mA91FGf2QFmuqLZEOqoI4sw,725
13
- pulumi_mysql/config/vars.py,sha256=G5NT767ECFMgaVh8uSsXUfXLbpXm5KqTEThViuLZU_w,1539
14
- pulumi_mysql-3.3.0a1749649690.dist-info/METADATA,sha256=2869f91N3KryO8_k9Rp8TWoXkRvSMmpGOJpVb5IIvqM,3267
15
- pulumi_mysql-3.3.0a1749649690.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
- pulumi_mysql-3.3.0a1749649690.dist-info/top_level.txt,sha256=YQuDOT73Hwh07Tv1JBugii-IBZGk7_h6aYILJIDAh7w,13
17
- pulumi_mysql-3.3.0a1749649690.dist-info/RECORD,,