pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.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.
Files changed (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -3955,22 +3955,22 @@ if not MYPY:
3955
3955
  connectivity_association_key_secret_id: pulumi.Input[str]
3956
3956
  """
3957
3957
  (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
3958
  """
3961
3959
  connectivity_association_name_secret_id: pulumi.Input[str]
3962
3960
  """
3963
3961
  (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
3962
  """
3967
3963
  connectivity_association_key_secret_version: NotRequired[pulumi.Input[str]]
3968
3964
  """
3969
- The secret version of the `connectivityAssociationKey` secret in Vault.
3965
+ (Updatable) The secret version of the `connectivity_association_key_secret_id` secret in Vault.
3966
+
3967
+ NOTE: Only the latest secret version will be used.
3970
3968
  """
3971
3969
  connectivity_association_name_secret_version: NotRequired[pulumi.Input[str]]
3972
3970
  """
3973
- The secret version of the connectivity association name secret in Vault.
3971
+ (Updatable) The secret version of the `connectivity_association_name_secret_id` secret in Vault.
3972
+
3973
+ NOTE: Only the latest secret version will be used.
3974
3974
  """
3975
3975
  elif False:
3976
3976
  CrossConnectGroupMacsecPropertiesPrimaryKeyArgsDict: TypeAlias = Mapping[str, Any]
@@ -3984,13 +3984,13 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
3984
3984
  connectivity_association_name_secret_version: Optional[pulumi.Input[str]] = None):
3985
3985
  """
3986
3986
  :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.
3987
+ :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.
3988
+ :param pulumi.Input[str] connectivity_association_key_secret_version: (Updatable) The secret version of the `connectivity_association_key_secret_id` secret in Vault.
3987
3989
 
3988
3990
  NOTE: Only the latest secret version will be used.
3989
- :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.
3991
+ :param pulumi.Input[str] connectivity_association_name_secret_version: (Updatable) The secret version of the `connectivity_association_name_secret_id` secret in Vault.
3990
3992
 
3991
3993
  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
3994
  """
3995
3995
  pulumi.set(__self__, "connectivity_association_key_secret_id", connectivity_association_key_secret_id)
3996
3996
  pulumi.set(__self__, "connectivity_association_name_secret_id", connectivity_association_name_secret_id)
@@ -4004,8 +4004,6 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
4004
4004
  def connectivity_association_key_secret_id(self) -> pulumi.Input[str]:
4005
4005
  """
4006
4006
  (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
4007
  """
4010
4008
  return pulumi.get(self, "connectivity_association_key_secret_id")
4011
4009
 
@@ -4018,8 +4016,6 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
4018
4016
  def connectivity_association_name_secret_id(self) -> pulumi.Input[str]:
4019
4017
  """
4020
4018
  (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
4019
  """
4024
4020
  return pulumi.get(self, "connectivity_association_name_secret_id")
4025
4021
 
@@ -4031,7 +4027,9 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
4031
4027
  @pulumi.getter(name="connectivityAssociationKeySecretVersion")
4032
4028
  def connectivity_association_key_secret_version(self) -> Optional[pulumi.Input[str]]:
4033
4029
  """
4034
- The secret version of the `connectivityAssociationKey` secret in Vault.
4030
+ (Updatable) The secret version of the `connectivity_association_key_secret_id` secret in Vault.
4031
+
4032
+ NOTE: Only the latest secret version will be used.
4035
4033
  """
4036
4034
  return pulumi.get(self, "connectivity_association_key_secret_version")
4037
4035
 
@@ -4043,7 +4041,9 @@ class CrossConnectGroupMacsecPropertiesPrimaryKeyArgs:
4043
4041
  @pulumi.getter(name="connectivityAssociationNameSecretVersion")
4044
4042
  def connectivity_association_name_secret_version(self) -> Optional[pulumi.Input[str]]:
4045
4043
  """
4046
- The secret version of the connectivity association name secret in Vault.
4044
+ (Updatable) The secret version of the `connectivity_association_name_secret_id` secret in Vault.
4045
+
4046
+ NOTE: Only the latest secret version will be used.
4047
4047
  """
4048
4048
  return pulumi.get(self, "connectivity_association_name_secret_version")
