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