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/core/outputs.py
CHANGED
@@ -3470,13 +3470,13 @@ class CrossConnectGroupMacsecPropertiesPrimaryKey(dict):
|
|
3470
3470
|
connectivity_association_name_secret_version: Optional[str] = None):
|
3471
3471
|
"""
|
3472
3472
|
:param str connectivity_association_key_secret_id: (Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity Association Key (CAK) of this MACsec key.
|
3473
|
+
:param str connectivity_association_name_secret_id: (Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity association Key Name (CKN) of this MACsec key.
|
3474
|
+
:param str connectivity_association_key_secret_version: (Updatable) The secret version of the `connectivity_association_key_secret_id` secret in Vault.
|
3473
3475
|
|
3474
3476
|
NOTE: Only the latest secret version will be used.
|
3475
|
-
:param str
|
3477
|
+
:param str connectivity_association_name_secret_version: (Updatable) The secret version of the `connectivity_association_name_secret_id` secret in Vault.
|
3476
3478
|
|
3477
3479
|
NOTE: Only the latest secret version will be used.
|
3478
|
-
:param str connectivity_association_key_secret_version: The secret version of the `connectivityAssociationKey` secret in Vault.
|
3479
|
-
:param str connectivity_association_name_secret_version: The secret version of the connectivity association name secret in Vault.
|
3480
3480
|
"""
|
3481
3481
|
pulumi.set(__self__, "connectivity_association_key_secret_id", connectivity_association_key_secret_id)
|
3482
3482
|
pulumi.set(__self__, "connectivity_association_name_secret_id", connectivity_association_name_secret_id)
|
@@ -3490,8 +3490,6 @@ class CrossConnectGroupMacsecPropertiesPrimaryKey(dict):
|
|
3490
3490
|
def connectivity_association_key_secret_id(self) -> str:
|
3491
3491
|
"""
|
3492
3492
|
(Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity Association Key (CAK) of this MACsec key.
|
3493
|
-
|
3494
|
-
NOTE: Only the latest secret version will be used.
|
3495
3493
|
"""
|
3496
3494
|
return pulumi.get(self, "connectivity_association_key_secret_id")
|
3497
3495
|
|
@@ -3500,8 +3498,6 @@ class CrossConnectGroupMacsecPropertiesPrimaryKey(dict):
|
|
3500
3498
|
def connectivity_association_name_secret_id(self) -> str:
|
3501
3499
|
"""
|
3502
3500
|
(Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity association Key Name (CKN) of this MACsec key.
|
3503
|
-
|
3504
|
-
NOTE: Only the latest secret version will be used.
|
3505
3501
|
"""
|
3506
3502
|
return pulumi.get(self, "connectivity_association_name_secret_id")
|
3507
3503
|
|
@@ -3509,7 +3505,9 @@ class CrossConnectGroupMacsecPropertiesPrimaryKey(dict):
|
|
3509
3505
|
@pulumi.getter(name="connectivityAssociationKeySecretVersion")
|
3510
3506
|
def connectivity_association_key_secret_version(self) -> Optional[str]:
|
3511
3507
|
"""
|
3512
|
-
The secret version of the `
|
3508
|
+
(Updatable) The secret version of the `connectivity_association_key_secret_id` secret in Vault.
|
3509
|
+
|
3510
|
+
NOTE: Only the latest secret version will be used.
|
3513
3511
|
"""
|
3514
3512
|
return pulumi.get(self, "connectivity_association_key_secret_version")
|
3515
3513
|
|
@@ -3517,7 +3515,9 @@ class CrossConnectGroupMacsecPropertiesPrimaryKey(dict):
|
|
3517
3515
|
@pulumi.getter(name="connectivityAssociationNameSecretVersion")
|
3518
3516
|
def connectivity_association_name_secret_version(self) -> Optional[str]:
|
3519
3517
|
"""
|
3520
|
-
The secret version of the
|
3518
|
+
(Updatable) The secret version of the `connectivity_association_name_secret_id` secret in Vault.
|
3519
|
+
|
3520
|
+
NOTE: Only the latest secret version will be used.
|
3521
3521
|
"""
|
3522
3522
|
return pulumi.get(self, "connectivity_association_name_secret_version")
|
3523
3523
|
|
@@ -3551,7 +3551,7 @@ class CrossConnectMacsecProperties(dict):
|
|
3551
3551
|
is_unprotected_traffic_allowed: Optional[bool] = None,
|
3552
3552
|
primary_key: Optional['outputs.CrossConnectMacsecPropertiesPrimaryKey'] = None):
|
3553
3553
|
"""
|
3554
|
-
:param str state:
|
3554
|
+
:param str state: The cross-connect's current state.
|
3555
3555
|
:param str encryption_cipher: (Updatable) Type of encryption cipher suite to use for the MACsec connection.
|
3556
3556
|
:param bool is_unprotected_traffic_allowed: (Updatable) Indicates whether unencrypted traffic is allowed if MACsec Key Agreement protocol (MKA) fails.
|
3557
3557
|
:param 'CrossConnectMacsecPropertiesPrimaryKeyArgs' primary_key: (Updatable) Defines the secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)s held in Vault that represent the MACsec key.
|
@@ -3568,7 +3568,7 @@ class CrossConnectMacsecProperties(dict):
|
|
3568
3568
|
@pulumi.getter
|
3569
3569
|
def state(self) -> str:
|
3570
3570
|
"""
|
3571
|
-
|
3571
|
+
The cross-connect's current state.
|
3572
3572
|
"""
|
3573
3573
|
return pulumi.get(self, "state")
|
3574
3574
|
|
@@ -3629,11 +3629,7 @@ class CrossConnectMacsecPropertiesPrimaryKey(dict):
|
|
3629
3629
|
connectivity_association_name_secret_version: Optional[str] = None):
|
3630
3630
|
"""
|
3631
3631
|
:param str connectivity_association_key_secret_id: (Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity Association Key (CAK) of this MACsec key.
|
3632
|
-
|
3633
|
-
NOTE: Only the latest secret version will be used.
|
3634
|
-
:param str connectivity_association_name_secret_id: (Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity association Key Name (CKN) of this MACsec key.
|
3635
|
-
|
3636
|
-
NOTE: Only the latest secret version will be used.
|
3632
|
+
:param str connectivity_association_name_secret_id: Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity association Key Name (CKN) of this MACsec key.
|
3637
3633
|
:param str connectivity_association_key_secret_version: The secret version of the `connectivityAssociationKey` secret in Vault.
|
3638
3634
|
:param str connectivity_association_name_secret_version: The secret version of the connectivity association name secret in Vault.
|
3639
3635
|
"""
|
@@ -3649,8 +3645,6 @@ class CrossConnectMacsecPropertiesPrimaryKey(dict):
|
|
3649
3645
|
def connectivity_association_key_secret_id(self) -> str:
|
3650
3646
|
"""
|
3651
3647
|
(Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity Association Key (CAK) of this MACsec key.
|
3652
|
-
|
3653
|
-
NOTE: Only the latest secret version will be used.
|
3654
3648
|
"""
|
3655
3649
|
return pulumi.get(self, "connectivity_association_key_secret_id")
|
3656
3650
|
|
@@ -3658,9 +3652,7 @@ class CrossConnectMacsecPropertiesPrimaryKey(dict):
|
|
3658
3652
|
@pulumi.getter(name="connectivityAssociationNameSecretId")
|
3659
3653
|
def connectivity_association_name_secret_id(self) -> str:
|
3660
3654
|
"""
|
3661
|
-
|
3662
|
-
|
3663
|
-
NOTE: Only the latest secret version will be used.
|
3655
|
+
Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity association Key Name (CKN) of this MACsec key.
|
3664
3656
|
"""
|
3665
3657
|
return pulumi.get(self, "connectivity_association_name_secret_id")
|
3666
3658
|
|
pulumi_oci/database/__init__.py
CHANGED
@@ -41,6 +41,7 @@ from .db_system import *
|
|
41
41
|
from .db_systems_upgrade import *
|
42
42
|
from .exadata_infrastructure import *
|
43
43
|
from .exadata_infrastructure_compute import *
|
44
|
+
from .exadata_infrastructure_configure_exascale_management import *
|
44
45
|
from .exadata_infrastructure_storage import *
|
45
46
|
from .exadata_iorm_config import *
|
46
47
|
from .exadb_vm_cluster import *
|