pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0a1742000109__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_oci/__init__.py +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/top_level.txt +0 -0
pulumi_oci/email/dkim.py
CHANGED
@@ -23,7 +23,8 @@ class DkimArgs:
|
|
23
23
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
24
24
|
description: Optional[pulumi.Input[str]] = None,
|
25
25
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
|
-
name: Optional[pulumi.Input[str]] = None
|
26
|
+
name: Optional[pulumi.Input[str]] = None,
|
27
|
+
private_key: Optional[pulumi.Input[str]] = None):
|
27
28
|
"""
|
28
29
|
The set of arguments for constructing a Dkim resource.
|
29
30
|
:param pulumi.Input[str] email_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain for this DKIM.
|
@@ -35,7 +36,7 @@ class DkimArgs:
|
|
35
36
|
Avoid entering confidential information.
|
36
37
|
|
37
38
|
Example: `mydomain-phx-20210228`
|
38
|
-
|
39
|
+
:param pulumi.Input[str] private_key: The DKIM RSA Private Key in Privacy-Enhanced Mail (PEM) format. It is a text-based representation of the private key used for signing email messages.
|
39
40
|
|
40
41
|
** IMPORTANT **
|
41
42
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
@@ -49,6 +50,8 @@ class DkimArgs:
|
|
49
50
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
50
51
|
if name is not None:
|
51
52
|
pulumi.set(__self__, "name", name)
|
53
|
+
if private_key is not None:
|
54
|
+
pulumi.set(__self__, "private_key", private_key)
|
52
55
|
|
53
56
|
@property
|
54
57
|
@pulumi.getter(name="emailDomainId")
|
@@ -107,10 +110,6 @@ class DkimArgs:
|
|
107
110
|
Avoid entering confidential information.
|
108
111
|
|
109
112
|
Example: `mydomain-phx-20210228`
|
110
|
-
|
111
|
-
|
112
|
-
** IMPORTANT **
|
113
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
114
113
|
"""
|
115
114
|
return pulumi.get(self, "name")
|
116
115
|
|
@@ -118,6 +117,21 @@ class DkimArgs:
|
|
118
117
|
def name(self, value: Optional[pulumi.Input[str]]):
|
119
118
|
pulumi.set(self, "name", value)
|
120
119
|
|
120
|
+
@property
|
121
|
+
@pulumi.getter(name="privateKey")
|
122
|
+
def private_key(self) -> Optional[pulumi.Input[str]]:
|
123
|
+
"""
|
124
|
+
The DKIM RSA Private Key in Privacy-Enhanced Mail (PEM) format. It is a text-based representation of the private key used for signing email messages.
|
125
|
+
|
126
|
+
** IMPORTANT **
|
127
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "private_key")
|
130
|
+
|
131
|
+
@private_key.setter
|
132
|
+
def private_key(self, value: Optional[pulumi.Input[str]]):
|
133
|
+
pulumi.set(self, "private_key", value)
|
134
|
+
|
121
135
|
|
122
136
|
@pulumi.input_type
|
123
137
|
class _DkimState:
|
@@ -129,8 +143,11 @@ class _DkimState:
|
|
129
143
|
dns_subdomain_name: Optional[pulumi.Input[str]] = None,
|
130
144
|
email_domain_id: Optional[pulumi.Input[str]] = None,
|
131
145
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
146
|
+
is_imported: Optional[pulumi.Input[bool]] = None,
|
147
|
+
key_length: Optional[pulumi.Input[int]] = None,
|
132
148
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
133
149
|
name: Optional[pulumi.Input[str]] = None,
|
150
|
+
private_key: Optional[pulumi.Input[str]] = None,
|
134
151
|
state: Optional[pulumi.Input[str]] = None,
|
135
152
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
136
153
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -142,16 +159,18 @@ class _DkimState:
|
|
142
159
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains this DKIM.
|
143
160
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
144
161
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the DKIM. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
145
|
-
:param pulumi.Input[str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
162
|
+
:param pulumi.Input[str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
146
163
|
:param pulumi.Input[str] email_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain for this DKIM.
|
147
164
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
165
|
+
:param pulumi.Input[bool] is_imported: Indicates whether the DKIM was imported.
|
166
|
+
:param pulumi.Input[int] key_length: Length of the RSA key used in the DKIM.
|
148
167
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource.
|
149
168
|
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
150
169
|
|
151
170
|
Avoid entering confidential information.
|
152
171
|
|
153
172
|
Example: `mydomain-phx-20210228`
|
154
|
-
|
173
|
+
:param pulumi.Input[str] private_key: The DKIM RSA Private Key in Privacy-Enhanced Mail (PEM) format. It is a text-based representation of the private key used for signing email messages.
|
155
174
|
|
156
175
|
** IMPORTANT **
|
157
176
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
@@ -175,10 +194,16 @@ class _DkimState:
|
|
175
194
|
pulumi.set(__self__, "email_domain_id", email_domain_id)
|
176
195
|
if freeform_tags is not None:
|
177
196
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
197
|
+
if is_imported is not None:
|
198
|
+
pulumi.set(__self__, "is_imported", is_imported)
|
199
|
+
if key_length is not None:
|
200
|
+
pulumi.set(__self__, "key_length", key_length)
|
178
201
|
if lifecycle_details is not None:
|
179
202
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
180
203
|
if name is not None:
|
181
204
|
pulumi.set(__self__, "name", name)
|
205
|
+
if private_key is not None:
|
206
|
+
pulumi.set(__self__, "private_key", private_key)
|
182
207
|
if state is not None:
|
183
208
|
pulumi.set(__self__, "state", state)
|
184
209
|
if system_tags is not None:
|
@@ -242,7 +267,7 @@ class _DkimState:
|
|
242
267
|
@pulumi.getter(name="dnsSubdomainName")
|
243
268
|
def dns_subdomain_name(self) -> Optional[pulumi.Input[str]]:
|
244
269
|
"""
|
245
|
-
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
270
|
+
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
246
271
|
"""
|
247
272
|
return pulumi.get(self, "dns_subdomain_name")
|
248
273
|
|
@@ -274,6 +299,30 @@ class _DkimState:
|
|
274
299
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
275
300
|
pulumi.set(self, "freeform_tags", value)
|
276
301
|
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="isImported")
|
304
|
+
def is_imported(self) -> Optional[pulumi.Input[bool]]:
|
305
|
+
"""
|
306
|
+
Indicates whether the DKIM was imported.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "is_imported")
|
309
|
+
|
310
|
+
@is_imported.setter
|
311
|
+
def is_imported(self, value: Optional[pulumi.Input[bool]]):
|
312
|
+
pulumi.set(self, "is_imported", value)
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter(name="keyLength")
|
316
|
+
def key_length(self) -> Optional[pulumi.Input[int]]:
|
317
|
+
"""
|
318
|
+
Length of the RSA key used in the DKIM.
|
319
|
+
"""
|
320
|
+
return pulumi.get(self, "key_length")
|
321
|
+
|
322
|
+
@key_length.setter
|
323
|
+
def key_length(self, value: Optional[pulumi.Input[int]]):
|
324
|
+
pulumi.set(self, "key_length", value)
|
325
|
+
|
277
326
|
@property
|
278
327
|
@pulumi.getter(name="lifecycleDetails")
|
279
328
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
@@ -295,10 +344,6 @@ class _DkimState:
|
|
295
344
|
Avoid entering confidential information.
|
296
345
|
|
297
346
|
Example: `mydomain-phx-20210228`
|
298
|
-
|
299
|
-
|
300
|
-
** IMPORTANT **
|
301
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
302
347
|
"""
|
303
348
|
return pulumi.get(self, "name")
|
304
349
|
|
@@ -306,6 +351,21 @@ class _DkimState:
|
|
306
351
|
def name(self, value: Optional[pulumi.Input[str]]):
|
307
352
|
pulumi.set(self, "name", value)
|
308
353
|
|
354
|
+
@property
|
355
|
+
@pulumi.getter(name="privateKey")
|
356
|
+
def private_key(self) -> Optional[pulumi.Input[str]]:
|
357
|
+
"""
|
358
|
+
The DKIM RSA Private Key in Privacy-Enhanced Mail (PEM) format. It is a text-based representation of the private key used for signing email messages.
|
359
|
+
|
360
|
+
** IMPORTANT **
|
361
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
362
|
+
"""
|
363
|
+
return pulumi.get(self, "private_key")
|
364
|
+
|
365
|
+
@private_key.setter
|
366
|
+
def private_key(self, value: Optional[pulumi.Input[str]]):
|
367
|
+
pulumi.set(self, "private_key", value)
|
368
|
+
|
309
369
|
@property
|
310
370
|
@pulumi.getter
|
311
371
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -377,6 +437,7 @@ class Dkim(pulumi.CustomResource):
|
|
377
437
|
email_domain_id: Optional[pulumi.Input[str]] = None,
|
378
438
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
379
439
|
name: Optional[pulumi.Input[str]] = None,
|
440
|
+
private_key: Optional[pulumi.Input[str]] = None,
|
380
441
|
__props__=None):
|
381
442
|
"""
|
382
443
|
This resource provides the Dkim resource in Oracle Cloud Infrastructure Email service.
|
@@ -402,7 +463,8 @@ class Dkim(pulumi.CustomResource):
|
|
402
463
|
freeform_tags={
|
403
464
|
"Department": "Finance",
|
404
465
|
},
|
405
|
-
name=dkim_name
|
466
|
+
name=dkim_name,
|
467
|
+
private_key=dkim_private_key)
|
406
468
|
```
|
407
469
|
|
408
470
|
## Import
|
@@ -424,7 +486,7 @@ class Dkim(pulumi.CustomResource):
|
|
424
486
|
Avoid entering confidential information.
|
425
487
|
|
426
488
|
Example: `mydomain-phx-20210228`
|
427
|
-
|
489
|
+
:param pulumi.Input[str] private_key: The DKIM RSA Private Key in Privacy-Enhanced Mail (PEM) format. It is a text-based representation of the private key used for signing email messages.
|
428
490
|
|
429
491
|
** IMPORTANT **
|
430
492
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
@@ -459,7 +521,8 @@ class Dkim(pulumi.CustomResource):
|
|
459
521
|
freeform_tags={
|
460
522
|
"Department": "Finance",
|
461
523
|
},
|
462
|
-
name=dkim_name
|
524
|
+
name=dkim_name,
|
525
|
+
private_key=dkim_private_key)
|
463
526
|
```
|
464
527
|
|
465
528
|
## Import
|
@@ -490,6 +553,7 @@ class Dkim(pulumi.CustomResource):
|
|
490
553
|
email_domain_id: Optional[pulumi.Input[str]] = None,
|
491
554
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
492
555
|
name: Optional[pulumi.Input[str]] = None,
|
556
|
+
private_key: Optional[pulumi.Input[str]] = None,
|
493
557
|
__props__=None):
|
494
558
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
495
559
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -506,15 +570,20 @@ class Dkim(pulumi.CustomResource):
|
|
506
570
|
__props__.__dict__["email_domain_id"] = email_domain_id
|
507
571
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
508
572
|
__props__.__dict__["name"] = name
|
573
|
+
__props__.__dict__["private_key"] = None if private_key is None else pulumi.Output.secret(private_key)
|
509
574
|
__props__.__dict__["cname_record_value"] = None
|
510
575
|
__props__.__dict__["compartment_id"] = None
|
511
576
|
__props__.__dict__["dns_subdomain_name"] = None
|
577
|
+
__props__.__dict__["is_imported"] = None
|
578
|
+
__props__.__dict__["key_length"] = None
|
512
579
|
__props__.__dict__["lifecycle_details"] = None
|
513
580
|
__props__.__dict__["state"] = None
|
514
581
|
__props__.__dict__["system_tags"] = None
|
515
582
|
__props__.__dict__["time_created"] = None
|
516
583
|
__props__.__dict__["time_updated"] = None
|
517
584
|
__props__.__dict__["txt_record_value"] = None
|
585
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["privateKey"])
|
586
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
518
587
|
super(Dkim, __self__).__init__(
|
519
588
|
'oci:Email/dkim:Dkim',
|
520
589
|
resource_name,
|
@@ -532,8 +601,11 @@ class Dkim(pulumi.CustomResource):
|
|
532
601
|
dns_subdomain_name: Optional[pulumi.Input[str]] = None,
|
533
602
|
email_domain_id: Optional[pulumi.Input[str]] = None,
|
534
603
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
604
|
+
is_imported: Optional[pulumi.Input[bool]] = None,
|
605
|
+
key_length: Optional[pulumi.Input[int]] = None,
|
535
606
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
536
607
|
name: Optional[pulumi.Input[str]] = None,
|
608
|
+
private_key: Optional[pulumi.Input[str]] = None,
|
537
609
|
state: Optional[pulumi.Input[str]] = None,
|
538
610
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
539
611
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -550,16 +622,18 @@ class Dkim(pulumi.CustomResource):
|
|
550
622
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains this DKIM.
|
551
623
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
552
624
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the DKIM. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
553
|
-
:param pulumi.Input[str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
625
|
+
:param pulumi.Input[str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
554
626
|
:param pulumi.Input[str] email_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain for this DKIM.
|
555
627
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
628
|
+
:param pulumi.Input[bool] is_imported: Indicates whether the DKIM was imported.
|
629
|
+
:param pulumi.Input[int] key_length: Length of the RSA key used in the DKIM.
|
556
630
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource.
|
557
631
|
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
558
632
|
|
559
633
|
Avoid entering confidential information.
|
560
634
|
|
561
635
|
Example: `mydomain-phx-20210228`
|
562
|
-
|
636
|
+
:param pulumi.Input[str] private_key: The DKIM RSA Private Key in Privacy-Enhanced Mail (PEM) format. It is a text-based representation of the private key used for signing email messages.
|
563
637
|
|
564
638
|
** IMPORTANT **
|
565
639
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
@@ -580,8 +654,11 @@ class Dkim(pulumi.CustomResource):
|
|
580
654
|
__props__.__dict__["dns_subdomain_name"] = dns_subdomain_name
|
581
655
|
__props__.__dict__["email_domain_id"] = email_domain_id
|
582
656
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
657
|
+
__props__.__dict__["is_imported"] = is_imported
|
658
|
+
__props__.__dict__["key_length"] = key_length
|
583
659
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
584
660
|
__props__.__dict__["name"] = name
|
661
|
+
__props__.__dict__["private_key"] = private_key
|
585
662
|
__props__.__dict__["state"] = state
|
586
663
|
__props__.__dict__["system_tags"] = system_tags
|
587
664
|
__props__.__dict__["time_created"] = time_created
|
@@ -625,7 +702,7 @@ class Dkim(pulumi.CustomResource):
|
|
625
702
|
@pulumi.getter(name="dnsSubdomainName")
|
626
703
|
def dns_subdomain_name(self) -> pulumi.Output[str]:
|
627
704
|
"""
|
628
|
-
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
705
|
+
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
629
706
|
"""
|
630
707
|
return pulumi.get(self, "dns_subdomain_name")
|
631
708
|
|
@@ -645,6 +722,22 @@ class Dkim(pulumi.CustomResource):
|
|
645
722
|
"""
|
646
723
|
return pulumi.get(self, "freeform_tags")
|
647
724
|
|
725
|
+
@property
|
726
|
+
@pulumi.getter(name="isImported")
|
727
|
+
def is_imported(self) -> pulumi.Output[bool]:
|
728
|
+
"""
|
729
|
+
Indicates whether the DKIM was imported.
|
730
|
+
"""
|
731
|
+
return pulumi.get(self, "is_imported")
|
732
|
+
|
733
|
+
@property
|
734
|
+
@pulumi.getter(name="keyLength")
|
735
|
+
def key_length(self) -> pulumi.Output[int]:
|
736
|
+
"""
|
737
|
+
Length of the RSA key used in the DKIM.
|
738
|
+
"""
|
739
|
+
return pulumi.get(self, "key_length")
|
740
|
+
|
648
741
|
@property
|
649
742
|
@pulumi.getter(name="lifecycleDetails")
|
650
743
|
def lifecycle_details(self) -> pulumi.Output[str]:
|
@@ -662,12 +755,19 @@ class Dkim(pulumi.CustomResource):
|
|
662
755
|
Avoid entering confidential information.
|
663
756
|
|
664
757
|
Example: `mydomain-phx-20210228`
|
758
|
+
"""
|
759
|
+
return pulumi.get(self, "name")
|
665
760
|
|
761
|
+
@property
|
762
|
+
@pulumi.getter(name="privateKey")
|
763
|
+
def private_key(self) -> pulumi.Output[str]:
|
764
|
+
"""
|
765
|
+
The DKIM RSA Private Key in Privacy-Enhanced Mail (PEM) format. It is a text-based representation of the private key used for signing email messages.
|
666
766
|
|
667
767
|
** IMPORTANT **
|
668
768
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
669
769
|
"""
|
670
|
-
return pulumi.get(self, "
|
770
|
+
return pulumi.get(self, "private_key")
|
671
771
|
|
672
772
|
@property
|
673
773
|
@pulumi.getter
|
pulumi_oci/email/get_dkim.py
CHANGED
@@ -26,7 +26,7 @@ class GetDkimResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getDkim.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, cname_record_value=None, compartment_id=None, defined_tags=None, description=None, dkim_id=None, dns_subdomain_name=None, email_domain_id=None, freeform_tags=None, id=None, lifecycle_details=None, name=None, state=None, system_tags=None, time_created=None, time_updated=None, txt_record_value=None):
|
29
|
+
def __init__(__self__, cname_record_value=None, compartment_id=None, defined_tags=None, description=None, dkim_id=None, dns_subdomain_name=None, email_domain_id=None, freeform_tags=None, id=None, is_imported=None, key_length=None, lifecycle_details=None, name=None, private_key=None, state=None, system_tags=None, time_created=None, time_updated=None, txt_record_value=None):
|
30
30
|
if cname_record_value and not isinstance(cname_record_value, str):
|
31
31
|
raise TypeError("Expected argument 'cname_record_value' to be a str")
|
32
32
|
pulumi.set(__self__, "cname_record_value", cname_record_value)
|
@@ -54,12 +54,21 @@ class GetDkimResult:
|
|
54
54
|
if id and not isinstance(id, str):
|
55
55
|
raise TypeError("Expected argument 'id' to be a str")
|
56
56
|
pulumi.set(__self__, "id", id)
|
57
|
+
if is_imported and not isinstance(is_imported, bool):
|
58
|
+
raise TypeError("Expected argument 'is_imported' to be a bool")
|
59
|
+
pulumi.set(__self__, "is_imported", is_imported)
|
60
|
+
if key_length and not isinstance(key_length, int):
|
61
|
+
raise TypeError("Expected argument 'key_length' to be a int")
|
62
|
+
pulumi.set(__self__, "key_length", key_length)
|
57
63
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
58
64
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
59
65
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
60
66
|
if name and not isinstance(name, str):
|
61
67
|
raise TypeError("Expected argument 'name' to be a str")
|
62
68
|
pulumi.set(__self__, "name", name)
|
69
|
+
if private_key and not isinstance(private_key, str):
|
70
|
+
raise TypeError("Expected argument 'private_key' to be a str")
|
71
|
+
pulumi.set(__self__, "private_key", private_key)
|
63
72
|
if state and not isinstance(state, str):
|
64
73
|
raise TypeError("Expected argument 'state' to be a str")
|
65
74
|
pulumi.set(__self__, "state", state)
|
@@ -145,6 +154,22 @@ class GetDkimResult:
|
|
145
154
|
"""
|
146
155
|
return pulumi.get(self, "id")
|
147
156
|
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="isImported")
|
159
|
+
def is_imported(self) -> bool:
|
160
|
+
"""
|
161
|
+
Indicates whether the DKIM was imported.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "is_imported")
|
164
|
+
|
165
|
+
@property
|
166
|
+
@pulumi.getter(name="keyLength")
|
167
|
+
def key_length(self) -> int:
|
168
|
+
"""
|
169
|
+
Length of the RSA key used in the DKIM.
|
170
|
+
"""
|
171
|
+
return pulumi.get(self, "key_length")
|
172
|
+
|
148
173
|
@property
|
149
174
|
@pulumi.getter(name="lifecycleDetails")
|
150
175
|
def lifecycle_details(self) -> str:
|
@@ -161,6 +186,11 @@ class GetDkimResult:
|
|
161
186
|
"""
|
162
187
|
return pulumi.get(self, "name")
|
163
188
|
|
189
|
+
@property
|
190
|
+
@pulumi.getter(name="privateKey")
|
191
|
+
def private_key(self) -> str:
|
192
|
+
return pulumi.get(self, "private_key")
|
193
|
+
|
164
194
|
@property
|
165
195
|
@pulumi.getter
|
166
196
|
def state(self) -> str:
|
@@ -217,8 +247,11 @@ class AwaitableGetDkimResult(GetDkimResult):
|
|
217
247
|
email_domain_id=self.email_domain_id,
|
218
248
|
freeform_tags=self.freeform_tags,
|
219
249
|
id=self.id,
|
250
|
+
is_imported=self.is_imported,
|
251
|
+
key_length=self.key_length,
|
220
252
|
lifecycle_details=self.lifecycle_details,
|
221
253
|
name=self.name,
|
254
|
+
private_key=self.private_key,
|
222
255
|
state=self.state,
|
223
256
|
system_tags=self.system_tags,
|
224
257
|
time_created=self.time_created,
|
@@ -260,8 +293,11 @@ def get_dkim(dkim_id: Optional[str] = None,
|
|
260
293
|
email_domain_id=pulumi.get(__ret__, 'email_domain_id'),
|
261
294
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
262
295
|
id=pulumi.get(__ret__, 'id'),
|
296
|
+
is_imported=pulumi.get(__ret__, 'is_imported'),
|
297
|
+
key_length=pulumi.get(__ret__, 'key_length'),
|
263
298
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
264
299
|
name=pulumi.get(__ret__, 'name'),
|
300
|
+
private_key=pulumi.get(__ret__, 'private_key'),
|
265
301
|
state=pulumi.get(__ret__, 'state'),
|
266
302
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
267
303
|
time_created=pulumi.get(__ret__, 'time_created'),
|
@@ -300,8 +336,11 @@ def get_dkim_output(dkim_id: Optional[pulumi.Input[str]] = None,
|
|
300
336
|
email_domain_id=pulumi.get(__response__, 'email_domain_id'),
|
301
337
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
302
338
|
id=pulumi.get(__response__, 'id'),
|
339
|
+
is_imported=pulumi.get(__response__, 'is_imported'),
|
340
|
+
key_length=pulumi.get(__response__, 'key_length'),
|
303
341
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
304
342
|
name=pulumi.get(__response__, 'name'),
|
343
|
+
private_key=pulumi.get(__response__, 'private_key'),
|
305
344
|
state=pulumi.get(__response__, 'state'),
|
306
345
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
307
346
|
time_created=pulumi.get(__response__, 'time_created'),
|
pulumi_oci/email/outputs.py
CHANGED
@@ -54,8 +54,11 @@ class GetDkimsDkimCollectionItemResult(dict):
|
|
54
54
|
email_domain_id: str,
|
55
55
|
freeform_tags: Mapping[str, str],
|
56
56
|
id: str,
|
57
|
+
is_imported: bool,
|
58
|
+
key_length: int,
|
57
59
|
lifecycle_details: str,
|
58
60
|
name: str,
|
61
|
+
private_key: str,
|
59
62
|
state: str,
|
60
63
|
system_tags: Mapping[str, str],
|
61
64
|
time_created: str,
|
@@ -70,6 +73,8 @@ class GetDkimsDkimCollectionItemResult(dict):
|
|
70
73
|
:param str email_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the email domain to which this DKIM belongs.
|
71
74
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
72
75
|
:param str id: A filter to only return resources that match the given id exactly.
|
76
|
+
:param bool is_imported: Indicates whether the DKIM was imported.
|
77
|
+
:param int key_length: Length of the RSA key used in the DKIM.
|
73
78
|
:param str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource.
|
74
79
|
:param str name: A filter to only return resources that match the given name exactly.
|
75
80
|
:param str state: Filter returned list by specified lifecycle state. This parameter is case-insensitive.
|
@@ -86,8 +91,11 @@ class GetDkimsDkimCollectionItemResult(dict):
|
|
86
91
|
pulumi.set(__self__, "email_domain_id", email_domain_id)
|
87
92
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
88
93
|
pulumi.set(__self__, "id", id)
|
94
|
+
pulumi.set(__self__, "is_imported", is_imported)
|
95
|
+
pulumi.set(__self__, "key_length", key_length)
|
89
96
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
90
97
|
pulumi.set(__self__, "name", name)
|
98
|
+
pulumi.set(__self__, "private_key", private_key)
|
91
99
|
pulumi.set(__self__, "state", state)
|
92
100
|
pulumi.set(__self__, "system_tags", system_tags)
|
93
101
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -158,6 +166,22 @@ class GetDkimsDkimCollectionItemResult(dict):
|
|
158
166
|
"""
|
159
167
|
return pulumi.get(self, "id")
|
160
168
|
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="isImported")
|
171
|
+
def is_imported(self) -> bool:
|
172
|
+
"""
|
173
|
+
Indicates whether the DKIM was imported.
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "is_imported")
|
176
|
+
|
177
|
+
@property
|
178
|
+
@pulumi.getter(name="keyLength")
|
179
|
+
def key_length(self) -> int:
|
180
|
+
"""
|
181
|
+
Length of the RSA key used in the DKIM.
|
182
|
+
"""
|
183
|
+
return pulumi.get(self, "key_length")
|
184
|
+
|
161
185
|
@property
|
162
186
|
@pulumi.getter(name="lifecycleDetails")
|
163
187
|
def lifecycle_details(self) -> str:
|
@@ -174,6 +198,11 @@ class GetDkimsDkimCollectionItemResult(dict):
|
|
174
198
|
"""
|
175
199
|
return pulumi.get(self, "name")
|
176
200
|
|
201
|
+
@property
|
202
|
+
@pulumi.getter(name="privateKey")
|
203
|
+
def private_key(self) -> str:
|
204
|
+
return pulumi.get(self, "private_key")
|
205
|
+
|
177
206
|
@property
|
178
207
|
@pulumi.getter
|
179
208
|
def state(self) -> str:
|
@@ -8,9 +8,12 @@ import typing
|
|
8
8
|
from .export import *
|
9
9
|
from .export_set import *
|
10
10
|
from .file_system import *
|
11
|
+
from .file_system_quota_rule import *
|
11
12
|
from .filesystem_snapshot_policy import *
|
12
13
|
from .get_export_sets import *
|
13
14
|
from .get_exports import *
|
15
|
+
from .get_file_system_quota_rule import *
|
16
|
+
from .get_file_system_quota_rules import *
|
14
17
|
from .get_file_systems import *
|
15
18
|
from .get_filesystem_snapshot_policies import *
|
16
19
|
from .get_filesystem_snapshot_policy import *
|
@@ -45,6 +45,8 @@ __all__ = [
|
|
45
45
|
'GetExportSetsFilterArgsDict',
|
46
46
|
'GetExportsFilterArgs',
|
47
47
|
'GetExportsFilterArgsDict',
|
48
|
+
'GetFileSystemQuotaRulesFilterArgs',
|
49
|
+
'GetFileSystemQuotaRulesFilterArgsDict',
|
48
50
|
'GetFileSystemsFilterArgs',
|
49
51
|
'GetFileSystemsFilterArgsDict',
|
50
52
|
'GetFilesystemSnapshotPoliciesFilterArgs',
|
@@ -1546,6 +1548,53 @@ class GetExportsFilterArgs:
|
|
1546
1548
|
pulumi.set(self, "regex", value)
|
1547
1549
|
|
1548
1550
|
|
1551
|
+
if not MYPY:
|
1552
|
+
class GetFileSystemQuotaRulesFilterArgsDict(TypedDict):
|
1553
|
+
name: str
|
1554
|
+
values: Sequence[str]
|
1555
|
+
regex: NotRequired[bool]
|
1556
|
+
elif False:
|
1557
|
+
GetFileSystemQuotaRulesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1558
|
+
|
1559
|
+
@pulumi.input_type
|
1560
|
+
class GetFileSystemQuotaRulesFilterArgs:
|
1561
|
+
def __init__(__self__, *,
|
1562
|
+
name: str,
|
1563
|
+
values: Sequence[str],
|
1564
|
+
regex: Optional[bool] = None):
|
1565
|
+
pulumi.set(__self__, "name", name)
|
1566
|
+
pulumi.set(__self__, "values", values)
|
1567
|
+
if regex is not None:
|
1568
|
+
pulumi.set(__self__, "regex", regex)
|
1569
|
+
|
1570
|
+
@property
|
1571
|
+
@pulumi.getter
|
1572
|
+
def name(self) -> str:
|
1573
|
+
return pulumi.get(self, "name")
|
1574
|
+
|
1575
|
+
@name.setter
|
1576
|
+
def name(self, value: str):
|
1577
|
+
pulumi.set(self, "name", value)
|
1578
|
+
|
1579
|
+
@property
|
1580
|
+
@pulumi.getter
|
1581
|
+
def values(self) -> Sequence[str]:
|
1582
|
+
return pulumi.get(self, "values")
|
1583
|
+
|
1584
|
+
@values.setter
|
1585
|
+
def values(self, value: Sequence[str]):
|
1586
|
+
pulumi.set(self, "values", value)
|
1587
|
+
|
1588
|
+
@property
|
1589
|
+
@pulumi.getter
|
1590
|
+
def regex(self) -> Optional[bool]:
|
1591
|
+
return pulumi.get(self, "regex")
|
1592
|
+
|
1593
|
+
@regex.setter
|
1594
|
+
def regex(self, value: Optional[bool]):
|
1595
|
+
pulumi.set(self, "regex", value)
|
1596
|
+
|
1597
|
+
|
1549
1598
|
if not MYPY:
|
1550
1599
|
class GetFileSystemsFilterArgsDict(TypedDict):
|
1551
1600
|
name: str
|