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
@@ -20,9 +20,15 @@ __all__ = [
20
20
  'ClusterOutboundClusterConfig',
21
21
  'ClusterOutboundClusterConfigOutboundCluster',
22
22
  'ClusterReverseConnectionEndpoint',
23
+ 'OpensearchClusterPipelineReverseConnectionEndpoint',
23
24
  'GetOpensearchClusterMaintenanceDetailResult',
24
25
  'GetOpensearchClusterOutboundClusterConfigResult',
25
26
  'GetOpensearchClusterOutboundClusterConfigOutboundClusterResult',
27
+ 'GetOpensearchClusterPipelineReverseConnectionEndpointResult',
28
+ 'GetOpensearchClusterPipelinesFilterResult',
29
+ 'GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionResult',
30
+ 'GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemResult',
31
+ 'GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointResult',
26
32
  'GetOpensearchClusterReverseConnectionEndpointResult',
27
33
  'GetOpensearchClustersFilterResult',
28
34
  'GetOpensearchClustersOpensearchClusterCollectionResult',
@@ -299,6 +305,54 @@ class ClusterReverseConnectionEndpoint(dict):
299
305
  return pulumi.get(self, "nat_ip")
300
306
 
301
307
 
308
+ @pulumi.output_type
309
+ class OpensearchClusterPipelineReverseConnectionEndpoint(dict):
310
+ @staticmethod
311
+ def __key_warning(key: str):
312
+ suggest = None
313
+ if key == "customerFqdn":
314
+ suggest = "customer_fqdn"
315
+ elif key == "customerIp":
316
+ suggest = "customer_ip"
317
+
318
+ if suggest:
319
+ pulumi.log.warn(f"Key '{key}' not found in OpensearchClusterPipelineReverseConnectionEndpoint. Access the value via the '{suggest}' property getter instead.")
320
+
321
+ def __getitem__(self, key: str) -> Any:
322
+ OpensearchClusterPipelineReverseConnectionEndpoint.__key_warning(key)
323
+ return super().__getitem__(key)
324
+
325
+ def get(self, key: str, default = None) -> Any:
326
+ OpensearchClusterPipelineReverseConnectionEndpoint.__key_warning(key)
327
+ return super().get(key, default)
328
+
329
+ def __init__(__self__, *,
330
+ customer_fqdn: str,
331
+ customer_ip: str):
332
+ """
333
+ :param str customer_fqdn: (Updatable) The fully qualified domain name of the customerIp in the customer VCN
334
+ :param str customer_ip: (Updatable) The IPv4 address in the customer VCN
335
+ """
336
+ pulumi.set(__self__, "customer_fqdn", customer_fqdn)
337
+ pulumi.set(__self__, "customer_ip", customer_ip)
338
+
339
+ @property
340
+ @pulumi.getter(name="customerFqdn")
341
+ def customer_fqdn(self) -> str:
342
+ """
343
+ (Updatable) The fully qualified domain name of the customerIp in the customer VCN
344
+ """
345
+ return pulumi.get(self, "customer_fqdn")
346
+
347
+ @property
348
+ @pulumi.getter(name="customerIp")
349
+ def customer_ip(self) -> str:
350
+ """
351
+ (Updatable) The IPv4 address in the customer VCN
352
+ """
353
+ return pulumi.get(self, "customer_ip")
354
+
355
+
302
356
  @pulumi.output_type
303
357
  class GetOpensearchClusterMaintenanceDetailResult(dict):
304
358
  def __init__(__self__, *,
@@ -441,6 +495,370 @@ class GetOpensearchClusterOutboundClusterConfigOutboundClusterResult(dict):
441
495
  return pulumi.get(self, "seed_cluster_id")
442
496
 
443
497
 
498
+ @pulumi.output_type
499
+ class GetOpensearchClusterPipelineReverseConnectionEndpointResult(dict):
500
+ def __init__(__self__, *,
501
+ customer_fqdn: str,
502
+ customer_ip: str):
503
+ """
504
+ :param str customer_fqdn: The fully qualified domain name of the customerIp in the customer VCN
505
+ :param str customer_ip: The IPv4 address in the customer VCN
506
+ """
507
+ pulumi.set(__self__, "customer_fqdn", customer_fqdn)
508
+ pulumi.set(__self__, "customer_ip", customer_ip)
509
+
510
+ @property
511
+ @pulumi.getter(name="customerFqdn")
512
+ def customer_fqdn(self) -> str:
513
+ """
514
+ The fully qualified domain name of the customerIp in the customer VCN
515
+ """
516
+ return pulumi.get(self, "customer_fqdn")
517
+
518
+ @property
519
+ @pulumi.getter(name="customerIp")
520
+ def customer_ip(self) -> str:
521
+ """
522
+ The IPv4 address in the customer VCN
523
+ """
524
+ return pulumi.get(self, "customer_ip")
525
+
526
+
527
+ @pulumi.output_type
528
+ class GetOpensearchClusterPipelinesFilterResult(dict):
529
+ def __init__(__self__, *,
530
+ name: str,
531
+ values: Sequence[str],
532
+ regex: Optional[bool] = None):
533
+ pulumi.set(__self__, "name", name)
534
+ pulumi.set(__self__, "values", values)
535
+ if regex is not None:
536
+ pulumi.set(__self__, "regex", regex)
537
+
538
+ @property
539
+ @pulumi.getter
540
+ def name(self) -> str:
541
+ return pulumi.get(self, "name")
542
+
543
+ @property
544
+ @pulumi.getter
545
+ def values(self) -> Sequence[str]:
546
+ return pulumi.get(self, "values")
547
+
548
+ @property
549
+ @pulumi.getter
550
+ def regex(self) -> Optional[bool]:
551
+ return pulumi.get(self, "regex")
552
+
553
+
554
+ @pulumi.output_type
555
+ class GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionResult(dict):
556
+ def __init__(__self__, *,
557
+ items: Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemResult']):
558
+ pulumi.set(__self__, "items", items)
559
+
560
+ @property
561
+ @pulumi.getter
562
+ def items(self) -> Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemResult']:
563
+ return pulumi.get(self, "items")
564
+
565
+
566
+ @pulumi.output_type
567
+ class GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemResult(dict):
568
+ def __init__(__self__, *,
569
+ compartment_id: str,
570
+ data_prepper_configuration_body: str,
571
+ defined_tags: Mapping[str, str],
572
+ display_name: str,
573
+ freeform_tags: Mapping[str, str],
574
+ id: str,
575
+ memory_gb: int,
576
+ node_count: int,
577
+ nsg_id: str,
578
+ ocpu_count: int,
579
+ opc_dry_run: bool,
580
+ opensearch_pipeline_fqdn: str,
581
+ opensearch_pipeline_private_ip: str,
582
+ pipeline_configuration_body: str,
583
+ pipeline_mode: str,
584
+ reverse_connection_endpoints: Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointResult'],
585
+ state: str,
586
+ subnet_compartment_id: str,
587
+ subnet_id: str,
588
+ system_tags: Mapping[str, str],
589
+ time_created: str,
590
+ time_updated: str,
591
+ vcn_compartment_id: str,
592
+ vcn_id: str):
593
+ """
594
+ :param str compartment_id: The ID of the compartment in which to list resources.
595
+ :param str data_prepper_configuration_body: The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
596
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
597
+ :param str display_name: A filter to return only resources that match the entire display name given.
598
+ :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
599
+ :param str id: unique OpensearchClusterPipeline identifier
600
+ :param int memory_gb: The amount of memory in GB, for each pipeline node.
601
+ :param int node_count: The number of nodes configured for the pipeline.
602
+ :param str nsg_id: The OCID of the NSG where the pipeline private endpoint vnic will be attached.
603
+ :param int ocpu_count: The number of OCPUs configured for each pipeline node.
604
+ :param str opensearch_pipeline_fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
605
+ :param str opensearch_pipeline_private_ip: The pipeline's private IP address.
606
+ :param str pipeline_configuration_body: The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
607
+ :param str pipeline_mode: The current state of the pipeline.
608
+ :param Sequence['GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointArgs'] reverse_connection_endpoints: The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
609
+ :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
610
+ :param str subnet_compartment_id: The OCID for the compartment where the pipeline's subnet is located.
611
+ :param str subnet_id: The OCID of the pipeline's subnet.
612
+ :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
613
+ :param str time_created: The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
614
+ :param str time_updated: The amount of time in milliseconds since the pipeline was updated.
615
+ :param str vcn_compartment_id: The OCID for the compartment where the pipeline's VCN is located.
616
+ :param str vcn_id: The OCID of the pipeline's VCN.
617
+ """
618
+ pulumi.set(__self__, "compartment_id", compartment_id)
619
+ pulumi.set(__self__, "data_prepper_configuration_body", data_prepper_configuration_body)
620
+ pulumi.set(__self__, "defined_tags", defined_tags)
621
+ pulumi.set(__self__, "display_name", display_name)
622
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
623
+ pulumi.set(__self__, "id", id)
624
+ pulumi.set(__self__, "memory_gb", memory_gb)
625
+ pulumi.set(__self__, "node_count", node_count)
626
+ pulumi.set(__self__, "nsg_id", nsg_id)
627
+ pulumi.set(__self__, "ocpu_count", ocpu_count)
628
+ pulumi.set(__self__, "opc_dry_run", opc_dry_run)
629
+ pulumi.set(__self__, "opensearch_pipeline_fqdn", opensearch_pipeline_fqdn)
630
+ pulumi.set(__self__, "opensearch_pipeline_private_ip", opensearch_pipeline_private_ip)
631
+ pulumi.set(__self__, "pipeline_configuration_body", pipeline_configuration_body)
632
+ pulumi.set(__self__, "pipeline_mode", pipeline_mode)
633
+ pulumi.set(__self__, "reverse_connection_endpoints", reverse_connection_endpoints)
634
+ pulumi.set(__self__, "state", state)
635
+ pulumi.set(__self__, "subnet_compartment_id", subnet_compartment_id)
636
+ pulumi.set(__self__, "subnet_id", subnet_id)
637
+ pulumi.set(__self__, "system_tags", system_tags)
638
+ pulumi.set(__self__, "time_created", time_created)
639
+ pulumi.set(__self__, "time_updated", time_updated)
640
+ pulumi.set(__self__, "vcn_compartment_id", vcn_compartment_id)
641
+ pulumi.set(__self__, "vcn_id", vcn_id)
642
+
643
+ @property
644
+ @pulumi.getter(name="compartmentId")
645
+ def compartment_id(self) -> str:
646
+ """
647
+ The ID of the compartment in which to list resources.
648
+ """
649
+ return pulumi.get(self, "compartment_id")
650
+
651
+ @property
652
+ @pulumi.getter(name="dataPrepperConfigurationBody")
653
+ def data_prepper_configuration_body(self) -> str:
654
+ """
655
+ The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
656
+ """
657
+ return pulumi.get(self, "data_prepper_configuration_body")
658
+
659
+ @property
660
+ @pulumi.getter(name="definedTags")
661
+ def defined_tags(self) -> Mapping[str, str]:
662
+ """
663
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
664
+ """
665
+ return pulumi.get(self, "defined_tags")
666
+
667
+ @property
668
+ @pulumi.getter(name="displayName")
669
+ def display_name(self) -> str:
670
+ """
671
+ A filter to return only resources that match the entire display name given.
672
+ """
673
+ return pulumi.get(self, "display_name")
674
+
675
+ @property
676
+ @pulumi.getter(name="freeformTags")
677
+ def freeform_tags(self) -> Mapping[str, str]:
678
+ """
679
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
680
+ """
681
+ return pulumi.get(self, "freeform_tags")
682
+
683
+ @property
684
+ @pulumi.getter
685
+ def id(self) -> str:
686
+ """
687
+ unique OpensearchClusterPipeline identifier
688
+ """
689
+ return pulumi.get(self, "id")
690
+
691
+ @property
692
+ @pulumi.getter(name="memoryGb")
693
+ def memory_gb(self) -> int:
694
+ """
695
+ The amount of memory in GB, for each pipeline node.
696
+ """
697
+ return pulumi.get(self, "memory_gb")
698
+
699
+ @property
700
+ @pulumi.getter(name="nodeCount")
701
+ def node_count(self) -> int:
702
+ """
703
+ The number of nodes configured for the pipeline.
704
+ """
705
+ return pulumi.get(self, "node_count")
706
+
707
+ @property
708
+ @pulumi.getter(name="nsgId")
709
+ def nsg_id(self) -> str:
710
+ """
711
+ The OCID of the NSG where the pipeline private endpoint vnic will be attached.
712
+ """
713
+ return pulumi.get(self, "nsg_id")
714
+
715
+ @property
716
+ @pulumi.getter(name="ocpuCount")
717
+ def ocpu_count(self) -> int:
718
+ """
719
+ The number of OCPUs configured for each pipeline node.
720
+ """
721
+ return pulumi.get(self, "ocpu_count")
722
+
723
+ @property
724
+ @pulumi.getter(name="opcDryRun")
725
+ def opc_dry_run(self) -> bool:
726
+ return pulumi.get(self, "opc_dry_run")
727
+
728
+ @property
729
+ @pulumi.getter(name="opensearchPipelineFqdn")
730
+ def opensearch_pipeline_fqdn(self) -> str:
731
+ """
732
+ The fully qualified domain name (FQDN) for the cluster's API endpoint.
733
+ """
734
+ return pulumi.get(self, "opensearch_pipeline_fqdn")
735
+
736
+ @property
737
+ @pulumi.getter(name="opensearchPipelinePrivateIp")
738
+ def opensearch_pipeline_private_ip(self) -> str:
739
+ """
740
+ The pipeline's private IP address.
741
+ """
742
+ return pulumi.get(self, "opensearch_pipeline_private_ip")
743
+
744
+ @property
745
+ @pulumi.getter(name="pipelineConfigurationBody")
746
+ def pipeline_configuration_body(self) -> str:
747
+ """
748
+ The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
749
+ """
750
+ return pulumi.get(self, "pipeline_configuration_body")
751
+
752
+ @property
753
+ @pulumi.getter(name="pipelineMode")
754
+ def pipeline_mode(self) -> str:
755
+ """
756
+ The current state of the pipeline.
757
+ """
758
+ return pulumi.get(self, "pipeline_mode")
759
+
760
+ @property
761
+ @pulumi.getter(name="reverseConnectionEndpoints")
762
+ def reverse_connection_endpoints(self) -> Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointResult']:
763
+ """
764
+ The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
765
+ """
766
+ return pulumi.get(self, "reverse_connection_endpoints")
767
+
768
+ @property
769
+ @pulumi.getter
770
+ def state(self) -> str:
771
+ """
772
+ A filter to return only resources their lifecycleState matches the given lifecycleState.
773
+ """
774
+ return pulumi.get(self, "state")
775
+
776
+ @property
777
+ @pulumi.getter(name="subnetCompartmentId")
778
+ def subnet_compartment_id(self) -> str:
779
+ """
780
+ The OCID for the compartment where the pipeline's subnet is located.
781
+ """
782
+ return pulumi.get(self, "subnet_compartment_id")
783
+
784
+ @property
785
+ @pulumi.getter(name="subnetId")
786
+ def subnet_id(self) -> str:
787
+ """
788
+ The OCID of the pipeline's subnet.
789
+ """
790
+ return pulumi.get(self, "subnet_id")
791
+
792
+ @property
793
+ @pulumi.getter(name="systemTags")
794
+ def system_tags(self) -> Mapping[str, str]:
795
+ """
796
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
797
+ """
798
+ return pulumi.get(self, "system_tags")
799
+
800
+ @property
801
+ @pulumi.getter(name="timeCreated")
802
+ def time_created(self) -> str:
803
+ """
804
+ The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
805
+ """
806
+ return pulumi.get(self, "time_created")
807
+
808
+ @property
809
+ @pulumi.getter(name="timeUpdated")
810
+ def time_updated(self) -> str:
811
+ """
812
+ The amount of time in milliseconds since the pipeline was updated.
813
+ """
814
+ return pulumi.get(self, "time_updated")
815
+
816
+ @property
817
+ @pulumi.getter(name="vcnCompartmentId")
818
+ def vcn_compartment_id(self) -> str:
819
+ """
820
+ The OCID for the compartment where the pipeline's VCN is located.
821
+ """
822
+ return pulumi.get(self, "vcn_compartment_id")
823
+
824
+ @property
825
+ @pulumi.getter(name="vcnId")
826
+ def vcn_id(self) -> str:
827
+ """
828
+ The OCID of the pipeline's VCN.
829
+ """
830
+ return pulumi.get(self, "vcn_id")
831
+
832
+
833
+ @pulumi.output_type
834
+ class GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointResult(dict):
835
+ def __init__(__self__, *,
836
+ customer_fqdn: str,
837
+ customer_ip: str):
838
+ """
839
+ :param str customer_fqdn: The fully qualified domain name of the customerIp in the customer VCN
840
+ :param str customer_ip: The IPv4 address in the customer VCN
841
+ """
842
+ pulumi.set(__self__, "customer_fqdn", customer_fqdn)
843
+ pulumi.set(__self__, "customer_ip", customer_ip)
844
+
845
+ @property
846
+ @pulumi.getter(name="customerFqdn")
847
+ def customer_fqdn(self) -> str:
848
+ """
849
+ The fully qualified domain name of the customerIp in the customer VCN
850
+ """
851
+ return pulumi.get(self, "customer_fqdn")
852
+
853
+ @property
854
+ @pulumi.getter(name="customerIp")
855
+ def customer_ip(self) -> str:
856
+ """
857
+ The IPv4 address in the customer VCN
858
+ """
859
+ return pulumi.get(self, "customer_ip")
860
+
861
+
444
862
  @pulumi.output_type
445
863
  class GetOpensearchClusterReverseConnectionEndpointResult(dict):
446
864
  def __init__(__self__, *,
@@ -556,6 +974,7 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
556
974
  time_deleted: str,
557
975
  time_updated: str,
558
976
  total_storage_gb: int,
977
+ upgrade_major_version_trigger: int,
559
978
  vcn_compartment_id: str,
560
979
  vcn_id: str):
561
980
  """
@@ -649,6 +1068,7 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
649
1068
  pulumi.set(__self__, "time_deleted", time_deleted)
650
1069
  pulumi.set(__self__, "time_updated", time_updated)
651
1070
  pulumi.set(__self__, "total_storage_gb", total_storage_gb)
1071
+ pulumi.set(__self__, "upgrade_major_version_trigger", upgrade_major_version_trigger)
652
1072
  pulumi.set(__self__, "vcn_compartment_id", vcn_compartment_id)
653
1073
  pulumi.set(__self__, "vcn_id", vcn_id)
654
1074
 
@@ -1001,6 +1421,11 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
1001
1421
  """
1002
1422
  return pulumi.get(self, "total_storage_gb")
1003
1423
 
1424
+ @property
1425
+ @pulumi.getter(name="upgradeMajorVersionTrigger")
1426
+ def upgrade_major_version_trigger(self) -> int:
1427
+ return pulumi.get(self, "upgrade_major_version_trigger")
1428
+
1004
1429
  @property
1005
1430
  @pulumi.getter(name="vcnCompartmentId")
1006
1431
  def vcn_compartment_id(self) -> str:
pulumi_oci/provider.py CHANGED
@@ -31,6 +31,7 @@ class ProviderArgs:
31
31
  region: Optional[pulumi.Input[str]] = None,
32
32
  retry_duration_seconds: Optional[pulumi.Input[int]] = None,
33
33
  tenancy_ocid: Optional[pulumi.Input[str]] = None,
34
+ test_time_maintenance_reboot_due: Optional[pulumi.Input[str]] = None,
34
35
  user_ocid: Optional[pulumi.Input[str]] = None):
35
36
  """
36
37
  The set of arguments for constructing a Provider resource.
@@ -80,6 +81,8 @@ class ProviderArgs:
80
81
  pulumi.set(__self__, "retry_duration_seconds", retry_duration_seconds)
81
82
  if tenancy_ocid is not None:
82
83
  pulumi.set(__self__, "tenancy_ocid", tenancy_ocid)
84
+ if test_time_maintenance_reboot_due is not None:
85
+ pulumi.set(__self__, "test_time_maintenance_reboot_due", test_time_maintenance_reboot_due)
83
86
  if user_ocid is not None:
84
87
  pulumi.set(__self__, "user_ocid", user_ocid)
85
88
 
@@ -232,6 +235,15 @@ class ProviderArgs:
232
235
  def tenancy_ocid(self, value: Optional[pulumi.Input[str]]):
233
236
  pulumi.set(self, "tenancy_ocid", value)
234
237
 
238
+ @property
239
+ @pulumi.getter(name="testTimeMaintenanceRebootDue")
240
+ def test_time_maintenance_reboot_due(self) -> Optional[pulumi.Input[str]]:
241
+ return pulumi.get(self, "test_time_maintenance_reboot_due")
242
+
243
+ @test_time_maintenance_reboot_due.setter
244
+ def test_time_maintenance_reboot_due(self, value: Optional[pulumi.Input[str]]):
245
+ pulumi.set(self, "test_time_maintenance_reboot_due", value)
246
+
235
247
  @property
236
248
  @pulumi.getter(name="userOcid")
237
249
  def user_ocid(self) -> Optional[pulumi.Input[str]]:
@@ -263,6 +275,7 @@ class Provider(pulumi.ProviderResource):
263
275
  region: Optional[pulumi.Input[str]] = None,
264
276
  retry_duration_seconds: Optional[pulumi.Input[int]] = None,
265
277
  tenancy_ocid: Optional[pulumi.Input[str]] = None,
278
+ test_time_maintenance_reboot_due: Optional[pulumi.Input[str]] = None,
266
279
  user_ocid: Optional[pulumi.Input[str]] = None,
267
280
  __props__=None):
268
281
  """
@@ -334,6 +347,7 @@ class Provider(pulumi.ProviderResource):
334
347
  region: Optional[pulumi.Input[str]] = None,
335
348
  retry_duration_seconds: Optional[pulumi.Input[int]] = None,
336
349
  tenancy_ocid: Optional[pulumi.Input[str]] = None,
350
+ test_time_maintenance_reboot_due: Optional[pulumi.Input[str]] = None,
337
351
  user_ocid: Optional[pulumi.Input[str]] = None,
338
352
  __props__=None):
339
353
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -356,6 +370,7 @@ class Provider(pulumi.ProviderResource):
356
370
  __props__.__dict__["region"] = region
357
371
  __props__.__dict__["retry_duration_seconds"] = pulumi.Output.from_input(retry_duration_seconds).apply(pulumi.runtime.to_json) if retry_duration_seconds is not None else None
358
372
  __props__.__dict__["tenancy_ocid"] = tenancy_ocid
373
+ __props__.__dict__["test_time_maintenance_reboot_due"] = test_time_maintenance_reboot_due
359
374
  __props__.__dict__["user_ocid"] = user_ocid
360
375
  secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["privateKey", "privateKeyPassword"])
361
376
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
@@ -434,6 +449,11 @@ class Provider(pulumi.ProviderResource):
434
449
  """
435
450
  return pulumi.get(self, "tenancy_ocid")
436
451
 
452
+ @property
453
+ @pulumi.getter(name="testTimeMaintenanceRebootDue")
454
+ def test_time_maintenance_reboot_due(self) -> pulumi.Output[Optional[str]]:
455
+ return pulumi.get(self, "test_time_maintenance_reboot_due")
456
+
437
457
  @property
438
458
  @pulumi.getter(name="userOcid")
439
459
  def user_ocid(self) -> pulumi.Output[Optional[str]]: