pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.26.0a1741943394__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.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,7 @@ class FileSystemArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
availability_domain: pulumi.Input[str],
|
25
25
|
compartment_id: pulumi.Input[str],
|
26
|
+
are_quota_rules_enabled: Optional[pulumi.Input[bool]] = None,
|
26
27
|
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
27
28
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
29
|
detach_clone_trigger: Optional[pulumi.Input[int]] = None,
|
@@ -37,6 +38,7 @@ class FileSystemArgs:
|
|
37
38
|
The set of arguments for constructing a FileSystem resource.
|
38
39
|
:param pulumi.Input[str] availability_domain: The availability domain to create the file system in. Example: `Uocm:PHX-AD-1`
|
39
40
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the file system in.
|
41
|
+
:param pulumi.Input[bool] are_quota_rules_enabled: (Updatable) Specifies the enforcement of quota rules on the file system.
|
40
42
|
:param pulumi.Input[str] clone_attach_status: Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
41
43
|
: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"}`
|
42
44
|
:param pulumi.Input[int] detach_clone_trigger: (Updatable) An optional property when incremented triggers Detach Clone. Could be set to any integer value.
|
@@ -55,6 +57,8 @@ class FileSystemArgs:
|
|
55
57
|
"""
|
56
58
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
57
59
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
60
|
+
if are_quota_rules_enabled is not None:
|
61
|
+
pulumi.set(__self__, "are_quota_rules_enabled", are_quota_rules_enabled)
|
58
62
|
if clone_attach_status is not None:
|
59
63
|
pulumi.set(__self__, "clone_attach_status", clone_attach_status)
|
60
64
|
if defined_tags is not None:
|
@@ -100,6 +104,18 @@ class FileSystemArgs:
|
|
100
104
|
def compartment_id(self, value: pulumi.Input[str]):
|
101
105
|
pulumi.set(self, "compartment_id", value)
|
102
106
|
|
107
|
+
@property
|
108
|
+
@pulumi.getter(name="areQuotaRulesEnabled")
|
109
|
+
def are_quota_rules_enabled(self) -> Optional[pulumi.Input[bool]]:
|
110
|
+
"""
|
111
|
+
(Updatable) Specifies the enforcement of quota rules on the file system.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "are_quota_rules_enabled")
|
114
|
+
|
115
|
+
@are_quota_rules_enabled.setter
|
116
|
+
def are_quota_rules_enabled(self, value: Optional[pulumi.Input[bool]]):
|
117
|
+
pulumi.set(self, "are_quota_rules_enabled", value)
|
118
|
+
|
103
119
|
@property
|
104
120
|
@pulumi.getter(name="cloneAttachStatus")
|
105
121
|
def clone_attach_status(self) -> Optional[pulumi.Input[str]]:
|
@@ -227,6 +243,7 @@ class FileSystemArgs:
|
|
227
243
|
@pulumi.input_type
|
228
244
|
class _FileSystemState:
|
229
245
|
def __init__(__self__, *,
|
246
|
+
are_quota_rules_enabled: Optional[pulumi.Input[bool]] = None,
|
230
247
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
231
248
|
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
232
249
|
clone_count: Optional[pulumi.Input[int]] = None,
|
@@ -244,6 +261,8 @@ class _FileSystemState:
|
|
244
261
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
245
262
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]] = None,
|
246
263
|
metered_bytes: Optional[pulumi.Input[str]] = None,
|
264
|
+
quota_enforcement_state: Optional[pulumi.Input[str]] = None,
|
265
|
+
replication_source_count: Optional[pulumi.Input[int]] = None,
|
247
266
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
248
267
|
source_details: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]]] = None,
|
249
268
|
source_snapshot_id: Optional[pulumi.Input[str]] = None,
|
@@ -252,6 +271,7 @@ class _FileSystemState:
|
|
252
271
|
time_created: Optional[pulumi.Input[str]] = None):
|
253
272
|
"""
|
254
273
|
Input properties used for looking up and filtering FileSystem resources.
|
274
|
+
:param pulumi.Input[bool] are_quota_rules_enabled: (Updatable) Specifies the enforcement of quota rules on the file system.
|
255
275
|
:param pulumi.Input[str] availability_domain: The availability domain to create the file system in. Example: `Uocm:PHX-AD-1`
|
256
276
|
:param pulumi.Input[str] clone_attach_status: Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
257
277
|
:param pulumi.Input[int] clone_count: Specifies the total number of children of a file system.
|
@@ -274,6 +294,8 @@ class _FileSystemState:
|
|
274
294
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current 'lifecycleState'.
|
275
295
|
:param pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]] locks: Locks associated with this resource.
|
276
296
|
:param pulumi.Input[str] metered_bytes: The number of bytes consumed by the file system, including any snapshots. This number reflects the metered size of the file system and is updated asynchronously with respect to updates to the file system. For more information, see [File System Usage and Metering](https://docs.cloud.oracle.com/iaas/Content/File/Concepts/FSutilization.htm).
|
297
|
+
:param pulumi.Input[str] quota_enforcement_state: Displays the state of enforcement of quota rules on the file system.
|
298
|
+
:param pulumi.Input[int] replication_source_count: Specifies the total number of replications for which this file system is a source.
|
277
299
|
:param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the replication target associated with the file system. Empty if the file system is not being used as target in a replication.
|
278
300
|
:param pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]] source_details: Source information for the file system.
|
279
301
|
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
@@ -281,6 +303,8 @@ class _FileSystemState:
|
|
281
303
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
282
304
|
:param pulumi.Input[str] time_created: The date and time the file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
283
305
|
"""
|
306
|
+
if are_quota_rules_enabled is not None:
|
307
|
+
pulumi.set(__self__, "are_quota_rules_enabled", are_quota_rules_enabled)
|
284
308
|
if availability_domain is not None:
|
285
309
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
286
310
|
if clone_attach_status is not None:
|
@@ -315,6 +339,10 @@ class _FileSystemState:
|
|
315
339
|
pulumi.set(__self__, "locks", locks)
|
316
340
|
if metered_bytes is not None:
|
317
341
|
pulumi.set(__self__, "metered_bytes", metered_bytes)
|
342
|
+
if quota_enforcement_state is not None:
|
343
|
+
pulumi.set(__self__, "quota_enforcement_state", quota_enforcement_state)
|
344
|
+
if replication_source_count is not None:
|
345
|
+
pulumi.set(__self__, "replication_source_count", replication_source_count)
|
318
346
|
if replication_target_id is not None:
|
319
347
|
pulumi.set(__self__, "replication_target_id", replication_target_id)
|
320
348
|
if source_details is not None:
|
@@ -328,6 +356,18 @@ class _FileSystemState:
|
|
328
356
|
if time_created is not None:
|
329
357
|
pulumi.set(__self__, "time_created", time_created)
|
330
358
|
|
359
|
+
@property
|
360
|
+
@pulumi.getter(name="areQuotaRulesEnabled")
|
361
|
+
def are_quota_rules_enabled(self) -> Optional[pulumi.Input[bool]]:
|
362
|
+
"""
|
363
|
+
(Updatable) Specifies the enforcement of quota rules on the file system.
|
364
|
+
"""
|
365
|
+
return pulumi.get(self, "are_quota_rules_enabled")
|
366
|
+
|
367
|
+
@are_quota_rules_enabled.setter
|
368
|
+
def are_quota_rules_enabled(self, value: Optional[pulumi.Input[bool]]):
|
369
|
+
pulumi.set(self, "are_quota_rules_enabled", value)
|
370
|
+
|
331
371
|
@property
|
332
372
|
@pulumi.getter(name="availabilityDomain")
|
333
373
|
def availability_domain(self) -> Optional[pulumi.Input[str]]:
|
@@ -535,6 +575,30 @@ class _FileSystemState:
|
|
535
575
|
def metered_bytes(self, value: Optional[pulumi.Input[str]]):
|
536
576
|
pulumi.set(self, "metered_bytes", value)
|
537
577
|
|
578
|
+
@property
|
579
|
+
@pulumi.getter(name="quotaEnforcementState")
|
580
|
+
def quota_enforcement_state(self) -> Optional[pulumi.Input[str]]:
|
581
|
+
"""
|
582
|
+
Displays the state of enforcement of quota rules on the file system.
|
583
|
+
"""
|
584
|
+
return pulumi.get(self, "quota_enforcement_state")
|
585
|
+
|
586
|
+
@quota_enforcement_state.setter
|
587
|
+
def quota_enforcement_state(self, value: Optional[pulumi.Input[str]]):
|
588
|
+
pulumi.set(self, "quota_enforcement_state", value)
|
589
|
+
|
590
|
+
@property
|
591
|
+
@pulumi.getter(name="replicationSourceCount")
|
592
|
+
def replication_source_count(self) -> Optional[pulumi.Input[int]]:
|
593
|
+
"""
|
594
|
+
Specifies the total number of replications for which this file system is a source.
|
595
|
+
"""
|
596
|
+
return pulumi.get(self, "replication_source_count")
|
597
|
+
|
598
|
+
@replication_source_count.setter
|
599
|
+
def replication_source_count(self, value: Optional[pulumi.Input[int]]):
|
600
|
+
pulumi.set(self, "replication_source_count", value)
|
601
|
+
|
538
602
|
@property
|
539
603
|
@pulumi.getter(name="replicationTargetId")
|
540
604
|
def replication_target_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -613,6 +677,7 @@ class FileSystem(pulumi.CustomResource):
|
|
613
677
|
def __init__(__self__,
|
614
678
|
resource_name: str,
|
615
679
|
opts: Optional[pulumi.ResourceOptions] = None,
|
680
|
+
are_quota_rules_enabled: Optional[pulumi.Input[bool]] = None,
|
616
681
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
617
682
|
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
618
683
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
@@ -668,6 +733,7 @@ class FileSystem(pulumi.CustomResource):
|
|
668
733
|
test_file_system = oci.file_storage.FileSystem("test_file_system",
|
669
734
|
availability_domain=file_system_availability_domain,
|
670
735
|
compartment_id=compartment_id,
|
736
|
+
are_quota_rules_enabled=file_system_are_quota_rules_enabled,
|
671
737
|
clone_attach_status=file_system_clone_attach_status,
|
672
738
|
defined_tags={
|
673
739
|
"Operations.CostCenter": "42",
|
@@ -697,6 +763,7 @@ class FileSystem(pulumi.CustomResource):
|
|
697
763
|
|
698
764
|
:param str resource_name: The name of the resource.
|
699
765
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
766
|
+
:param pulumi.Input[bool] are_quota_rules_enabled: (Updatable) Specifies the enforcement of quota rules on the file system.
|
700
767
|
:param pulumi.Input[str] availability_domain: The availability domain to create the file system in. Example: `Uocm:PHX-AD-1`
|
701
768
|
:param pulumi.Input[str] clone_attach_status: Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
702
769
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the file system in.
|
@@ -763,6 +830,7 @@ class FileSystem(pulumi.CustomResource):
|
|
763
830
|
test_file_system = oci.file_storage.FileSystem("test_file_system",
|
764
831
|
availability_domain=file_system_availability_domain,
|
765
832
|
compartment_id=compartment_id,
|
833
|
+
are_quota_rules_enabled=file_system_are_quota_rules_enabled,
|
766
834
|
clone_attach_status=file_system_clone_attach_status,
|
767
835
|
defined_tags={
|
768
836
|
"Operations.CostCenter": "42",
|
@@ -805,6 +873,7 @@ class FileSystem(pulumi.CustomResource):
|
|
805
873
|
def _internal_init(__self__,
|
806
874
|
resource_name: str,
|
807
875
|
opts: Optional[pulumi.ResourceOptions] = None,
|
876
|
+
are_quota_rules_enabled: Optional[pulumi.Input[bool]] = None,
|
808
877
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
809
878
|
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
810
879
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
@@ -826,6 +895,7 @@ class FileSystem(pulumi.CustomResource):
|
|
826
895
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
827
896
|
__props__ = FileSystemArgs.__new__(FileSystemArgs)
|
828
897
|
|
898
|
+
__props__.__dict__["are_quota_rules_enabled"] = are_quota_rules_enabled
|
829
899
|
if availability_domain is None and not opts.urn:
|
830
900
|
raise TypeError("Missing required property 'availability_domain'")
|
831
901
|
__props__.__dict__["availability_domain"] = availability_domain
|
@@ -848,6 +918,8 @@ class FileSystem(pulumi.CustomResource):
|
|
848
918
|
__props__.__dict__["is_targetable"] = None
|
849
919
|
__props__.__dict__["lifecycle_details"] = None
|
850
920
|
__props__.__dict__["metered_bytes"] = None
|
921
|
+
__props__.__dict__["quota_enforcement_state"] = None
|
922
|
+
__props__.__dict__["replication_source_count"] = None
|
851
923
|
__props__.__dict__["replication_target_id"] = None
|
852
924
|
__props__.__dict__["source_details"] = None
|
853
925
|
__props__.__dict__["state"] = None
|
@@ -863,6 +935,7 @@ class FileSystem(pulumi.CustomResource):
|
|
863
935
|
def get(resource_name: str,
|
864
936
|
id: pulumi.Input[str],
|
865
937
|
opts: Optional[pulumi.ResourceOptions] = None,
|
938
|
+
are_quota_rules_enabled: Optional[pulumi.Input[bool]] = None,
|
866
939
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
867
940
|
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
868
941
|
clone_count: Optional[pulumi.Input[int]] = None,
|
@@ -880,6 +953,8 @@ class FileSystem(pulumi.CustomResource):
|
|
880
953
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
881
954
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]]] = None,
|
882
955
|
metered_bytes: Optional[pulumi.Input[str]] = None,
|
956
|
+
quota_enforcement_state: Optional[pulumi.Input[str]] = None,
|
957
|
+
replication_source_count: Optional[pulumi.Input[int]] = None,
|
883
958
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
884
959
|
source_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemSourceDetailArgs', 'FileSystemSourceDetailArgsDict']]]]] = None,
|
885
960
|
source_snapshot_id: Optional[pulumi.Input[str]] = None,
|
@@ -893,6 +968,7 @@ class FileSystem(pulumi.CustomResource):
|
|
893
968
|
:param str resource_name: The unique name of the resulting resource.
|
894
969
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
895
970
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
971
|
+
:param pulumi.Input[bool] are_quota_rules_enabled: (Updatable) Specifies the enforcement of quota rules on the file system.
|
896
972
|
:param pulumi.Input[str] availability_domain: The availability domain to create the file system in. Example: `Uocm:PHX-AD-1`
|
897
973
|
:param pulumi.Input[str] clone_attach_status: Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
898
974
|
:param pulumi.Input[int] clone_count: Specifies the total number of children of a file system.
|
@@ -915,6 +991,8 @@ class FileSystem(pulumi.CustomResource):
|
|
915
991
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current 'lifecycleState'.
|
916
992
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]] locks: Locks associated with this resource.
|
917
993
|
:param pulumi.Input[str] metered_bytes: The number of bytes consumed by the file system, including any snapshots. This number reflects the metered size of the file system and is updated asynchronously with respect to updates to the file system. For more information, see [File System Usage and Metering](https://docs.cloud.oracle.com/iaas/Content/File/Concepts/FSutilization.htm).
|
994
|
+
:param pulumi.Input[str] quota_enforcement_state: Displays the state of enforcement of quota rules on the file system.
|
995
|
+
:param pulumi.Input[int] replication_source_count: Specifies the total number of replications for which this file system is a source.
|
918
996
|
:param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the replication target associated with the file system. Empty if the file system is not being used as target in a replication.
|
919
997
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FileSystemSourceDetailArgs', 'FileSystemSourceDetailArgsDict']]]] source_details: Source information for the file system.
|
920
998
|
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
@@ -926,6 +1004,7 @@ class FileSystem(pulumi.CustomResource):
|
|
926
1004
|
|
927
1005
|
__props__ = _FileSystemState.__new__(_FileSystemState)
|
928
1006
|
|
1007
|
+
__props__.__dict__["are_quota_rules_enabled"] = are_quota_rules_enabled
|
929
1008
|
__props__.__dict__["availability_domain"] = availability_domain
|
930
1009
|
__props__.__dict__["clone_attach_status"] = clone_attach_status
|
931
1010
|
__props__.__dict__["clone_count"] = clone_count
|
@@ -943,6 +1022,8 @@ class FileSystem(pulumi.CustomResource):
|
|
943
1022
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
944
1023
|
__props__.__dict__["locks"] = locks
|
945
1024
|
__props__.__dict__["metered_bytes"] = metered_bytes
|
1025
|
+
__props__.__dict__["quota_enforcement_state"] = quota_enforcement_state
|
1026
|
+
__props__.__dict__["replication_source_count"] = replication_source_count
|
946
1027
|
__props__.__dict__["replication_target_id"] = replication_target_id
|
947
1028
|
__props__.__dict__["source_details"] = source_details
|
948
1029
|
__props__.__dict__["source_snapshot_id"] = source_snapshot_id
|
@@ -951,6 +1032,14 @@ class FileSystem(pulumi.CustomResource):
|
|
951
1032
|
__props__.__dict__["time_created"] = time_created
|
952
1033
|
return FileSystem(resource_name, opts=opts, __props__=__props__)
|
953
1034
|
|
1035
|
+
@property
|
1036
|
+
@pulumi.getter(name="areQuotaRulesEnabled")
|
1037
|
+
def are_quota_rules_enabled(self) -> pulumi.Output[bool]:
|
1038
|
+
"""
|
1039
|
+
(Updatable) Specifies the enforcement of quota rules on the file system.
|
1040
|
+
"""
|
1041
|
+
return pulumi.get(self, "are_quota_rules_enabled")
|
1042
|
+
|
954
1043
|
@property
|
955
1044
|
@pulumi.getter(name="availabilityDomain")
|
956
1045
|
def availability_domain(self) -> pulumi.Output[str]:
|
@@ -1090,6 +1179,22 @@ class FileSystem(pulumi.CustomResource):
|
|
1090
1179
|
"""
|
1091
1180
|
return pulumi.get(self, "metered_bytes")
|
1092
1181
|
|
1182
|
+
@property
|
1183
|
+
@pulumi.getter(name="quotaEnforcementState")
|
1184
|
+
def quota_enforcement_state(self) -> pulumi.Output[str]:
|
1185
|
+
"""
|
1186
|
+
Displays the state of enforcement of quota rules on the file system.
|
1187
|
+
"""
|
1188
|
+
return pulumi.get(self, "quota_enforcement_state")
|
1189
|
+
|
1190
|
+
@property
|
1191
|
+
@pulumi.getter(name="replicationSourceCount")
|
1192
|
+
def replication_source_count(self) -> pulumi.Output[int]:
|
1193
|
+
"""
|
1194
|
+
Specifies the total number of replications for which this file system is a source.
|
1195
|
+
"""
|
1196
|
+
return pulumi.get(self, "replication_source_count")
|
1197
|
+
|
1093
1198
|
@property
|
1094
1199
|
@pulumi.getter(name="replicationTargetId")
|
1095
1200
|
def replication_target_id(self) -> pulumi.Output[str]:
|