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
pulumi_oci/jms/outputs.py CHANGED
@@ -67,6 +67,14 @@ __all__ = [
67
67
  'GetFleetDrsFilesDrsFileCollectionResult',
68
68
  'GetFleetDrsFilesDrsFileCollectionItemResult',
69
69
  'GetFleetDrsFilesFilterResult',
70
+ 'GetFleetErrorAnalyticsFilterResult',
71
+ 'GetFleetErrorAnalyticsFleetErrorAggregationCollectionResult',
72
+ 'GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemResult',
73
+ 'GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemFleetErrorAggregationResult',
74
+ 'GetFleetErrorsFilterResult',
75
+ 'GetFleetErrorsFleetErrorCollectionResult',
76
+ 'GetFleetErrorsFleetErrorCollectionItemResult',
77
+ 'GetFleetErrorsFleetErrorCollectionItemErrorResult',
70
78
  'GetFleetInventoryLogResult',
71
79
  'GetFleetJavaMigrationAnalysisResultsFilterResult',
72
80
  'GetFleetJavaMigrationAnalysisResultsJavaMigrationAnalysisResultCollectionResult',
@@ -139,6 +147,14 @@ __all__ = [
139
147
  'GetJmsPluginsJmsPluginCollectionItemResult',
140
148
  'GetListJreUsageItemResult',
141
149
  'GetListJreUsageItemOperatingSystemResult',
150
+ 'GetPluginErrorAnalyticsFilterResult',
151
+ 'GetPluginErrorAnalyticsPluginErrorAggregationCollectionResult',
152
+ 'GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemResult',
153
+ 'GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemPluginErrorAggregationResult',
154
+ 'GetPluginErrorsFilterResult',
155
+ 'GetPluginErrorsPluginErrorCollectionResult',
156
+ 'GetPluginErrorsPluginErrorCollectionItemResult',
157
+ 'GetPluginErrorsPluginErrorCollectionItemErrorResult',
142
158
  ]
143
159
 
144
160
  @pulumi.output_type
@@ -2646,6 +2662,267 @@ class GetFleetDrsFilesFilterResult(dict):
2646
2662
  return pulumi.get(self, "regex")
2647
2663
 
2648
2664
 
2665
+ @pulumi.output_type
2666
+ class GetFleetErrorAnalyticsFilterResult(dict):
2667
+ def __init__(__self__, *,
2668
+ name: str,
2669
+ values: Sequence[str],
2670
+ regex: Optional[bool] = None):
2671
+ pulumi.set(__self__, "name", name)
2672
+ pulumi.set(__self__, "values", values)
2673
+ if regex is not None:
2674
+ pulumi.set(__self__, "regex", regex)
2675
+
2676
+ @property
2677
+ @pulumi.getter
2678
+ def name(self) -> str:
2679
+ return pulumi.get(self, "name")
2680
+
2681
+ @property
2682
+ @pulumi.getter
2683
+ def values(self) -> Sequence[str]:
2684
+ return pulumi.get(self, "values")
2685
+
2686
+ @property
2687
+ @pulumi.getter
2688
+ def regex(self) -> Optional[bool]:
2689
+ return pulumi.get(self, "regex")
2690
+
2691
+
2692
+ @pulumi.output_type
2693
+ class GetFleetErrorAnalyticsFleetErrorAggregationCollectionResult(dict):
2694
+ def __init__(__self__, *,
2695
+ items: Sequence['outputs.GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemResult']):
2696
+ """
2697
+ :param Sequence['GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemArgs'] items: A list of FleetErrorAggregationSummary.
2698
+ """
2699
+ pulumi.set(__self__, "items", items)
2700
+
2701
+ @property
2702
+ @pulumi.getter
2703
+ def items(self) -> Sequence['outputs.GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemResult']:
2704
+ """
2705
+ A list of FleetErrorAggregationSummary.
2706
+ """
2707
+ return pulumi.get(self, "items")
2708
+
2709
+
2710
+ @pulumi.output_type
2711
+ class GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemResult(dict):
2712
+ def __init__(__self__, *,
2713
+ fleet_error_aggregations: Sequence['outputs.GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemFleetErrorAggregationResult'],
2714
+ healthy_fleet_count: int):
2715
+ """
2716
+ :param Sequence['GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemFleetErrorAggregationArgs'] fleet_error_aggregations: List of fleet error aggregations.
2717
+ :param int healthy_fleet_count: Count of fleets with no problems.
2718
+ """
2719
+ pulumi.set(__self__, "fleet_error_aggregations", fleet_error_aggregations)
2720
+ pulumi.set(__self__, "healthy_fleet_count", healthy_fleet_count)
2721
+
2722
+ @property
2723
+ @pulumi.getter(name="fleetErrorAggregations")
2724
+ def fleet_error_aggregations(self) -> Sequence['outputs.GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemFleetErrorAggregationResult']:
2725
+ """
2726
+ List of fleet error aggregations.
2727
+ """
2728
+ return pulumi.get(self, "fleet_error_aggregations")
2729
+
2730
+ @property
2731
+ @pulumi.getter(name="healthyFleetCount")
2732
+ def healthy_fleet_count(self) -> int:
2733
+ """
2734
+ Count of fleets with no problems.
2735
+ """
2736
+ return pulumi.get(self, "healthy_fleet_count")
2737
+
2738
+
2739
+ @pulumi.output_type
2740
+ class GetFleetErrorAnalyticsFleetErrorAggregationCollectionItemFleetErrorAggregationResult(dict):
2741
+ def __init__(__self__, *,
2742
+ fleet_error_analytic_count: int,
2743
+ reason: str):
2744
+ """
2745
+ :param int fleet_error_analytic_count: Number of FleetErrors encountered for the specific reason.
2746
+ :param str reason: Enum that uniquely identifies the fleet error.
2747
+ """
2748
+ pulumi.set(__self__, "fleet_error_analytic_count", fleet_error_analytic_count)
2749
+ pulumi.set(__self__, "reason", reason)
2750
+
2751
+ @property
2752
+ @pulumi.getter(name="fleetErrorAnalyticCount")
2753
+ def fleet_error_analytic_count(self) -> int:
2754
+ """
2755
+ Number of FleetErrors encountered for the specific reason.
2756
+ """
2757
+ return pulumi.get(self, "fleet_error_analytic_count")
2758
+
2759
+ @property
2760
+ @pulumi.getter
2761
+ def reason(self) -> str:
2762
+ """
2763
+ Enum that uniquely identifies the fleet error.
2764
+ """
2765
+ return pulumi.get(self, "reason")
2766
+
2767
+
2768
+ @pulumi.output_type
2769
+ class GetFleetErrorsFilterResult(dict):
2770
+ def __init__(__self__, *,
2771
+ name: str,
2772
+ values: Sequence[str],
2773
+ regex: Optional[bool] = None):
2774
+ pulumi.set(__self__, "name", name)
2775
+ pulumi.set(__self__, "values", values)
2776
+ if regex is not None:
2777
+ pulumi.set(__self__, "regex", regex)
2778
+
2779
+ @property
2780
+ @pulumi.getter
2781
+ def name(self) -> str:
2782
+ return pulumi.get(self, "name")
2783
+
2784
+ @property
2785
+ @pulumi.getter
2786
+ def values(self) -> Sequence[str]:
2787
+ return pulumi.get(self, "values")
2788
+
2789
+ @property
2790
+ @pulumi.getter
2791
+ def regex(self) -> Optional[bool]:
2792
+ return pulumi.get(self, "regex")
2793
+
2794
+
2795
+ @pulumi.output_type
2796
+ class GetFleetErrorsFleetErrorCollectionResult(dict):
2797
+ def __init__(__self__, *,
2798
+ items: Sequence['outputs.GetFleetErrorsFleetErrorCollectionItemResult']):
2799
+ """
2800
+ :param Sequence['GetFleetErrorsFleetErrorCollectionItemArgs'] items: A list of FleetErrorSummary.
2801
+ """
2802
+ pulumi.set(__self__, "items", items)
2803
+
2804
+ @property
2805
+ @pulumi.getter
2806
+ def items(self) -> Sequence['outputs.GetFleetErrorsFleetErrorCollectionItemResult']:
2807
+ """
2808
+ A list of FleetErrorSummary.
2809
+ """
2810
+ return pulumi.get(self, "items")
2811
+
2812
+
2813
+ @pulumi.output_type
2814
+ class GetFleetErrorsFleetErrorCollectionItemResult(dict):
2815
+ def __init__(__self__, *,
2816
+ compartment_id: str,
2817
+ errors: Sequence['outputs.GetFleetErrorsFleetErrorCollectionItemErrorResult'],
2818
+ fleet_id: str,
2819
+ fleet_name: str,
2820
+ time_first_seen: str,
2821
+ time_last_seen: str):
2822
+ """
2823
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
2824
+ :param Sequence['GetFleetErrorsFleetErrorCollectionItemErrorArgs'] errors: List of fleet error details.
2825
+ :param str fleet_id: The ID of the Fleet.
2826
+ :param str fleet_name: The display name of the Fleet.
2827
+ :param str time_first_seen: The timestamp of the first time an error was detected.
2828
+ :param str time_last_seen: The timestamp of the last time an error was detected.
2829
+ """
2830
+ pulumi.set(__self__, "compartment_id", compartment_id)
2831
+ pulumi.set(__self__, "errors", errors)
2832
+ pulumi.set(__self__, "fleet_id", fleet_id)
2833
+ pulumi.set(__self__, "fleet_name", fleet_name)
2834
+ pulumi.set(__self__, "time_first_seen", time_first_seen)
2835
+ pulumi.set(__self__, "time_last_seen", time_last_seen)
2836
+
2837
+ @property
2838
+ @pulumi.getter(name="compartmentId")
2839
+ def compartment_id(self) -> str:
2840
+ """
2841
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
2842
+ """
2843
+ return pulumi.get(self, "compartment_id")
2844
+
2845
+ @property
2846
+ @pulumi.getter
2847
+ def errors(self) -> Sequence['outputs.GetFleetErrorsFleetErrorCollectionItemErrorResult']:
2848
+ """
2849
+ List of fleet error details.
2850
+ """
2851
+ return pulumi.get(self, "errors")
2852
+
2853
+ @property
2854
+ @pulumi.getter(name="fleetId")
2855
+ def fleet_id(self) -> str:
2856
+ """
2857
+ The ID of the Fleet.
2858
+ """
2859
+ return pulumi.get(self, "fleet_id")
2860
+
2861
+ @property
2862
+ @pulumi.getter(name="fleetName")
2863
+ def fleet_name(self) -> str:
2864
+ """
2865
+ The display name of the Fleet.
2866
+ """
2867
+ return pulumi.get(self, "fleet_name")
2868
+
2869
+ @property
2870
+ @pulumi.getter(name="timeFirstSeen")
2871
+ def time_first_seen(self) -> str:
2872
+ """
2873
+ The timestamp of the first time an error was detected.
2874
+ """
2875
+ return pulumi.get(self, "time_first_seen")
2876
+
2877
+ @property
2878
+ @pulumi.getter(name="timeLastSeen")
2879
+ def time_last_seen(self) -> str:
2880
+ """
2881
+ The timestamp of the last time an error was detected.
2882
+ """
2883
+ return pulumi.get(self, "time_last_seen")
2884
+
2885
+
2886
+ @pulumi.output_type
2887
+ class GetFleetErrorsFleetErrorCollectionItemErrorResult(dict):
2888
+ def __init__(__self__, *,
2889
+ details: str,
2890
+ reason: str,
2891
+ time_last_seen: str):
2892
+ """
2893
+ :param str details: Optional string containing additional details.
2894
+ :param str reason: The fleet error reason.
2895
+ :param str time_last_seen: The timestamp of the last time an error was detected.
2896
+ """
2897
+ pulumi.set(__self__, "details", details)
2898
+ pulumi.set(__self__, "reason", reason)
2899
+ pulumi.set(__self__, "time_last_seen", time_last_seen)
2900
+
2901
+ @property
2902
+ @pulumi.getter
2903
+ def details(self) -> str:
2904
+ """
2905
+ Optional string containing additional details.
2906
+ """
2907
+ return pulumi.get(self, "details")
2908
+
2909
+ @property
2910
+ @pulumi.getter
2911
+ def reason(self) -> str:
2912
+ """
2913
+ The fleet error reason.
2914
+ """
2915
+ return pulumi.get(self, "reason")
2916
+
2917
+ @property
2918
+ @pulumi.getter(name="timeLastSeen")
2919
+ def time_last_seen(self) -> str:
2920
+ """
2921
+ The timestamp of the last time an error was detected.
2922
+ """
2923
+ return pulumi.get(self, "time_last_seen")
2924
+
2925
+
2649
2926
  @pulumi.output_type
2650
2927
  class GetFleetInventoryLogResult(dict):
2651
2928
  def __init__(__self__, *,
@@ -3000,7 +3277,7 @@ class GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCol
3000
3277
  :param str application_id: The Fleet-unique identifier of the related application.
3001
3278
  :param str application_installation_id: The internal identifier of the application installation for which the report has been generated.
3002
3279
  :param str application_installation_path: The installation path of the application for which the report has been generated.
3003
- :param str application_name: The name of the application for which the report has been generated.
3280
+ :param str application_name: The name of the application.
3004
3281
  :param str bucket: The Object Storage bucket name of this analysis result.
3005
3282
  :param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
3006
3283
  :param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
@@ -3061,7 +3338,7 @@ class GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCol
3061
3338
  @pulumi.getter(name="applicationName")
3062
3339
  def application_name(self) -> str:
3063
3340
  """
3064
- The name of the application for which the report has been generated.
3341
+ The name of the application.
3065
3342
  """
3066
3343
  return pulumi.get(self, "application_name")
3067
3344
 
@@ -3954,7 +4231,7 @@ class GetInstallationSitesInstallationSiteCollectionItemItemJreResult(dict):
3954
4231
  vendor: str,
3955
4232
  version: str):
3956
4233
  """
3957
- :param str distribution: The distribution of a Java Runtime is the name of the lineage of product to which it belongs, for example _Java(TM) SE Runtime Environment_.
4234
+ :param str distribution: The name of the Operating System distribution, such as Oracle Linux 9, Windows 10, or macOS X.
3958
4235
  :param str jre_key: The unique identifier for a Java Runtime.
3959
4236
  :param str vendor: The vendor of the Java Runtime.
3960
4237
  :param str version: The version of the operating system as provided by the Java system property os.version.
@@ -3968,7 +4245,7 @@ class GetInstallationSitesInstallationSiteCollectionItemItemJreResult(dict):
3968
4245
  @pulumi.getter
3969
4246
  def distribution(self) -> str:
3970
4247
  """
3971
- The distribution of a Java Runtime is the name of the lineage of product to which it belongs, for example _Java(TM) SE Runtime Environment_.
4248
+ The name of the Operating System distribution, such as Oracle Linux 9, Windows 10, or macOS X.
3972
4249
  """
3973
4250
  return pulumi.get(self, "distribution")
3974
4251
 
@@ -4001,18 +4278,21 @@ class GetInstallationSitesInstallationSiteCollectionItemItemJreResult(dict):
4001
4278
  class GetInstallationSitesInstallationSiteCollectionItemItemOperatingSystemResult(dict):
4002
4279
  def __init__(__self__, *,
4003
4280
  architecture: str,
4281
+ distribution: str,
4004
4282
  family: str,
4005
4283
  managed_instance_count: int,
4006
4284
  name: str,
4007
4285
  version: str):
4008
4286
  """
4009
4287
  :param str architecture: The architecture of the operating system as provided by the Java system property os.arch.
4288
+ :param str distribution: The name of the Operating System distribution, such as Oracle Linux 9, Windows 10, or macOS X.
4010
4289
  :param str family: The operating system type, such as Windows, Linux or macOS
4011
4290
  :param int managed_instance_count: Number of instances running the operating system.
4012
4291
  :param str name: The name of the operating system as provided by the Java system property os.name.
4013
4292
  :param str version: The version of the operating system as provided by the Java system property os.version.
4014
4293
  """
4015
4294
  pulumi.set(__self__, "architecture", architecture)
4295
+ pulumi.set(__self__, "distribution", distribution)
4016
4296
  pulumi.set(__self__, "family", family)
4017
4297
  pulumi.set(__self__, "managed_instance_count", managed_instance_count)
4018
4298
  pulumi.set(__self__, "name", name)
@@ -4026,6 +4306,14 @@ class GetInstallationSitesInstallationSiteCollectionItemItemOperatingSystemResul
4026
4306
  """
4027
4307
  return pulumi.get(self, "architecture")
4028
4308
 
4309
+ @property
4310
+ @pulumi.getter
4311
+ def distribution(self) -> str:
4312
+ """
4313
+ The name of the Operating System distribution, such as Oracle Linux 9, Windows 10, or macOS X.
4314
+ """
4315
+ return pulumi.get(self, "distribution")
4316
+
4029
4317
  @property
4030
4318
  @pulumi.getter
4031
4319
  def family(self) -> str:
@@ -7014,7 +7302,7 @@ class GetJmsPluginsJmsPluginCollectionItemResult(dict):
7014
7302
  time_registered: str):
