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
@@ -27,10 +27,12 @@ class SecretArgs:
27
27
  vault_id: pulumi.Input[str],
28
28
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
29
29
  description: Optional[pulumi.Input[str]] = None,
30
+ enable_auto_generation: Optional[pulumi.Input[bool]] = None,
30
31
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
31
32
  metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
32
33
  rotation_config: Optional[pulumi.Input['SecretRotationConfigArgs']] = None,
33
34
  secret_content: Optional[pulumi.Input['SecretSecretContentArgs']] = None,
35
+ secret_generation_context: Optional[pulumi.Input['SecretSecretGenerationContextArgs']] = None,
34
36
  secret_rules: Optional[pulumi.Input[Sequence[pulumi.Input['SecretSecretRuleArgs']]]] = None):
35
37
  """
36
38
  The set of arguments for constructing a Secret resource.
@@ -44,10 +46,12 @@ class SecretArgs:
44
46
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
45
47
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
46
48
  :param pulumi.Input[str] description: (Updatable) A brief description of the secret. Avoid entering confidential information.
49
+ :param pulumi.Input[bool] enable_auto_generation: (Updatable) The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.
47
50
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
48
51
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: (Updatable) Additional metadata that you can use to provide context about how to use the secret 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.
49
52
  :param pulumi.Input['SecretRotationConfigArgs'] rotation_config: (Updatable) Defines the frequency of the rotation and the information about the target system
50
53
  :param pulumi.Input['SecretSecretContentArgs'] secret_content: (Updatable) The content of the secret and metadata to help identify it.
54
+ :param pulumi.Input['SecretSecretGenerationContextArgs'] secret_generation_context: (Updatable) Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
51
55
  :param pulumi.Input[Sequence[pulumi.Input['SecretSecretRuleArgs']]] secret_rules: (Updatable) A list of rules to control how the secret is used and managed.
52
56
  """
53
57
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -58,6 +62,8 @@ class SecretArgs:
58
62
  pulumi.set(__self__, "defined_tags", defined_tags)
59
63
  if description is not None:
60
64
  pulumi.set(__self__, "description", description)
65
+ if enable_auto_generation is not None:
66
+ pulumi.set(__self__, "enable_auto_generation", enable_auto_generation)
61
67
  if freeform_tags is not None:
62
68
  pulumi.set(__self__, "freeform_tags", freeform_tags)
63
69
  if metadata is not None:
@@ -66,6 +72,8 @@ class SecretArgs:
66
72
  pulumi.set(__self__, "rotation_config", rotation_config)
67
73
  if secret_content is not None:
68
74
  pulumi.set(__self__, "secret_content", secret_content)
75
+ if secret_generation_context is not None:
76
+ pulumi.set(__self__, "secret_generation_context", secret_generation_context)
69
77
  if secret_rules is not None:
70
78
  pulumi.set(__self__, "secret_rules", secret_rules)
71
79
 
@@ -145,6 +153,18 @@ class SecretArgs:
145
153
  def description(self, value: Optional[pulumi.Input[str]]):
146
154
  pulumi.set(self, "description", value)
147
155
 
156
+ @property
157
+ @pulumi.getter(name="enableAutoGeneration")
158
+ def enable_auto_generation(self) -> Optional[pulumi.Input[bool]]:
159
+ """
160
+ (Updatable) The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.
161
+ """
162
+ return pulumi.get(self, "enable_auto_generation")
163
+
164
+ @enable_auto_generation.setter
165
+ def enable_auto_generation(self, value: Optional[pulumi.Input[bool]]):
166
+ pulumi.set(self, "enable_auto_generation", value)
167
+
148
168
  @property
149
169
  @pulumi.getter(name="freeformTags")
150
170
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -193,6 +213,18 @@ class SecretArgs:
193
213
  def secret_content(self, value: Optional[pulumi.Input['SecretSecretContentArgs']]):
194
214
  pulumi.set(self, "secret_content", value)
195
215
 
216
+ @property
217
+ @pulumi.getter(name="secretGenerationContext")
218
+ def secret_generation_context(self) -> Optional[pulumi.Input['SecretSecretGenerationContextArgs']]:
219
+ """
220
+ (Updatable) Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
221
+ """
222
+ return pulumi.get(self, "secret_generation_context")
223
+
224
+ @secret_generation_context.setter
225
+ def secret_generation_context(self, value: Optional[pulumi.Input['SecretSecretGenerationContextArgs']]):
226
+ pulumi.set(self, "secret_generation_context", value)
227
+
196
228
  @property
197
229
  @pulumi.getter(name="secretRules")
198
230
  def secret_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecretSecretRuleArgs']]]]:
@@ -213,7 +245,9 @@ class _SecretState:
213
245
  current_version_number: Optional[pulumi.Input[str]] = None,
214
246
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
215
247
  description: Optional[pulumi.Input[str]] = None,
248
+ enable_auto_generation: Optional[pulumi.Input[bool]] = None,
216
249
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
250
+ is_auto_generation_enabled: Optional[pulumi.Input[bool]] = None,
217
251
  key_id: Optional[pulumi.Input[str]] = None,
218
252
  last_rotation_time: Optional[pulumi.Input[str]] = None,
219
253
  lifecycle_details: Optional[pulumi.Input[str]] = None,
@@ -222,6 +256,7 @@ class _SecretState:
222
256
  rotation_config: Optional[pulumi.Input['SecretRotationConfigArgs']] = None,
223
257
  rotation_status: Optional[pulumi.Input[str]] = None,
224
258
  secret_content: Optional[pulumi.Input['SecretSecretContentArgs']] = None,
259
+ secret_generation_context: Optional[pulumi.Input['SecretSecretGenerationContextArgs']] = None,
225
260
  secret_name: Optional[pulumi.Input[str]] = None,
226
261
  secret_rules: Optional[pulumi.Input[Sequence[pulumi.Input['SecretSecretRuleArgs']]]] = None,
227
262
  state: Optional[pulumi.Input[str]] = None,
@@ -235,7 +270,9 @@ class _SecretState:
235
270
  :param pulumi.Input[str] current_version_number: The version number of the secret version that's currently in use.
236
271
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
237
272
  :param pulumi.Input[str] description: (Updatable) A brief description of the secret. Avoid entering confidential information.
