oci 2.118.1__py3-none-any.whl → 2.119.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 (323) hide show
  1. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  2. oci/adm/application_dependency_management_client.py +100 -47
  3. oci/adm/application_dependency_management_client_composite_operations.py +10 -5
  4. oci/adm/models/application_dependency.py +36 -3
  5. oci/adm/models/application_dependency_recommendation_summary.py +64 -2
  6. oci/adm/models/application_dependency_vulnerability_summary.py +35 -2
  7. oci/adm/models/create_vulnerability_audit_details.py +3 -3
  8. oci/adm/models/detect_configuration.py +65 -2
  9. oci/adm/models/usage_data_details.py +2 -1
  10. oci/adm/models/usage_data_via_object_storage_tuple_details.py +2 -1
  11. oci/adm/models/vulnerability.py +92 -2
  12. oci/adm/models/vulnerability_audit.py +133 -11
  13. oci/adm/models/vulnerability_audit_configuration.py +63 -0
  14. oci/adm/models/vulnerability_audit_summary.py +124 -6
  15. oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
  16. oci/ai_document/ai_service_document_client.py +22 -22
  17. oci/ai_language/ai_service_language_client.py +36 -36
  18. oci/ai_speech/ai_service_speech_client.py +9 -9
  19. oci/ai_vision/ai_service_vision_client.py +25 -25
  20. oci/analytics/analytics_client.py +23 -23
  21. oci/announcements_service/announcement_client.py +4 -4
  22. oci/announcements_service/announcement_subscription_client.py +9 -9
  23. oci/announcements_service/announcements_preferences_client.py +4 -4
  24. oci/apigateway/api_gateway_client.py +21 -21
  25. oci/apigateway/deployment_client.py +6 -6
  26. oci/apigateway/gateway_client.py +6 -6
  27. oci/apigateway/subscribers_client.py +6 -6
  28. oci/apigateway/usage_plans_client.py +6 -6
  29. oci/apigateway/work_requests_client.py +5 -5
  30. oci/apm_config/config_client.py +8 -8
  31. oci/apm_control_plane/apm_domain_client.py +14 -14
  32. oci/apm_synthetics/apm_synthetic_client.py +28 -28
  33. oci/apm_traces/query_client.py +2 -2
  34. oci/apm_traces/trace_client.py +4 -4
  35. oci/application_migration/application_migration_client.py +19 -19
  36. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  37. oci/artifacts/artifacts_client.py +32 -32
  38. oci/audit/audit_client.py +3 -3
  39. oci/auth/__init__.py +0 -4
  40. oci/autoscaling/auto_scaling_client.py +11 -11
  41. oci/bastion/bastion_client.py +15 -15
  42. oci/bds/bds_client.py +51 -51
  43. oci/blockchain/blockchain_platform_client.py +27 -27
  44. oci/budget/budget_client.py +10 -10
  45. oci/certificates/certificates_client.py +5 -5
  46. oci/certificates_management/certificates_management_client.py +32 -32
  47. oci/cims/incident_client.py +8 -8
  48. oci/cims/user_client.py +1 -1
  49. oci/cloud_bridge/common_client.py +5 -5
  50. oci/cloud_bridge/discovery_client.py +14 -14
  51. oci/cloud_bridge/inventory_client.py +16 -16
  52. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  53. oci/cloud_guard/cloud_guard_client.py +133 -133
  54. oci/cloud_migrations/migration_client.py +43 -43
  55. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  56. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  57. oci/compute_instance_agent/plugin_client.py +2 -2
  58. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  59. oci/container_engine/container_engine_client.py +44 -44
  60. oci/container_instances/container_instance_client.py +25 -20
  61. oci/core/blockstorage_client.py +60 -60
  62. oci/core/compute_client.py +99 -99
  63. oci/core/compute_management_client.py +32 -32
  64. oci/core/virtual_network_client.py +242 -242
  65. oci/dashboard_service/dashboard_client.py +6 -6
  66. oci/dashboard_service/dashboard_group_client.py +6 -6
  67. oci/data_catalog/data_catalog_client.py +147 -147
  68. oci/data_flow/data_flow_client.py +42 -42
  69. oci/data_integration/data_integration_client.py +163 -163
  70. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  71. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  72. oci/data_safe/data_safe_client.py +4081 -1170
  73. oci/data_safe/data_safe_client_composite_operations.py +257 -0
  74. oci/data_safe/models/__init__.py +60 -0
  75. oci/data_safe/models/audit_event_summary.py +109 -0
  76. oci/data_safe/models/audit_trail.py +191 -0
  77. oci/data_safe/models/audit_trail_summary.py +31 -0
  78. oci/data_safe/models/available_audit_volume_summary.py +62 -0
  79. oci/data_safe/models/calculate_audit_volume_available_details.py +34 -3
  80. oci/data_safe/models/create_peer_target_database_details.py +188 -0
  81. oci/data_safe/models/create_target_database_details.py +31 -0
  82. oci/data_safe/models/database_table_access_entry.py +837 -0
  83. oci/data_safe/models/database_table_access_entry_collection.py +72 -0
  84. oci/data_safe/models/database_table_access_entry_summary.py +835 -0
  85. oci/data_safe/models/database_view_access_entry.py +772 -0
  86. oci/data_safe/models/database_view_access_entry_collection.py +72 -0
  87. oci/data_safe/models/database_view_access_entry_summary.py +771 -0
  88. oci/data_safe/models/diffs.py +7 -3
  89. oci/data_safe/models/finding.py +347 -5
  90. oci/data_safe/models/finding_analytics_collection.py +72 -0
  91. oci/data_safe/models/finding_analytics_dimensions.py +299 -0
  92. oci/data_safe/models/finding_analytics_summary.py +148 -0
  93. oci/data_safe/models/finding_summary.py +316 -5
  94. oci/data_safe/models/findings_change_audit_log_collection.py +72 -0
  95. oci/data_safe/models/findings_change_audit_log_summary.py +458 -0
  96. oci/data_safe/models/peer_target_database.py +414 -0
  97. oci/data_safe/models/peer_target_database_collection.py +134 -0
  98. oci/data_safe/models/peer_target_database_summary.py +360 -0
  99. oci/data_safe/models/role_grant_path_collection.py +72 -0
  100. oci/data_safe/models/role_grant_path_summary.py +169 -0
  101. oci/data_safe/models/security_assessment_statistics.py +29 -2
  102. oci/data_safe/models/security_feature_analytics_collection.py +72 -0
  103. oci/data_safe/models/security_feature_analytics_dimensions.py +124 -0
  104. oci/data_safe/models/security_feature_analytics_summary.py +142 -0
  105. oci/data_safe/models/security_feature_collection.py +72 -0
  106. oci/data_safe/models/security_feature_summary.py +773 -0
  107. oci/data_safe/models/security_policy_report.py +475 -0
  108. oci/data_safe/models/security_policy_report_collection.py +72 -0
  109. oci/data_safe/models/security_policy_report_summary.py +442 -0
  110. oci/data_safe/models/target_database.py +31 -0
  111. oci/data_safe/models/update_finding_details.py +134 -0
  112. oci/data_safe/models/update_peer_target_database_details.py +157 -0
  113. oci/data_safe/models/update_report_details.py +119 -0
  114. oci/data_safe/models/user_access_analytics_collection.py +72 -0
  115. oci/data_safe/models/user_access_analytics_summary.py +103 -0
  116. oci/data_safe/models/user_summary.py +64 -2
  117. oci/data_safe/models/work_request.py +35 -3
  118. oci/data_safe/models/work_request_summary.py +35 -3
  119. oci/data_science/data_science_client.py +91 -91
  120. oci/database/database_client.py +327 -327
  121. oci/database_management/db_management_client.py +182 -182
  122. oci/database_management/diagnosability_client.py +4 -4
  123. oci/database_management/managed_my_sql_databases_client.py +6 -6
  124. oci/database_management/perfhub_client.py +1 -1
  125. oci/database_management/sql_tuning_client.py +17 -17
  126. oci/database_migration/database_migration_client.py +41 -41
  127. oci/database_tools/database_tools_client.py +23 -23
  128. oci/devops/devops_client.py +89 -89
  129. oci/disaster_recovery/disaster_recovery_client.py +29 -29
  130. oci/dns/dns_client.py +52 -52
  131. oci/dts/appliance_export_job_client.py +6 -6
  132. oci/dts/shipping_vendors_client.py +1 -1
  133. oci/dts/transfer_appliance_client.py +8 -8
  134. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  135. oci/dts/transfer_device_client.py +5 -5
  136. oci/dts/transfer_job_client.py +6 -6
  137. oci/dts/transfer_package_client.py +7 -7
  138. oci/em_warehouse/em_data_lake_client.py +13 -13
  139. oci/em_warehouse/em_warehouse_client.py +13 -13
  140. oci/email/email_client.py +25 -25
  141. oci/events/events_client.py +6 -6
  142. oci/file_storage/file_storage_client.py +50 -50
  143. oci/fleet_software_update/fleet_software_update_client.py +44 -44
  144. oci/functions/functions_invoke_client.py +1 -1
  145. oci/functions/functions_management_client.py +16 -16
  146. oci/fusion_apps/data_masking_activity_client.py +3 -3
  147. oci/fusion_apps/fusion_applications_client.py +39 -39
  148. oci/fusion_apps/fusion_environment_client.py +15 -15
  149. oci/fusion_apps/fusion_environment_family_client.py +8 -8
  150. oci/fusion_apps/refresh_activity_client.py +4 -4
  151. oci/fusion_apps/scheduled_activity_client.py +2 -2
  152. oci/fusion_apps/service_attachment_client.py +2 -2
  153. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  154. oci/golden_gate/golden_gate_client.py +61 -61
  155. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  156. oci/governance_rules_control_plane/work_request_client.py +5 -5
  157. oci/healthchecks/health_checks_client.py +17 -17
  158. oci/identity/identity_client.py +145 -145
  159. oci/identity_data_plane/dataplane_client.py +2 -2
  160. oci/identity_domains/identity_domains_client.py +558 -558
  161. oci/integration/integration_instance_client.py +15 -15
  162. oci/jms/java_management_service_client.py +66 -66
  163. oci/jms_java_downloads/java_download_client.py +25 -25
  164. oci/key_management/ekm_client.py +5 -5
  165. oci/key_management/kms_crypto_client.py +6 -6
  166. oci/key_management/kms_management_client.py +21 -21
  167. oci/key_management/kms_vault_client.py +14 -14
  168. oci/license_manager/license_manager_client.py +18 -18
  169. oci/limits/limits_client.py +4 -4
  170. oci/limits/quotas_client.py +7 -7
  171. oci/load_balancer/load_balancer_client.py +61 -61
  172. oci/lockbox/lockbox_client.py +23 -23
  173. oci/log_analytics/log_analytics_client.py +193 -193
  174. oci/logging/logging_management_client.py +30 -30
  175. oci/loggingingestion/logging_client.py +1 -1
  176. oci/loggingsearch/log_search_client.py +1 -1
  177. oci/management_agent/management_agent_client.py +23 -23
  178. oci/management_dashboard/dashx_apis_client.py +14 -14
  179. oci/marketplace/account_client.py +2 -2
  180. oci/marketplace/marketplace_client.py +30 -30
  181. oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
  182. oci/media_services/media_services_client.py +48 -48
  183. oci/media_services/media_stream_client.py +2 -2
  184. oci/monitoring/models/__init__.py +18 -0
  185. oci/monitoring/models/aggregated_datapoint.py +2 -2
  186. oci/monitoring/models/alarm.py +8 -10
  187. oci/monitoring/models/alarm_history_entry.py +4 -4
  188. oci/monitoring/models/alarm_status_summary.py +4 -4
  189. oci/monitoring/models/alarm_summary.py +43 -6
  190. oci/monitoring/models/alarm_suppression.py +506 -0
  191. oci/monitoring/models/alarm_suppression_alarm_target.py +86 -0
  192. oci/monitoring/models/alarm_suppression_collection.py +72 -0
  193. oci/monitoring/models/alarm_suppression_history_item.py +335 -0
  194. oci/monitoring/models/alarm_suppression_history_item_collection.py +72 -0
  195. oci/monitoring/models/alarm_suppression_summary.py +490 -0
  196. oci/monitoring/models/alarm_suppression_target.py +101 -0
  197. oci/monitoring/models/create_alarm_details.py +2 -4
  198. oci/monitoring/models/create_alarm_suppression_details.py +327 -0
  199. oci/monitoring/models/datapoint.py +2 -2
  200. oci/monitoring/models/list_metrics_details.py +2 -2
  201. oci/monitoring/models/metric.py +2 -2
  202. oci/monitoring/models/metric_data.py +2 -2
  203. oci/monitoring/models/metric_data_details.py +6 -6
  204. oci/monitoring/models/summarize_alarm_suppression_history_details.py +164 -0
  205. oci/monitoring/models/summarize_metrics_data_details.py +12 -6
  206. oci/monitoring/models/suppression.py +6 -5
  207. oci/monitoring/models/update_alarm_details.py +2 -4
  208. oci/monitoring/monitoring_client.py +737 -89
  209. oci/monitoring/monitoring_client_composite_operations.py +105 -0
  210. oci/mysql/channels_client.py +7 -7
  211. oci/mysql/db_backups_client.py +6 -6
  212. oci/mysql/db_system_client.py +17 -17
  213. oci/mysql/mysqlaas_client.py +7 -7
  214. oci/mysql/replicas_client.py +5 -5
  215. oci/mysql/work_requests_client.py +4 -4
  216. oci/network_firewall/network_firewall_client.py +80 -80
  217. oci/network_load_balancer/network_load_balancer_client.py +34 -34
  218. oci/nosql/nosql_client.py +24 -24
  219. oci/object_storage/object_storage_client.py +50 -50
  220. oci/oce/oce_instance_client.py +10 -10
  221. oci/oci_control_center/occ_metrics_client.py +3 -3
  222. oci/ocvp/cluster_client.py +5 -5
  223. oci/ocvp/esxi_host_client.py +8 -8
  224. oci/ocvp/sddc_client.py +14 -14
  225. oci/ocvp/work_request_client.py +4 -4
  226. oci/oda/management_client.py +56 -56
  227. oci/oda/oda_client.py +17 -17
  228. oci/oda/odapackage_client.py +7 -7
  229. oci/onesubscription/billing_schedule_client.py +1 -1
  230. oci/onesubscription/commitment_client.py +2 -2
  231. oci/onesubscription/computed_usage_client.py +3 -3
  232. oci/onesubscription/invoice_summary_client.py +2 -2
  233. oci/onesubscription/organization_subscription_client.py +1 -1
  234. oci/onesubscription/ratecard_client.py +1 -1
  235. oci/onesubscription/subscribed_service_client.py +2 -2
  236. oci/onesubscription/subscription_client.py +1 -1
  237. oci/ons/notification_control_plane_client.py +6 -6
  238. oci/ons/notification_data_plane_client.py +10 -10
  239. oci/opa/opa_instance_client.py +11 -11
  240. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  241. oci/opensearch/opensearch_cluster_client.py +14 -14
  242. oci/operator_access_control/access_requests_client.py +9 -9
  243. oci/operator_access_control/operator_actions_client.py +2 -2
  244. oci/operator_access_control/operator_control_assignment_client.py +6 -6
  245. oci/operator_access_control/operator_control_client.py +6 -6
  246. oci/opsi/operations_insights_client.py +175 -175
  247. oci/optimizer/optimizer_client.py +26 -26
  248. oci/os_management/event_client.py +8 -8
  249. oci/os_management/os_management_client.py +69 -69
  250. oci/os_management_hub/lifecycle_environment_client.py +11 -11
  251. oci/os_management_hub/managed_instance_client.py +22 -22
  252. oci/os_management_hub/managed_instance_group_client.py +22 -22
  253. oci/os_management_hub/management_station_client.py +8 -8
  254. oci/os_management_hub/onboarding_client.py +5 -5
  255. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  256. oci/os_management_hub/scheduled_job_client.py +6 -6
  257. oci/os_management_hub/software_source_client.py +22 -22
  258. oci/os_management_hub/work_request_client.py +4 -4
  259. oci/osp_gateway/address_rule_service_client.py +1 -1
  260. oci/osp_gateway/address_service_client.py +2 -2
  261. oci/osp_gateway/invoice_service_client.py +5 -5
  262. oci/osp_gateway/subscription_service_client.py +5 -5
  263. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  264. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  265. oci/osub_subscription/commitment_client.py +2 -2
  266. oci/osub_subscription/ratecard_client.py +1 -1
  267. oci/osub_subscription/subscription_client.py +1 -1
  268. oci/osub_usage/computed_usage_client.py +3 -3
  269. oci/psql/postgresql_client.py +33 -33
  270. oci/queue/queue_admin_client.py +11 -11
  271. oci/queue/queue_client.py +8 -8
  272. oci/recovery/database_recovery_client.py +23 -23
  273. oci/redis/redis_cluster_client.py +11 -11
  274. oci/resource_manager/resource_manager_client.py +52 -52
  275. oci/resource_search/resource_search_client.py +3 -3
  276. oci/rover/rover_bundle_client.py +8 -8
  277. oci/rover/rover_cluster_client.py +8 -8
  278. oci/rover/rover_entitlement_client.py +6 -6
  279. oci/rover/rover_node_client.py +15 -15
  280. oci/rover/shape_client.py +1 -1
  281. oci/rover/work_requests_client.py +5 -5
  282. oci/sch/service_connector_client.py +12 -12
  283. oci/secrets/secrets_client.py +3 -3
  284. oci/service_catalog/service_catalog_client.py +26 -26
  285. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  286. oci/service_mesh/service_mesh_client.py +48 -48
  287. oci/stack_monitoring/stack_monitoring_client.py +58 -58
  288. oci/streaming/stream_admin_client.py +18 -18
  289. oci/streaming/stream_client.py +8 -8
  290. oci/tenant_manager_control_plane/domain_client.py +5 -5
  291. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  292. oci/tenant_manager_control_plane/governance_client.py +2 -2
  293. oci/tenant_manager_control_plane/link_client.py +3 -3
  294. oci/tenant_manager_control_plane/orders_client.py +2 -2
  295. oci/tenant_manager_control_plane/organization_client.py +10 -10
  296. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  297. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  298. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  299. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  300. oci/threat_intelligence/threatintel_client.py +5 -5
  301. oci/usage/resources_client.py +2 -2
  302. oci/usage/rewards_client.py +6 -6
  303. oci/usage/usagelimits_client.py +1 -1
  304. oci/usage_api/usageapi_client.py +28 -28
  305. oci/vault/vaults_client.py +11 -11
  306. oci/vbs_inst/vbs_instance_client.py +10 -10
  307. oci/version.py +1 -1
  308. oci/visual_builder/vb_instance_client.py +13 -13
  309. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  310. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  311. oci/waa/waa_client.py +13 -13
  312. oci/waa/work_request_client.py +4 -4
  313. oci/waas/redirect_client.py +6 -6
  314. oci/waas/waas_client.py +66 -66
  315. oci/waf/waf_client.py +24 -24
  316. oci/work_requests/work_request_client.py +4 -4
  317. {oci-2.118.1.dist-info → oci-2.119.0.dist-info}/METADATA +1 -2
  318. {oci-2.118.1.dist-info → oci-2.119.0.dist-info}/RECORD +322 -284
  319. oci/auth/signers/yubikey_signer.py +0 -140
  320. {oci-2.118.1.dist-info → oci-2.119.0.dist-info}/LICENSE.txt +0 -0
  321. {oci-2.118.1.dist-info → oci-2.119.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  322. {oci-2.118.1.dist-info → oci-2.119.0.dist-info}/WHEEL +0 -0
  323. {oci-2.118.1.dist-info → oci-2.119.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,490 @@
1
+ # coding: utf-8
2
+ # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
3
+ # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4
+
5
+ # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401
6
+
7
+
8
+ from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
9
+ from oci.decorators import init_model_state_from_kwargs
10
+
11
+
12
+ @init_model_state_from_kwargs
13
+ class AlarmSuppressionSummary(object):
14
+ """
15
+ A summary of properties for the specified dimension-specific alarm suppression.
16
+ """
17
+
18
+ def __init__(self, **kwargs):
19
+ """
20
+ Initializes a new AlarmSuppressionSummary object with values from keyword arguments.
21
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
22
+
23
+ :param id:
24
+ The value to assign to the id property of this AlarmSuppressionSummary.
25
+ :type id: str
26
+
27
+ :param compartment_id:
28
+ The value to assign to the compartment_id property of this AlarmSuppressionSummary.
29
+ :type compartment_id: str
30
+
31
+ :param alarm_suppression_target:
32
+ The value to assign to the alarm_suppression_target property of this AlarmSuppressionSummary.
33
+ :type alarm_suppression_target: oci.monitoring.models.AlarmSuppressionTarget
34
+
35
+ :param display_name:
36
+ The value to assign to the display_name property of this AlarmSuppressionSummary.
37
+ :type display_name: str
38
+
39
+ :param description:
40
+ The value to assign to the description property of this AlarmSuppressionSummary.
41
+ :type description: str
42
+
43
+ :param dimensions:
44
+ The value to assign to the dimensions property of this AlarmSuppressionSummary.
45
+ :type dimensions: dict(str, str)
46
+
47
+ :param time_suppress_from:
48
+ The value to assign to the time_suppress_from property of this AlarmSuppressionSummary.
49
+ :type time_suppress_from: datetime
50
+
51
+ :param time_suppress_until:
52
+ The value to assign to the time_suppress_until property of this AlarmSuppressionSummary.
53
+ :type time_suppress_until: datetime
54
+
55
+ :param lifecycle_state:
56
+ The value to assign to the lifecycle_state property of this AlarmSuppressionSummary.
57
+ :type lifecycle_state: str
58
+
59
+ :param time_created:
60
+ The value to assign to the time_created property of this AlarmSuppressionSummary.
61
+ :type time_created: datetime
62
+
63
+ :param time_updated:
64
+ The value to assign to the time_updated property of this AlarmSuppressionSummary.
65
+ :type time_updated: datetime
66
+
67
+ :param freeform_tags:
68
+ The value to assign to the freeform_tags property of this AlarmSuppressionSummary.
69
+ :type freeform_tags: dict(str, str)
70
+
71
+ :param defined_tags:
72
+ The value to assign to the defined_tags property of this AlarmSuppressionSummary.
73
+ :type defined_tags: dict(str, dict(str, object))
74
+
75
+ """
76
+ self.swagger_types = {
77
+ 'id': 'str',
78
+ 'compartment_id': 'str',
79
+ 'alarm_suppression_target': 'AlarmSuppressionTarget',
80
+ 'display_name': 'str',
81
+ 'description': 'str',
82
+ 'dimensions': 'dict(str, str)',
83
+ 'time_suppress_from': 'datetime',
84
+ 'time_suppress_until': 'datetime',
85
+ 'lifecycle_state': 'str',
86
+ 'time_created': 'datetime',
87
+ 'time_updated': 'datetime',
88
+ 'freeform_tags': 'dict(str, str)',
89
+ 'defined_tags': 'dict(str, dict(str, object))'
90
+ }
91
+
92
+ self.attribute_map = {
93
+ 'id': 'id',
94
+ 'compartment_id': 'compartmentId',
95
+ 'alarm_suppression_target': 'alarmSuppressionTarget',
96
+ 'display_name': 'displayName',
97
+ 'description': 'description',
98
+ 'dimensions': 'dimensions',
99
+ 'time_suppress_from': 'timeSuppressFrom',
100
+ 'time_suppress_until': 'timeSuppressUntil',
101
+ 'lifecycle_state': 'lifecycleState',
102
+ 'time_created': 'timeCreated',
103
+ 'time_updated': 'timeUpdated',
104
+ 'freeform_tags': 'freeformTags',
105
+ 'defined_tags': 'definedTags'
106
+ }
107
+
108
+ self._id = None
109
+ self._compartment_id = None
110
+ self._alarm_suppression_target = None
111
+ self._display_name = None
112
+ self._description = None
113
+ self._dimensions = None
114
+ self._time_suppress_from = None
115
+ self._time_suppress_until = None
116
+ self._lifecycle_state = None
117
+ self._time_created = None
118
+ self._time_updated = None
119
+ self._freeform_tags = None
120
+ self._defined_tags = None
121
+
122
+ @property
123
+ def id(self):
124
+ """
125
+ **[Required]** Gets the id of this AlarmSuppressionSummary.
126
+ The `OCID`__ of the alarm suppression.
127
+
128
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
129
+
130
+
131
+ :return: The id of this AlarmSuppressionSummary.
132
+ :rtype: str
133
+ """
134
+ return self._id
135
+
136
+ @id.setter
137
+ def id(self, id):
138
+ """
139
+ Sets the id of this AlarmSuppressionSummary.
140
+ The `OCID`__ of the alarm suppression.
141
+
142
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
143
+
144
+
145
+ :param id: The id of this AlarmSuppressionSummary.
146
+ :type: str
147
+ """
148
+ self._id = id
149
+
150
+ @property
151
+ def compartment_id(self):
152
+ """
153
+ **[Required]** Gets the compartment_id of this AlarmSuppressionSummary.
154
+ The `OCID`__ of the compartment containing the alarm suppression.
155
+
156
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
157
+
158
+
159
+ :return: The compartment_id of this AlarmSuppressionSummary.
160
+ :rtype: str
161
+ """
162
+ return self._compartment_id
163
+
164
+ @compartment_id.setter
165
+ def compartment_id(self, compartment_id):
166
+ """
167
+ Sets the compartment_id of this AlarmSuppressionSummary.
168
+ The `OCID`__ of the compartment containing the alarm suppression.
169
+
170
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
171
+
172
+
173
+ :param compartment_id: The compartment_id of this AlarmSuppressionSummary.
174
+ :type: str
175
+ """
176
+ self._compartment_id = compartment_id
177
+
178
+ @property
179
+ def alarm_suppression_target(self):
180
+ """
181
+ **[Required]** Gets the alarm_suppression_target of this AlarmSuppressionSummary.
182
+
183
+ :return: The alarm_suppression_target of this AlarmSuppressionSummary.
184
+ :rtype: oci.monitoring.models.AlarmSuppressionTarget
185
+ """
186
+ return self._alarm_suppression_target
187
+
188
+ @alarm_suppression_target.setter
189
+ def alarm_suppression_target(self, alarm_suppression_target):
190
+ """
191
+ Sets the alarm_suppression_target of this AlarmSuppressionSummary.
192
+
193
+ :param alarm_suppression_target: The alarm_suppression_target of this AlarmSuppressionSummary.
194
+ :type: oci.monitoring.models.AlarmSuppressionTarget
195
+ """
196
+ self._alarm_suppression_target = alarm_suppression_target
197
+
198
+ @property
199
+ def display_name(self):
200
+ """
201
+ **[Required]** Gets the display_name of this AlarmSuppressionSummary.
202
+ A user-friendly name for the alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
203
+
204
+
205
+ :return: The display_name of this AlarmSuppressionSummary.
206
+ :rtype: str
207
+ """
208
+ return self._display_name
209
+
210
+ @display_name.setter
211
+ def display_name(self, display_name):
212
+ """
213
+ Sets the display_name of this AlarmSuppressionSummary.
214
+ A user-friendly name for the alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
215
+
216
+
217
+ :param display_name: The display_name of this AlarmSuppressionSummary.
218
+ :type: str
219
+ """
220
+ self._display_name = display_name
221
+
222
+ @property
223
+ def description(self):
224
+ """
225
+ Gets the description of this AlarmSuppressionSummary.
226
+ Human-readable reason for this alarm suppression.
227
+ It does not have to be unique, and it's changeable.
228
+ Avoid entering confidential information.
229
+
230
+ Oracle recommends including tracking information for the event or associated work,
231
+ such as a ticket number.
232
+
233
+ Example: `Planned outage due to change IT-1234.`
234
+
235
+
236
+ :return: The description of this AlarmSuppressionSummary.
237
+ :rtype: str
238
+ """
239
+ return self._description
240
+
241
+ @description.setter
242
+ def description(self, description):
243
+ """
244
+ Sets the description of this AlarmSuppressionSummary.
245
+ Human-readable reason for this alarm suppression.
246
+ It does not have to be unique, and it's changeable.
247
+ Avoid entering confidential information.
248
+
249
+ Oracle recommends including tracking information for the event or associated work,
250
+ such as a ticket number.
251
+
252
+ Example: `Planned outage due to change IT-1234.`
253
+
254
+
255
+ :param description: The description of this AlarmSuppressionSummary.
256
+ :type: str
257
+ """
258
+ self._description = description
259
+
260
+ @property
261
+ def dimensions(self):
262
+ """
263
+ **[Required]** Gets the dimensions of this AlarmSuppressionSummary.
264
+ Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs.
265
+
266
+ Example: `{\"resourceId\": \"ocid1.instance.region1.phx.exampleuniqueID\"}`
267
+
268
+
269
+ :return: The dimensions of this AlarmSuppressionSummary.
270
+ :rtype: dict(str, str)
271
+ """
272
+ return self._dimensions
273
+
274
+ @dimensions.setter
275
+ def dimensions(self, dimensions):
276
+ """
277
+ Sets the dimensions of this AlarmSuppressionSummary.
278
+ Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs.
279
+
280
+ Example: `{\"resourceId\": \"ocid1.instance.region1.phx.exampleuniqueID\"}`
281
+
282
+
283
+ :param dimensions: The dimensions of this AlarmSuppressionSummary.
284
+ :type: dict(str, str)
285
+ """
286
+ self._dimensions = dimensions
287
+
288
+ @property
289
+ def time_suppress_from(self):
290
+ """
291
+ **[Required]** Gets the time_suppress_from of this AlarmSuppressionSummary.
292
+ The start date and time for the suppression to take place, inclusive. Format defined by RFC3339.
293
+
294
+ Example: `2023-02-01T01:02:29.600Z`
295
+
296
+
297
+ :return: The time_suppress_from of this AlarmSuppressionSummary.
298
+ :rtype: datetime
299
+ """
300
+ return self._time_suppress_from
301
+
302
+ @time_suppress_from.setter
303
+ def time_suppress_from(self, time_suppress_from):
304
+ """
305
+ Sets the time_suppress_from of this AlarmSuppressionSummary.
306
+ The start date and time for the suppression to take place, inclusive. Format defined by RFC3339.
307
+
308
+ Example: `2023-02-01T01:02:29.600Z`
309
+
310
+
311
+ :param time_suppress_from: The time_suppress_from of this AlarmSuppressionSummary.
312
+ :type: datetime
313
+ """
314
+ self._time_suppress_from = time_suppress_from
315
+
316
+ @property
317
+ def time_suppress_until(self):
318
+ """
319
+ **[Required]** Gets the time_suppress_until of this AlarmSuppressionSummary.
320
+ The end date and time for the suppression to take place, inclusive. Format defined by RFC3339.
321
+
322
+ Example: `2023-02-01T02:02:29.600Z`
323
+
324
+
325
+ :return: The time_suppress_until of this AlarmSuppressionSummary.
326
+ :rtype: datetime
327
+ """
328
+ return self._time_suppress_until
329
+
330
+ @time_suppress_until.setter
331
+ def time_suppress_until(self, time_suppress_until):
332
+ """
333
+ Sets the time_suppress_until of this AlarmSuppressionSummary.
334
+ The end date and time for the suppression to take place, inclusive. Format defined by RFC3339.
335
+
336
+ Example: `2023-02-01T02:02:29.600Z`
337
+
338
+
339
+ :param time_suppress_until: The time_suppress_until of this AlarmSuppressionSummary.
340
+ :type: datetime
341
+ """
342
+ self._time_suppress_until = time_suppress_until
343
+
344
+ @property
345
+ def lifecycle_state(self):
346
+ """
347
+ **[Required]** Gets the lifecycle_state of this AlarmSuppressionSummary.
348
+ The current lifecycle state of the alarm suppression.
349
+
350
+ Example: `DELETED`
351
+
352
+
353
+ :return: The lifecycle_state of this AlarmSuppressionSummary.
354
+ :rtype: str
355
+ """
356
+ return self._lifecycle_state
357
+
358
+ @lifecycle_state.setter
359
+ def lifecycle_state(self, lifecycle_state):
360
+ """
361
+ Sets the lifecycle_state of this AlarmSuppressionSummary.
362
+ The current lifecycle state of the alarm suppression.
363
+
364
+ Example: `DELETED`
365
+
366
+
367
+ :param lifecycle_state: The lifecycle_state of this AlarmSuppressionSummary.
368
+ :type: str
369
+ """
370
+ self._lifecycle_state = lifecycle_state
371
+
372
+ @property
373
+ def time_created(self):
374
+ """
375
+ **[Required]** Gets the time_created of this AlarmSuppressionSummary.
376
+ The date and time the alarm suppression was created. Format defined by RFC3339.
377
+
378
+ Example: `2023-02-01T01:02:29.600Z`
379
+
380
+
381
+ :return: The time_created of this AlarmSuppressionSummary.
382
+ :rtype: datetime
383
+ """
384
+ return self._time_created
385
+
386
+ @time_created.setter
387
+ def time_created(self, time_created):
388
+ """
389
+ Sets the time_created of this AlarmSuppressionSummary.
390
+ The date and time the alarm suppression was created. Format defined by RFC3339.
391
+
392
+ Example: `2023-02-01T01:02:29.600Z`
393
+
394
+
395
+ :param time_created: The time_created of this AlarmSuppressionSummary.
396
+ :type: datetime
397
+ """
398
+ self._time_created = time_created
399
+
400
+ @property
401
+ def time_updated(self):
402
+ """
403
+ **[Required]** Gets the time_updated of this AlarmSuppressionSummary.
404
+ The date and time the alarm suppression was last updated (deleted). Format defined by RFC3339.
405
+
406
+ Example: `2023-02-03T01:02:29.600Z`
407
+
408
+
409
+ :return: The time_updated of this AlarmSuppressionSummary.
410
+ :rtype: datetime
411
+ """
412
+ return self._time_updated
413
+
414
+ @time_updated.setter
415
+ def time_updated(self, time_updated):
416
+ """
417
+ Sets the time_updated of this AlarmSuppressionSummary.
418
+ The date and time the alarm suppression was last updated (deleted). Format defined by RFC3339.
419
+
420
+ Example: `2023-02-03T01:02:29.600Z`
421
+
422
+
423
+ :param time_updated: The time_updated of this AlarmSuppressionSummary.
424
+ :type: datetime
425
+ """
426
+ self._time_updated = time_updated
427
+
428
+ @property
429
+ def freeform_tags(self):
430
+ """
431
+ Gets the freeform_tags of this AlarmSuppressionSummary.
432
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
433
+ Example: `{\"bar-key\": \"value\"}`
434
+
435
+
436
+ :return: The freeform_tags of this AlarmSuppressionSummary.
437
+ :rtype: dict(str, str)
438
+ """
439
+ return self._freeform_tags
440
+
441
+ @freeform_tags.setter
442
+ def freeform_tags(self, freeform_tags):
443
+ """
444
+ Sets the freeform_tags of this AlarmSuppressionSummary.
445
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
446
+ Example: `{\"bar-key\": \"value\"}`
447
+
448
+
449
+ :param freeform_tags: The freeform_tags of this AlarmSuppressionSummary.
450
+ :type: dict(str, str)
451
+ """
452
+ self._freeform_tags = freeform_tags
453
+
454
+ @property
455
+ def defined_tags(self):
456
+ """
457
+ Gets the defined_tags of this AlarmSuppressionSummary.
458
+ Defined tags for this resource. Each key is predefined and scoped to a namespace.
459
+ Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
460
+
461
+
462
+ :return: The defined_tags of this AlarmSuppressionSummary.
463
+ :rtype: dict(str, dict(str, object))
464
+ """
465
+ return self._defined_tags
466
+
467
+ @defined_tags.setter
468
+ def defined_tags(self, defined_tags):
469
+ """
470
+ Sets the defined_tags of this AlarmSuppressionSummary.
471
+ Defined tags for this resource. Each key is predefined and scoped to a namespace.
472
+ Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
473
+
474
+
475
+ :param defined_tags: The defined_tags of this AlarmSuppressionSummary.
476
+ :type: dict(str, dict(str, object))
477
+ """
478
+ self._defined_tags = defined_tags
479
+
480
+ def __repr__(self):
481
+ return formatted_flat_dict(self)
482
+
483
+ def __eq__(self, other):
484
+ if other is None:
485
+ return False
486
+
487
+ return self.__dict__ == other.__dict__
488
+
489
+ def __ne__(self, other):
490
+ return not self == other
@@ -0,0 +1,101 @@
1
+ # coding: utf-8
2
+ # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
3
+ # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4
+
5
+ # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401
6
+
7
+
8
+ from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
9
+ from oci.decorators import init_model_state_from_kwargs
10
+
11
+
12
+ @init_model_state_from_kwargs
13
+ class AlarmSuppressionTarget(object):
14
+ """
15
+ The target of the alarm suppression.
16
+ """
17
+
18
+ #: A constant which can be used with the target_type property of a AlarmSuppressionTarget.
19
+ #: This constant has a value of "ALARM"
20
+ TARGET_TYPE_ALARM = "ALARM"
21
+
22
+ def __init__(self, **kwargs):
23
+ """
24
+ Initializes a new AlarmSuppressionTarget object with values from keyword arguments. This class has the following subclasses and if you are using this class as input
25
+ to a service operations then you should favor using a subclass over the base class:
26
+
27
+ * :class:`~oci.monitoring.models.AlarmSuppressionAlarmTarget`
28
+
29
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
30
+
31
+ :param target_type:
32
+ The value to assign to the target_type property of this AlarmSuppressionTarget.
33
+ Allowed values for this property are: "ALARM", 'UNKNOWN_ENUM_VALUE'.
34
+ Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
35
+ :type target_type: str
36
+
37
+ """
38
+ self.swagger_types = {
39
+ 'target_type': 'str'
40
+ }
41
+
42
+ self.attribute_map = {
43
+ 'target_type': 'targetType'
44
+ }
45
+
46
+ self._target_type = None
47
+
48
+ @staticmethod
49
+ def get_subtype(object_dictionary):
50
+ """
51
+ Given the hash representation of a subtype of this class,
52
+ use the info in the hash to return the class of the subtype.
53
+ """
54
+ type = object_dictionary['targetType']
55
+
56
+ if type == 'ALARM':
57
+ return 'AlarmSuppressionAlarmTarget'
58
+ else:
59
+ return 'AlarmSuppressionTarget'
60
+
61
+ @property
62
+ def target_type(self):
63
+ """
64
+ **[Required]** Gets the target_type of this AlarmSuppressionTarget.
65
+ The type of the alarm suppression target.
66
+
67
+ Allowed values for this property are: "ALARM", 'UNKNOWN_ENUM_VALUE'.
68
+ Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
69
+
70
+
71
+ :return: The target_type of this AlarmSuppressionTarget.
72
+ :rtype: str
73
+ """
74
+ return self._target_type
75
+
76
+ @target_type.setter
77
+ def target_type(self, target_type):
78
+ """
79
+ Sets the target_type of this AlarmSuppressionTarget.
80
+ The type of the alarm suppression target.
81
+
82
+
83
+ :param target_type: The target_type of this AlarmSuppressionTarget.
84
+ :type: str
85
+ """
86
+ allowed_values = ["ALARM"]
87
+ if not value_allowed_none_or_none_sentinel(target_type, allowed_values):
88
+ target_type = 'UNKNOWN_ENUM_VALUE'
89
+ self._target_type = target_type
90
+
91
+ def __repr__(self):
92
+ return formatted_flat_dict(self)
93
+
94
+ def __eq__(self, other):
95
+ if other is None:
96
+ return False
97
+
98
+ return self.__dict__ == other.__dict__
99
+
100
+ def __ne__(self, other):
101
+ return not self == other
@@ -658,8 +658,7 @@ class CreateAlarmDetails(object):
658
658
  A list of destinations for alarm notifications.
659
659
  Each destination is represented by the `OCID`__
660
660
  of a related resource, such as a :class:`NotificationTopic`.
661
- Supported destination services: Notifications
662
- , Streaming.
661
+ Supported destination services: Notifications, Streaming.
663
662
  Limit: One destination per supported destination service.
664
663
 
665
664
  __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
@@ -677,8 +676,7 @@ class CreateAlarmDetails(object):
677
676
  A list of destinations for alarm notifications.
678
677
  Each destination is represented by the `OCID`__
679
678
  of a related resource, such as a :class:`NotificationTopic`.
680
- Supported destination services: Notifications
681
- , Streaming.
679
+ Supported destination services: Notifications, Streaming.
682
680
  Limit: One destination per supported destination service.
683
681
 
684
682
  __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm