pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.4.0a1755922408__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 (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -16,25 +16,144 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'SecretReplicationConfig',
20
+ 'SecretReplicationConfigReplicationTarget',
19
21
  'SecretRotationConfig',
20
22
  'SecretRotationConfigTargetSystemDetails',
21
23
  'SecretSecretContent',
22
24
  'SecretSecretGenerationContext',
23
25
  'SecretSecretRule',
26
+ 'SecretSourceRegionInformation',
27
+ 'GetSecretReplicationConfigResult',
28
+ 'GetSecretReplicationConfigReplicationTargetResult',
24
29
  'GetSecretRotationConfigResult',
25
30
  'GetSecretRotationConfigTargetSystemDetailResult',
26
31
  'GetSecretSecretContentResult',
27
32
  'GetSecretSecretGenerationContextResult',
28
33
  'GetSecretSecretRuleResult',
34
+ 'GetSecretSourceRegionInformationResult',
29
35
  'GetSecretsFilterResult',
30
36
  'GetSecretsSecretResult',
37
+ 'GetSecretsSecretReplicationConfigResult',
38
+ 'GetSecretsSecretReplicationConfigReplicationTargetResult',
31
39
  'GetSecretsSecretRotationConfigResult',
32
40
  'GetSecretsSecretRotationConfigTargetSystemDetailResult',
33
41
  'GetSecretsSecretSecretContentResult',
34
42
  'GetSecretsSecretSecretGenerationContextResult',
35
43
  'GetSecretsSecretSecretRuleResult',
44
+ 'GetSecretsSecretSourceRegionInformationResult',
36
45
  ]
37
46
 
