Show / Hide Table of Contents

Class ManagementApplianceConfiguration

Configuration of management appliance.

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

Properties

IsLogIngestionEnabled

Declaration
[Required(ErrorMessage = "IsLogIngestionEnabled is required.")]
[JsonProperty(PropertyName = "isLogIngestionEnabled")]
public bool? IsLogIngestionEnabled { get; set; }
Property Value
Type Description
bool?

Is log ingestion from SDDC to OCI enabled.

Remarks

Required

IsMetricsCollectionEnabled

Declaration
[Required(ErrorMessage = "IsMetricsCollectionEnabled is required.")]
[JsonProperty(PropertyName = "isMetricsCollectionEnabled")]
public bool? IsMetricsCollectionEnabled { get; set; }
Property Value
Type Description
bool?

Is metrics collection and publishing is enabled for appliance.

Remarks

Required

Metrics

Declaration
[JsonProperty(PropertyName = "metrics")]
public List<string> Metrics { get; set; }
Property Value
Type Description
List<string>

Array of metrics ids to collect.

SupportBundleBucketId

Declaration
[JsonProperty(PropertyName = "supportBundleBucketId")]
public string SupportBundleBucketId { get; set; }
Property Value
Type Description
string

The OCID of support bundle Object Storage bucket.

In this article
Back to top