4049
4049
 
@@ -4056,7 +4056,7 @@ if not MYPY:
4056
4056
  class CrossConnectMacsecPropertiesArgsDict(TypedDict):
4057
4057
  state: pulumi.Input[str]
4058
4058
  """
4059
- (Updatable) Indicates whether or not MACsec is enabled.
4059
+ The cross-connect's current state.
4060
4060
  """
4061
4061
  encryption_cipher: NotRequired[pulumi.Input[str]]
4062
4062
  """
@@ -4081,7 +4081,7 @@ class CrossConnectMacsecPropertiesArgs:
4081
4081
  is_unprotected_traffic_allowed: Optional[pulumi.Input[bool]] = None,
4082
4082
  primary_key: Optional[pulumi.Input['CrossConnectMacsecPropertiesPrimaryKeyArgs']] = None):
4083
4083
  """
4084
- :param pulumi.Input[str] state: (Updatable) Indicates whether or not MACsec is enabled.
4084
+ :param pulumi.Input[str] state: The cross-connect's current state.
4085
4085
  :param pulumi.Input[str] encryption_cipher: (Updatable) Type of encryption cipher suite to use for the MACsec connection.
4086
4086
  :param pulumi.Input[bool] is_unprotected_traffic_allowed: (Updatable) Indicates whether unencrypted traffic is allowed if MACsec Key Agreement protocol (MKA) fails.
4087
4087
  :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 +4098,7 @@ class CrossConnectMacsecPropertiesArgs:
4098
4098
  @pulumi.getter
4099
4099
  def state(self) -> pulumi.Input[str]:
4100
4100
  """
4101
- (Updatable) Indicates whether or not MACsec is enabled.
4101
+ The cross-connect's current state.
4102
4102
  """
4103
4103
  return pulumi.get(self, "state")
4104
4104
 
@@ -4148,14 +4148,10 @@ if not MYPY:
4148
4148
  connectivity_association_key_secret_id: pulumi.Input[str]
4149
4149
  """
4150
4150
  (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
4151
  """
4154
4152
  connectivity_association_name_secret_id: pulumi.Input[str]
4155
4153
  """
4156
- (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.
4157
-
4158
- NOTE: Only the latest secret version will be used.
4154
+ 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
4155
  """
4160
4156
  connectivity_association_key_secret_version: NotRequired[pulumi.Input[str]]
4161
4157
  """
@@ -4177,11 +4173,7 @@ class CrossConnectMacsecPropertiesPrimaryKeyArgs:
4177
4173
  connectivity_association_name_secret_version: Optional[pulumi.Input[str]] = None):
4178
4174
  """
4179
4175
  :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.
4176
+ :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
4177
  :param pulumi.Input[str] connectivity_association_key_secret_version: The secret version of the `connectivityAssociationKey` secret in Vault.
4186
4178
  :param pulumi.Input[str] connectivity_association_name_secret_version: The secret version of the connectivity association name secret in Vault.
4187
4179
  """
@@ -4197,8 +4189,6 @@ class CrossConnectMacsecPropertiesPrimaryKeyArgs:
4197
4189
  def connectivity_association_key_secret_id(self) -> pulumi.Input[str]:
4198
4190
  """
4199
4191
  (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
4192
  """
4203
4193
  return pulumi.get(self, "connectivity_association_key_secret_id")
4204
4194
 
@@ -4210,9 +4200,7 @@ class CrossConnectMacsecPropertiesPrimaryKeyArgs:
4210
4200
  @pulumi.getter(name="connectivityAssociationNameSecretId")
4211
4201
  def connectivity_association_name_secret_id(self) -> pulumi.Input[str]:
4212
4202
  """
4213
- (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.
4214
-
4215
- NOTE: Only the latest secret version will be used.
4203
+ 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
4204
  """
4217
4205
  return pulumi.get(self, "connectivity_association_name_secret_id")
4218
4206
 
@@ -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 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.
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 `connectivityAssociationKey` secret in Vault.
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 connectivity association name secret in Vault.
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: (Updatable) Indicates whether or not MACsec is enabled.
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
- (Updatable) Indicates whether or not MACsec is enabled.
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
- (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.
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
 
@@ -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 *