7015
7303
  """
7016
7304
  :param str agent_id: The ManagementAgent (OMA) or Instance (OCA) [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that identifies the Agent.
7017
- :param str agent_type: The agent type.
7305
+ :param str agent_type: Filter JmsPlugin with agent type.
7018
7306
  :param str availability_status: Filter JmsPlugin with its availability status.
7019
7307
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
7020
7308
  :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"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
@@ -7061,7 +7349,7 @@ class GetJmsPluginsJmsPluginCollectionItemResult(dict):
7061
7349
  @pulumi.getter(name="agentType")
7062
7350
  def agent_type(self) -> str:
7063
7351
  """
7064
- The agent type.
7352
+ Filter JmsPlugin with agent type.
7065
7353
  """
7066
7354
  return pulumi.get(self, "agent_type")
7067
7355
 
@@ -7464,3 +7752,275 @@ class GetListJreUsageItemOperatingSystemResult(dict):
7464
7752
  return pulumi.get(self, "version")
7465
7753
 
7466
7754
 
7755
+ @pulumi.output_type
7756
+ class GetPluginErrorAnalyticsFilterResult(dict):
7757
+ def __init__(__self__, *,
7758
+ name: str,
7759
+ values: Sequence[str],
7760
+ regex: Optional[bool] = None):
7761
+ pulumi.set(__self__, "name", name)
7762
+ pulumi.set(__self__, "values", values)
7763
+ if regex is not None:
7764
+ pulumi.set(__self__, "regex", regex)
7765
+
7766
+ @property
7767
+ @pulumi.getter
7768
+ def name(self) -> str:
7769
+ return pulumi.get(self, "name")
7770
+
7771
+ @property
7772
+ @pulumi.getter
7773
+ def values(self) -> Sequence[str]:
7774
+ return pulumi.get(self, "values")
7775
+
7776
+ @property
7777
+ @pulumi.getter
7778
+ def regex(self) -> Optional[bool]:
7779
+ return pulumi.get(self, "regex")
7780
+
7781
+
7782
+ @pulumi.output_type
7783
+ class GetPluginErrorAnalyticsPluginErrorAggregationCollectionResult(dict):
7784
+ def __init__(__self__, *,
7785
+ items: Sequence['outputs.GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemResult']):
7786
+ """
7787
+ :param Sequence['GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemArgs'] items: A list of PluginErrorAggregationSummary.
7788
+ """
7789
+ pulumi.set(__self__, "items", items)
7790
+
7791
+ @property
7792
+ @pulumi.getter
7793
+ def items(self) -> Sequence['outputs.GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemResult']:
7794
+ """
7795
+ A list of PluginErrorAggregationSummary.
7796
+ """
7797
+ return pulumi.get(self, "items")
7798
+
7799
+
7800
+ @pulumi.output_type
7801
+ class GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemResult(dict):
7802
+ def __init__(__self__, *,
7803
+ healthy_plugin_count: int,
7804
+ plugin_error_aggregations: Sequence['outputs.GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemPluginErrorAggregationResult']):
7805
+ """
7806
+ :param int healthy_plugin_count: Count of plugins with no problems.
7807
+ :param Sequence['GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemPluginErrorAggregationArgs'] plugin_error_aggregations: List of plugin aggregation errors.
7808
+ """
7809
+ pulumi.set(__self__, "healthy_plugin_count", healthy_plugin_count)
7810
+ pulumi.set(__self__, "plugin_error_aggregations", plugin_error_aggregations)
7811
+
7812
+ @property
7813
+ @pulumi.getter(name="healthyPluginCount")
7814
+ def healthy_plugin_count(self) -> int:
7815
+ """
7816
+ Count of plugins with no problems.
7817
+ """
7818
+ return pulumi.get(self, "healthy_plugin_count")
7819
+
7820
+ @property
7821
+ @pulumi.getter(name="pluginErrorAggregations")
7822
+ def plugin_error_aggregations(self) -> Sequence['outputs.GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemPluginErrorAggregationResult']:
7823
+ """
7824
+ List of plugin aggregation errors.
7825
+ """
7826
+ return pulumi.get(self, "plugin_error_aggregations")
7827
+
7828
+
7829
+ @pulumi.output_type
7830
+ class GetPluginErrorAnalyticsPluginErrorAggregationCollectionItemPluginErrorAggregationResult(dict):
7831
+ def __init__(__self__, *,
7832
+ plugin_error_analytic_count: int,
7833
+ reason: str):
7834
+ """
7835
+ :param int plugin_error_analytic_count: Number of FleetErrors encountered for the specific reason.
7836
+ :param str reason: Enum that uniquely identifies the plugin error.
7837
+ """
7838
+ pulumi.set(__self__, "plugin_error_analytic_count", plugin_error_analytic_count)
7839
+ pulumi.set(__self__, "reason", reason)
7840
+
7841
+ @property
7842
+ @pulumi.getter(name="pluginErrorAnalyticCount")
7843
+ def plugin_error_analytic_count(self) -> int:
7844
+ """
7845
+ Number of FleetErrors encountered for the specific reason.
7846
+ """
7847
+ return pulumi.get(self, "plugin_error_analytic_count")
7848
+
7849
+ @property
7850
+ @pulumi.getter
7851
+ def reason(self) -> str:
7852
+ """
7853
+ Enum that uniquely identifies the plugin error.
7854
+ """
7855
+ return pulumi.get(self, "reason")
7856
+
7857
+
7858
+ @pulumi.output_type
7859
+ class GetPluginErrorsFilterResult(dict):
7860
+ def __init__(__self__, *,
7861
+ name: str,
7862
+ values: Sequence[str],
7863
+ regex: Optional[bool] = None):
7864
+ pulumi.set(__self__, "name", name)
7865
+ pulumi.set(__self__, "values", values)
7866
+ if regex is not None:
7867
+ pulumi.set(__self__, "regex", regex)
7868
+
7869
+ @property
7870
+ @pulumi.getter
7871
+ def name(self) -> str:
7872
+ return pulumi.get(self, "name")
7873
+
7874
+ @property
7875
+ @pulumi.getter
7876
+ def values(self) -> Sequence[str]:
7877
+ return pulumi.get(self, "values")
7878
+
7879
+ @property
7880
+ @pulumi.getter
7881
+ def regex(self) -> Optional[bool]:
7882
+ return pulumi.get(self, "regex")
7883
+
7884
+
7885
+ @pulumi.output_type
7886
+ class GetPluginErrorsPluginErrorCollectionResult(dict):
7887
+ def __init__(__self__, *,
7888
+ items: Sequence['outputs.GetPluginErrorsPluginErrorCollectionItemResult']):
7889
+ """
7890
+ :param Sequence['GetPluginErrorsPluginErrorCollectionItemArgs'] items: A list of PluginErrorSummary.
7891
+ """
7892
+ pulumi.set(__self__, "items", items)
7893
+
7894
+ @property
7895
+ @pulumi.getter
7896
+ def items(self) -> Sequence['outputs.GetPluginErrorsPluginErrorCollectionItemResult']:
7897
+ """
7898
+ A list of PluginErrorSummary.
7899
+ """
7900
+ return pulumi.get(self, "items")
7901
+
7902
+
7903
+ @pulumi.output_type
7904
+ class GetPluginErrorsPluginErrorCollectionItemResult(dict):
7905
+ def __init__(__self__, *,
7906
+ agent_type: str,
7907
+ compartment_id: str,
7908
+ errors: Sequence['outputs.GetPluginErrorsPluginErrorCollectionItemErrorResult'],
7909
+ host_name: str,
7910
+ managed_instance_id: str,
7911
+ time_first_seen: str,
7912
+ time_last_seen: str):
7913
+ """
7914
+ :param str agent_type: The agent type.
7915
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
7916
+ :param Sequence['GetPluginErrorsPluginErrorCollectionItemErrorArgs'] errors: List of plugin error details.
7917
+ :param str host_name: The HostName or Compute Instance name of the Managed Instance running the plugin.
7918
+ :param str managed_instance_id: The Fleet-unique identifier of the managed instance.
7919
+ :param str time_first_seen: The timestamp of the first time an error was detected.
7920
+ :param str time_last_seen: The timestamp of the last time an error was detected.
7921
+ """
7922
+ pulumi.set(__self__, "agent_type", agent_type)
7923
+ pulumi.set(__self__, "compartment_id", compartment_id)
7924
+ pulumi.set(__self__, "errors", errors)
7925
+ pulumi.set(__self__, "host_name", host_name)
7926
+ pulumi.set(__self__, "managed_instance_id", managed_instance_id)
7927
+ pulumi.set(__self__, "time_first_seen", time_first_seen)
7928
+ pulumi.set(__self__, "time_last_seen", time_last_seen)
7929
+
7930
+ @property
7931
+ @pulumi.getter(name="agentType")
7932
+ def agent_type(self) -> str:
7933
+ """
7934
+ The agent type.
7935
+ """
7936
+ return pulumi.get(self, "agent_type")
7937
+
7938
+ @property
7939
+ @pulumi.getter(name="compartmentId")
7940
+ def compartment_id(self) -> str:
7941
+ """
7942
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
7943
+ """
7944
+ return pulumi.get(self, "compartment_id")
7945
+
7946
+ @property
7947
+ @pulumi.getter
7948
+ def errors(self) -> Sequence['outputs.GetPluginErrorsPluginErrorCollectionItemErrorResult']:
7949
+ """
7950
+ List of plugin error details.
7951
+ """
7952
+ return pulumi.get(self, "errors")
7953
+
7954
+ @property
7955
+ @pulumi.getter(name="hostName")
7956
+ def host_name(self) -> str:
7957
+ """
7958
+ The HostName or Compute Instance name of the Managed Instance running the plugin.
7959
+ """
7960
+ return pulumi.get(self, "host_name")
7961
+
7962
+ @property
7963
+ @pulumi.getter(name="managedInstanceId")
7964
+ def managed_instance_id(self) -> str:
7965
+ """
7966
+ The Fleet-unique identifier of the managed instance.
7967
+ """
7968
+ return pulumi.get(self, "managed_instance_id")
7969
+
7970
+ @property
7971
+ @pulumi.getter(name="timeFirstSeen")
7972
+ def time_first_seen(self) -> str:
7973
+ """
7974
+ The timestamp of the first time an error was detected.
7975
+ """
7976
+ return pulumi.get(self, "time_first_seen")
7977
+
7978
+ @property
7979
+ @pulumi.getter(name="timeLastSeen")
7980
+ def time_last_seen(self) -> str:
7981
+ """
7982
+ The timestamp of the last time an error was detected.
7983
+ """
7984
+ return pulumi.get(self, "time_last_seen")
7985
+
7986
+
7987
+ @pulumi.output_type
7988
+ class GetPluginErrorsPluginErrorCollectionItemErrorResult(dict):
7989
+ def __init__(__self__, *,
7990
+ details: str,
7991
+ reason: str,
7992
+ time_last_seen: str):
7993
+ """
7994
+ :param str details: Optional string containing additional details.
7995
+ :param str reason: The plugin error reason.
7996
+ :param str time_last_seen: The timestamp of the last time an error was detected.
7997
+ """
7998
+ pulumi.set(__self__, "details", details)
7999
+ pulumi.set(__self__, "reason", reason)
8000
+ pulumi.set(__self__, "time_last_seen", time_last_seen)
8001
+
8002
+ @property
8003
+ @pulumi.getter
8004
+ def details(self) -> str:
8005
+ """
8006
+ Optional string containing additional details.
8007
+ """
8008
+ return pulumi.get(self, "details")
8009
+
8010
+ @property
8011
+ @pulumi.getter
8012
+ def reason(self) -> str:
8013
+ """
8014
+ The plugin error reason.
8015
+ """
8016
+ return pulumi.get(self, "reason")
8017
+
8018
+ @property
8019
+ @pulumi.getter(name="timeLastSeen")
8020
+ def time_last_seen(self) -> str:
8021
+ """
8022
+ The timestamp of the last time an error was detected.
8023
+ """
8024
+ return pulumi.get(self, "time_last_seen")
8025
+
8026
+