Show / Hide Table of Contents

Class LogAnalyticsEmBridgeSummaryReport

Log-Analytics EM Bridge counts summary.

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

Properties

ActiveEmBridgeCount

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

Total number of ACTIVE enterprise manager bridges.

Remarks

Required

CompartmentId

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

Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).

Remarks

Required

CreatingEmBridgeCount

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

Number of enterprise manager bridges in CREATING state.

Remarks

Required

DeletedEmBridgeCount

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

Number of enterprise manager bridges in DELETED state.

Remarks

Required

NeedsAttentionEmBridgeCount

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

Number of enterprise manager bridges in NEEDS_ATTENTION state.

Remarks

Required

TotalEmBridgeCount

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

Total number of enterprise manager bridges.

Remarks

Required

In this article
Back to top