Configuration¶
-
class
oci.cloud_guard.models.
Configuration
(**kwargs)¶ Bases:
object
Specifies several key settings for a Cloud Guard tenancy, identified by tenancy root compartment OCID.
Attributes
STATUS_DISABLED
A constant which can be used with the status property of a Configuration. STATUS_ENABLED
A constant which can be used with the status property of a Configuration. reporting_region
[Required] Gets the reporting_region of this Configuration. self_manage_resources
Gets the self_manage_resources of this Configuration. service_configurations
Gets the service_configurations of this Configuration. status
Gets the status of this Configuration. Methods
__init__
(**kwargs)Initializes a new Configuration object with values from keyword arguments. -
STATUS_DISABLED
= 'DISABLED'¶ A constant which can be used with the status property of a Configuration. This constant has a value of “DISABLED”
-
STATUS_ENABLED
= 'ENABLED'¶ A constant which can be used with the status property of a Configuration. This constant has a value of “ENABLED”
-
__init__
(**kwargs)¶ Initializes a new Configuration object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - reporting_region (str) – The value to assign to the reporting_region property of this Configuration.
- status (str) – The value to assign to the status property of this Configuration. Allowed values for this property are: “ENABLED”, “DISABLED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- service_configurations (list[oci.cloud_guard.models.ServiceConfiguration]) – The value to assign to the service_configurations property of this Configuration.
- self_manage_resources (bool) – The value to assign to the self_manage_resources property of this Configuration.
-
reporting_region
¶ [Required] Gets the reporting_region of this Configuration. The reporting region
Returns: The reporting_region of this Configuration. Return type: str
-
self_manage_resources
¶ Gets the self_manage_resources of this Configuration. Were Oracle-managed resources created by customer?
Returns: The self_manage_resources of this Configuration. Return type: bool
-
service_configurations
¶ Gets the service_configurations of this Configuration. List of service configurations for this tenant
Returns: The service_configurations of this Configuration. Return type: list[oci.cloud_guard.models.ServiceConfiguration]
-
status
¶ Gets the status of this Configuration. Status of the Cloud Guard tenant
Allowed values for this property are: “ENABLED”, “DISABLED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The status of this Configuration. Return type: str
-