pulumi-akamai 9.1.0a1756357789__py3-none-any.whl → 9.1.0a1757435296__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-akamai might be problematic. Click here for more details.

Files changed (28) hide show
  1. pulumi_akamai/__init__.py +30 -0
  2. pulumi_akamai/_inputs.py +944 -0
  3. pulumi_akamai/app_sec_slow_post.py +7 -14
  4. pulumi_akamai/cloud_access_key.py +21 -56
  5. pulumi_akamai/cloudlets_application_load_balancer.py +7 -21
  6. pulumi_akamai/datastream.py +7 -14
  7. pulumi_akamai/edge_host_name.py +7 -14
  8. pulumi_akamai/get_clientlist_lists.py +0 -3
  9. pulumi_akamai/get_mtlskeystore_account_ca_certificates.py +97 -0
  10. pulumi_akamai/get_mtlskeystore_client_certificate.py +233 -0
  11. pulumi_akamai/get_mtlskeystore_client_certificates.py +82 -0
  12. pulumi_akamai/gtm_domain.py +7 -14
  13. pulumi_akamai/iam_api_client.py +25 -50
  14. pulumi_akamai/imaging_policy_image.py +7 -21
  15. pulumi_akamai/imaging_policy_video.py +7 -21
  16. pulumi_akamai/mtlskeystore_client_certificate_akamai.py +654 -0
  17. pulumi_akamai/mtlskeystore_client_certificate_third_party.py +562 -0
  18. pulumi_akamai/mtlskeystore_client_certificate_upload.py +451 -0
  19. pulumi_akamai/network_list.py +7 -14
  20. pulumi_akamai/outputs.py +14310 -11900
  21. pulumi_akamai/property.py +7 -14
  22. pulumi_akamai/property_bootstrap.py +7 -14
  23. pulumi_akamai/property_hostname_bucket.py +28 -56
  24. pulumi_akamai/pulumi-plugin.json +1 -1
  25. {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/METADATA +1 -1
  26. {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/RECORD +28 -22
  27. {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/WHEEL +0 -0
  28. {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,451 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['MtlskeystoreClientCertificateUploadArgs', 'MtlskeystoreClientCertificateUpload']
20
+
21
+ @pulumi.input_type
22
+ class MtlskeystoreClientCertificateUploadArgs:
23
+ def __init__(__self__, *,
24
+ client_certificate_id: pulumi.Input[_builtins.int],
25
+ signed_certificate: pulumi.Input[_builtins.str],
26
+ version_number: pulumi.Input[_builtins.int],
27
+ auto_acknowledge_warnings: Optional[pulumi.Input[_builtins.bool]] = None,
28
+ timeouts: Optional[pulumi.Input['MtlskeystoreClientCertificateUploadTimeoutsArgs']] = None,
29
+ trust_chain: Optional[pulumi.Input[_builtins.str]] = None,
30
+ wait_for_deployment: Optional[pulumi.Input[_builtins.bool]] = None):
31
+ """
32
+ The set of arguments for constructing a MtlskeystoreClientCertificateUpload resource.
33
+ :param pulumi.Input[_builtins.int] client_certificate_id: The ID of the client certificate to which the signed certificate will be uploaded.
34
+ :param pulumi.Input[_builtins.str] signed_certificate: The signed certificate to upload.
35
+ :param pulumi.Input[_builtins.int] version_number: The version number of the client certificate to upload the signed certificate to.
36
+ :param pulumi.Input[_builtins.bool] auto_acknowledge_warnings: If set to true, all warnings will be acknowledged automatically. Defaults to `false`.
37
+ :param pulumi.Input[_builtins.str] trust_chain: The optional trust chain associated with the signed certificate.
38
+ :param pulumi.Input[_builtins.bool] wait_for_deployment: Indicates whether to wait for the deployment of the uploaded certificate. Defaults to `true`.
39
+ """
40
+ pulumi.set(__self__, "client_certificate_id", client_certificate_id)
41
+ pulumi.set(__self__, "signed_certificate", signed_certificate)
42
+ pulumi.set(__self__, "version_number", version_number)
43
+ if auto_acknowledge_warnings is not None:
44
+ pulumi.set(__self__, "auto_acknowledge_warnings", auto_acknowledge_warnings)
45
+ if timeouts is not None:
46
+ pulumi.set(__self__, "timeouts", timeouts)
47
+ if trust_chain is not None:
48
+ pulumi.set(__self__, "trust_chain", trust_chain)
49
+ if wait_for_deployment is not None:
50
+ pulumi.set(__self__, "wait_for_deployment", wait_for_deployment)
51
+
52
+ @_builtins.property
53
+ @pulumi.getter(name="clientCertificateId")
54
+ def client_certificate_id(self) -> pulumi.Input[_builtins.int]:
55
+ """
56
+ The ID of the client certificate to which the signed certificate will be uploaded.
57
+ """
58
+ return pulumi.get(self, "client_certificate_id")
59
+
60
+ @client_certificate_id.setter
61
+ def client_certificate_id(self, value: pulumi.Input[_builtins.int]):
62
+ pulumi.set(self, "client_certificate_id", value)
63
+
64
+ @_builtins.property
65
+ @pulumi.getter(name="signedCertificate")
66
+ def signed_certificate(self) -> pulumi.Input[_builtins.str]:
67
+ """
68
+ The signed certificate to upload.
69
+ """
70
+ return pulumi.get(self, "signed_certificate")
71
+
72
+ @signed_certificate.setter
73
+ def signed_certificate(self, value: pulumi.Input[_builtins.str]):
74
+ pulumi.set(self, "signed_certificate", value)
75
+
76
+ @_builtins.property
77
+ @pulumi.getter(name="versionNumber")
78
+ def version_number(self) -> pulumi.Input[_builtins.int]:
79
+ """
80
+ The version number of the client certificate to upload the signed certificate to.
81
+ """
82
+ return pulumi.get(self, "version_number")
83
+
84
+ @version_number.setter
85
+ def version_number(self, value: pulumi.Input[_builtins.int]):
86
+ pulumi.set(self, "version_number", value)
87
+
88
+ @_builtins.property
89
+ @pulumi.getter(name="autoAcknowledgeWarnings")
90
+ def auto_acknowledge_warnings(self) -> Optional[pulumi.Input[_builtins.bool]]:
91
+ """
92
+ If set to true, all warnings will be acknowledged automatically. Defaults to `false`.
93
+ """
94
+ return pulumi.get(self, "auto_acknowledge_warnings")
95
+
96
+ @auto_acknowledge_warnings.setter
97
+ def auto_acknowledge_warnings(self, value: Optional[pulumi.Input[_builtins.bool]]):
98
+ pulumi.set(self, "auto_acknowledge_warnings", value)
99
+
100
+ @_builtins.property
101
+ @pulumi.getter
102
+ def timeouts(self) -> Optional[pulumi.Input['MtlskeystoreClientCertificateUploadTimeoutsArgs']]:
103
+ return pulumi.get(self, "timeouts")
104
+
105
+ @timeouts.setter
106
+ def timeouts(self, value: Optional[pulumi.Input['MtlskeystoreClientCertificateUploadTimeoutsArgs']]):
107
+ pulumi.set(self, "timeouts", value)
108
+
109
+ @_builtins.property
110
+ @pulumi.getter(name="trustChain")
111
+ def trust_chain(self) -> Optional[pulumi.Input[_builtins.str]]:
112
+ """
113
+ The optional trust chain associated with the signed certificate.
114
+ """
115
+ return pulumi.get(self, "trust_chain")
116
+
117
+ @trust_chain.setter
118
+ def trust_chain(self, value: Optional[pulumi.Input[_builtins.str]]):
119
+ pulumi.set(self, "trust_chain", value)
120
+
121
+ @_builtins.property
122
+ @pulumi.getter(name="waitForDeployment")
123
+ def wait_for_deployment(self) -> Optional[pulumi.Input[_builtins.bool]]:
124
+ """
125
+ Indicates whether to wait for the deployment of the uploaded certificate. Defaults to `true`.
126
+ """
127
+ return pulumi.get(self, "wait_for_deployment")
128
+
129
+ @wait_for_deployment.setter
130
+ def wait_for_deployment(self, value: Optional[pulumi.Input[_builtins.bool]]):
131
+ pulumi.set(self, "wait_for_deployment", value)
132
+
133
+
134
+ @pulumi.input_type
135
+ class _MtlskeystoreClientCertificateUploadState:
136
+ def __init__(__self__, *,
137
+ auto_acknowledge_warnings: Optional[pulumi.Input[_builtins.bool]] = None,
138
+ client_certificate_id: Optional[pulumi.Input[_builtins.int]] = None,
139
+ signed_certificate: Optional[pulumi.Input[_builtins.str]] = None,
140
+ timeouts: Optional[pulumi.Input['MtlskeystoreClientCertificateUploadTimeoutsArgs']] = None,
141
+ trust_chain: Optional[pulumi.Input[_builtins.str]] = None,
142
+ version_guid: Optional[pulumi.Input[_builtins.str]] = None,
143
+ version_number: Optional[pulumi.Input[_builtins.int]] = None,
144
+ wait_for_deployment: Optional[pulumi.Input[_builtins.bool]] = None):
145
+ """
146
+ Input properties used for looking up and filtering MtlskeystoreClientCertificateUpload resources.
147
+ :param pulumi.Input[_builtins.bool] auto_acknowledge_warnings: If set to true, all warnings will be acknowledged automatically. Defaults to `false`.
148
+ :param pulumi.Input[_builtins.int] client_certificate_id: The ID of the client certificate to which the signed certificate will be uploaded.
149
+ :param pulumi.Input[_builtins.str] signed_certificate: The signed certificate to upload.
150
+ :param pulumi.Input[_builtins.str] trust_chain: The optional trust chain associated with the signed certificate.
151
+ :param pulumi.Input[_builtins.str] version_guid: A unique identifier for the client certificate version.
152
+ :param pulumi.Input[_builtins.int] version_number: The version number of the client certificate to upload the signed certificate to.
153
+ :param pulumi.Input[_builtins.bool] wait_for_deployment: Indicates whether to wait for the deployment of the uploaded certificate. Defaults to `true`.
154
+ """
155
+ if auto_acknowledge_warnings is not None:
156
+ pulumi.set(__self__, "auto_acknowledge_warnings", auto_acknowledge_warnings)
157
+ if client_certificate_id is not None:
158
+ pulumi.set(__self__, "client_certificate_id", client_certificate_id)
159
+ if signed_certificate is not None:
160
+ pulumi.set(__self__, "signed_certificate", signed_certificate)
161
+ if timeouts is not None:
162
+ pulumi.set(__self__, "timeouts", timeouts)
163
+ if trust_chain is not None:
164
+ pulumi.set(__self__, "trust_chain", trust_chain)
165
+ if version_guid is not None:
166
+ pulumi.set(__self__, "version_guid", version_guid)
167
+ if version_number is not None:
168
+ pulumi.set(__self__, "version_number", version_number)
169
+ if wait_for_deployment is not None:
170
+ pulumi.set(__self__, "wait_for_deployment", wait_for_deployment)
171
+
172
+ @_builtins.property
173
+ @pulumi.getter(name="autoAcknowledgeWarnings")
174
+ def auto_acknowledge_warnings(self) -> Optional[pulumi.Input[_builtins.bool]]:
175
+ """
176
+ If set to true, all warnings will be acknowledged automatically. Defaults to `false`.
177
+ """
178
+ return pulumi.get(self, "auto_acknowledge_warnings")
179
+
180
+ @auto_acknowledge_warnings.setter
181
+ def auto_acknowledge_warnings(self, value: Optional[pulumi.Input[_builtins.bool]]):
182
+ pulumi.set(self, "auto_acknowledge_warnings", value)
183
+
184
+ @_builtins.property
185
+ @pulumi.getter(name="clientCertificateId")
186
+ def client_certificate_id(self) -> Optional[pulumi.Input[_builtins.int]]:
187
+ """
188
+ The ID of the client certificate to which the signed certificate will be uploaded.
189
+ """
190
+ return pulumi.get(self, "client_certificate_id")
191
+
192
+ @client_certificate_id.setter
193
+ def client_certificate_id(self, value: Optional[pulumi.Input[_builtins.int]]):
194
+ pulumi.set(self, "client_certificate_id", value)
195
+
196
+ @_builtins.property
197
+ @pulumi.getter(name="signedCertificate")
198
+ def signed_certificate(self) -> Optional[pulumi.Input[_builtins.str]]:
199
+ """
200
+ The signed certificate to upload.
201
+ """
202
+ return pulumi.get(self, "signed_certificate")
203
+
204
+ @signed_certificate.setter
205
+ def signed_certificate(self, value: Optional[pulumi.Input[_builtins.str]]):
206
+ pulumi.set(self, "signed_certificate", value)
207
+
208
+ @_builtins.property
209
+ @pulumi.getter
210
+ def timeouts(self) -> Optional[pulumi.Input['MtlskeystoreClientCertificateUploadTimeoutsArgs']]:
211
+ return pulumi.get(self, "timeouts")
212
+
213
+ @timeouts.setter
214
+ def timeouts(self, value: Optional[pulumi.Input['MtlskeystoreClientCertificateUploadTimeoutsArgs']]):
215
+ pulumi.set(self, "timeouts", value)
216
+
217
+ @_builtins.property
218
+ @pulumi.getter(name="trustChain")
219
+ def trust_chain(self) -> Optional[pulumi.Input[_builtins.str]]:
220
+ """
221
+ The optional trust chain associated with the signed certificate.
222
+ """
223
+ return pulumi.get(self, "trust_chain")
224
+
225
+ @trust_chain.setter
226
+ def trust_chain(self, value: Optional[pulumi.Input[_builtins.str]]):
227
+ pulumi.set(self, "trust_chain", value)
228
+
229
+ @_builtins.property
230
+ @pulumi.getter(name="versionGuid")
231
+ def version_guid(self) -> Optional[pulumi.Input[_builtins.str]]:
232
+ """
233
+ A unique identifier for the client certificate version.
234
+ """
235
+ return pulumi.get(self, "version_guid")
236
+
237
+ @version_guid.setter
238
+ def version_guid(self, value: Optional[pulumi.Input[_builtins.str]]):
239
+ pulumi.set(self, "version_guid", value)
240
+
241
+ @_builtins.property
242
+ @pulumi.getter(name="versionNumber")
243
+ def version_number(self) -> Optional[pulumi.Input[_builtins.int]]:
244
+ """
245
+ The version number of the client certificate to upload the signed certificate to.
246
+ """
247
+ return pulumi.get(self, "version_number")
248
+
249
+ @version_number.setter
250
+ def version_number(self, value: Optional[pulumi.Input[_builtins.int]]):
251
+ pulumi.set(self, "version_number", value)
252
+
253
+ @_builtins.property
254
+ @pulumi.getter(name="waitForDeployment")
255
+ def wait_for_deployment(self) -> Optional[pulumi.Input[_builtins.bool]]:
256
+ """
257
+ Indicates whether to wait for the deployment of the uploaded certificate. Defaults to `true`.
258
+ """
259
+ return pulumi.get(self, "wait_for_deployment")
260
+
261
+ @wait_for_deployment.setter
262
+ def wait_for_deployment(self, value: Optional[pulumi.Input[_builtins.bool]]):
263
+ pulumi.set(self, "wait_for_deployment", value)
264
+
265
+
266
+ @pulumi.type_token("akamai:index/mtlskeystoreClientCertificateUpload:MtlskeystoreClientCertificateUpload")
267
+ class MtlskeystoreClientCertificateUpload(pulumi.CustomResource):
268
+ @overload
269
+ def __init__(__self__,
270
+ resource_name: str,
271
+ opts: Optional[pulumi.ResourceOptions] = None,
272
+ auto_acknowledge_warnings: Optional[pulumi.Input[_builtins.bool]] = None,
273
+ client_certificate_id: Optional[pulumi.Input[_builtins.int]] = None,
274
+ signed_certificate: Optional[pulumi.Input[_builtins.str]] = None,
275
+ timeouts: Optional[pulumi.Input[Union['MtlskeystoreClientCertificateUploadTimeoutsArgs', 'MtlskeystoreClientCertificateUploadTimeoutsArgsDict']]] = None,
276
+ trust_chain: Optional[pulumi.Input[_builtins.str]] = None,
277
+ version_number: Optional[pulumi.Input[_builtins.int]] = None,
278
+ wait_for_deployment: Optional[pulumi.Input[_builtins.bool]] = None,
279
+ __props__=None):
280
+ """
281
+ Create a MtlskeystoreClientCertificateUpload resource with the given unique name, props, and options.
282
+ :param str resource_name: The name of the resource.
283
+ :param pulumi.ResourceOptions opts: Options for the resource.
284
+ :param pulumi.Input[_builtins.bool] auto_acknowledge_warnings: If set to true, all warnings will be acknowledged automatically. Defaults to `false`.
285
+ :param pulumi.Input[_builtins.int] client_certificate_id: The ID of the client certificate to which the signed certificate will be uploaded.
286
+ :param pulumi.Input[_builtins.str] signed_certificate: The signed certificate to upload.
287
+ :param pulumi.Input[_builtins.str] trust_chain: The optional trust chain associated with the signed certificate.
288
+ :param pulumi.Input[_builtins.int] version_number: The version number of the client certificate to upload the signed certificate to.
289
+ :param pulumi.Input[_builtins.bool] wait_for_deployment: Indicates whether to wait for the deployment of the uploaded certificate. Defaults to `true`.
290
+ """
291
+ ...
292
+ @overload
293
+ def __init__(__self__,
294
+ resource_name: str,
295
+ args: MtlskeystoreClientCertificateUploadArgs,
296
+ opts: Optional[pulumi.ResourceOptions] = None):
297
+ """
298
+ Create a MtlskeystoreClientCertificateUpload resource with the given unique name, props, and options.
299
+ :param str resource_name: The name of the resource.
300
+ :param MtlskeystoreClientCertificateUploadArgs args: The arguments to use to populate this resource's properties.
301
+ :param pulumi.ResourceOptions opts: Options for the resource.
302
+ """
303
+ ...
304
+ def __init__(__self__, resource_name: str, *args, **kwargs):
305
+ resource_args, opts = _utilities.get_resource_args_opts(MtlskeystoreClientCertificateUploadArgs, pulumi.ResourceOptions, *args, **kwargs)
306
+ if resource_args is not None:
307
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
308
+ else:
309
+ __self__._internal_init(resource_name, *args, **kwargs)
310
+
311
+ def _internal_init(__self__,
312
+ resource_name: str,
313
+ opts: Optional[pulumi.ResourceOptions] = None,
314
+ auto_acknowledge_warnings: Optional[pulumi.Input[_builtins.bool]] = None,
315
+ client_certificate_id: Optional[pulumi.Input[_builtins.int]] = None,
316
+ signed_certificate: Optional[pulumi.Input[_builtins.str]] = None,
317
+ timeouts: Optional[pulumi.Input[Union['MtlskeystoreClientCertificateUploadTimeoutsArgs', 'MtlskeystoreClientCertificateUploadTimeoutsArgsDict']]] = None,
318
+ trust_chain: Optional[pulumi.Input[_builtins.str]] = None,
319
+ version_number: Optional[pulumi.Input[_builtins.int]] = None,
320
+ wait_for_deployment: Optional[pulumi.Input[_builtins.bool]] = None,
321
+ __props__=None):
322
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
323
+ if not isinstance(opts, pulumi.ResourceOptions):
324
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
325
+ if opts.id is None:
326
+ if __props__ is not None:
327
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
328
+ __props__ = MtlskeystoreClientCertificateUploadArgs.__new__(MtlskeystoreClientCertificateUploadArgs)
329
+
330
+ __props__.__dict__["auto_acknowledge_warnings"] = auto_acknowledge_warnings
331
+ if client_certificate_id is None and not opts.urn:
332
+ raise TypeError("Missing required property 'client_certificate_id'")
333
+ __props__.__dict__["client_certificate_id"] = client_certificate_id
334
+ if signed_certificate is None and not opts.urn:
335
+ raise TypeError("Missing required property 'signed_certificate'")
336
+ __props__.__dict__["signed_certificate"] = signed_certificate
337
+ __props__.__dict__["timeouts"] = timeouts
338
+ __props__.__dict__["trust_chain"] = trust_chain
339
+ if version_number is None and not opts.urn:
340
+ raise TypeError("Missing required property 'version_number'")
341
+ __props__.__dict__["version_number"] = version_number
342
+ __props__.__dict__["wait_for_deployment"] = wait_for_deployment
343
+ __props__.__dict__["version_guid"] = None
344
+ super(MtlskeystoreClientCertificateUpload, __self__).__init__(
345
+ 'akamai:index/mtlskeystoreClientCertificateUpload:MtlskeystoreClientCertificateUpload',
346
+ resource_name,
347
+ __props__,
348
+ opts)
349
+
350
+ @staticmethod
351
+ def get(resource_name: str,
352
+ id: pulumi.Input[str],
353
+ opts: Optional[pulumi.ResourceOptions] = None,
354
+ auto_acknowledge_warnings: Optional[pulumi.Input[_builtins.bool]] = None,
355
+ client_certificate_id: Optional[pulumi.Input[_builtins.int]] = None,
356
+ signed_certificate: Optional[pulumi.Input[_builtins.str]] = None,
357
+ timeouts: Optional[pulumi.Input[Union['MtlskeystoreClientCertificateUploadTimeoutsArgs', 'MtlskeystoreClientCertificateUploadTimeoutsArgsDict']]] = None,
358
+ trust_chain: Optional[pulumi.Input[_builtins.str]] = None,
359
+ version_guid: Optional[pulumi.Input[_builtins.str]] = None,
360
+ version_number: Optional[pulumi.Input[_builtins.int]] = None,
361
+ wait_for_deployment: Optional[pulumi.Input[_builtins.bool]] = None) -> 'MtlskeystoreClientCertificateUpload':
362
+ """
363
+ Get an existing MtlskeystoreClientCertificateUpload resource's state with the given name, id, and optional extra
364
+ properties used to qualify the lookup.
365
+
366
+ :param str resource_name: The unique name of the resulting resource.
367
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
368
+ :param pulumi.ResourceOptions opts: Options for the resource.
369
+ :param pulumi.Input[_builtins.bool] auto_acknowledge_warnings: If set to true, all warnings will be acknowledged automatically. Defaults to `false`.
370
+ :param pulumi.Input[_builtins.int] client_certificate_id: The ID of the client certificate to which the signed certificate will be uploaded.
371
+ :param pulumi.Input[_builtins.str] signed_certificate: The signed certificate to upload.
372
+ :param pulumi.Input[_builtins.str] trust_chain: The optional trust chain associated with the signed certificate.
373
+ :param pulumi.Input[_builtins.str] version_guid: A unique identifier for the client certificate version.
374
+ :param pulumi.Input[_builtins.int] version_number: The version number of the client certificate to upload the signed certificate to.
375
+ :param pulumi.Input[_builtins.bool] wait_for_deployment: Indicates whether to wait for the deployment of the uploaded certificate. Defaults to `true`.
376
+ """
377
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
378
+
379
+ __props__ = _MtlskeystoreClientCertificateUploadState.__new__(_MtlskeystoreClientCertificateUploadState)
380
+
381
+ __props__.__dict__["auto_acknowledge_warnings"] = auto_acknowledge_warnings
382
+ __props__.__dict__["client_certificate_id"] = client_certificate_id
383
+ __props__.__dict__["signed_certificate"] = signed_certificate
384
+ __props__.__dict__["timeouts"] = timeouts
385
+ __props__.__dict__["trust_chain"] = trust_chain
386
+ __props__.__dict__["version_guid"] = version_guid
387
+ __props__.__dict__["version_number"] = version_number
388
+ __props__.__dict__["wait_for_deployment"] = wait_for_deployment
389
+ return MtlskeystoreClientCertificateUpload(resource_name, opts=opts, __props__=__props__)
390
+
391
+ @_builtins.property
392
+ @pulumi.getter(name="autoAcknowledgeWarnings")
393
+ def auto_acknowledge_warnings(self) -> pulumi.Output[_builtins.bool]:
394
+ """
395
+ If set to true, all warnings will be acknowledged automatically. Defaults to `false`.
396
+ """
397
+ return pulumi.get(self, "auto_acknowledge_warnings")
398
+
399
+ @_builtins.property
400
+ @pulumi.getter(name="clientCertificateId")
401
+ def client_certificate_id(self) -> pulumi.Output[_builtins.int]:
402
+ """
403
+ The ID of the client certificate to which the signed certificate will be uploaded.
404
+ """
405
+ return pulumi.get(self, "client_certificate_id")
406
+
407
+ @_builtins.property
408
+ @pulumi.getter(name="signedCertificate")
409
+ def signed_certificate(self) -> pulumi.Output[_builtins.str]:
410
+ """
411
+ The signed certificate to upload.
412
+ """
413
+ return pulumi.get(self, "signed_certificate")
414
+
415
+ @_builtins.property
416
+ @pulumi.getter
417
+ def timeouts(self) -> pulumi.Output[Optional['outputs.MtlskeystoreClientCertificateUploadTimeouts']]:
418
+ return pulumi.get(self, "timeouts")
419
+
420
+ @_builtins.property
421
+ @pulumi.getter(name="trustChain")
422
+ def trust_chain(self) -> pulumi.Output[Optional[_builtins.str]]:
423
+ """
424
+ The optional trust chain associated with the signed certificate.
425
+ """
426
+ return pulumi.get(self, "trust_chain")
427
+
428
+ @_builtins.property
429
+ @pulumi.getter(name="versionGuid")
430
+ def version_guid(self) -> pulumi.Output[_builtins.str]:
431
+ """
432
+ A unique identifier for the client certificate version.
433
+ """
434
+ return pulumi.get(self, "version_guid")
435
+
436
+ @_builtins.property
437
+ @pulumi.getter(name="versionNumber")
438
+ def version_number(self) -> pulumi.Output[_builtins.int]:
439
+ """
440
+ The version number of the client certificate to upload the signed certificate to.
441
+ """
442
+ return pulumi.get(self, "version_number")
443
+
444
+ @_builtins.property
445
+ @pulumi.getter(name="waitForDeployment")
446
+ def wait_for_deployment(self) -> pulumi.Output[_builtins.bool]:
447
+ """
448
+ Indicates whether to wait for the deployment of the uploaded certificate. Defaults to `true`.
449
+ """
450
+ return pulumi.get(self, "wait_for_deployment")
451
+
@@ -33,8 +33,7 @@ class NetworkListArgs:
33
33
  :param pulumi.Input[_builtins.str] type: The type of the network list; must be either 'IP' or 'GEO'
34
34
  :param pulumi.Input[_builtins.str] contract_id: contract ID
35
35
  :param pulumi.Input[_builtins.int] group_id: group ID
36
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] lists: A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing
37
- list
36
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] lists: A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list
38
37
  :param pulumi.Input[_builtins.str] name: The name to be assigned to the network list
39
38
  """
40
39
  pulumi.set(__self__, "description", description)
@@ -113,8 +112,7 @@ class NetworkListArgs:
113
112
  @pulumi.getter
114
113
  def lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
115
114
  """
116
- A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing
117
- list
115
+ A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list
118
116
  """
119
117
  return pulumi.get(self, "lists")
120
118
 
@@ -153,8 +151,7 @@ class _NetworkListState:
153
151
  :param pulumi.Input[_builtins.str] contract_id: contract ID
154
152
  :param pulumi.Input[_builtins.str] description: A description of the network list
155
153
  :param pulumi.Input[_builtins.int] group_id: group ID
156
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] lists: A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing
157
- list
154
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] lists: A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list
158
155
  :param pulumi.Input[_builtins.str] mode: A string specifying the interpretation of the `list` parameter. Must be 'APPEND', 'REPLACE', or 'REMOVE'
159
156
  :param pulumi.Input[_builtins.str] name: The name to be assigned to the network list
160
157
  :param pulumi.Input[_builtins.str] network_list_id: network list ID
@@ -223,8 +220,7 @@ class _NetworkListState:
223
220
  @pulumi.getter
224
221
  def lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
225
222
  """
226
- A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing
227
- list
223
+ A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list
228
224
  """
229
225
  return pulumi.get(self, "lists")
230
226
 
@@ -326,8 +322,7 @@ class NetworkList(pulumi.CustomResource):
326
322
  :param pulumi.Input[_builtins.str] contract_id: contract ID
327
323
  :param pulumi.Input[_builtins.str] description: A description of the network list
328
324
  :param pulumi.Input[_builtins.int] group_id: group ID
329
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] lists: A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing
330
- list
325
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] lists: A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list
331
326
  :param pulumi.Input[_builtins.str] mode: A string specifying the interpretation of the `list` parameter. Must be 'APPEND', 'REPLACE', or 'REMOVE'
332
327
  :param pulumi.Input[_builtins.str] name: The name to be assigned to the network list
333
328
  :param pulumi.Input[_builtins.str] type: The type of the network list; must be either 'IP' or 'GEO'
@@ -417,8 +412,7 @@ class NetworkList(pulumi.CustomResource):
417
412
  :param pulumi.Input[_builtins.str] contract_id: contract ID
418
413
  :param pulumi.Input[_builtins.str] description: A description of the network list
419
414
  :param pulumi.Input[_builtins.int] group_id: group ID
420
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] lists: A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing
421
- list
415
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] lists: A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list
422
416
  :param pulumi.Input[_builtins.str] mode: A string specifying the interpretation of the `list` parameter. Must be 'APPEND', 'REPLACE', or 'REMOVE'
423
417
  :param pulumi.Input[_builtins.str] name: The name to be assigned to the network list
424
418
  :param pulumi.Input[_builtins.str] network_list_id: network list ID
@@ -470,8 +464,7 @@ class NetworkList(pulumi.CustomResource):
470
464
  @pulumi.getter
471
465
  def lists(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
472
466
  """
473
- A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing
474
- list
467
+ A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list
475
468
  """
476
469
  return pulumi.get(self, "lists")
477
470