pulumi-venafi 1.12.0a1749710770__py3-none-any.whl → 1.12.0a1749883756__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_venafi/cloud_keystore_installation.py +50 -3
- pulumi_venafi/pulumi-plugin.json +1 -1
- {pulumi_venafi-1.12.0a1749710770.dist-info → pulumi_venafi-1.12.0a1749883756.dist-info}/METADATA +1 -1
- {pulumi_venafi-1.12.0a1749710770.dist-info → pulumi_venafi-1.12.0a1749883756.dist-info}/RECORD +6 -6
- {pulumi_venafi-1.12.0a1749710770.dist-info → pulumi_venafi-1.12.0a1749883756.dist-info}/WHEEL +0 -0
- {pulumi_venafi-1.12.0a1749710770.dist-info → pulumi_venafi-1.12.0a1749883756.dist-info}/top_level.txt +0 -0
|
@@ -23,13 +23,15 @@ class CloudKeystoreInstallationArgs:
|
|
|
23
23
|
certificate_id: pulumi.Input[builtins.str],
|
|
24
24
|
cloud_keystore_id: pulumi.Input[builtins.str],
|
|
25
25
|
arn: Optional[pulumi.Input[builtins.str]] = None,
|
|
26
|
-
cloud_certificate_name: Optional[pulumi.Input[builtins.str]] = None
|
|
26
|
+
cloud_certificate_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
27
|
+
gcm_cert_scope: Optional[pulumi.Input[builtins.str]] = None):
|
|
27
28
|
"""
|
|
28
29
|
The set of arguments for constructing a CloudKeystoreInstallation resource.
|
|
29
30
|
:param pulumi.Input[builtins.str] certificate_id: ID of the certificate to be provisioned to the given `keystore_id`.
|
|
30
31
|
:param pulumi.Input[builtins.str] cloud_keystore_id: ID of the cloud keystore where the certificate will be provisioned.
|
|
31
32
|
:param pulumi.Input[builtins.str] arn: ARN of the AWS certificate. Use it to provision the VCP certificate to an existing ACM certificate, instead of a new one. Only valid for ACM keystores.
|
|
32
33
|
:param pulumi.Input[builtins.str] cloud_certificate_name: Name for the provisioned certificate in the keystore. If the name already exists, the provisioning will replace the previous certificate with the one from `certificate_id`. Only valid for AKV and GCM keystores.
|
|
34
|
+
:param pulumi.Input[builtins.str] gcm_cert_scope: The GCM certificate scope of the certificate. Only valid for GCM keystores. Supported values from GCM API documentation: DEFAULT, EDGE_CACHE, ALL_REGIONS. Only it's taken into account if the `cloud_certificate_name` argument is provided.
|
|
33
35
|
"""
|
|
34
36
|
pulumi.set(__self__, "certificate_id", certificate_id)
|
|
35
37
|
pulumi.set(__self__, "cloud_keystore_id", cloud_keystore_id)
|
|
@@ -37,6 +39,8 @@ class CloudKeystoreInstallationArgs:
|
|
|
37
39
|
pulumi.set(__self__, "arn", arn)
|
|
38
40
|
if cloud_certificate_name is not None:
|
|
39
41
|
pulumi.set(__self__, "cloud_certificate_name", cloud_certificate_name)
|
|
42
|
+
if gcm_cert_scope is not None:
|
|
43
|
+
pulumi.set(__self__, "gcm_cert_scope", gcm_cert_scope)
|
|
40
44
|
|
|
41
45
|
@property
|
|
42
46
|
@pulumi.getter(name="certificateId")
|
|
@@ -86,6 +90,18 @@ class CloudKeystoreInstallationArgs:
|
|
|
86
90
|
def cloud_certificate_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
87
91
|
pulumi.set(self, "cloud_certificate_name", value)
|
|
88
92
|
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter(name="gcmCertScope")
|
|
95
|
+
def gcm_cert_scope(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
96
|
+
"""
|
|
97
|
+
The GCM certificate scope of the certificate. Only valid for GCM keystores. Supported values from GCM API documentation: DEFAULT, EDGE_CACHE, ALL_REGIONS. Only it's taken into account if the `cloud_certificate_name` argument is provided.
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "gcm_cert_scope")
|
|
100
|
+
|
|
101
|
+
@gcm_cert_scope.setter
|
|
102
|
+
def gcm_cert_scope(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
103
|
+
pulumi.set(self, "gcm_cert_scope", value)
|
|
104
|
+
|
|
89
105
|
|
|
90
106
|
@pulumi.input_type
|
|
91
107
|
class _CloudKeystoreInstallationState:
|
|
@@ -95,7 +111,8 @@ class _CloudKeystoreInstallationState:
|
|
|
95
111
|
cloud_certificate_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
96
112
|
cloud_certificate_metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
97
113
|
cloud_certificate_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
98
|
-
cloud_keystore_id: Optional[pulumi.Input[builtins.str]] = None
|
|
114
|
+
cloud_keystore_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
115
|
+
gcm_cert_scope: Optional[pulumi.Input[builtins.str]] = None):
|
|
99
116
|
"""
|
|
100
117
|
Input properties used for looking up and filtering CloudKeystoreInstallation resources.
|
|
101
118
|
:param pulumi.Input[builtins.str] arn: ARN of the AWS certificate. Use it to provision the VCP certificate to an existing ACM certificate, instead of a new one. Only valid for ACM keystores.
|
|
@@ -104,6 +121,7 @@ class _CloudKeystoreInstallationState:
|
|
|
104
121
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] cloud_certificate_metadata: Metadata of the provisioned certificate from the Cloud Keystore
|
|
105
122
|
:param pulumi.Input[builtins.str] cloud_certificate_name: Name for the provisioned certificate in the keystore. If the name already exists, the provisioning will replace the previous certificate with the one from `certificate_id`. Only valid for AKV and GCM keystores.
|
|
106
123
|
:param pulumi.Input[builtins.str] cloud_keystore_id: ID of the cloud keystore where the certificate will be provisioned.
|
|
124
|
+
:param pulumi.Input[builtins.str] gcm_cert_scope: The GCM certificate scope of the certificate. Only valid for GCM keystores. Supported values from GCM API documentation: DEFAULT, EDGE_CACHE, ALL_REGIONS. Only it's taken into account if the `cloud_certificate_name` argument is provided.
|
|
107
125
|
"""
|
|
108
126
|
if arn is not None:
|
|
109
127
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -117,6 +135,8 @@ class _CloudKeystoreInstallationState:
|
|
|
117
135
|
pulumi.set(__self__, "cloud_certificate_name", cloud_certificate_name)
|
|
118
136
|
if cloud_keystore_id is not None:
|
|
119
137
|
pulumi.set(__self__, "cloud_keystore_id", cloud_keystore_id)
|
|
138
|
+
if gcm_cert_scope is not None:
|
|
139
|
+
pulumi.set(__self__, "gcm_cert_scope", gcm_cert_scope)
|
|
120
140
|
|
|
121
141
|
@property
|
|
122
142
|
@pulumi.getter
|
|
@@ -190,6 +210,18 @@ class _CloudKeystoreInstallationState:
|
|
|
190
210
|
def cloud_keystore_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
191
211
|
pulumi.set(self, "cloud_keystore_id", value)
|
|
192
212
|
|
|
213
|
+
@property
|
|
214
|
+
@pulumi.getter(name="gcmCertScope")
|
|
215
|
+
def gcm_cert_scope(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
216
|
+
"""
|
|
217
|
+
The GCM certificate scope of the certificate. Only valid for GCM keystores. Supported values from GCM API documentation: DEFAULT, EDGE_CACHE, ALL_REGIONS. Only it's taken into account if the `cloud_certificate_name` argument is provided.
|
|
218
|
+
"""
|
|
219
|
+
return pulumi.get(self, "gcm_cert_scope")
|
|
220
|
+
|
|
221
|
+
@gcm_cert_scope.setter
|
|
222
|
+
def gcm_cert_scope(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
223
|
+
pulumi.set(self, "gcm_cert_scope", value)
|
|
224
|
+
|
|
193
225
|
|
|
194
226
|
@pulumi.type_token("venafi:index/cloudKeystoreInstallation:CloudKeystoreInstallation")
|
|
195
227
|
class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
@@ -201,6 +233,7 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
201
233
|
certificate_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
202
234
|
cloud_certificate_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
203
235
|
cloud_keystore_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
236
|
+
gcm_cert_scope: Optional[pulumi.Input[builtins.str]] = None,
|
|
204
237
|
__props__=None):
|
|
205
238
|
"""
|
|
206
239
|
Provisions a certificate from Venafi Control Plane's inventory to any of the supported Cloud Providers: Amazon
|
|
@@ -241,6 +274,7 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
241
274
|
:param pulumi.Input[builtins.str] certificate_id: ID of the certificate to be provisioned to the given `keystore_id`.
|
|
242
275
|
:param pulumi.Input[builtins.str] cloud_certificate_name: Name for the provisioned certificate in the keystore. If the name already exists, the provisioning will replace the previous certificate with the one from `certificate_id`. Only valid for AKV and GCM keystores.
|
|
243
276
|
:param pulumi.Input[builtins.str] cloud_keystore_id: ID of the cloud keystore where the certificate will be provisioned.
|
|
277
|
+
:param pulumi.Input[builtins.str] gcm_cert_scope: The GCM certificate scope of the certificate. Only valid for GCM keystores. Supported values from GCM API documentation: DEFAULT, EDGE_CACHE, ALL_REGIONS. Only it's taken into account if the `cloud_certificate_name` argument is provided.
|
|
244
278
|
"""
|
|
245
279
|
...
|
|
246
280
|
@overload
|
|
@@ -300,6 +334,7 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
300
334
|
certificate_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
301
335
|
cloud_certificate_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
302
336
|
cloud_keystore_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
337
|
+
gcm_cert_scope: Optional[pulumi.Input[builtins.str]] = None,
|
|
303
338
|
__props__=None):
|
|
304
339
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
305
340
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -317,6 +352,7 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
317
352
|
if cloud_keystore_id is None and not opts.urn:
|
|
318
353
|
raise TypeError("Missing required property 'cloud_keystore_id'")
|
|
319
354
|
__props__.__dict__["cloud_keystore_id"] = cloud_keystore_id
|
|
355
|
+
__props__.__dict__["gcm_cert_scope"] = gcm_cert_scope
|
|
320
356
|
__props__.__dict__["cloud_certificate_id"] = None
|
|
321
357
|
__props__.__dict__["cloud_certificate_metadata"] = None
|
|
322
358
|
super(CloudKeystoreInstallation, __self__).__init__(
|
|
@@ -334,7 +370,8 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
334
370
|
cloud_certificate_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
335
371
|
cloud_certificate_metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
336
372
|
cloud_certificate_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
337
|
-
cloud_keystore_id: Optional[pulumi.Input[builtins.str]] = None
|
|
373
|
+
cloud_keystore_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
374
|
+
gcm_cert_scope: Optional[pulumi.Input[builtins.str]] = None) -> 'CloudKeystoreInstallation':
|
|
338
375
|
"""
|
|
339
376
|
Get an existing CloudKeystoreInstallation resource's state with the given name, id, and optional extra
|
|
340
377
|
properties used to qualify the lookup.
|
|
@@ -348,6 +385,7 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
348
385
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] cloud_certificate_metadata: Metadata of the provisioned certificate from the Cloud Keystore
|
|
349
386
|
:param pulumi.Input[builtins.str] cloud_certificate_name: Name for the provisioned certificate in the keystore. If the name already exists, the provisioning will replace the previous certificate with the one from `certificate_id`. Only valid for AKV and GCM keystores.
|
|
350
387
|
:param pulumi.Input[builtins.str] cloud_keystore_id: ID of the cloud keystore where the certificate will be provisioned.
|
|
388
|
+
:param pulumi.Input[builtins.str] gcm_cert_scope: The GCM certificate scope of the certificate. Only valid for GCM keystores. Supported values from GCM API documentation: DEFAULT, EDGE_CACHE, ALL_REGIONS. Only it's taken into account if the `cloud_certificate_name` argument is provided.
|
|
351
389
|
"""
|
|
352
390
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
353
391
|
|
|
@@ -359,6 +397,7 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
359
397
|
__props__.__dict__["cloud_certificate_metadata"] = cloud_certificate_metadata
|
|
360
398
|
__props__.__dict__["cloud_certificate_name"] = cloud_certificate_name
|
|
361
399
|
__props__.__dict__["cloud_keystore_id"] = cloud_keystore_id
|
|
400
|
+
__props__.__dict__["gcm_cert_scope"] = gcm_cert_scope
|
|
362
401
|
return CloudKeystoreInstallation(resource_name, opts=opts, __props__=__props__)
|
|
363
402
|
|
|
364
403
|
@property
|
|
@@ -409,3 +448,11 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
409
448
|
"""
|
|
410
449
|
return pulumi.get(self, "cloud_keystore_id")
|
|
411
450
|
|
|
451
|
+
@property
|
|
452
|
+
@pulumi.getter(name="gcmCertScope")
|
|
453
|
+
def gcm_cert_scope(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
454
|
+
"""
|
|
455
|
+
The GCM certificate scope of the certificate. Only valid for GCM keystores. Supported values from GCM API documentation: DEFAULT, EDGE_CACHE, ALL_REGIONS. Only it's taken into account if the `cloud_certificate_name` argument is provided.
|
|
456
|
+
"""
|
|
457
|
+
return pulumi.get(self, "gcm_cert_scope")
|
|
458
|
+
|
pulumi_venafi/pulumi-plugin.json
CHANGED
{pulumi_venafi-1.12.0a1749710770.dist-info → pulumi_venafi-1.12.0a1749883756.dist-info}/RECORD
RENAMED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
pulumi_venafi/__init__.py,sha256=HPAfVYIP23bq5uLrAgvfDBHfhkPcjkFEMr6heNHJ_Jc,1727
|
|
2
2
|
pulumi_venafi/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
3
|
pulumi_venafi/certificate.py,sha256=aiC5n_57ONFvjCN7P1utLX6EnRLAiY09kOAxDyqm2r4,65262
|
|
4
|
-
pulumi_venafi/cloud_keystore_installation.py,sha256=
|
|
4
|
+
pulumi_venafi/cloud_keystore_installation.py,sha256=WQ0jEcRBNE17IhzQw5vSEcRmI4ssHkkXAYxyhruApxc,24782
|
|
5
5
|
pulumi_venafi/get_cloud_keystore.py,sha256=sbkjO9-4gMnjFeJzh0d3LZKibXUCePWORtvk-3tLJqo,6986
|
|
6
6
|
pulumi_venafi/get_cloud_provider.py,sha256=cImL1dLLmoMiktJbhUKQxhlVGbzMn6VjlU8JOVNOWYY,6110
|
|
7
7
|
pulumi_venafi/policy.py,sha256=FUfhAuB2dJLW30M4EwwcXeNCjtUPBbjHpZhKE8lrqV8,12183
|
|
8
8
|
pulumi_venafi/provider.py,sha256=etkBSYFOJYo9W40QxpmzHntcakob18dZ5DRDog4RP0s,24932
|
|
9
|
-
pulumi_venafi/pulumi-plugin.json,sha256=
|
|
9
|
+
pulumi_venafi/pulumi-plugin.json,sha256=B0MELxIZXhxRLj4ssFm1O7w6v3I6VAb21B6otExe9Hk,83
|
|
10
10
|
pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
pulumi_venafi/ssh_certificate.py,sha256=7D-9AzTKVo6eIrWhRlmiGysspVjC9CtPhCUUL8G0-Sk,56741
|
|
12
12
|
pulumi_venafi/ssh_config.py,sha256=Fu-o72tqoTgTqo6tac-pLKT4a2XKCrdwWI9EJyunOC8,8985
|
|
13
13
|
pulumi_venafi/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
|
14
14
|
pulumi_venafi/config/__init__.pyi,sha256=Mhh1xlWS0Lis8c3dOAP6oK2UldM3PVViSkNJp_w28rc,2296
|
|
15
15
|
pulumi_venafi/config/vars.py,sha256=WlsTiRCx63W1kAwt4KowAONA4lTT3IC9_PXY44SSpIs,3805
|
|
16
|
-
pulumi_venafi-1.12.
|
|
17
|
-
pulumi_venafi-1.12.
|
|
18
|
-
pulumi_venafi-1.12.
|
|
19
|
-
pulumi_venafi-1.12.
|
|
16
|
+
pulumi_venafi-1.12.0a1749883756.dist-info/METADATA,sha256=rhRxGVh2g0P-B9evgMgUhzXk5ThIXgt1J0-bHqJufic,3677
|
|
17
|
+
pulumi_venafi-1.12.0a1749883756.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
18
|
+
pulumi_venafi-1.12.0a1749883756.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
|
|
19
|
+
pulumi_venafi-1.12.0a1749883756.dist-info/RECORD,,
|
{pulumi_venafi-1.12.0a1749710770.dist-info → pulumi_venafi-1.12.0a1749883756.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|