pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0__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 +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- 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_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- 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_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- 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/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -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/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -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.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
@@ -35,6 +35,8 @@ __all__ = [
|
|
35
35
|
'GetExportsExportExportOptionResult',
|
36
36
|
'GetExportsExportLockResult',
|
37
37
|
'GetExportsFilterResult',
|
38
|
+
'GetFileSystemQuotaRulesFilterResult',
|
39
|
+
'GetFileSystemQuotaRulesQuotaRuleResult',
|
38
40
|
'GetFileSystemsFileSystemResult',
|
39
41
|
'GetFileSystemsFileSystemLockResult',
|
40
42
|
'GetFileSystemsFileSystemSourceDetailResult',
|
@@ -1584,9 +1586,161 @@ class GetExportsFilterResult(dict):
|
|
1584
1586
|
return pulumi.get(self, "regex")
|
1585
1587
|
|
1586
1588
|
|
1589
|
+
@pulumi.output_type
|
1590
|
+
class GetFileSystemQuotaRulesFilterResult(dict):
|
1591
|
+
def __init__(__self__, *,
|
1592
|
+
name: str,
|
1593
|
+
values: Sequence[str],
|
1594
|
+
regex: Optional[bool] = None):
|
1595
|
+
pulumi.set(__self__, "name", name)
|
1596
|
+
pulumi.set(__self__, "values", values)
|
1597
|
+
if regex is not None:
|
1598
|
+
pulumi.set(__self__, "regex", regex)
|
1599
|
+
|
1600
|
+
@property
|
1601
|
+
@pulumi.getter
|
1602
|
+
def name(self) -> str:
|
1603
|
+
return pulumi.get(self, "name")
|
1604
|
+
|
1605
|
+
@property
|
1606
|
+
@pulumi.getter
|
1607
|
+
def values(self) -> Sequence[str]:
|
1608
|
+
return pulumi.get(self, "values")
|
1609
|
+
|
1610
|
+
@property
|
1611
|
+
@pulumi.getter
|
1612
|
+
def regex(self) -> Optional[bool]:
|
1613
|
+
return pulumi.get(self, "regex")
|
1614
|
+
|
1615
|
+
|
1616
|
+
@pulumi.output_type
|
1617
|
+
class GetFileSystemQuotaRulesQuotaRuleResult(dict):
|
1618
|
+
def __init__(__self__, *,
|
1619
|
+
are_violators_only: bool,
|
1620
|
+
display_name: str,
|
1621
|
+
file_system_id: str,
|
1622
|
+
id: str,
|
1623
|
+
is_hard_quota: bool,
|
1624
|
+
principal_id: int,
|
1625
|
+
principal_type: str,
|
1626
|
+
quota_limit_in_gigabytes: int,
|
1627
|
+
quota_rule_id: str,
|
1628
|
+
time_created: str,
|
1629
|
+
time_updated: str):
|
1630
|
+
"""
|
1631
|
+
:param bool are_violators_only: An option to only display the users or groups that violate their quota rules. If `areViolatorsOnly` is false, the list result will display all the quota and usage report. If `areViolatorsOnly` is true, the list result will only display the quota and usage report for the users or groups that violate their quota rules.
|
1632
|
+
:param str display_name: A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `UserXYZ's quota`
|
1633
|
+
:param str file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the file system.
|
1634
|
+
:param str id: The identifier of the quota rule. It is the base64 encoded string of the tuple <principalId, principalType, isHardQuota>.
|
1635
|
+
:param bool is_hard_quota: The flag is an identifier to tell whether the quota rule will be enforced. If `isHardQuota` is false, the quota rule will be enforced so the usage cannot exceed the hard quota limit. If `isHardQuota` is true, usage can exceed the soft quota limit. An alarm or notification will be sent to the customer, if the specific usage exceeds.
|
1636
|
+
:param int principal_id: An identifier for the owner of this usage and quota rule. Unix-like operating systems use this integer value to identify a user or group to manage access control.
|
1637
|
+
:param str principal_type: The type of the owner of this quota rule and usage.
|
1638
|
+
:param int quota_limit_in_gigabytes: The value of the quota rule. The unit is Gigabyte.
|
1639
|
+
:param str time_created: The date and time the quota rule was started, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1640
|
+
:param str time_updated: The date and time the quota rule was last updated, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1641
|
+
"""
|
1642
|
+
pulumi.set(__self__, "are_violators_only", are_violators_only)
|
1643
|
+
pulumi.set(__self__, "display_name", display_name)
|
1644
|
+
pulumi.set(__self__, "file_system_id", file_system_id)
|
1645
|
+
pulumi.set(__self__, "id", id)
|
1646
|
+
pulumi.set(__self__, "is_hard_quota", is_hard_quota)
|
1647
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
1648
|
+
pulumi.set(__self__, "principal_type", principal_type)
|
1649
|
+
pulumi.set(__self__, "quota_limit_in_gigabytes", quota_limit_in_gigabytes)
|
1650
|
+
pulumi.set(__self__, "quota_rule_id", quota_rule_id)
|
1651
|
+
pulumi.set(__self__, "time_created", time_created)
|
1652
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
1653
|
+
|
1654
|
+
@property
|
1655
|
+
@pulumi.getter(name="areViolatorsOnly")
|
1656
|
+
def are_violators_only(self) -> bool:
|
1657
|
+
"""
|
1658
|
+
An option to only display the users or groups that violate their quota rules. If `areViolatorsOnly` is false, the list result will display all the quota and usage report. If `areViolatorsOnly` is true, the list result will only display the quota and usage report for the users or groups that violate their quota rules.
|
1659
|
+
"""
|
1660
|
+
return pulumi.get(self, "are_violators_only")
|
1661
|
+
|
1662
|
+
@property
|
1663
|
+
@pulumi.getter(name="displayName")
|
1664
|
+
def display_name(self) -> str:
|
1665
|
+
"""
|
1666
|
+
A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `UserXYZ's quota`
|
1667
|
+
"""
|
1668
|
+
return pulumi.get(self, "display_name")
|
1669
|
+
|
1670
|
+
@property
|
1671
|
+
@pulumi.getter(name="fileSystemId")
|
1672
|
+
def file_system_id(self) -> str:
|
1673
|
+
"""
|
1674
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the file system.
|
1675
|
+
"""
|
1676
|
+
return pulumi.get(self, "file_system_id")
|
1677
|
+
|
1678
|
+
@property
|
1679
|
+
@pulumi.getter
|
1680
|
+
def id(self) -> str:
|
1681
|
+
"""
|
1682
|
+
The identifier of the quota rule. It is the base64 encoded string of the tuple <principalId, principalType, isHardQuota>.
|
1683
|
+
"""
|
1684
|
+
return pulumi.get(self, "id")
|
1685
|
+
|
1686
|
+
@property
|
1687
|
+
@pulumi.getter(name="isHardQuota")
|
1688
|
+
def is_hard_quota(self) -> bool:
|
1689
|
+
"""
|
1690
|
+
The flag is an identifier to tell whether the quota rule will be enforced. If `isHardQuota` is false, the quota rule will be enforced so the usage cannot exceed the hard quota limit. If `isHardQuota` is true, usage can exceed the soft quota limit. An alarm or notification will be sent to the customer, if the specific usage exceeds.
|
1691
|
+
"""
|
1692
|
+
return pulumi.get(self, "is_hard_quota")
|
1693
|
+
|
1694
|
+
@property
|
1695
|
+
@pulumi.getter(name="principalId")
|
1696
|
+
def principal_id(self) -> int:
|
1697
|
+
"""
|
1698
|
+
An identifier for the owner of this usage and quota rule. Unix-like operating systems use this integer value to identify a user or group to manage access control.
|
1699
|
+
"""
|
1700
|
+
return pulumi.get(self, "principal_id")
|
1701
|
+
|
1702
|
+
@property
|
1703
|
+
@pulumi.getter(name="principalType")
|
1704
|
+
def principal_type(self) -> str:
|
1705
|
+
"""
|
1706
|
+
The type of the owner of this quota rule and usage.
|
1707
|
+
"""
|
1708
|
+
return pulumi.get(self, "principal_type")
|
1709
|
+
|
1710
|
+
@property
|
1711
|
+
@pulumi.getter(name="quotaLimitInGigabytes")
|
1712
|
+
def quota_limit_in_gigabytes(self) -> int:
|
1713
|
+
"""
|
1714
|
+
The value of the quota rule. The unit is Gigabyte.
|
1715
|
+
"""
|
1716
|
+
return pulumi.get(self, "quota_limit_in_gigabytes")
|
1717
|
+
|
1718
|
+
@property
|
1719
|
+
@pulumi.getter(name="quotaRuleId")
|
1720
|
+
def quota_rule_id(self) -> str:
|
1721
|
+
return pulumi.get(self, "quota_rule_id")
|
1722
|
+
|
1723
|
+
@property
|
1724
|
+
@pulumi.getter(name="timeCreated")
|
1725
|
+
def time_created(self) -> str:
|
1726
|
+
"""
|
1727
|
+
The date and time the quota rule was started, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1728
|
+
"""
|
1729
|
+
return pulumi.get(self, "time_created")
|
1730
|
+
|
1731
|
+
@property
|
1732
|
+
@pulumi.getter(name="timeUpdated")
|
1733
|
+
def time_updated(self) -> str:
|
1734
|
+
"""
|
1735
|
+
The date and time the quota rule was last updated, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1736
|
+
"""
|
1737
|
+
return pulumi.get(self, "time_updated")
|
1738
|
+
|
1739
|
+
|
1587
1740
|
@pulumi.output_type
|
1588
1741
|
class GetFileSystemsFileSystemResult(dict):
|
1589
1742
|
def __init__(__self__, *,
|
1743
|
+
are_quota_rules_enabled: bool,
|
1590
1744
|
availability_domain: str,
|
1591
1745
|
clone_attach_status: str,
|
1592
1746
|
clone_count: int,
|
@@ -1605,6 +1759,8 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1605
1759
|
lifecycle_details: str,
|
1606
1760
|
locks: Sequence['outputs.GetFileSystemsFileSystemLockResult'],
|
1607
1761
|
metered_bytes: str,
|
1762
|
+
quota_enforcement_state: str,
|
1763
|
+
replication_source_count: int,
|
1608
1764
|
replication_target_id: str,
|
1609
1765
|
source_details: Sequence['outputs.GetFileSystemsFileSystemSourceDetailResult'],
|
1610
1766
|
source_snapshot_id: str,
|
@@ -1612,6 +1768,7 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1612
1768
|
system_tags: Mapping[str, str],
|
1613
1769
|
time_created: str):
|
1614
1770
|
"""
|
1771
|
+
:param bool are_quota_rules_enabled: Specifies the enforcement of quota rules on the file system.
|
1615
1772
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
1616
1773
|
:param str clone_attach_status: Specifies whether the file system is attached to its parent file system.
|
1617
1774
|
:param int clone_count: Specifies the total number of children of a file system.
|
@@ -1628,6 +1785,8 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1628
1785
|
:param str lifecycle_details: Additional information about the current 'lifecycleState'.
|
1629
1786
|
:param Sequence['GetFileSystemsFileSystemLockArgs'] locks: Locks associated with this resource.
|
1630
1787
|
:param 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).
|
1788
|
+
:param str quota_enforcement_state: Displays the state of enforcement of quota rules on the file system.
|
1789
|
+
:param int replication_source_count: Specifies the total number of replications for which this file system is a source.
|
1631
1790
|
:param 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.
|
1632
1791
|
:param Sequence['GetFileSystemsFileSystemSourceDetailArgs'] source_details: Source information for the file system.
|
1633
1792
|
:param 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).
|
@@ -1635,6 +1794,7 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1635
1794
|
:param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
1636
1795
|
:param 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`
|
1637
1796
|
"""
|
1797
|
+
pulumi.set(__self__, "are_quota_rules_enabled", are_quota_rules_enabled)
|
1638
1798
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
1639
1799
|
pulumi.set(__self__, "clone_attach_status", clone_attach_status)
|
1640
1800
|
pulumi.set(__self__, "clone_count", clone_count)
|
@@ -1653,6 +1813,8 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1653
1813
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
1654
1814
|
pulumi.set(__self__, "locks", locks)
|
1655
1815
|
pulumi.set(__self__, "metered_bytes", metered_bytes)
|
1816
|
+
pulumi.set(__self__, "quota_enforcement_state", quota_enforcement_state)
|
1817
|
+
pulumi.set(__self__, "replication_source_count", replication_source_count)
|
1656
1818
|
pulumi.set(__self__, "replication_target_id", replication_target_id)
|
1657
1819
|
pulumi.set(__self__, "source_details", source_details)
|
1658
1820
|
pulumi.set(__self__, "source_snapshot_id", source_snapshot_id)
|
@@ -1660,6 +1822,14 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1660
1822
|
pulumi.set(__self__, "system_tags", system_tags)
|
1661
1823
|
pulumi.set(__self__, "time_created", time_created)
|
1662
1824
|
|
1825
|
+
@property
|
1826
|
+
@pulumi.getter(name="areQuotaRulesEnabled")
|
1827
|
+
def are_quota_rules_enabled(self) -> bool:
|
1828
|
+
"""
|
1829
|
+
Specifies the enforcement of quota rules on the file system.
|
1830
|
+
"""
|
1831
|
+
return pulumi.get(self, "are_quota_rules_enabled")
|
1832
|
+
|
1663
1833
|
@property
|
1664
1834
|
@pulumi.getter(name="availabilityDomain")
|
1665
1835
|
def availability_domain(self) -> str:
|
@@ -1798,6 +1968,22 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1798
1968
|
"""
|
1799
1969
|
return pulumi.get(self, "metered_bytes")
|
1800
1970
|
|
1971
|
+
@property
|
1972
|
+
@pulumi.getter(name="quotaEnforcementState")
|
1973
|
+
def quota_enforcement_state(self) -> str:
|
1974
|
+
"""
|
1975
|
+
Displays the state of enforcement of quota rules on the file system.
|
1976
|
+
"""
|
1977
|
+
return pulumi.get(self, "quota_enforcement_state")
|
1978
|
+
|
1979
|
+
@property
|
1980
|
+
@pulumi.getter(name="replicationSourceCount")
|
1981
|
+
def replication_source_count(self) -> int:
|
1982
|
+
"""
|
1983
|
+
Specifies the total number of replications for which this file system is a source.
|
1984
|
+
"""
|
1985
|
+
return pulumi.get(self, "replication_source_count")
|
1986
|
+
|
1801
1987
|
@property
|
1802
1988
|
@pulumi.getter(name="replicationTargetId")
|
1803
1989
|
def replication_target_id(self) -> str:
|
pulumi_oci/goldengate/_inputs.py
CHANGED
@@ -25,6 +25,8 @@ __all__ = [
|
|
25
25
|
'ConnectionLockArgsDict',
|
26
26
|
'DeploymentBackupLockArgs',
|
27
27
|
'DeploymentBackupLockArgsDict',
|
28
|
+
'DeploymentBackupScheduleArgs',
|
29
|
+
'DeploymentBackupScheduleArgsDict',
|
28
30
|
'DeploymentDeploymentDiagnosticDataArgs',
|
29
31
|
'DeploymentDeploymentDiagnosticDataArgsDict',
|
30
32
|
'DeploymentIngressIpArgs',
|
@@ -437,6 +439,132 @@ class DeploymentBackupLockArgs:
|
|
437
439
|
pulumi.set(self, "time_created", value)
|
438
440
|
|
439
441
|
|
442
|
+
if not MYPY:
|
443
|
+
class DeploymentBackupScheduleArgsDict(TypedDict):
|
444
|
+
bucket: pulumi.Input[str]
|
445
|
+
"""
|
446
|
+
(Updatable) Name of the bucket where the object is to be uploaded in the object storage
|
447
|
+
"""
|
448
|
+
compartment_id: pulumi.Input[str]
|
449
|
+
"""
|
450
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
451
|
+
"""
|
452
|
+
frequency_backup_scheduled: pulumi.Input[str]
|
453
|
+
"""
|
454
|
+
(Updatable) The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
455
|
+
"""
|
456
|
+
is_metadata_only: pulumi.Input[bool]
|
457
|
+
"""
|
458
|
+
(Updatable) Parameter to allow users to create backup without trails
|
459
|
+
"""
|
460
|
+
namespace: pulumi.Input[str]
|
461
|
+
"""
|
462
|
+
(Updatable) Name of namespace that serves as a container for all of your buckets
|
463
|
+
"""
|
464
|
+
time_backup_scheduled: pulumi.Input[str]
|
465
|
+
"""
|
466
|
+
(Updatable) The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
467
|
+
"""
|
468
|
+
elif False:
|
469
|
+
DeploymentBackupScheduleArgsDict: TypeAlias = Mapping[str, Any]
|
470
|
+
|
471
|
+
@pulumi.input_type
|
472
|
+
class DeploymentBackupScheduleArgs:
|
473
|
+
def __init__(__self__, *,
|
474
|
+
bucket: pulumi.Input[str],
|
475
|
+
compartment_id: pulumi.Input[str],
|
476
|
+
frequency_backup_scheduled: pulumi.Input[str],
|
477
|
+
is_metadata_only: pulumi.Input[bool],
|
478
|
+
namespace: pulumi.Input[str],
|
479
|
+
time_backup_scheduled: pulumi.Input[str]):
|
480
|
+
"""
|
481
|
+
:param pulumi.Input[str] bucket: (Updatable) Name of the bucket where the object is to be uploaded in the object storage
|
482
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
483
|
+
:param pulumi.Input[str] frequency_backup_scheduled: (Updatable) The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
484
|
+
:param pulumi.Input[bool] is_metadata_only: (Updatable) Parameter to allow users to create backup without trails
|
485
|
+
:param pulumi.Input[str] namespace: (Updatable) Name of namespace that serves as a container for all of your buckets
|
486
|
+
:param pulumi.Input[str] time_backup_scheduled: (Updatable) The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
487
|
+
"""
|
488
|
+
pulumi.set(__self__, "bucket", bucket)
|
489
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
490
|
+
pulumi.set(__self__, "frequency_backup_scheduled", frequency_backup_scheduled)
|
491
|
+
pulumi.set(__self__, "is_metadata_only", is_metadata_only)
|
492
|
+
pulumi.set(__self__, "namespace", namespace)
|
493
|
+
pulumi.set(__self__, "time_backup_scheduled", time_backup_scheduled)
|
494
|
+
|
495
|
+
@property
|
496
|
+
@pulumi.getter
|
497
|
+
def bucket(self) -> pulumi.Input[str]:
|
498
|
+
"""
|
499
|
+
(Updatable) Name of the bucket where the object is to be uploaded in the object storage
|
500
|
+
"""
|
501
|
+
return pulumi.get(self, "bucket")
|
502
|
+
|
503
|
+
@bucket.setter
|
504
|
+
def bucket(self, value: pulumi.Input[str]):
|
505
|
+
pulumi.set(self, "bucket", value)
|
506
|
+
|
507
|
+
@property
|
508
|
+
@pulumi.getter(name="compartmentId")
|
509
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
510
|
+
"""
|
511
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
512
|
+
"""
|
513
|
+
return pulumi.get(self, "compartment_id")
|
514
|
+
|
515
|
+
@compartment_id.setter
|
516
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
517
|
+
pulumi.set(self, "compartment_id", value)
|
518
|
+
|
519
|
+
@property
|
520
|
+
@pulumi.getter(name="frequencyBackupScheduled")
|
521
|
+
def frequency_backup_scheduled(self) -> pulumi.Input[str]:
|
522
|
+
"""
|
523
|
+
(Updatable) The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
524
|
+
"""
|
525
|
+
return pulumi.get(self, "frequency_backup_scheduled")
|
526
|
+
|
527
|
+
@frequency_backup_scheduled.setter
|
528
|
+
def frequency_backup_scheduled(self, value: pulumi.Input[str]):
|
529
|
+
pulumi.set(self, "frequency_backup_scheduled", value)
|
530
|
+
|
531
|
+
@property
|
532
|
+
@pulumi.getter(name="isMetadataOnly")
|
533
|
+
def is_metadata_only(self) -> pulumi.Input[bool]:
|
534
|
+
"""
|
535
|
+
(Updatable) Parameter to allow users to create backup without trails
|
536
|
+
"""
|
537
|
+
return pulumi.get(self, "is_metadata_only")
|
538
|
+
|
539
|
+
@is_metadata_only.setter
|
540
|
+
def is_metadata_only(self, value: pulumi.Input[bool]):
|
541
|
+
pulumi.set(self, "is_metadata_only", value)
|
542
|
+
|
543
|
+
@property
|
544
|
+
@pulumi.getter
|
545
|
+
def namespace(self) -> pulumi.Input[str]:
|
546
|
+
"""
|
547
|
+
(Updatable) Name of namespace that serves as a container for all of your buckets
|
548
|
+
"""
|
549
|
+
return pulumi.get(self, "namespace")
|
550
|
+
|
551
|
+
@namespace.setter
|
552
|
+
def namespace(self, value: pulumi.Input[str]):
|
553
|
+
pulumi.set(self, "namespace", value)
|
554
|
+
|
555
|
+
@property
|
556
|
+
@pulumi.getter(name="timeBackupScheduled")
|
557
|
+
def time_backup_scheduled(self) -> pulumi.Input[str]:
|
558
|
+
"""
|
559
|
+
(Updatable) The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
560
|
+
"""
|
561
|
+
return pulumi.get(self, "time_backup_scheduled")
|
562
|
+
|
563
|
+
@time_backup_scheduled.setter
|
564
|
+
def time_backup_scheduled(self, value: pulumi.Input[str]):
|
565
|
+
pulumi.set(self, "time_backup_scheduled", value)
|
566
|
+
|
567
|
+
|
440
568
|
if not MYPY:
|
441
569
|
class DeploymentDeploymentDiagnosticDataArgsDict(TypedDict):
|
442
570
|
bucket: NotRequired[pulumi.Input[str]]
|