Show / Hide Table of Contents

Class AdhocQueryRegionalDetails

Instance level status for each region.

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

Properties

ExpectedCount

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

Expected number of instances on which query should run

ExpiredCount

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

Number of instances on which query expired

FailedCount

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

Number of instances on which query failed

Region

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

Region name

Remarks

Required

RegionalError

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

error message to show if adhoc query fails in a region

RegionalStatus

Declaration
[JsonProperty(PropertyName = "regionalStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AdhocQueryStatus? RegionalStatus { get; set; }
Property Value
Type Description
AdhocQueryStatus?

adhoc query status of the region

SucceededCount

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

Number of instances on which query succeeded

In this article
Back to top