Show / Hide Table of Contents

Class WorkersSummary

Details of the workers in a specific On-premise vantage point.

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

Properties

Available

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

Number of available workers in a specific On-premise vantage point.

Remarks

Required

AvailableCapabilities

Declaration
[Required(ErrorMessage = "AvailableCapabilities is required.")]
[JsonProperty(PropertyName = "availableCapabilities")]
public List<AvailableCapability> AvailableCapabilities { get; set; }
Property Value
Type Description
List<AvailableCapability>

List of available capabilities in a specific On-premise vantage point.

Remarks

Required

Disabled

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

Number of disabled workers in a specific On-premise vantage point.

Remarks

Required

MinVersion

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

Minimum version among the workers in a specific On-premise vantage point.

Remarks

Required

Total

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

Total number of workers in a specific On-premise vantage point.

Remarks

Required

Used

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

Number of occupied workers in a specific On-premise vantage point.

Remarks

Required

In this article
Back to top