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
pulumi_oci/core/_inputs.py
CHANGED
@@ -429,6 +429,12 @@ __all__ = [
|
|
429
429
|
'GetComputeGlobalImageCapabilitySchemasFilterArgsDict',
|
430
430
|
'GetComputeGlobalImageCapabilitySchemasVersionsFilterArgs',
|
431
431
|
'GetComputeGlobalImageCapabilitySchemasVersionsFilterArgsDict',
|
432
|
+
'GetComputeGpuMemoryClusterInstancesFilterArgs',
|
433
|
+
'GetComputeGpuMemoryClusterInstancesFilterArgsDict',
|
434
|
+
'GetComputeGpuMemoryClustersFilterArgs',
|
435
|
+
'GetComputeGpuMemoryClustersFilterArgsDict',
|
436
|
+
'GetComputeGpuMemoryFabricsFilterArgs',
|
437
|
+
'GetComputeGpuMemoryFabricsFilterArgsDict',
|
432
438
|
'GetComputeImageCapabilitySchemasFilterArgs',
|
433
439
|
'GetComputeImageCapabilitySchemasFilterArgsDict',
|
434
440
|
'GetConsoleHistoriesFilterArgs',
|
@@ -3955,22 +3961,22 @@ if not MYPY:
|
|
3955
3961
|
connectivity_association_key_secret_id: pulumi.Input[str]
|
3956
3962
|
"""
|
3957
3963
|
(Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity Association Key (CAK) of this MACsec key.
|
3958
|
-
|
3959
|
-
NOTE: Only the latest secret version will be used.
|
3960
3964
|
"""
|
3961
3965
|
connectivity_association_name_secret_id: pulumi.Input[str]
|
3962
3966
|
"""
|
3963
3967
|
(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.
|
3964
|
-
|
3965
|
-
NOTE: Only the latest secret version will be used.
|
3966
3968
|
"""
|
3967
3969
|
connectivity_association_key_secret_version: NotRequired[pulumi.Input[str]]
|
3968
3970
|
"""
|
3969
|
-
The secret version of the `
|
3971
|
+
(Updatable) The secret version of the `connectivity_association_key_secret_id` secret in Vault.
|
3972
|
+
|
3973
|
+
NOTE: Only the latest secret version will be used.
|
3970
3974
|
"""
|
3971
3975
|
connectivity_association_name_secret_version: NotRequired[pulumi.Input[str]]
|
3972
3976
|
"""
|
3973
|
-
The secret version of the
|
3977
|
+
(Updatable) The secret version of the `connectivity_association_name_secret_id` secret in Vault.
|
3978
|
+
|
3979
|
+
NOTE: Only the latest secret version will be used.
|
3974
3980
|
"""
|
3975
3981
|
elif False:
|
3976
3982
|
CrossConnectGroupMacsecPropertiesPrimaryKeyArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -3984,13 +3990,13 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
|
|
3984
3990
|
connectivity_association_name_secret_version: Optional[pulumi.Input[str]] = None):
|
3985
3991
|
"""
|
3986
3992
|
:param pulumi.Input[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.
|
3993
|
+
:param pulumi.Input[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.
|
3994
|
+
:param pulumi.Input[str] connectivity_association_key_secret_version: (Updatable) The secret version of the `connectivity_association_key_secret_id` secret in Vault.
|
3987
3995
|
|
3988
3996
|
NOTE: Only the latest secret version will be used.
|
3989
|
-
:param pulumi.Input[str]
|
3997
|
+
:param pulumi.Input[str] connectivity_association_name_secret_version: (Updatable) The secret version of the `connectivity_association_name_secret_id` secret in Vault.
|
3990
3998
|
|
3991
3999
|
NOTE: Only the latest secret version will be used.
|
3992
|
-
:param pulumi.Input[str] connectivity_association_key_secret_version: The secret version of the `connectivityAssociationKey` secret in Vault.
|
3993
|
-
:param pulumi.Input[str] connectivity_association_name_secret_version: The secret version of the connectivity association name secret in Vault.
|
3994
4000
|
"""
|
3995
4001
|
pulumi.set(__self__, "connectivity_association_key_secret_id", connectivity_association_key_secret_id)
|
3996
4002
|
pulumi.set(__self__, "connectivity_association_name_secret_id", connectivity_association_name_secret_id)
|
@@ -4004,8 +4010,6 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
|
|
4004
4010
|
def connectivity_association_key_secret_id(self) -> pulumi.Input[str]:
|
4005
4011
|
"""
|
4006
4012
|
(Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity Association Key (CAK) of this MACsec key.
|
4007
|
-
|
4008
|
-
NOTE: Only the latest secret version will be used.
|
4009
4013
|
"""
|
4010
4014
|
return pulumi.get(self, "connectivity_association_key_secret_id")
|
4011
4015
|
|
@@ -4018,8 +4022,6 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
|
|
4018
4022
|
def connectivity_association_name_secret_id(self) -> pulumi.Input[str]:
|
4019
4023
|
"""
|
4020
4024
|
(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.
|
4021
|
-
|
4022
|
-
NOTE: Only the latest secret version will be used.
|
4023
4025
|
"""
|
4024
4026
|
return pulumi.get(self, "connectivity_association_name_secret_id")
|
4025
4027
|
|
@@ -4031,7 +4033,9 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
|
|
4031
4033
|
@pulumi.getter(name="connectivityAssociationKeySecretVersion")
|
4032
4034
|
def connectivity_association_key_secret_version(self) -> Optional[pulumi.Input[str]]:
|
4033
4035
|
"""
|
4034
|
-
The secret version of the `
|
4036
|
+
(Updatable) The secret version of the `connectivity_association_key_secret_id` secret in Vault.
|
4037
|
+
|
4038
|
+
NOTE: Only the latest secret version will be used.
|
4035
4039
|
"""
|
4036
4040
|
return pulumi.get(self, "connectivity_association_key_secret_version")
|
4037
4041
|
|
@@ -4043,7 +4047,9 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
|
|
4043
4047
|
@pulumi.getter(name="connectivityAssociationNameSecretVersion")
|
4044
4048
|
def connectivity_association_name_secret_version(self) -> Optional[pulumi.Input[str]]:
|
4045
4049
|
"""
|
4046
|
-
The secret version of the
|
4050
|
+
(Updatable) The secret version of the `connectivity_association_name_secret_id` secret in Vault.
|
4051
|
+
|
4052
|
+
NOTE: Only the latest secret version will be used.
|
4047
4053
|
"""
|
4048
4054
|
return pulumi.get(self, "connectivity_association_name_secret_version")
|
4049
4055
|
|
@@ -4056,7 +4062,7 @@ if not MYPY:
|
|
4056
4062
|
class CrossConnectMacsecPropertiesArgsDict(TypedDict):
|
4057
4063
|
state: pulumi.Input[str]
|
4058
4064
|
"""
|
4059
|
-
|
4065
|
+
The cross-connect's current state.
|
4060
4066
|
"""
|
4061
4067
|
encryption_cipher: NotRequired[pulumi.Input[str]]
|
4062
4068
|
"""
|
@@ -4081,7 +4087,7 @@ class CrossConnectMacsecPropertiesArgs:
|
|
4081
4087
|
is_unprotected_traffic_allowed: Optional[pulumi.Input[bool]] = None,
|
4082
4088
|
primary_key: Optional[pulumi.Input['CrossConnectMacsecPropertiesPrimaryKeyArgs']] = None):
|
4083
4089
|
"""
|
4084
|
-
:param pulumi.Input[str] state:
|
4090
|
+
:param pulumi.Input[str] state: The cross-connect's current state.
|
4085
4091
|
:param pulumi.Input[str] encryption_cipher: (Updatable) Type of encryption cipher suite to use for the MACsec connection.
|
4086
4092
|
:param pulumi.Input[bool] is_unprotected_traffic_allowed: (Updatable) Indicates whether unencrypted traffic is allowed if MACsec Key Agreement protocol (MKA) fails.
|
4087
4093
|
:param pulumi.Input['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.
|
@@ -4098,7 +4104,7 @@ class CrossConnectMacsecPropertiesArgs:
|
|
4098
4104
|
@pulumi.getter
|
4099
4105
|
def state(self) -> pulumi.Input[str]:
|
4100
4106
|
"""
|
4101
|
-
|
4107
|
+
The cross-connect's current state.
|
4102
4108
|
"""
|
4103
4109
|
return pulumi.get(self, "state")
|
4104
4110
|
|
@@ -4148,14 +4154,10 @@ if not MYPY:
|
|
4148
4154
|
connectivity_association_key_secret_id: pulumi.Input[str]
|
4149
4155
|
"""
|
4150
4156
|
(Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity Association Key (CAK) of this MACsec key.
|
4151
|
-
|
4152
|
-
NOTE: Only the latest secret version will be used.
|
4153
4157
|
"""
|
4154
4158
|
connectivity_association_name_secret_id: pulumi.Input[str]
|
4155
4159
|
"""
|
4156
|
-
|
4157
|
-
|
4158
|
-
NOTE: Only the latest secret version will be used.
|
4160
|
+
Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity association Key Name (CKN) of this MACsec key.
|
4159
4161
|
"""
|
4160
4162
|
connectivity_association_key_secret_version: NotRequired[pulumi.Input[str]]
|
4161
4163
|
"""
|
@@ -4177,11 +4179,7 @@ class CrossConnectMacsecPropertiesPrimaryKeyArgs:
|
|
4177
4179
|
connectivity_association_name_secret_version: Optional[pulumi.Input[str]] = None):
|
4178
4180
|
"""
|
4179
4181
|
:param pulumi.Input[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.
|
4180
|
-
|
4181
|
-
NOTE: Only the latest secret version will be used.
|
4182
|
-
:param pulumi.Input[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.
|
4183
|
-
|
4184
|
-
NOTE: Only the latest secret version will be used.
|
4182
|
+
:param pulumi.Input[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.
|
4185
4183
|
:param pulumi.Input[str] connectivity_association_key_secret_version: The secret version of the `connectivityAssociationKey` secret in Vault.
|
4186
4184
|
:param pulumi.Input[str] connectivity_association_name_secret_version: The secret version of the connectivity association name secret in Vault.
|
4187
4185
|
"""
|
@@ -4197,8 +4195,6 @@ class CrossConnectMacsecPropertiesPrimaryKeyArgs:
|
|
4197
4195
|
def connectivity_association_key_secret_id(self) -> pulumi.Input[str]:
|
4198
4196
|
"""
|
4199
4197
|
(Updatable) Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity Association Key (CAK) of this MACsec key.
|
4200
|
-
|
4201
|
-
NOTE: Only the latest secret version will be used.
|
4202
4198
|
"""
|
4203
4199
|
return pulumi.get(self, "connectivity_association_key_secret_id")
|
4204
4200
|
|
@@ -4210,9 +4206,7 @@ class CrossConnectMacsecPropertiesPrimaryKeyArgs:
|
|
4210
4206
|
@pulumi.getter(name="connectivityAssociationNameSecretId")
|
4211
4207
|
def connectivity_association_name_secret_id(self) -> pulumi.Input[str]:
|
4212
4208
|
"""
|
4213
|
-
|
4214
|
-
|
4215
|
-
NOTE: Only the latest secret version will be used.
|
4209
|
+
Secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) containing the Connectivity association Key Name (CKN) of this MACsec key.
|
4216
4210
|
"""
|
4217
4211
|
return pulumi.get(self, "connectivity_association_name_secret_id")
|
4218
4212
|
|
@@ -20944,6 +20938,147 @@ class GetComputeGlobalImageCapabilitySchemasVersionsFilterArgs:
|
|
20944
20938
|
pulumi.set(self, "regex", value)
|
20945
20939
|
|
20946
20940
|
|
20941
|
+
if not MYPY:
|
20942
|
+
class GetComputeGpuMemoryClusterInstancesFilterArgsDict(TypedDict):
|
20943
|
+
name: str
|
20944
|
+
values: Sequence[str]
|
20945
|
+
regex: NotRequired[bool]
|
20946
|
+
elif False:
|
20947
|
+
GetComputeGpuMemoryClusterInstancesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
20948
|
+
|
20949
|
+
@pulumi.input_type
|
20950
|
+
class GetComputeGpuMemoryClusterInstancesFilterArgs:
|
20951
|
+
def __init__(__self__, *,
|
20952
|
+
name: str,
|
20953
|
+
values: Sequence[str],
|
20954
|
+
regex: Optional[bool] = None):
|
20955
|
+
pulumi.set(__self__, "name", name)
|
20956
|
+
pulumi.set(__self__, "values", values)
|
20957
|
+
if regex is not None:
|
20958
|
+
pulumi.set(__self__, "regex", regex)
|
20959
|
+
|
20960
|
+
@property
|
20961
|
+
@pulumi.getter
|
20962
|
+
def name(self) -> str:
|
20963
|
+
return pulumi.get(self, "name")
|
20964
|
+
|
20965
|
+
@name.setter
|
20966
|
+
def name(self, value: str):
|
20967
|
+
pulumi.set(self, "name", value)
|
20968
|
+
|
20969
|
+
@property
|
20970
|
+
@pulumi.getter
|
20971
|
+
def values(self) -> Sequence[str]:
|
20972
|
+
return pulumi.get(self, "values")
|
20973
|
+
|
20974
|
+
@values.setter
|
20975
|
+
def values(self, value: Sequence[str]):
|
20976
|
+
pulumi.set(self, "values", value)
|
20977
|
+
|
20978
|
+
@property
|
20979
|
+
@pulumi.getter
|
20980
|
+
def regex(self) -> Optional[bool]:
|
20981
|
+
return pulumi.get(self, "regex")
|
20982
|
+
|
20983
|
+
@regex.setter
|
20984
|
+
def regex(self, value: Optional[bool]):
|
20985
|
+
pulumi.set(self, "regex", value)
|
20986
|
+
|
20987
|
+
|
20988
|
+
if not MYPY:
|
20989
|
+
class GetComputeGpuMemoryClustersFilterArgsDict(TypedDict):
|
20990
|
+
name: str
|
20991
|
+
values: Sequence[str]
|
20992
|
+
regex: NotRequired[bool]
|
20993
|
+
elif False:
|
20994
|
+
GetComputeGpuMemoryClustersFilterArgsDict: TypeAlias = Mapping[str, Any]
|
20995
|
+
|
20996
|
+
@pulumi.input_type
|
20997
|
+
class GetComputeGpuMemoryClustersFilterArgs:
|
20998
|
+
def __init__(__self__, *,
|
20999
|
+
name: str,
|
21000
|
+
values: Sequence[str],
|
21001
|
+
regex: Optional[bool] = None):
|
21002
|
+
pulumi.set(__self__, "name", name)
|
21003
|
+
pulumi.set(__self__, "values", values)
|
21004
|
+
if regex is not None:
|
21005
|
+
pulumi.set(__self__, "regex", regex)
|
21006
|
+
|
21007
|
+
@property
|
21008
|
+
@pulumi.getter
|
21009
|
+
def name(self) -> str:
|
21010
|
+
return pulumi.get(self, "name")
|
21011
|
+
|
21012
|
+
@name.setter
|
21013
|
+
def name(self, value: str):
|
21014
|
+
pulumi.set(self, "name", value)
|
21015
|
+
|
21016
|
+
@property
|
21017
|
+
@pulumi.getter
|
21018
|
+
def values(self) -> Sequence[str]:
|
21019
|
+
return pulumi.get(self, "values")
|
21020
|
+
|
21021
|
+
@values.setter
|
21022
|
+
def values(self, value: Sequence[str]):
|
21023
|
+
pulumi.set(self, "values", value)
|
21024
|
+
|
21025
|
+
@property
|
21026
|
+
@pulumi.getter
|
21027
|
+
def regex(self) -> Optional[bool]:
|
21028
|
+
return pulumi.get(self, "regex")
|
21029
|
+
|
21030
|
+
@regex.setter
|
21031
|
+
def regex(self, value: Optional[bool]):
|
21032
|
+
pulumi.set(self, "regex", value)
|
21033
|
+
|
21034
|
+
|
21035
|
+
if not MYPY:
|
21036
|
+
class GetComputeGpuMemoryFabricsFilterArgsDict(TypedDict):
|
21037
|
+
name: str
|
21038
|
+
values: Sequence[str]
|
21039
|
+
regex: NotRequired[bool]
|
21040
|
+
elif False:
|
21041
|
+
GetComputeGpuMemoryFabricsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
21042
|
+
|
21043
|
+
@pulumi.input_type
|
21044
|
+
class GetComputeGpuMemoryFabricsFilterArgs:
|
21045
|
+
def __init__(__self__, *,
|
21046
|
+
name: str,
|
21047
|
+
values: Sequence[str],
|
21048
|
+
regex: Optional[bool] = None):
|
21049
|
+
pulumi.set(__self__, "name", name)
|
21050
|
+
pulumi.set(__self__, "values", values)
|
21051
|
+
if regex is not None:
|
21052
|
+
pulumi.set(__self__, "regex", regex)
|
21053
|
+
|
21054
|
+
@property
|
21055
|
+
@pulumi.getter
|
21056
|
+
def name(self) -> str:
|
21057
|
+
return pulumi.get(self, "name")
|
21058
|
+
|
21059
|
+
@name.setter
|
21060
|
+
def name(self, value: str):
|
21061
|
+
pulumi.set(self, "name", value)
|
21062
|
+
|
21063
|
+
@property
|
21064
|
+
@pulumi.getter
|
21065
|
+
def values(self) -> Sequence[str]:
|
21066
|
+
return pulumi.get(self, "values")
|
21067
|
+
|
21068
|
+
@values.setter
|
21069
|
+
def values(self, value: Sequence[str]):
|
21070
|
+
pulumi.set(self, "values", value)
|
21071
|
+
|
21072
|
+
@property
|
21073
|
+
@pulumi.getter
|
21074
|
+
def regex(self) -> Optional[bool]:
|
21075
|
+
return pulumi.get(self, "regex")
|
21076
|
+
|
21077
|
+
@regex.setter
|
21078
|
+
def regex(self, value: Optional[bool]):
|
21079
|
+
pulumi.set(self, "regex", value)
|
21080
|
+
|
21081
|
+
|
20947
21082
|
if not MYPY:
|
20948
21083
|
class GetComputeImageCapabilitySchemasFilterArgsDict(TypedDict):
|
20949
21084
|
name: str
|