pulumi-tls 4.12.0a1698440106__py3-none-any.whl → 4.12.0a1699566381__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.
- pulumi_tls/_inputs.py +23 -116
- pulumi_tls/_utilities.py +0 -19
- pulumi_tls/cert_request.py +14 -83
- pulumi_tls/config/outputs.py +5 -24
- pulumi_tls/config/vars.py +1 -1
- pulumi_tls/get_certificate.py +1 -1
- pulumi_tls/get_public_key.py +1 -1
- pulumi_tls/locally_signed_cert.py +23 -143
- pulumi_tls/outputs.py +30 -173
- pulumi_tls/private_key.py +13 -81
- pulumi_tls/provider.py +2 -18
- pulumi_tls/self_signed_cert.py +29 -162
- {pulumi_tls-4.12.0a1698440106.dist-info → pulumi_tls-4.12.0a1699566381.dist-info}/METADATA +1 -1
- pulumi_tls-4.12.0a1699566381.dist-info/RECORD +20 -0
- {pulumi_tls-4.12.0a1698440106.dist-info → pulumi_tls-4.12.0a1699566381.dist-info}/WHEEL +1 -1
- pulumi_tls-4.12.0a1698440106.dist-info/RECORD +0 -20
- {pulumi_tls-4.12.0a1698440106.dist-info → pulumi_tls-4.12.0a1699566381.dist-info}/top_level.txt +0 -0
pulumi_tls/outputs.py
CHANGED
@@ -6,7 +6,7 @@ import copy
|
|
6
6
|
import warnings
|
7
7
|
import pulumi
|
8
8
|
import pulumi.runtime
|
9
|
-
from typing import Any,
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from . import _utilities
|
11
11
|
|
12
12
|
__all__ = [
|
@@ -63,61 +63,24 @@ class CertRequestSubject(dict):
|
|
63
63
|
:param str serial_number: Distinguished name: `SERIALNUMBER`
|
64
64
|
:param Sequence[str] street_addresses: Distinguished name: `STREET`
|
65
65
|
"""
|
66
|
-
CertRequestSubject._configure(
|
67
|
-
lambda key, value: pulumi.set(__self__, key, value),
|
68
|
-
common_name=common_name,
|
69
|
-
country=country,
|
70
|
-
locality=locality,
|
71
|
-
organization=organization,
|
72
|
-
organizational_unit=organizational_unit,
|
73
|
-
postal_code=postal_code,
|
74
|
-
province=province,
|
75
|
-
serial_number=serial_number,
|
76
|
-
street_addresses=street_addresses,
|
77
|
-
)
|
78
|
-
@staticmethod
|
79
|
-
def _configure(
|
80
|
-
_setter: Callable[[Any, Any], None],
|
81
|
-
common_name: Optional[str] = None,
|
82
|
-
country: Optional[str] = None,
|
83
|
-
locality: Optional[str] = None,
|
84
|
-
organization: Optional[str] = None,
|
85
|
-
organizational_unit: Optional[str] = None,
|
86
|
-
postal_code: Optional[str] = None,
|
87
|
-
province: Optional[str] = None,
|
88
|
-
serial_number: Optional[str] = None,
|
89
|
-
street_addresses: Optional[Sequence[str]] = None,
|
90
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
91
|
-
**kwargs):
|
92
|
-
if common_name is None and 'commonName' in kwargs:
|
93
|
-
common_name = kwargs['commonName']
|
94
|
-
if organizational_unit is None and 'organizationalUnit' in kwargs:
|
95
|
-
organizational_unit = kwargs['organizationalUnit']
|
96
|
-
if postal_code is None and 'postalCode' in kwargs:
|
97
|
-
postal_code = kwargs['postalCode']
|
98
|
-
if serial_number is None and 'serialNumber' in kwargs:
|
99
|
-
serial_number = kwargs['serialNumber']
|
100
|
-
if street_addresses is None and 'streetAddresses' in kwargs:
|
101
|
-
street_addresses = kwargs['streetAddresses']
|
102
|
-
|
103
66
|
if common_name is not None:
|
104
|
-
|
67
|
+
pulumi.set(__self__, "common_name", common_name)
|
105
68
|
if country is not None:
|
106
|
-
|
69
|
+
pulumi.set(__self__, "country", country)
|
107
70
|
if locality is not None:
|
108
|
-
|
71
|
+
pulumi.set(__self__, "locality", locality)
|
109
72
|
if organization is not None:
|
110
|
-
|
73
|
+
pulumi.set(__self__, "organization", organization)
|
111
74
|
if organizational_unit is not None:
|
112
|
-
|
75
|
+
pulumi.set(__self__, "organizational_unit", organizational_unit)
|
113
76
|
if postal_code is not None:
|
114
|
-
|
77
|
+
pulumi.set(__self__, "postal_code", postal_code)
|
115
78
|
if province is not None:
|
116
|
-
|
79
|
+
pulumi.set(__self__, "province", province)
|
117
80
|
if serial_number is not None:
|
118
|
-
|
81
|
+
pulumi.set(__self__, "serial_number", serial_number)
|
119
82
|
if street_addresses is not None:
|
120
|
-
|
83
|
+
pulumi.set(__self__, "street_addresses", street_addresses)
|
121
84
|
|
122
85
|
@property
|
123
86
|
@pulumi.getter(name="commonName")
|
@@ -240,61 +203,24 @@ class SelfSignedCertSubject(dict):
|
|
240
203
|
:param str serial_number: Distinguished name: `SERIALNUMBER`
|
241
204
|
:param Sequence[str] street_addresses: Distinguished name: `STREET`
|
242
205
|
"""
|
243
|
-
SelfSignedCertSubject._configure(
|
244
|
-
lambda key, value: pulumi.set(__self__, key, value),
|
245
|
-
common_name=common_name,
|
246
|
-
country=country,
|
247
|
-
locality=locality,
|
248
|
-
organization=organization,
|
249
|
-
organizational_unit=organizational_unit,
|
250
|
-
postal_code=postal_code,
|
251
|
-
province=province,
|
252
|
-
serial_number=serial_number,
|
253
|
-
street_addresses=street_addresses,
|
254
|
-
)
|
255
|
-
@staticmethod
|
256
|
-
def _configure(
|
257
|
-
_setter: Callable[[Any, Any], None],
|
258
|
-
common_name: Optional[str] = None,
|
259
|
-
country: Optional[str] = None,
|
260
|
-
locality: Optional[str] = None,
|
261
|
-
organization: Optional[str] = None,
|
262
|
-
organizational_unit: Optional[str] = None,
|
263
|
-
postal_code: Optional[str] = None,
|
264
|
-
province: Optional[str] = None,
|
265
|
-
serial_number: Optional[str] = None,
|
266
|
-
street_addresses: Optional[Sequence[str]] = None,
|
267
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
268
|
-
**kwargs):
|
269
|
-
if common_name is None and 'commonName' in kwargs:
|
270
|
-
common_name = kwargs['commonName']
|
271
|
-
if organizational_unit is None and 'organizationalUnit' in kwargs:
|
272
|
-
organizational_unit = kwargs['organizationalUnit']
|
273
|
-
if postal_code is None and 'postalCode' in kwargs:
|
274
|
-
postal_code = kwargs['postalCode']
|
275
|
-
if serial_number is None and 'serialNumber' in kwargs:
|
276
|
-
serial_number = kwargs['serialNumber']
|
277
|
-
if street_addresses is None and 'streetAddresses' in kwargs:
|
278
|
-
street_addresses = kwargs['streetAddresses']
|
279
|
-
|
280
206
|
if common_name is not None:
|
281
|
-
|
207
|
+
pulumi.set(__self__, "common_name", common_name)
|
282
208
|
if country is not None:
|
283
|
-
|
209
|
+
pulumi.set(__self__, "country", country)
|
284
210
|
if locality is not None:
|
285
|
-
|
211
|
+
pulumi.set(__self__, "locality", locality)
|
286
212
|
if organization is not None:
|
287
|
-
|
213
|
+
pulumi.set(__self__, "organization", organization)
|
288
214
|
if organizational_unit is not None:
|
289
|
-
|
215
|
+
pulumi.set(__self__, "organizational_unit", organizational_unit)
|
290
216
|
if postal_code is not None:
|
291
|
-
|
217
|
+
pulumi.set(__self__, "postal_code", postal_code)
|
292
218
|
if province is not None:
|
293
|
-
|
219
|
+
pulumi.set(__self__, "province", province)
|
294
220
|
if serial_number is not None:
|
295
|
-
|
221
|
+
pulumi.set(__self__, "serial_number", serial_number)
|
296
222
|
if street_addresses is not None:
|
297
|
-
|
223
|
+
pulumi.set(__self__, "street_addresses", street_addresses)
|
298
224
|
|
299
225
|
@property
|
300
226
|
@pulumi.getter(name="commonName")
|
@@ -397,86 +323,17 @@ class GetCertificateCertificateResult(dict):
|
|
397
323
|
:param str subject: The entity the certificate belongs to, roughly following [RFC2253](https://tools.ietf.org/html/rfc2253).
|
398
324
|
:param int version: The version the certificate is in.
|
399
325
|
"""
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
subject=subject,
|
412
|
-
version=version,
|
413
|
-
)
|
414
|
-
@staticmethod
|
415
|
-
def _configure(
|
416
|
-
_setter: Callable[[Any, Any], None],
|
417
|
-
cert_pem: Optional[str] = None,
|
418
|
-
is_ca: Optional[bool] = None,
|
419
|
-
issuer: Optional[str] = None,
|
420
|
-
not_after: Optional[str] = None,
|
421
|
-
not_before: Optional[str] = None,
|
422
|
-
public_key_algorithm: Optional[str] = None,
|
423
|
-
serial_number: Optional[str] = None,
|
424
|
-
sha1_fingerprint: Optional[str] = None,
|
425
|
-
signature_algorithm: Optional[str] = None,
|
426
|
-
subject: Optional[str] = None,
|
427
|
-
version: Optional[int] = None,
|
428
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
429
|
-
**kwargs):
|
430
|
-
if cert_pem is None and 'certPem' in kwargs:
|
431
|
-
cert_pem = kwargs['certPem']
|
432
|
-
if cert_pem is None:
|
433
|
-
raise TypeError("Missing 'cert_pem' argument")
|
434
|
-
if is_ca is None and 'isCa' in kwargs:
|
435
|
-
is_ca = kwargs['isCa']
|
436
|
-
if is_ca is None:
|
437
|
-
raise TypeError("Missing 'is_ca' argument")
|
438
|
-
if issuer is None:
|
439
|
-
raise TypeError("Missing 'issuer' argument")
|
440
|
-
if not_after is None and 'notAfter' in kwargs:
|
441
|
-
not_after = kwargs['notAfter']
|
442
|
-
if not_after is None:
|
443
|
-
raise TypeError("Missing 'not_after' argument")
|
444
|
-
if not_before is None and 'notBefore' in kwargs:
|
445
|
-
not_before = kwargs['notBefore']
|
446
|
-
if not_before is None:
|
447
|
-
raise TypeError("Missing 'not_before' argument")
|
448
|
-
if public_key_algorithm is None and 'publicKeyAlgorithm' in kwargs:
|
449
|
-
public_key_algorithm = kwargs['publicKeyAlgorithm']
|
450
|
-
if public_key_algorithm is None:
|
451
|
-
raise TypeError("Missing 'public_key_algorithm' argument")
|
452
|
-
if serial_number is None and 'serialNumber' in kwargs:
|
453
|
-
serial_number = kwargs['serialNumber']
|
454
|
-
if serial_number is None:
|
455
|
-
raise TypeError("Missing 'serial_number' argument")
|
456
|
-
if sha1_fingerprint is None and 'sha1Fingerprint' in kwargs:
|
457
|
-
sha1_fingerprint = kwargs['sha1Fingerprint']
|
458
|
-
if sha1_fingerprint is None:
|
459
|
-
raise TypeError("Missing 'sha1_fingerprint' argument")
|
460
|
-
if signature_algorithm is None and 'signatureAlgorithm' in kwargs:
|
461
|
-
signature_algorithm = kwargs['signatureAlgorithm']
|
462
|
-
if signature_algorithm is None:
|
463
|
-
raise TypeError("Missing 'signature_algorithm' argument")
|
464
|
-
if subject is None:
|
465
|
-
raise TypeError("Missing 'subject' argument")
|
466
|
-
if version is None:
|
467
|
-
raise TypeError("Missing 'version' argument")
|
468
|
-
|
469
|
-
_setter("cert_pem", cert_pem)
|
470
|
-
_setter("is_ca", is_ca)
|
471
|
-
_setter("issuer", issuer)
|
472
|
-
_setter("not_after", not_after)
|
473
|
-
_setter("not_before", not_before)
|
474
|
-
_setter("public_key_algorithm", public_key_algorithm)
|
475
|
-
_setter("serial_number", serial_number)
|
476
|
-
_setter("sha1_fingerprint", sha1_fingerprint)
|
477
|
-
_setter("signature_algorithm", signature_algorithm)
|
478
|
-
_setter("subject", subject)
|
479
|
-
_setter("version", version)
|
326
|
+
pulumi.set(__self__, "cert_pem", cert_pem)
|
327
|
+
pulumi.set(__self__, "is_ca", is_ca)
|
328
|
+
pulumi.set(__self__, "issuer", issuer)
|
329
|
+
pulumi.set(__self__, "not_after", not_after)
|
330
|
+
pulumi.set(__self__, "not_before", not_before)
|
331
|
+
pulumi.set(__self__, "public_key_algorithm", public_key_algorithm)
|
332
|
+
pulumi.set(__self__, "serial_number", serial_number)
|
333
|
+
pulumi.set(__self__, "sha1_fingerprint", sha1_fingerprint)
|
334
|
+
pulumi.set(__self__, "signature_algorithm", signature_algorithm)
|
335
|
+
pulumi.set(__self__, "subject", subject)
|
336
|
+
pulumi.set(__self__, "version", version)
|
480
337
|
|
481
338
|
@property
|
482
339
|
@pulumi.getter(name="certPem")
|
pulumi_tls/private_key.py
CHANGED
@@ -6,7 +6,7 @@ import copy
|
|
6
6
|
import warnings
|
7
7
|
import pulumi
|
8
8
|
import pulumi.runtime
|
9
|
-
from typing import Any,
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from . import _utilities
|
11
11
|
|
12
12
|
__all__ = ['PrivateKeyArgs', 'PrivateKey']
|
@@ -23,32 +23,11 @@ class PrivateKeyArgs:
|
|
23
23
|
:param pulumi.Input[str] ecdsa_curve: When `algorithm` is `ECDSA`, the name of the elliptic curve to use. Currently-supported values are `P224`, `P256`, `P384` or `P521` (default: `P224`).
|
24
24
|
:param pulumi.Input[int] rsa_bits: When `algorithm` is `RSA`, the size of the generated RSA key, in bits (default: `2048`).
|
25
25
|
"""
|
26
|
-
|
27
|
-
lambda key, value: pulumi.set(__self__, key, value),
|
28
|
-
algorithm=algorithm,
|
29
|
-
ecdsa_curve=ecdsa_curve,
|
30
|
-
rsa_bits=rsa_bits,
|
31
|
-
)
|
32
|
-
@staticmethod
|
33
|
-
def _configure(
|
34
|
-
_setter: Callable[[Any, Any], None],
|
35
|
-
algorithm: Optional[pulumi.Input[str]] = None,
|
36
|
-
ecdsa_curve: Optional[pulumi.Input[str]] = None,
|
37
|
-
rsa_bits: Optional[pulumi.Input[int]] = None,
|
38
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
39
|
-
**kwargs):
|
40
|
-
if algorithm is None:
|
41
|
-
raise TypeError("Missing 'algorithm' argument")
|
42
|
-
if ecdsa_curve is None and 'ecdsaCurve' in kwargs:
|
43
|
-
ecdsa_curve = kwargs['ecdsaCurve']
|
44
|
-
if rsa_bits is None and 'rsaBits' in kwargs:
|
45
|
-
rsa_bits = kwargs['rsaBits']
|
46
|
-
|
47
|
-
_setter("algorithm", algorithm)
|
26
|
+
pulumi.set(__self__, "algorithm", algorithm)
|
48
27
|
if ecdsa_curve is not None:
|
49
|
-
|
28
|
+
pulumi.set(__self__, "ecdsa_curve", ecdsa_curve)
|
50
29
|
if rsa_bits is not None:
|
51
|
-
|
30
|
+
pulumi.set(__self__, "rsa_bits", rsa_bits)
|
52
31
|
|
53
32
|
@property
|
54
33
|
@pulumi.getter
|
@@ -111,67 +90,24 @@ class _PrivateKeyState:
|
|
111
90
|
:param pulumi.Input[str] public_key_pem: Public key data in PEM (RFC 1421).
|
112
91
|
:param pulumi.Input[int] rsa_bits: When `algorithm` is `RSA`, the size of the generated RSA key, in bits (default: `2048`).
|
113
92
|
"""
|
114
|
-
_PrivateKeyState._configure(
|
115
|
-
lambda key, value: pulumi.set(__self__, key, value),
|
116
|
-
algorithm=algorithm,
|
117
|
-
ecdsa_curve=ecdsa_curve,
|
118
|
-
private_key_openssh=private_key_openssh,
|
119
|
-
private_key_pem=private_key_pem,
|
120
|
-
public_key_fingerprint_md5=public_key_fingerprint_md5,
|
121
|
-
public_key_fingerprint_sha256=public_key_fingerprint_sha256,
|
122
|
-
public_key_openssh=public_key_openssh,
|
123
|
-
public_key_pem=public_key_pem,
|
124
|
-
rsa_bits=rsa_bits,
|
125
|
-
)
|
126
|
-
@staticmethod
|
127
|
-
def _configure(
|
128
|
-
_setter: Callable[[Any, Any], None],
|
129
|
-
algorithm: Optional[pulumi.Input[str]] = None,
|
130
|
-
ecdsa_curve: Optional[pulumi.Input[str]] = None,
|
131
|
-
private_key_openssh: Optional[pulumi.Input[str]] = None,
|
132
|
-
private_key_pem: Optional[pulumi.Input[str]] = None,
|
133
|
-
public_key_fingerprint_md5: Optional[pulumi.Input[str]] = None,
|
134
|
-
public_key_fingerprint_sha256: Optional[pulumi.Input[str]] = None,
|
135
|
-
public_key_openssh: Optional[pulumi.Input[str]] = None,
|
136
|
-
public_key_pem: Optional[pulumi.Input[str]] = None,
|
137
|
-
rsa_bits: Optional[pulumi.Input[int]] = None,
|
138
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
139
|
-
**kwargs):
|
140
|
-
if ecdsa_curve is None and 'ecdsaCurve' in kwargs:
|
141
|
-
ecdsa_curve = kwargs['ecdsaCurve']
|
142
|
-
if private_key_openssh is None and 'privateKeyOpenssh' in kwargs:
|
143
|
-
private_key_openssh = kwargs['privateKeyOpenssh']
|
144
|
-
if private_key_pem is None and 'privateKeyPem' in kwargs:
|
145
|
-
private_key_pem = kwargs['privateKeyPem']
|
146
|
-
if public_key_fingerprint_md5 is None and 'publicKeyFingerprintMd5' in kwargs:
|
147
|
-
public_key_fingerprint_md5 = kwargs['publicKeyFingerprintMd5']
|
148
|
-
if public_key_fingerprint_sha256 is None and 'publicKeyFingerprintSha256' in kwargs:
|
149
|
-
public_key_fingerprint_sha256 = kwargs['publicKeyFingerprintSha256']
|
150
|
-
if public_key_openssh is None and 'publicKeyOpenssh' in kwargs:
|
151
|
-
public_key_openssh = kwargs['publicKeyOpenssh']
|
152
|
-
if public_key_pem is None and 'publicKeyPem' in kwargs:
|
153
|
-
public_key_pem = kwargs['publicKeyPem']
|
154
|
-
if rsa_bits is None and 'rsaBits' in kwargs:
|
155
|
-
rsa_bits = kwargs['rsaBits']
|
156
|
-
|
157
93
|
if algorithm is not None:
|
158
|
-
|
94
|
+
pulumi.set(__self__, "algorithm", algorithm)
|
159
95
|
if ecdsa_curve is not None:
|
160
|
-
|
96
|
+
pulumi.set(__self__, "ecdsa_curve", ecdsa_curve)
|
161
97
|
if private_key_openssh is not None:
|
162
|
-
|
98
|
+
pulumi.set(__self__, "private_key_openssh", private_key_openssh)
|
163
99
|
if private_key_pem is not None:
|
164
|
-
|
100
|
+
pulumi.set(__self__, "private_key_pem", private_key_pem)
|
165
101
|
if public_key_fingerprint_md5 is not None:
|
166
|
-
|
102
|
+
pulumi.set(__self__, "public_key_fingerprint_md5", public_key_fingerprint_md5)
|
167
103
|
if public_key_fingerprint_sha256 is not None:
|
168
|
-
|
104
|
+
pulumi.set(__self__, "public_key_fingerprint_sha256", public_key_fingerprint_sha256)
|
169
105
|
if public_key_openssh is not None:
|
170
|
-
|
106
|
+
pulumi.set(__self__, "public_key_openssh", public_key_openssh)
|
171
107
|
if public_key_pem is not None:
|
172
|
-
|
108
|
+
pulumi.set(__self__, "public_key_pem", public_key_pem)
|
173
109
|
if rsa_bits is not None:
|
174
|
-
|
110
|
+
pulumi.set(__self__, "rsa_bits", rsa_bits)
|
175
111
|
|
176
112
|
@property
|
177
113
|
@pulumi.getter
|
@@ -317,10 +253,6 @@ class PrivateKey(pulumi.CustomResource):
|
|
317
253
|
if resource_args is not None:
|
318
254
|
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
319
255
|
else:
|
320
|
-
kwargs = kwargs or {}
|
321
|
-
def _setter(key, value):
|
322
|
-
kwargs[key] = value
|
323
|
-
PrivateKeyArgs._configure(_setter, **kwargs)
|
324
256
|
__self__._internal_init(resource_name, *args, **kwargs)
|
325
257
|
|
326
258
|
def _internal_init(__self__,
|
pulumi_tls/provider.py
CHANGED
@@ -6,7 +6,7 @@ import copy
|
|
6
6
|
import warnings
|
7
7
|
import pulumi
|
8
8
|
import pulumi.runtime
|
9
|
-
from typing import Any,
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from . import _utilities
|
11
11
|
from ._inputs import *
|
12
12
|
|
@@ -20,19 +20,8 @@ class ProviderArgs:
|
|
20
20
|
The set of arguments for constructing a Provider resource.
|
21
21
|
:param pulumi.Input['ProviderProxyArgs'] proxy: Proxy used by resources and data sources that connect to external endpoints.
|
22
22
|
"""
|
23
|
-
ProviderArgs._configure(
|
24
|
-
lambda key, value: pulumi.set(__self__, key, value),
|
25
|
-
proxy=proxy,
|
26
|
-
)
|
27
|
-
@staticmethod
|
28
|
-
def _configure(
|
29
|
-
_setter: Callable[[Any, Any], None],
|
30
|
-
proxy: Optional[pulumi.Input['ProviderProxyArgs']] = None,
|
31
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
32
|
-
**kwargs):
|
33
|
-
|
34
23
|
if proxy is not None:
|
35
|
-
|
24
|
+
pulumi.set(__self__, "proxy", proxy)
|
36
25
|
|
37
26
|
@property
|
38
27
|
@pulumi.getter
|
@@ -86,10 +75,6 @@ class Provider(pulumi.ProviderResource):
|
|
86
75
|
if resource_args is not None:
|
87
76
|
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
88
77
|
else:
|
89
|
-
kwargs = kwargs or {}
|
90
|
-
def _setter(key, value):
|
91
|
-
kwargs[key] = value
|
92
|
-
ProviderArgs._configure(_setter, **kwargs)
|
93
78
|
__self__._internal_init(resource_name, *args, **kwargs)
|
94
79
|
|
95
80
|
def _internal_init(__self__,
|
@@ -105,7 +90,6 @@ class Provider(pulumi.ProviderResource):
|
|
105
90
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
106
91
|
__props__ = ProviderArgs.__new__(ProviderArgs)
|
107
92
|
|
108
|
-
proxy = _utilities.configure(proxy, ProviderProxyArgs, True)
|
109
93
|
__props__.__dict__["proxy"] = pulumi.Output.from_input(proxy).apply(pulumi.runtime.to_json) if proxy is not None else None
|
110
94
|
super(Provider, __self__).__init__(
|
111
95
|
'tls',
|