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
@@ -0,0 +1,442 @@
|
|
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: 20181201
|
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 SecurityPolicyReportSummary(object):
|
14
|
+
"""
|
15
|
+
The resource represents a container for all the security policy reports in Data Safe.
|
16
|
+
"""
|
17
|
+
|
18
|
+
#: A constant which can be used with the lifecycle_state property of a SecurityPolicyReportSummary.
|
19
|
+
#: This constant has a value of "CREATING"
|
20
|
+
LIFECYCLE_STATE_CREATING = "CREATING"
|
21
|
+
|
22
|
+
#: A constant which can be used with the lifecycle_state property of a SecurityPolicyReportSummary.
|
23
|
+
#: This constant has a value of "SUCCEEDED"
|
24
|
+
LIFECYCLE_STATE_SUCCEEDED = "SUCCEEDED"
|
25
|
+
|
26
|
+
#: A constant which can be used with the lifecycle_state property of a SecurityPolicyReportSummary.
|
27
|
+
#: This constant has a value of "UPDATING"
|
28
|
+
LIFECYCLE_STATE_UPDATING = "UPDATING"
|
29
|
+
|
30
|
+
#: A constant which can be used with the lifecycle_state property of a SecurityPolicyReportSummary.
|
31
|
+
#: This constant has a value of "DELETING"
|
32
|
+
LIFECYCLE_STATE_DELETING = "DELETING"
|
33
|
+
|
34
|
+
#: A constant which can be used with the lifecycle_state property of a SecurityPolicyReportSummary.
|
35
|
+
#: This constant has a value of "DELETED"
|
36
|
+
LIFECYCLE_STATE_DELETED = "DELETED"
|
37
|
+
|
38
|
+
#: A constant which can be used with the lifecycle_state property of a SecurityPolicyReportSummary.
|
39
|
+
#: This constant has a value of "FAILED"
|
40
|
+
LIFECYCLE_STATE_FAILED = "FAILED"
|
41
|
+
|
42
|
+
#: A constant which can be used with the lifecycle_state property of a SecurityPolicyReportSummary.
|
43
|
+
#: This constant has a value of "NEEDS_ATTENTION"
|
44
|
+
LIFECYCLE_STATE_NEEDS_ATTENTION = "NEEDS_ATTENTION"
|
45
|
+
|
46
|
+
def __init__(self, **kwargs):
|
47
|
+
"""
|
48
|
+
Initializes a new SecurityPolicyReportSummary object with values from keyword arguments.
|
49
|
+
The following keyword arguments are supported (corresponding to the getters/setters of this class):
|
50
|
+
|
51
|
+
:param id:
|
52
|
+
The value to assign to the id property of this SecurityPolicyReportSummary.
|
53
|
+
:type id: str
|
54
|
+
|
55
|
+
:param time_created:
|
56
|
+
The value to assign to the time_created property of this SecurityPolicyReportSummary.
|
57
|
+
:type time_created: datetime
|
58
|
+
|
59
|
+
:param time_updated:
|
60
|
+
The value to assign to the time_updated property of this SecurityPolicyReportSummary.
|
61
|
+
:type time_updated: datetime
|
62
|
+
|
63
|
+
:param compartment_id:
|
64
|
+
The value to assign to the compartment_id property of this SecurityPolicyReportSummary.
|
65
|
+
:type compartment_id: str
|
66
|
+
|
67
|
+
:param display_name:
|
68
|
+
The value to assign to the display_name property of this SecurityPolicyReportSummary.
|
69
|
+
:type display_name: str
|
70
|
+
|
71
|
+
:param target_id:
|
72
|
+
The value to assign to the target_id property of this SecurityPolicyReportSummary.
|
73
|
+
:type target_id: str
|
74
|
+
|
75
|
+
:param description:
|
76
|
+
The value to assign to the description property of this SecurityPolicyReportSummary.
|
77
|
+
:type description: str
|
78
|
+
|
79
|
+
:param lifecycle_state:
|
80
|
+
The value to assign to the lifecycle_state property of this SecurityPolicyReportSummary.
|
81
|
+
Allowed values for this property are: "CREATING", "SUCCEEDED", "UPDATING", "DELETING", "DELETED", "FAILED", "NEEDS_ATTENTION", 'UNKNOWN_ENUM_VALUE'.
|
82
|
+
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
|
83
|
+
:type lifecycle_state: str
|
84
|
+
|
85
|
+
:param lifecycle_details:
|
86
|
+
The value to assign to the lifecycle_details property of this SecurityPolicyReportSummary.
|
87
|
+
:type lifecycle_details: str
|
88
|
+
|
89
|
+
:param freeform_tags:
|
90
|
+
The value to assign to the freeform_tags property of this SecurityPolicyReportSummary.
|
91
|
+
:type freeform_tags: dict(str, str)
|
92
|
+
|
93
|
+
:param defined_tags:
|
94
|
+
The value to assign to the defined_tags property of this SecurityPolicyReportSummary.
|
95
|
+
:type defined_tags: dict(str, dict(str, object))
|
96
|
+
|
97
|
+
"""
|
98
|
+
self.swagger_types = {
|
99
|
+
'id': 'str',
|
100
|
+
'time_created': 'datetime',
|
101
|
+
'time_updated': 'datetime',
|
102
|
+
'compartment_id': 'str',
|
103
|
+
'display_name': 'str',
|
104
|
+
'target_id': 'str',
|
105
|
+
'description': 'str',
|
106
|
+
'lifecycle_state': 'str',
|
107
|
+
'lifecycle_details': 'str',
|
108
|
+
'freeform_tags': 'dict(str, str)',
|
109
|
+
'defined_tags': 'dict(str, dict(str, object))'
|
110
|
+
}
|
111
|
+
|
112
|
+
self.attribute_map = {
|
113
|
+
'id': 'id',
|
114
|
+
'time_created': 'timeCreated',
|
115
|
+
'time_updated': 'timeUpdated',
|
116
|
+
'compartment_id': 'compartmentId',
|
117
|
+
'display_name': 'displayName',
|
118
|
+
'target_id': 'targetId',
|
119
|
+
'description': 'description',
|
120
|
+
'lifecycle_state': 'lifecycleState',
|
121
|
+
'lifecycle_details': 'lifecycleDetails',
|
122
|
+
'freeform_tags': 'freeformTags',
|
123
|
+
'defined_tags': 'definedTags'
|
124
|
+
}
|
125
|
+
|
126
|
+
self._id = None
|
127
|
+
self._time_created = None
|
128
|
+
self._time_updated = None
|
129
|
+
self._compartment_id = None
|
130
|
+
self._display_name = None
|
131
|
+
self._target_id = None
|
132
|
+
self._description = None
|
133
|
+
self._lifecycle_state = None
|
134
|
+
self._lifecycle_details = None
|
135
|
+
self._freeform_tags = None
|
136
|
+
self._defined_tags = None
|
137
|
+
|
138
|
+
@property
|
139
|
+
def id(self):
|
140
|
+
"""
|
141
|
+
**[Required]** Gets the id of this SecurityPolicyReportSummary.
|
142
|
+
The OCID of the security policy report.
|
143
|
+
|
144
|
+
|
145
|
+
:return: The id of this SecurityPolicyReportSummary.
|
146
|
+
:rtype: str
|
147
|
+
"""
|
148
|
+
return self._id
|
149
|
+
|
150
|
+
@id.setter
|
151
|
+
def id(self, id):
|
152
|
+
"""
|
153
|
+
Sets the id of this SecurityPolicyReportSummary.
|
154
|
+
The OCID of the security policy report.
|
155
|
+
|
156
|
+
|
157
|
+
:param id: The id of this SecurityPolicyReportSummary.
|
158
|
+
:type: str
|
159
|
+
"""
|
160
|
+
self._id = id
|
161
|
+
|
162
|
+
@property
|
163
|
+
def time_created(self):
|
164
|
+
"""
|
165
|
+
**[Required]** Gets the time_created of this SecurityPolicyReportSummary.
|
166
|
+
The date and time the security policy report was created, in the format defined by `RFC3339`__.
|
167
|
+
|
168
|
+
__ https://tools.ietf.org/html/rfc3339
|
169
|
+
|
170
|
+
|
171
|
+
:return: The time_created of this SecurityPolicyReportSummary.
|
172
|
+
:rtype: datetime
|
173
|
+
"""
|
174
|
+
return self._time_created
|
175
|
+
|
176
|
+
@time_created.setter
|
177
|
+
def time_created(self, time_created):
|
178
|
+
"""
|
179
|
+
Sets the time_created of this SecurityPolicyReportSummary.
|
180
|
+
The date and time the security policy report was created, in the format defined by `RFC3339`__.
|
181
|
+
|
182
|
+
__ https://tools.ietf.org/html/rfc3339
|
183
|
+
|
184
|
+
|
185
|
+
:param time_created: The time_created of this SecurityPolicyReportSummary.
|
186
|
+
:type: datetime
|
187
|
+
"""
|
188
|
+
self._time_created = time_created
|
189
|
+
|
190
|
+
@property
|
191
|
+
def time_updated(self):
|
192
|
+
"""
|
193
|
+
Gets the time_updated of this SecurityPolicyReportSummary.
|
194
|
+
The date and time the security policy report was last updated, in the format defined by `RFC3339`__.
|
195
|
+
|
196
|
+
__ https://tools.ietf.org/html/rfc3339
|
197
|
+
|
198
|
+
|
199
|
+
:return: The time_updated of this SecurityPolicyReportSummary.
|
200
|
+
:rtype: datetime
|
201
|
+
"""
|
202
|
+
return self._time_updated
|
203
|
+
|
204
|
+
@time_updated.setter
|
205
|
+
def time_updated(self, time_updated):
|
206
|
+
"""
|
207
|
+
Sets the time_updated of this SecurityPolicyReportSummary.
|
208
|
+
The date and time the security policy report was last updated, in the format defined by `RFC3339`__.
|
209
|
+
|
210
|
+
__ https://tools.ietf.org/html/rfc3339
|
211
|
+
|
212
|
+
|
213
|
+
:param time_updated: The time_updated of this SecurityPolicyReportSummary.
|
214
|
+
:type: datetime
|
215
|
+
"""
|
216
|
+
self._time_updated = time_updated
|
217
|
+
|
218
|
+
@property
|
219
|
+
def compartment_id(self):
|
220
|
+
"""
|
221
|
+
**[Required]** Gets the compartment_id of this SecurityPolicyReportSummary.
|
222
|
+
The OCID of the compartment that contains the security policy report.
|
223
|
+
|
224
|
+
|
225
|
+
:return: The compartment_id of this SecurityPolicyReportSummary.
|
226
|
+
:rtype: str
|
227
|
+
"""
|
228
|
+
return self._compartment_id
|
229
|
+
|
230
|
+
@compartment_id.setter
|
231
|
+
def compartment_id(self, compartment_id):
|
232
|
+
"""
|
233
|
+
Sets the compartment_id of this SecurityPolicyReportSummary.
|
234
|
+
The OCID of the compartment that contains the security policy report.
|
235
|
+
|
236
|
+
|
237
|
+
:param compartment_id: The compartment_id of this SecurityPolicyReportSummary.
|
238
|
+
:type: str
|
239
|
+
"""
|
240
|
+
self._compartment_id = compartment_id
|
241
|
+
|
242
|
+
@property
|
243
|
+
def display_name(self):
|
244
|
+
"""
|
245
|
+
**[Required]** Gets the display_name of this SecurityPolicyReportSummary.
|
246
|
+
The display name of the security policy report.
|
247
|
+
|
248
|
+
|
249
|
+
:return: The display_name of this SecurityPolicyReportSummary.
|
250
|
+
:rtype: str
|
251
|
+
"""
|
252
|
+
return self._display_name
|
253
|
+
|
254
|
+
@display_name.setter
|
255
|
+
def display_name(self, display_name):
|
256
|
+
"""
|
257
|
+
Sets the display_name of this SecurityPolicyReportSummary.
|
258
|
+
The display name of the security policy report.
|
259
|
+
|
260
|
+
|
261
|
+
:param display_name: The display_name of this SecurityPolicyReportSummary.
|
262
|
+
:type: str
|
263
|
+
"""
|
264
|
+
self._display_name = display_name
|
265
|
+
|
266
|
+
@property
|
267
|
+
def target_id(self):
|
268
|
+
"""
|
269
|
+
**[Required]** Gets the target_id of this SecurityPolicyReportSummary.
|
270
|
+
The OCID of the of the target database.
|
271
|
+
|
272
|
+
|
273
|
+
:return: The target_id of this SecurityPolicyReportSummary.
|
274
|
+
:rtype: str
|
275
|
+
"""
|
276
|
+
return self._target_id
|
277
|
+
|
278
|
+
@target_id.setter
|
279
|
+
def target_id(self, target_id):
|
280
|
+
"""
|
281
|
+
Sets the target_id of this SecurityPolicyReportSummary.
|
282
|
+
The OCID of the of the target database.
|
283
|
+
|
284
|
+
|
285
|
+
:param target_id: The target_id of this SecurityPolicyReportSummary.
|
286
|
+
:type: str
|
287
|
+
"""
|
288
|
+
self._target_id = target_id
|
289
|
+
|
290
|
+
@property
|
291
|
+
def description(self):
|
292
|
+
"""
|
293
|
+
Gets the description of this SecurityPolicyReportSummary.
|
294
|
+
The description of the security policy report.
|
295
|
+
|
296
|
+
|
297
|
+
:return: The description of this SecurityPolicyReportSummary.
|
298
|
+
:rtype: str
|
299
|
+
"""
|
300
|
+
return self._description
|
301
|
+
|
302
|
+
@description.setter
|
303
|
+
def description(self, description):
|
304
|
+
"""
|
305
|
+
Sets the description of this SecurityPolicyReportSummary.
|
306
|
+
The description of the security policy report.
|
307
|
+
|
308
|
+
|
309
|
+
:param description: The description of this SecurityPolicyReportSummary.
|
310
|
+
:type: str
|
311
|
+
"""
|
312
|
+
self._description = description
|
313
|
+
|
314
|
+
@property
|
315
|
+
def lifecycle_state(self):
|
316
|
+
"""
|
317
|
+
**[Required]** Gets the lifecycle_state of this SecurityPolicyReportSummary.
|
318
|
+
The current state of the security policy report.
|
319
|
+
|
320
|
+
Allowed values for this property are: "CREATING", "SUCCEEDED", "UPDATING", "DELETING", "DELETED", "FAILED", "NEEDS_ATTENTION", 'UNKNOWN_ENUM_VALUE'.
|
321
|
+
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
|
322
|
+
|
323
|
+
|
324
|
+
:return: The lifecycle_state of this SecurityPolicyReportSummary.
|
325
|
+
:rtype: str
|
326
|
+
"""
|
327
|
+
return self._lifecycle_state
|
328
|
+
|
329
|
+
@lifecycle_state.setter
|
330
|
+
def lifecycle_state(self, lifecycle_state):
|
331
|
+
"""
|
332
|
+
Sets the lifecycle_state of this SecurityPolicyReportSummary.
|
333
|
+
The current state of the security policy report.
|
334
|
+
|
335
|
+
|
336
|
+
:param lifecycle_state: The lifecycle_state of this SecurityPolicyReportSummary.
|
337
|
+
:type: str
|
338
|
+
"""
|
339
|
+
allowed_values = ["CREATING", "SUCCEEDED", "UPDATING", "DELETING", "DELETED", "FAILED", "NEEDS_ATTENTION"]
|
340
|
+
if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values):
|
341
|
+
lifecycle_state = 'UNKNOWN_ENUM_VALUE'
|
342
|
+
self._lifecycle_state = lifecycle_state
|
343
|
+
|
344
|
+
@property
|
345
|
+
def lifecycle_details(self):
|
346
|
+
"""
|
347
|
+
Gets the lifecycle_details of this SecurityPolicyReportSummary.
|
348
|
+
Details about the current state of the security policy report.
|
349
|
+
|
350
|
+
|
351
|
+
:return: The lifecycle_details of this SecurityPolicyReportSummary.
|
352
|
+
:rtype: str
|
353
|
+
"""
|
354
|
+
return self._lifecycle_details
|
355
|
+
|
356
|
+
@lifecycle_details.setter
|
357
|
+
def lifecycle_details(self, lifecycle_details):
|
358
|
+
"""
|
359
|
+
Sets the lifecycle_details of this SecurityPolicyReportSummary.
|
360
|
+
Details about the current state of the security policy report.
|
361
|
+
|
362
|
+
|
363
|
+
:param lifecycle_details: The lifecycle_details of this SecurityPolicyReportSummary.
|
364
|
+
:type: str
|
365
|
+
"""
|
366
|
+
self._lifecycle_details = lifecycle_details
|
367
|
+
|
368
|
+
@property
|
369
|
+
def freeform_tags(self):
|
370
|
+
"""
|
371
|
+
Gets the freeform_tags of this SecurityPolicyReportSummary.
|
372
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see `Resource Tags`__
|
373
|
+
|
374
|
+
Example: `{\"Department\": \"Finance\"}`
|
375
|
+
|
376
|
+
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm
|
377
|
+
|
378
|
+
|
379
|
+
:return: The freeform_tags of this SecurityPolicyReportSummary.
|
380
|
+
:rtype: dict(str, str)
|
381
|
+
"""
|
382
|
+
return self._freeform_tags
|
383
|
+
|
384
|
+
@freeform_tags.setter
|
385
|
+
def freeform_tags(self, freeform_tags):
|
386
|
+
"""
|
387
|
+
Sets the freeform_tags of this SecurityPolicyReportSummary.
|
388
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see `Resource Tags`__
|
389
|
+
|
390
|
+
Example: `{\"Department\": \"Finance\"}`
|
391
|
+
|
392
|
+
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm
|
393
|
+
|
394
|
+
|
395
|
+
:param freeform_tags: The freeform_tags of this SecurityPolicyReportSummary.
|
396
|
+
:type: dict(str, str)
|
397
|
+
"""
|
398
|
+
self._freeform_tags = freeform_tags
|
399
|
+
|
400
|
+
@property
|
401
|
+
def defined_tags(self):
|
402
|
+
"""
|
403
|
+
Gets the defined_tags of this SecurityPolicyReportSummary.
|
404
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see `Resource Tags`__
|
405
|
+
|
406
|
+
Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
|
407
|
+
|
408
|
+
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm
|
409
|
+
|
410
|
+
|
411
|
+
:return: The defined_tags of this SecurityPolicyReportSummary.
|
412
|
+
:rtype: dict(str, dict(str, object))
|
413
|
+
"""
|
414
|
+
return self._defined_tags
|
415
|
+
|
416
|
+
@defined_tags.setter
|
417
|
+
def defined_tags(self, defined_tags):
|
418
|
+
"""
|
419
|
+
Sets the defined_tags of this SecurityPolicyReportSummary.
|
420
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see `Resource Tags`__
|
421
|
+
|
422
|
+
Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
|
423
|
+
|
424
|
+
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm
|
425
|
+
|
426
|
+
|
427
|
+
:param defined_tags: The defined_tags of this SecurityPolicyReportSummary.
|
428
|
+
:type: dict(str, dict(str, object))
|
429
|
+
"""
|
430
|
+
self._defined_tags = defined_tags
|
431
|
+
|
432
|
+
def __repr__(self):
|
433
|
+
return formatted_flat_dict(self)
|
434
|
+
|
435
|
+
def __eq__(self, other):
|
436
|
+
if other is None:
|
437
|
+
return False
|
438
|
+
|
439
|
+
return self.__dict__ == other.__dict__
|
440
|
+
|
441
|
+
def __ne__(self, other):
|
442
|
+
return not self == other
|
@@ -106,6 +106,10 @@ class TargetDatabase(object):
|
|
106
106
|
The value to assign to the time_updated property of this TargetDatabase.
|
107
107
|
:type time_updated: datetime
|
108
108
|
|
109
|
+
:param peer_target_databases:
|
110
|
+
The value to assign to the peer_target_databases property of this TargetDatabase.
|
111
|
+
:type peer_target_databases: list[oci.data_safe.models.PeerTargetDatabase]
|
112
|
+
|
109
113
|
:param freeform_tags:
|
110
114
|
The value to assign to the freeform_tags property of this TargetDatabase.
|
111
115
|
:type freeform_tags: dict(str, str)
|
@@ -133,6 +137,7 @@ class TargetDatabase(object):
|
|
133
137
|
'lifecycle_details': 'str',
|
134
138
|
'time_created': 'datetime',
|
135
139
|
'time_updated': 'datetime',
|
140
|
+
'peer_target_databases': 'list[PeerTargetDatabase]',
|
136
141
|
'freeform_tags': 'dict(str, str)',
|
137
142
|
'defined_tags': 'dict(str, dict(str, object))',
|
138
143
|
'system_tags': 'dict(str, dict(str, object))'
|
@@ -152,6 +157,7 @@ class TargetDatabase(object):
|
|
152
157
|
'lifecycle_details': 'lifecycleDetails',
|
153
158
|
'time_created': 'timeCreated',
|
154
159
|
'time_updated': 'timeUpdated',
|
160
|
+
'peer_target_databases': 'peerTargetDatabases',
|
155
161
|
'freeform_tags': 'freeformTags',
|
156
162
|
'defined_tags': 'definedTags',
|
157
163
|
'system_tags': 'systemTags'
|
@@ -170,6 +176,7 @@ class TargetDatabase(object):
|
|
170
176
|
self._lifecycle_details = None
|
171
177
|
self._time_created = None
|
172
178
|
self._time_updated = None
|
179
|
+
self._peer_target_databases = None
|
173
180
|
self._freeform_tags = None
|
174
181
|
self._defined_tags = None
|
175
182
|
self._system_tags = None
|
@@ -476,6 +483,30 @@ class TargetDatabase(object):
|
|
476
483
|
"""
|
477
484
|
self._time_updated = time_updated
|
478
485
|
|
486
|
+
@property
|
487
|
+
def peer_target_databases(self):
|
488
|
+
"""
|
489
|
+
Gets the peer_target_databases of this TargetDatabase.
|
490
|
+
The OCIDs of associated resources like database, Data Safe private endpoint, etc.
|
491
|
+
|
492
|
+
|
493
|
+
:return: The peer_target_databases of this TargetDatabase.
|
494
|
+
:rtype: list[oci.data_safe.models.PeerTargetDatabase]
|
495
|
+
"""
|
496
|
+
return self._peer_target_databases
|
497
|
+
|
498
|
+
@peer_target_databases.setter
|
499
|
+
def peer_target_databases(self, peer_target_databases):
|
500
|
+
"""
|
501
|
+
Sets the peer_target_databases of this TargetDatabase.
|
502
|
+
The OCIDs of associated resources like database, Data Safe private endpoint, etc.
|
503
|
+
|
504
|
+
|
505
|
+
:param peer_target_databases: The peer_target_databases of this TargetDatabase.
|
506
|
+
:type: list[oci.data_safe.models.PeerTargetDatabase]
|
507
|
+
"""
|
508
|
+
self._peer_target_databases = peer_target_databases
|
509
|
+
|
479
510
|
@property
|
480
511
|
def freeform_tags(self):
|
481
512
|
"""
|
@@ -0,0 +1,134 @@
|
|
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: 20181201
|
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 UpdateFindingDetails(object):
|
14
|
+
"""
|
15
|
+
Details to update a finding in a security assessment.
|
16
|
+
"""
|
17
|
+
|
18
|
+
def __init__(self, **kwargs):
|
19
|
+
"""
|
20
|
+
Initializes a new UpdateFindingDetails object with values from keyword arguments.
|
21
|
+
The following keyword arguments are supported (corresponding to the getters/setters of this class):
|
22
|
+
|
23
|
+
:param severity:
|
24
|
+
The value to assign to the severity property of this UpdateFindingDetails.
|
25
|
+
:type severity: str
|
26
|
+
|
27
|
+
:param justification:
|
28
|
+
The value to assign to the justification property of this UpdateFindingDetails.
|
29
|
+
:type justification: str
|
30
|
+
|
31
|
+
:param time_valid_until:
|
32
|
+
The value to assign to the time_valid_until property of this UpdateFindingDetails.
|
33
|
+
:type time_valid_until: datetime
|
34
|
+
|
35
|
+
"""
|
36
|
+
self.swagger_types = {
|
37
|
+
'severity': 'str',
|
38
|
+
'justification': 'str',
|
39
|
+
'time_valid_until': 'datetime'
|
40
|
+
}
|
41
|
+
|
42
|
+
self.attribute_map = {
|
43
|
+
'severity': 'severity',
|
44
|
+
'justification': 'justification',
|
45
|
+
'time_valid_until': 'timeValidUntil'
|
46
|
+
}
|
47
|
+
|
48
|
+
self._severity = None
|
49
|
+
self._justification = None
|
50
|
+
self._time_valid_until = None
|
51
|
+
|
52
|
+
@property
|
53
|
+
def severity(self):
|
54
|
+
"""
|
55
|
+
Gets the severity of this UpdateFindingDetails.
|
56
|
+
The severity of the finding as defined or changed by the user.
|
57
|
+
|
58
|
+
|
59
|
+
:return: The severity of this UpdateFindingDetails.
|
60
|
+
:rtype: str
|
61
|
+
"""
|
62
|
+
return self._severity
|
63
|
+
|
64
|
+
@severity.setter
|
65
|
+
def severity(self, severity):
|
66
|
+
"""
|
67
|
+
Sets the severity of this UpdateFindingDetails.
|
68
|
+
The severity of the finding as defined or changed by the user.
|
69
|
+
|
70
|
+
|
71
|
+
:param severity: The severity of this UpdateFindingDetails.
|
72
|
+
:type: str
|
73
|
+
"""
|
74
|
+
self._severity = severity
|
75
|
+
|
76
|
+
@property
|
77
|
+
def justification(self):
|
78
|
+
"""
|
79
|
+
Gets the justification of this UpdateFindingDetails.
|
80
|
+
User provided reason for accepting or modifying this finding if they choose to do so.
|
81
|
+
|
82
|
+
|
83
|
+
:return: The justification of this UpdateFindingDetails.
|
84
|
+
:rtype: str
|
85
|
+
"""
|
86
|
+
return self._justification
|
87
|
+
|
88
|
+
@justification.setter
|
89
|
+
def justification(self, justification):
|
90
|
+
"""
|
91
|
+
Sets the justification of this UpdateFindingDetails.
|
92
|
+
User provided reason for accepting or modifying this finding if they choose to do so.
|
93
|
+
|
94
|
+
|
95
|
+
:param justification: The justification of this UpdateFindingDetails.
|
96
|
+
:type: str
|
97
|
+
"""
|
98
|
+
self._justification = justification
|
99
|
+
|
100
|
+
@property
|
101
|
+
def time_valid_until(self):
|
102
|
+
"""
|
103
|
+
Gets the time_valid_until of this UpdateFindingDetails.
|
104
|
+
The time until which the change in severity (deferred / modified) got the given finding is valid.
|
105
|
+
|
106
|
+
|
107
|
+
:return: The time_valid_until of this UpdateFindingDetails.
|
108
|
+
:rtype: datetime
|
109
|
+
"""
|
110
|
+
return self._time_valid_until
|
111
|
+
|
112
|
+
@time_valid_until.setter
|
113
|
+
def time_valid_until(self, time_valid_until):
|
114
|
+
"""
|
115
|
+
Sets the time_valid_until of this UpdateFindingDetails.
|
116
|
+
The time until which the change in severity (deferred / modified) got the given finding is valid.
|
117
|
+
|
118
|
+
|
119
|
+
:param time_valid_until: The time_valid_until of this UpdateFindingDetails.
|
120
|
+
:type: datetime
|
121
|
+
"""
|
122
|
+
self._time_valid_until = time_valid_until
|
123
|
+
|
124
|
+
def __repr__(self):
|
125
|
+
return formatted_flat_dict(self)
|
126
|
+
|
127
|
+
def __eq__(self, other):
|
128
|
+
if other is None:
|
129
|
+
return False
|
130
|
+
|
131
|
+
return self.__dict__ == other.__dict__
|
132
|
+
|
133
|
+
def __ne__(self, other):
|
134
|
+
return not self == other
|