47
+ @pulumi.output_type
48
+ class SecretReplicationConfig(dict):
49
+ @staticmethod
50
+ def __key_warning(key: str):
51
+ suggest = None
52
+ if key == "replicationTargets":
53
+ suggest = "replication_targets"
54
+ elif key == "isWriteForwardEnabled":
55
+ suggest = "is_write_forward_enabled"
56
+
57
+ if suggest:
58
+ pulumi.log.warn(f"Key '{key}' not found in SecretReplicationConfig. Access the value via the '{suggest}' property getter instead.")
59
+
60
+ def __getitem__(self, key: str) -> Any:
61
+ SecretReplicationConfig.__key_warning(key)
62
+ return super().__getitem__(key)
63
+
64
+ def get(self, key: str, default = None) -> Any:
65
+ SecretReplicationConfig.__key_warning(key)
66
+ return super().get(key, default)
67
+
68
+ def __init__(__self__, *,
69
+ replication_targets: Sequence['outputs.SecretReplicationConfigReplicationTarget'],
70
+ is_write_forward_enabled: Optional[_builtins.bool] = None):
71
+ """
72
+ :param Sequence['SecretReplicationConfigReplicationTargetArgs'] replication_targets: (Updatable) List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
73
+ :param _builtins.bool is_write_forward_enabled: (Updatable) (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
74
+ """
75
+ pulumi.set(__self__, "replication_targets", replication_targets)
76
+ if is_write_forward_enabled is not None:
77
+ pulumi.set(__self__, "is_write_forward_enabled", is_write_forward_enabled)
78
+
79
+ @_builtins.property
80
+ @pulumi.getter(name="replicationTargets")
81
+ def replication_targets(self) -> Sequence['outputs.SecretReplicationConfigReplicationTarget']:
82
+ """
83
+ (Updatable) List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
84
+ """
85
+ return pulumi.get(self, "replication_targets")
86
+
87
+ @_builtins.property
88
+ @pulumi.getter(name="isWriteForwardEnabled")
89
+ def is_write_forward_enabled(self) -> Optional[_builtins.bool]:
90
+ """
91
+ (Updatable) (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
92
+ """
93
+ return pulumi.get(self, "is_write_forward_enabled")
94
+
95
+
96
+ @pulumi.output_type
97
+ class SecretReplicationConfigReplicationTarget(dict):
98
+ @staticmethod
99
+ def __key_warning(key: str):
100
+ suggest = None
101
+ if key == "targetKeyId":
102
+ suggest = "target_key_id"
103
+ elif key == "targetRegion":
104
+ suggest = "target_region"
105
+ elif key == "targetVaultId":
106
+ suggest = "target_vault_id"
107
+
108
+ if suggest:
109
+ pulumi.log.warn(f"Key '{key}' not found in SecretReplicationConfigReplicationTarget. Access the value via the '{suggest}' property getter instead.")
110
+
111
+ def __getitem__(self, key: str) -> Any:
112
+ SecretReplicationConfigReplicationTarget.__key_warning(key)
113
+ return super().__getitem__(key)
114
+
115
+ def get(self, key: str, default = None) -> Any:
116
+ SecretReplicationConfigReplicationTarget.__key_warning(key)
117
+ return super().get(key, default)
118
+
119
+ def __init__(__self__, *,
120
+ target_key_id: _builtins.str,
121
+ target_region: _builtins.str,
122
+ target_vault_id: _builtins.str):
123
+ """
124
+ :param _builtins.str target_key_id: (Updatable) The OCID of the target region KMS key.
125
+ :param _builtins.str target_region: (Updatable) The name of the target's region.
126
+ :param _builtins.str target_vault_id: (Updatable) The OCID of the target region's Vault.
127
+ """
128
+ pulumi.set(__self__, "target_key_id", target_key_id)
129
+ pulumi.set(__self__, "target_region", target_region)
130
+ pulumi.set(__self__, "target_vault_id", target_vault_id)
131
+
132
+ @_builtins.property
133
+ @pulumi.getter(name="targetKeyId")
134
+ def target_key_id(self) -> _builtins.str:
135
+ """
136
+ (Updatable) The OCID of the target region KMS key.
137
+ """
138
+ return pulumi.get(self, "target_key_id")
139
+
140
+ @_builtins.property
141
+ @pulumi.getter(name="targetRegion")
142
+ def target_region(self) -> _builtins.str:
143
+ """
144
+ (Updatable) The name of the target's region.
145
+ """
146
+ return pulumi.get(self, "target_region")
147
+
148
+ @_builtins.property
149
+ @pulumi.getter(name="targetVaultId")
150
+ def target_vault_id(self) -> _builtins.str:
151
+ """
152
+ (Updatable) The OCID of the target region's Vault.
153
+ """
154
+ return pulumi.get(self, "target_vault_id")
155
+
156
+
38
157
  @pulumi.output_type
39
158
  class SecretRotationConfig(dict):
40
159
  @staticmethod
@@ -399,6 +518,139 @@ class SecretSecretRule(dict):
399
518
  return pulumi.get(self, "time_of_absolute_expiry")
400
519
 
401
520
 
521
+ @pulumi.output_type
522
+ class SecretSourceRegionInformation(dict):
523
+ @staticmethod
524
+ def __key_warning(key: str):
525
+ suggest = None
526
+ if key == "sourceKeyId":
527
+ suggest = "source_key_id"
528
+ elif key == "sourceRegion":
529
+ suggest = "source_region"
530
+ elif key == "sourceVaultId":
531
+ suggest = "source_vault_id"
532
+
533
+ if suggest:
534
+ pulumi.log.warn(f"Key '{key}' not found in SecretSourceRegionInformation. Access the value via the '{suggest}' property getter instead.")
535
+
536
+ def __getitem__(self, key: str) -> Any:
537
+ SecretSourceRegionInformation.__key_warning(key)
538
+ return super().__getitem__(key)
539
+
540
+ def get(self, key: str, default = None) -> Any:
541
+ SecretSourceRegionInformation.__key_warning(key)
542
+ return super().get(key, default)
543
+
544
+ def __init__(__self__, *,
545
+ source_key_id: Optional[_builtins.str] = None,
546
+ source_region: Optional[_builtins.str] = None,
547
+ source_vault_id: Optional[_builtins.str] = None):
548
+ """
549
+ :param _builtins.str source_key_id: The OCID of the source region KMS key.
550
+ :param _builtins.str source_region: The name of the source's region.
551
+ :param _builtins.str source_vault_id: The OCID of the source region's Vault.
552
+ """
553
+ if source_key_id is not None:
554
+ pulumi.set(__self__, "source_key_id", source_key_id)
555
+ if source_region is not None:
556
+ pulumi.set(__self__, "source_region", source_region)
557
+ if source_vault_id is not None:
558
+ pulumi.set(__self__, "source_vault_id", source_vault_id)
559
+
560
+ @_builtins.property
561
+ @pulumi.getter(name="sourceKeyId")
562
+ def source_key_id(self) -> Optional[_builtins.str]:
563
+ """
564
+ The OCID of the source region KMS key.
565
+ """
566
+ return pulumi.get(self, "source_key_id")
567
+
568
+ @_builtins.property
569
+ @pulumi.getter(name="sourceRegion")
570
+ def source_region(self) -> Optional[_builtins.str]:
571
+ """
572
+ The name of the source's region.
573
+ """
574
+ return pulumi.get(self, "source_region")
575
+
576
+ @_builtins.property
577
+ @pulumi.getter(name="sourceVaultId")
578
+ def source_vault_id(self) -> Optional[_builtins.str]:
579
+ """
580
+ The OCID of the source region's Vault.
581
+ """
582
+ return pulumi.get(self, "source_vault_id")
583
+
584
+
585
+ @pulumi.output_type
586
+ class GetSecretReplicationConfigResult(dict):
587
+ def __init__(__self__, *,
588
+ is_write_forward_enabled: _builtins.bool,
589
+ replication_targets: Sequence['outputs.GetSecretReplicationConfigReplicationTargetResult']):
590
+ """
591
+ :param _builtins.bool is_write_forward_enabled: (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
592
+ :param Sequence['GetSecretReplicationConfigReplicationTargetArgs'] replication_targets: List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
593
+ """
594
+ pulumi.set(__self__, "is_write_forward_enabled", is_write_forward_enabled)
595
+ pulumi.set(__self__, "replication_targets", replication_targets)
596
+
597
+ @_builtins.property
598
+ @pulumi.getter(name="isWriteForwardEnabled")
599
+ def is_write_forward_enabled(self) -> _builtins.bool:
600
+ """
601
+ (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
602
+ """
603
+ return pulumi.get(self, "is_write_forward_enabled")
604
+
605
+ @_builtins.property
606
+ @pulumi.getter(name="replicationTargets")
607
+ def replication_targets(self) -> Sequence['outputs.GetSecretReplicationConfigReplicationTargetResult']:
608
+ """
609
+ List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
610
+ """
611
+ return pulumi.get(self, "replication_targets")
612
+
613
+
614
+ @pulumi.output_type
615
+ class GetSecretReplicationConfigReplicationTargetResult(dict):
616
+ def __init__(__self__, *,
617
+ target_key_id: _builtins.str,
618
+ target_region: _builtins.str,
619
+ target_vault_id: _builtins.str):
620
+ """
621
+ :param _builtins.str target_key_id: The OCID of the target region KMS key.
622
+ :param _builtins.str target_region: The name of the target's region.
623
+ :param _builtins.str target_vault_id: The OCID of the target region's Vault.
624
+ """
625
+ pulumi.set(__self__, "target_key_id", target_key_id)
626
+ pulumi.set(__self__, "target_region", target_region)
627
+ pulumi.set(__self__, "target_vault_id", target_vault_id)
628
+
629
+ @_builtins.property
630
+ @pulumi.getter(name="targetKeyId")
631
+ def target_key_id(self) -> _builtins.str:
632
+ """
633
+ The OCID of the target region KMS key.
634
+ """
635
+ return pulumi.get(self, "target_key_id")
636
+
637
+ @_builtins.property
638
+ @pulumi.getter(name="targetRegion")
639
+ def target_region(self) -> _builtins.str:
640
+ """
641
+ The name of the target's region.
642
+ """
643
+ return pulumi.get(self, "target_region")
644
+
645
+ @_builtins.property
646
+ @pulumi.getter(name="targetVaultId")
647
+ def target_vault_id(self) -> _builtins.str:
648
+ """
649
+ The OCID of the target region's Vault.
650
+ """
651
+ return pulumi.get(self, "target_vault_id")
652
+
653
+
402
654
  @pulumi.output_type