273
+ :param pulumi.Input[bool] enable_auto_generation: (Updatable) The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.
238
274
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
275
+ :param pulumi.Input[bool] is_auto_generation_enabled: The value of this flag determines whether or not secret content will be generated automatically.
239
276
  :param pulumi.Input[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.
240
277
  :param pulumi.Input[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`
241
278
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state of the secret.
@@ -244,6 +281,7 @@ class _SecretState:
244
281
  :param pulumi.Input['SecretRotationConfigArgs'] rotation_config: (Updatable) Defines the frequency of the rotation and the information about the target system
245
282
  :param pulumi.Input[str] rotation_status: Additional information about the status of the secret rotation
246
283
  :param pulumi.Input['SecretSecretContentArgs'] secret_content: (Updatable) The content of the secret and metadata to help identify it.
284
+ :param pulumi.Input['SecretSecretGenerationContextArgs'] secret_generation_context: (Updatable) Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
247
285
  :param pulumi.Input[str] secret_name: A user-friendly name for the secret. Secret names should be unique within a vault. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
248
286
  :param pulumi.Input[Sequence[pulumi.Input['SecretSecretRuleArgs']]] secret_rules: (Updatable) A list of rules to control how the secret is used and managed.
249
287
  :param pulumi.Input[str] state: The current lifecycle state of the secret.
@@ -264,8 +302,12 @@ class _SecretState:
264
302
  pulumi.set(__self__, "defined_tags", defined_tags)
265
303
  if description is not None:
266
304
  pulumi.set(__self__, "description", description)
305
+ if enable_auto_generation is not None:
306
+ pulumi.set(__self__, "enable_auto_generation", enable_auto_generation)
267
307
  if freeform_tags is not None:
268
308
  pulumi.set(__self__, "freeform_tags", freeform_tags)
309
+ if is_auto_generation_enabled is not None:
310
+ pulumi.set(__self__, "is_auto_generation_enabled", is_auto_generation_enabled)
269
311
  if key_id is not None:
270
312
  pulumi.set(__self__, "key_id", key_id)
271
313
  if last_rotation_time is not None:
@@ -282,6 +324,8 @@ class _SecretState:
282
324
  pulumi.set(__self__, "rotation_status", rotation_status)
283
325
  if secret_content is not None:
284
326
  pulumi.set(__self__, "secret_content", secret_content)
327
+ if secret_generation_context is not None:
328
+ pulumi.set(__self__, "secret_generation_context", secret_generation_context)
285
329
  if secret_name is not None:
286
330
  pulumi.set(__self__, "secret_name", secret_name)
287
331
  if secret_rules is not None:
@@ -345,6 +389,18 @@ class _SecretState:
345
389
  def description(self, value: Optional[pulumi.Input[str]]):
346
390
  pulumi.set(self, "description", value)
347
391
 
392
+ @property
393
+ @pulumi.getter(name="enableAutoGeneration")
394
+ def enable_auto_generation(self) -> Optional[pulumi.Input[bool]]:
395
+ """
396
+ (Updatable) The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.
397
+ """
398
+ return pulumi.get(self, "enable_auto_generation")
399
+
400
+ @enable_auto_generation.setter
401
+ def enable_auto_generation(self, value: Optional[pulumi.Input[bool]]):
402
+ pulumi.set(self, "enable_auto_generation", value)
403
+
348
404
  @property
349
405
  @pulumi.getter(name="freeformTags")
350
406
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -357,6 +413,18 @@ class _SecretState:
357
413
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
358
414
  pulumi.set(self, "freeform_tags", value)
359
415
 
416
+ @property
417
+ @pulumi.getter(name="isAutoGenerationEnabled")
418
+ def is_auto_generation_enabled(self) -> Optional[pulumi.Input[bool]]:
419
+ """
420
+ The value of this flag determines whether or not secret content will be generated automatically.
421
+ """
422
+ return pulumi.get(self, "is_auto_generation_enabled")
423
+
424
+ @is_auto_generation_enabled.setter
425
+ def is_auto_generation_enabled(self, value: Optional[pulumi.Input[bool]]):
426
+ pulumi.set(self, "is_auto_generation_enabled", value)
427
+
360
428
  @property
361
429
  @pulumi.getter(name="keyId")
362
430
  def key_id(self) -> Optional[pulumi.Input[str]]:
@@ -453,6 +521,18 @@ class _SecretState:
453
521
  def secret_content(self, value: Optional[pulumi.Input['SecretSecretContentArgs']]):
454
522
  pulumi.set(self, "secret_content", value)
455
523
 
524
+ @property
525
+ @pulumi.getter(name="secretGenerationContext")
526
+ def secret_generation_context(self) -> Optional[pulumi.Input['SecretSecretGenerationContextArgs']]:
527
+ """
528
+ (Updatable) Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
529
+ """
530
+ return pulumi.get(self, "secret_generation_context")
531
+
532
+ @secret_generation_context.setter
533
+ def secret_generation_context(self, value: Optional[pulumi.Input['SecretSecretGenerationContextArgs']]):
534
+ pulumi.set(self, "secret_generation_context", value)
535
+
456
536
  @property
457
537
  @pulumi.getter(name="secretName")
458
538
  def secret_name(self) -> Optional[pulumi.Input[str]]:
@@ -550,11 +630,13 @@ class Secret(pulumi.CustomResource):
550
630
  compartment_id: Optional[pulumi.Input[str]] = None,
551
631
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
552
632
  description: Optional[pulumi.Input[str]] = None,
633
+ enable_auto_generation: Optional[pulumi.Input[bool]] = None,
553
634
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
554
635
  key_id: Optional[pulumi.Input[str]] = None,
555
636
  metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
556
637
  rotation_config: Optional[pulumi.Input[Union['SecretRotationConfigArgs', 'SecretRotationConfigArgsDict']]] = None,
557
638
  secret_content: Optional[pulumi.Input[Union['SecretSecretContentArgs', 'SecretSecretContentArgsDict']]] = None,
639
+ secret_generation_context: Optional[pulumi.Input[Union['SecretSecretGenerationContextArgs', 'SecretSecretGenerationContextArgsDict']]] = None,
558
640
  secret_name: Optional[pulumi.Input[str]] = None,
559
641
  secret_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretSecretRuleArgs', 'SecretSecretRuleArgsDict']]]]] = None,
560
642
  vault_id: Optional[pulumi.Input[str]] = None,
@@ -577,11 +659,13 @@ class Secret(pulumi.CustomResource):
577
659
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment where you want to create the secret.
578
660
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
579
661
  :param pulumi.Input[str] description: (Updatable) A brief description of the secret. Avoid entering confidential information.
662
+ :param pulumi.Input[bool] enable_auto_generation: (Updatable) The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.
580
663
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
581
664
  :param pulumi.Input[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.
582
665
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: (Updatable) Additional metadata that you can use to provide context about how to use the secret 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.
583
666
  :param pulumi.Input[Union['SecretRotationConfigArgs', 'SecretRotationConfigArgsDict']] rotation_config: (Updatable) Defines the frequency of the rotation and the information about the target system
584
667
  :param pulumi.Input[Union['SecretSecretContentArgs', 'SecretSecretContentArgsDict']] secret_content: (Updatable) The content of the secret and metadata to help identify it.
668
+ :param pulumi.Input[Union['SecretSecretGenerationContextArgs', 'SecretSecretGenerationContextArgsDict']] secret_generation_context: (Updatable) Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
585
669
  :param pulumi.Input[str] secret_name: A user-friendly name for the secret. Secret names should be unique within a vault. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
586
670
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretSecretRuleArgs', 'SecretSecretRuleArgsDict']]]] secret_rules: (Updatable) A list of rules to control how the secret is used and managed.
587
671
  :param pulumi.Input[str] vault_id: The OCID of the vault where you want to create the secret.
@@ -627,11 +711,13 @@ class Secret(pulumi.CustomResource):
627
711
  compartment_id: Optional[pulumi.Input[str]] = None,
628
712
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
629
713
  description: Optional[pulumi.Input[str]] = None,
714
+ enable_auto_generation: Optional[pulumi.Input[bool]] = None,
630
715
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
631
716
  key_id: Optional[pulumi.Input[str]] = None,
632
717
  metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
633
718
  rotation_config: Optional[pulumi.Input[Union['SecretRotationConfigArgs', 'SecretRotationConfigArgsDict']]] = None,
634
719
  secret_content: Optional[pulumi.Input[Union['SecretSecretContentArgs', 'SecretSecretContentArgsDict']]] = None,
720
+ secret_generation_context: Optional[pulumi.Input[Union['SecretSecretGenerationContextArgs', 'SecretSecretGenerationContextArgsDict']]] = None,
635
721
  secret_name: Optional[pulumi.Input[str]] = None,
636
722
  secret_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretSecretRuleArgs', 'SecretSecretRuleArgsDict']]]]] = None,
637
723
  vault_id: Optional[pulumi.Input[str]] = None,
@@ -649,6 +735,7 @@ class Secret(pulumi.CustomResource):
649
735
  __props__.__dict__["compartment_id"] = compartment_id
650
736
  __props__.__dict__["defined_tags"] = defined_tags
651
737
  __props__.__dict__["description"] = description
738
+ __props__.__dict__["enable_auto_generation"] = enable_auto_generation
652
739
  __props__.__dict__["freeform_tags"] = freeform_tags
653
740
  if key_id is None and not opts.urn:
654
741
  raise TypeError("Missing required property 'key_id'")
@@ -656,6 +743,7 @@ class Secret(pulumi.CustomResource):
656
743
  __props__.__dict__["metadata"] = metadata
657
744
  __props__.__dict__["rotation_config"] = rotation_config
658
745
  __props__.__dict__["secret_content"] = secret_content
746
+ __props__.__dict__["secret_generation_context"] = secret_generation_context
659
747
  if secret_name is None and not opts.urn:
660
748
  raise TypeError("Missing required property 'secret_name'")
661
749
  __props__.__dict__["secret_name"] = secret_name
@@ -664,6 +752,7 @@ class Secret(pulumi.CustomResource):
664
752
  raise TypeError("Missing required property 'vault_id'")
665
753
  __props__.__dict__["vault_id"] = vault_id
666
754
  __props__.__dict__["current_version_number"] = None
755
+ __props__.__dict__["is_auto_generation_enabled"] = None
667
756
  __props__.__dict__["last_rotation_time"] = None
668
757
  __props__.__dict__["lifecycle_details"] = None
669
758
  __props__.__dict__["next_rotation_time"] = None
@@ -686,7 +775,9 @@ class Secret(pulumi.CustomResource):
686
775
  current_version_number: Optional[pulumi.Input[str]] = None,
687
776
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
688
777
  description: Optional[pulumi.Input[str]] = None,
778
+ enable_auto_generation: Optional[pulumi.Input[bool]] = None,
689
779
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
780
+ is_auto_generation_enabled: Optional[pulumi.Input[bool]] = None,
690
781
  key_id: Optional[pulumi.Input[str]] = None,
691
782
  last_rotation_time: Optional[pulumi.Input[str]] = None,
692
783
  lifecycle_details: Optional[pulumi.Input[str]] = None,
@@ -695,6 +786,7 @@ class Secret(pulumi.CustomResource):
695
786
  rotation_config: Optional[pulumi.Input[Union['SecretRotationConfigArgs', 'SecretRotationConfigArgsDict']]] = None,
696
787
  rotation_status: Optional[pulumi.Input[str]] = None,
697
788
  secret_content: Optional[pulumi.Input[Union['SecretSecretContentArgs', 'SecretSecretContentArgsDict']]] = None,
789
+ secret_generation_context: Optional[pulumi.Input[Union['SecretSecretGenerationContextArgs', 'SecretSecretGenerationContextArgsDict']]] = None,
698
790
  secret_name: Optional[pulumi.Input[str]] = None,
699
791
  secret_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretSecretRuleArgs', 'SecretSecretRuleArgsDict']]]]] = None,
700
792
  state: Optional[pulumi.Input[str]] = None,
@@ -713,7 +805,9 @@ class Secret(pulumi.CustomResource):
713
805
  :param pulumi.Input[str] current_version_number: The version number of the secret version that's currently in use.
714
806
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
715
807
  :param pulumi.Input[str] description: (Updatable) A brief description of the secret. Avoid entering confidential information.
808
+ :param pulumi.Input[bool] enable_auto_generation: (Updatable) The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.
716
809
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
810
+ :param pulumi.Input[bool] is_auto_generation_enabled: The value of this flag determines whether or not secret content will be generated automatically.
717
811
  :param pulumi.Input[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.
718
812
  :param pulumi.Input[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`
719
813
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state of the secret.
@@ -722,6 +816,7 @@ class Secret(pulumi.CustomResource):
722
816
  :param pulumi.Input[Union['SecretRotationConfigArgs', 'SecretRotationConfigArgsDict']] rotation_config: (Updatable) Defines the frequency of the rotation and the information about the target system
723
817
  :param pulumi.Input[str] rotation_status: Additional information about the status of the secret rotation
724
818
  :param pulumi.Input[Union['SecretSecretContentArgs', 'SecretSecretContentArgsDict']] secret_content: (Updatable) The content of the secret and metadata to help identify it.
819
+ :param pulumi.Input[Union['SecretSecretGenerationContextArgs', 'SecretSecretGenerationContextArgsDict']] secret_generation_context: (Updatable) Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
725
820
  :param pulumi.Input[str] secret_name: A user-friendly name for the secret. Secret names should be unique within a vault. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
726
821
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretSecretRuleArgs', 'SecretSecretRuleArgsDict']]]] secret_rules: (Updatable) A list of rules to control how the secret is used and managed.
727
822
  :param pulumi.Input[str] state: The current lifecycle state of the secret.
@@ -742,7 +837,9 @@ class Secret(pulumi.CustomResource):
742
837
  __props__.__dict__["current_version_number"] = current_version_number
743
838
  __props__.__dict__["defined_tags"] = defined_tags
744
839
  __props__.__dict__["description"] = description
840
+ __props__.__dict__["enable_auto_generation"] = enable_auto_generation
745
841
  __props__.__dict__["freeform_tags"] = freeform_tags
842
+ __props__.__dict__["is_auto_generation_enabled"] = is_auto_generation_enabled
746
843
  __props__.__dict__["key_id"] = key_id
747
844
  __props__.__dict__["last_rotation_time"] = last_rotation_time
748
845
  __props__.__dict__["lifecycle_details"] = lifecycle_details
@@ -751,6 +848,7 @@ class Secret(pulumi.CustomResource):
751
848
  __props__.__dict__["rotation_config"] = rotation_config
752
849
  __props__.__dict__["rotation_status"] = rotation_status
753
850
  __props__.__dict__["secret_content"] = secret_content
851
+ __props__.__dict__["secret_generation_context"] = secret_generation_context
754
852
  __props__.__dict__["secret_name"] = secret_name
755
853
  __props__.__dict__["secret_rules"] = secret_rules
756
854
  __props__.__dict__["state"] = state
@@ -792,6 +890,14 @@ class Secret(pulumi.CustomResource):
792
890
  """
793
891
  return pulumi.get(self, "description")
794
892
 
893
+ @property
894
+ @pulumi.getter(name="enableAutoGeneration")
895
+ def enable_auto_generation(self) -> pulumi.Output[Optional[bool]]:
896
+ """
897
+ (Updatable) The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.
898
+ """
899
+ return pulumi.get(self, "enable_auto_generation")
900
+
795
901
  @property
796
902
  @pulumi.getter(name="freeformTags")
797
903
  def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
@@ -800,6 +906,14 @@ class Secret(pulumi.CustomResource):
800
906
  """
801
907
  return pulumi.get(self, "freeform_tags")
802
908
 
909
+ @property
910
+ @pulumi.getter(name="isAutoGenerationEnabled")
911
+ def is_auto_generation_enabled(self) -> pulumi.Output[bool]:
912
+ """
913
+ The value of this flag determines whether or not secret content will be generated automatically.
914
+ """
915
+ return pulumi.get(self, "is_auto_generation_enabled")
916
+
803
917
  @property
804
918
  @pulumi.getter(name="keyId")
805
919
  def key_id(self) -> pulumi.Output[str]:
@@ -864,6 +978,14 @@ class Secret(pulumi.CustomResource):
864
978
  """
865
979
  return pulumi.get(self, "secret_content")
866
980
 
981
+ @property
982
+ @pulumi.getter(name="secretGenerationContext")
983
+ def secret_generation_context(self) -> pulumi.Output['outputs.SecretSecretGenerationContext']:
984
+ """
985
+ (Updatable) Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
986
+ """
987
+ return pulumi.get(self, "secret_generation_context")
988
+
867
989
  @property
868
990
  @pulumi.getter(name="secretName")
869
991
  def secret_name(self) -> pulumi.Output[str]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pulumi_oci
3
- Version: 2.25.0a1740032973
3
+ Version: 2.26.0
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com