Show / Hide Table of Contents

Class UpdateConfigurationDetails

Parameters to update Cloud Guard configuration details for a tenancy.

Inheritance
object
UpdateConfigurationDetails
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 UpdateConfigurationDetails

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?

Identifies if Oracle managed resources will be created by customers. If no value is specified false is the default.

ServiceConfigurations

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

List of service configurations for tenant

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(StringEnumConverter))]
public CloudGuardStatus? Status { get; set; }
Property Value
Type Description
CloudGuardStatus?

Status of Cloud Guard tenant

Remarks

Required

In this article
Back to top