403
655
  class GetSecretRotationConfigResult(dict):
404
656
  def __init__(__self__, *,
@@ -625,6 +877,46 @@ class GetSecretSecretRuleResult(dict):
625
877
  return pulumi.get(self, "time_of_absolute_expiry")
626
878
 
627
879
 
880
+ @pulumi.output_type
881
+ class GetSecretSourceRegionInformationResult(dict):
882
+ def __init__(__self__, *,
883
+ source_key_id: _builtins.str,
884
+ source_region: _builtins.str,
885
+ source_vault_id: _builtins.str):
886
+ """
887
+ :param _builtins.str source_key_id: The OCID of the source region KMS key.
888
+ :param _builtins.str source_region: The name of the source's region.
889
+ :param _builtins.str source_vault_id: The OCID of the source region's Vault.
890
+ """
891
+ pulumi.set(__self__, "source_key_id", source_key_id)
892
+ pulumi.set(__self__, "source_region", source_region)
893
+ pulumi.set(__self__, "source_vault_id", source_vault_id)
894
+
895
+ @_builtins.property
896
+ @pulumi.getter(name="sourceKeyId")
897
+ def source_key_id(self) -> _builtins.str:
898
+ """
899
+ The OCID of the source region KMS key.
900
+ """
901
+ return pulumi.get(self, "source_key_id")
902
+
903
+ @_builtins.property
904
+ @pulumi.getter(name="sourceRegion")
905
+ def source_region(self) -> _builtins.str:
906
+ """
907
+ The name of the source's region.
908
+ """
909
+ return pulumi.get(self, "source_region")
910
+
911
+ @_builtins.property
912
+ @pulumi.getter(name="sourceVaultId")
913
+ def source_vault_id(self) -> _builtins.str:
914
+ """
915
+ The OCID of the source region's Vault.
916
+ """
917
+ return pulumi.get(self, "source_vault_id")
918
+
919
+
628
920
  @pulumi.output_type
629
921
  class GetSecretsFilterResult(dict):
630
922
  def __init__(__self__, *,
@@ -669,17 +961,20 @@ class GetSecretsSecretResult(dict):
669
961
  freeform_tags: Mapping[str, _builtins.str],
670
962
  id: _builtins.str,
671
963
  is_auto_generation_enabled: _builtins.bool,
964
+ is_replica: _builtins.bool,
672
965
  key_id: _builtins.str,
673
966
  last_rotation_time: _builtins.str,
674
967
  lifecycle_details: _builtins.str,
675
968
  metadata: Mapping[str, _builtins.str],
676
969
  next_rotation_time: _builtins.str,
970
+ replication_configs: Sequence['outputs.GetSecretsSecretReplicationConfigResult'],
677
971
  rotation_configs: Sequence['outputs.GetSecretsSecretRotationConfigResult'],
678
972
  rotation_status: _builtins.str,
679
973
  secret_contents: Sequence['outputs.GetSecretsSecretSecretContentResult'],
680
974
  secret_generation_contexts: Sequence['outputs.GetSecretsSecretSecretGenerationContextResult'],
681
975
  secret_name: _builtins.str,
682
976
  secret_rules: Sequence['outputs.GetSecretsSecretSecretRuleResult'],
977
+ source_region_informations: Sequence['outputs.GetSecretsSecretSourceRegionInformationResult'],
683
978
  state: _builtins.str,
684
979
  time_created: _builtins.str,
685
980
  time_of_current_version_expiry: _builtins.str,
@@ -693,16 +988,19 @@ class GetSecretsSecretResult(dict):
693
988
  :param Mapping[str, _builtins.str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
694
989
  :param _builtins.str id: The OCID of the secret.
695
990
  :param _builtins.bool is_auto_generation_enabled: The value of this flag determines whether or not secret content will be generated automatically.
991
+ :param _builtins.bool is_replica: A Boolean value that indicates whether the secret is a source or replica secret.
696
992
  :param _builtins.str key_id: The OCID of the master encryption key that is used to encrypt the secret. You must specify a symmetric key to encrypt the secret during import to the vault. You cannot encrypt secrets with asymmetric keys. Furthermore, the key must exist in the vault that you specify.
697
993
  :param _builtins.str last_rotation_time: A property indicating when the secret was last rotated successfully, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z`
698
994
  :param _builtins.str lifecycle_details: Additional information about the current lifecycle state of the secret.
699
995
  :param Mapping[str, _builtins.str] metadata: Additional metadata that you can use to provide context about how to use the secret or during rotation or other administrative tasks. For example, for a secret that you use to connect to a database, the additional metadata might specify the connection endpoint and the connection string. Provide additional metadata as key-value pairs.
700
996
  :param _builtins.str next_rotation_time: A property indicating when the secret is scheduled to be rotated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z`
997
+ :param Sequence['GetSecretsSecretReplicationConfigArgs'] replication_configs: Defines the configuration that enables cross-region secret replication.
701
998
  :param Sequence['GetSecretsSecretRotationConfigArgs'] rotation_configs: Defines the frequency of the rotation and the information about the target system
702
999
  :param _builtins.str rotation_status: Additional information about the status of the secret rotation
703
1000
  :param Sequence['GetSecretsSecretSecretGenerationContextArgs'] secret_generation_contexts: Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
704
1001
  :param _builtins.str secret_name: The user-friendly name of the secret. Avoid entering confidential information.
705
1002
  :param Sequence['GetSecretsSecretSecretRuleArgs'] secret_rules: A list of rules that control how the secret is used and managed.
1003
+ :param Sequence['GetSecretsSecretSourceRegionInformationArgs'] source_region_informations: Details for the source that the source secret has.
706
1004
  :param _builtins.str state: A filter that returns only resources that match the specified lifecycle state. The state value is case-insensitive.
707
1005
  :param _builtins.str time_created: A property indicating when the secret was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z`
708
1006
  :param _builtins.str time_of_current_version_expiry: An optional property indicating when the current secret version will expire, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z`
@@ -717,17 +1015,20 @@ class GetSecretsSecretResult(dict):
717
1015
  pulumi.set(__self__, "freeform_tags", freeform_tags)
718
1016
  pulumi.set(__self__, "id", id)
719
1017
  pulumi.set(__self__, "is_auto_generation_enabled", is_auto_generation_enabled)
1018
+ pulumi.set(__self__, "is_replica", is_replica)
720
1019
  pulumi.set(__self__, "key_id", key_id)
721
1020
  pulumi.set(__self__, "last_rotation_time", last_rotation_time)
722
1021
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
723
1022
  pulumi.set(__self__, "metadata", metadata)
724
1023
  pulumi.set(__self__, "next_rotation_time", next_rotation_time)
1024
+ pulumi.set(__self__, "replication_configs", replication_configs)
725
1025
  pulumi.set(__self__, "rotation_configs", rotation_configs)
726
1026
  pulumi.set(__self__, "rotation_status", rotation_status)
727
1027
  pulumi.set(__self__, "secret_contents", secret_contents)
728
1028
  pulumi.set(__self__, "secret_generation_contexts", secret_generation_contexts)
729
1029
  pulumi.set(__self__, "secret_name", secret_name)
730
1030
  pulumi.set(__self__, "secret_rules", secret_rules)
1031
+ pulumi.set(__self__, "source_region_informations", source_region_informations)
731
1032
  pulumi.set(__self__, "state", state)
732
1033
  pulumi.set(__self__, "time_created", time_created)
733
1034
  pulumi.set(__self__, "time_of_current_version_expiry", time_of_current_version_expiry)
@@ -795,6 +1096,14 @@ class GetSecretsSecretResult(dict):
795
1096
  """
796
1097
  return pulumi.get(self, "is_auto_generation_enabled")
797
1098
 
1099
+ @_builtins.property
1100
+ @pulumi.getter(name="isReplica")
1101
+ def is_replica(self) -> _builtins.bool:
1102
+ """
1103
+ A Boolean value that indicates whether the secret is a source or replica secret.
1104
+ """
1105
+ return pulumi.get(self, "is_replica")
1106
+
798
1107
  @_builtins.property
799
1108
  @pulumi.getter(name="keyId")
800
1109
  def key_id(self) -> _builtins.str:
@@ -835,6 +1144,14 @@ class GetSecretsSecretResult(dict):
835
1144
  """
836
1145
  return pulumi.get(self, "next_rotation_time")
837
1146
 
1147
+ @_builtins.property
1148
+ @pulumi.getter(name="replicationConfigs")
1149
+ def replication_configs(self) -> Sequence['outputs.GetSecretsSecretReplicationConfigResult']:
1150
+ """
1151
+ Defines the configuration that enables cross-region secret replication.
1152
+ """
1153
+ return pulumi.get(self, "replication_configs")
1154
+
838
1155
  @_builtins.property
839
1156
  @pulumi.getter(name="rotationConfigs")
840
1157
  def rotation_configs(self) -> Sequence['outputs.GetSecretsSecretRotationConfigResult']:
@@ -880,6 +1197,14 @@ class GetSecretsSecretResult(dict):
880
1197
  """
881
1198
  return pulumi.get(self, "secret_rules")
882
1199
 
1200
+ @_builtins.property
1201
+ @pulumi.getter(name="sourceRegionInformations")
1202
+ def source_region_informations(self) -> Sequence['outputs.GetSecretsSecretSourceRegionInformationResult']:
1203
+ """
1204
+ Details for the source that the source secret has.
1205
+ """
1206
+ return pulumi.get(self, "source_region_informations")
1207
+
883
1208
  @_builtins.property
884
1209
  @pulumi.getter
885
1210
  def state(self) -> _builtins.str:
@@ -921,6 +1246,75 @@ class GetSecretsSecretResult(dict):
921
1246
  return pulumi.get(self, "vault_id")
922
1247
 
923
1248
 
1249
+ @pulumi.output_type
1250
+ class GetSecretsSecretReplicationConfigResult(dict):
1251
+ def __init__(__self__, *,
1252
+ is_write_forward_enabled: _builtins.bool,
1253
+ replication_targets: Sequence['outputs.GetSecretsSecretReplicationConfigReplicationTargetResult']):
1254
+ """
1255
+ :param _builtins.bool is_write_forward_enabled: (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
1256
+ :param Sequence['GetSecretsSecretReplicationConfigReplicationTargetArgs'] replication_targets: List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
1257
+ """
1258
+ pulumi.set(__self__, "is_write_forward_enabled", is_write_forward_enabled)
1259
+ pulumi.set(__self__, "replication_targets", replication_targets)
1260
+
1261
+ @_builtins.property
1262
+ @pulumi.getter(name="isWriteForwardEnabled")
1263
+ def is_write_forward_enabled(self) -> _builtins.bool:
1264
+ """
1265
+ (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
1266
+ """
1267
+ return pulumi.get(self, "is_write_forward_enabled")
1268
+
1269
+ @_builtins.property
1270
+ @pulumi.getter(name="replicationTargets")
1271
+ def replication_targets(self) -> Sequence['outputs.GetSecretsSecretReplicationConfigReplicationTargetResult']:
1272
+ """
1273
+ List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
1274
+ """
1275
+ return pulumi.get(self, "replication_targets")
1276
+
1277
+
1278
+ @pulumi.output_type
1279
+ class GetSecretsSecretReplicationConfigReplicationTargetResult(dict):
1280
+ def __init__(__self__, *,
1281
+ target_key_id: _builtins.str,
1282
+ target_region: _builtins.str,
1283
+ target_vault_id: _builtins.str):
1284
+ """
1285
+ :param _builtins.str target_key_id: The OCID of the target region KMS key.
1286
+ :param _builtins.str target_region: The name of the target's region.
1287
+ :param _builtins.str target_vault_id: The OCID of the target region's Vault.
1288
+ """
1289
+ pulumi.set(__self__, "target_key_id", target_key_id)
1290
+ pulumi.set(__self__, "target_region", target_region)
1291
+ pulumi.set(__self__, "target_vault_id", target_vault_id)
1292
+
1293
+ @_builtins.property
1294
+ @pulumi.getter(name="targetKeyId")
1295
+ def target_key_id(self) -> _builtins.str:
1296
+ """
1297
+ The OCID of the target region KMS key.
1298
+ """
1299
+ return pulumi.get(self, "target_key_id")
1300
+
1301
+ @_builtins.property
1302
+ @pulumi.getter(name="targetRegion")
1303
+ def target_region(self) -> _builtins.str:
1304
+ """
1305
+ The name of the target's region.
1306
+ """
1307
+ return pulumi.get(self, "target_region")
1308
+
1309
+ @_builtins.property
1310
+ @pulumi.getter(name="targetVaultId")
1311
+ def target_vault_id(self) -> _builtins.str:
1312
+ """
1313
+ The OCID of the target region's Vault.
1314
+ """
1315
+ return pulumi.get(self, "target_vault_id")
1316
+
1317
+
924
1318
  @pulumi.output_type
925
1319
  class GetSecretsSecretRotationConfigResult(dict):
926
1320
  def __init__(__self__, *,
@@ -1153,3 +1547,43 @@ class GetSecretsSecretSecretRuleResult(dict):
1153
1547
  return pulumi.get(self, "time_of_absolute_expiry")
1154
1548
 
1155
1549
 
1550
+ @pulumi.output_type
1551
+ class GetSecretsSecretSourceRegionInformationResult(dict):
1552
+ def __init__(__self__, *,
1553
+ source_key_id: _builtins.str,
1554
+ source_region: _builtins.str,
1555
+ source_vault_id: _builtins.str):
1556
+ """
1557
+ :param _builtins.str source_key_id: The OCID of the source region KMS key.
1558
+ :param _builtins.str source_region: The name of the source's region.
1559
+ :param _builtins.str source_vault_id: The OCID of the source region's Vault.
1560
+ """
1561
+ pulumi.set(__self__, "source_key_id", source_key_id)
1562
+ pulumi.set(__self__, "source_region", source_region)
1563
+ pulumi.set(__self__, "source_vault_id", source_vault_id)
1564
+
1565
+ @_builtins.property
1566
+ @pulumi.getter(name="sourceKeyId")
1567
+ def source_key_id(self) -> _builtins.str:
1568
+ """
1569
+ The OCID of the source region KMS key.
1570
+ """
1571
+ return pulumi.get(self, "source_key_id")
1572
+
1573
+ @_builtins.property
1574
+ @pulumi.getter(name="sourceRegion")
1575
+ def source_region(self) -> _builtins.str:
1576
+ """
1577
+ The name of the source's region.
1578
+ """
1579
+ return pulumi.get(self, "source_region")
1580
+
1581
+ @_builtins.property
1582
+ @pulumi.getter(name="sourceVaultId")
1583
+ def source_vault_id(self) -> _builtins.str:
1584
+ """
1585
+ The OCID of the source region's Vault.
1586
+ """
1587
+ return pulumi.get(self, "source_vault_id")
1588
+
1589
+