Show / Hide Table of Contents

Class Configuration

Specifies several key settings for a Cloud Guard tenancy, identified by tenancy root compartment OCID.

Inheritance
object
Configuration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudguardService.Models
Assembly: OCI.DotNetSDK.Cloudguard.dll
Syntax
public class Configuration

Properties

ReportingRegion

Declaration
[Required(ErrorMessage = "ReportingRegion is required.")]
[JsonProperty(PropertyName = "reportingRegion")]
public string ReportingRegion { get; set; }
Property Value
Type Description
string

The reporting region

Remarks

Required

SelfManageResources

Declaration
[JsonProperty(PropertyName = "selfManageResources")]
public bool? SelfManageResources { get; set; }
Property Value
Type Description
bool?

Were Oracle-managed resources created by customer?

ServiceConfigurations

Declaration
[JsonProperty(PropertyName = "serviceConfigurations")]
public List<ServiceConfiguration> ServiceConfigurations { get; set; }
Property Value
Type Description
List<ServiceConfiguration>

List of service configurations for this tenant

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CloudGuardStatus? Status { get; set; }
Property Value
Type Description
CloudGuardStatus?

Status of the Cloud Guard tenant

In this article
Back to top