Show / Hide Table of Contents

Class FleetDiagnosisSummary

Diagnosis of a resource needed by the fleet.

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

Properties

ResourceDiagnosis

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

The diagnosis message.

ResourceId

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

The OCID of the external resouce needed by the fleet.

ResourceState

Declaration
[JsonProperty(PropertyName = "resourceState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FleetDiagnosisSummary.ResourceStateEnum? ResourceState { get; set; }
Property Value
Type Description
FleetDiagnosisSummary.ResourceStateEnum?

The state of the resource. The resource state is ACTIVE when it works properly for the fleet. In case it would cause an issue for the fleet function, the state is INACTIVE. When JMS can't locate the resource, the state is NOT_FOUND. OTHER covers other cases, such as a temporarily network issue that prevents JMS from detecting the resource. Check the resourceDiagnosis for details.

ResourceType

Declaration
[Required(ErrorMessage = "ResourceType is required.")]
[JsonProperty(PropertyName = "resourceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FleetDiagnosisSummary.ResourceTypeEnum? ResourceType { get; set; }
Property Value
Type Description
FleetDiagnosisSummary.ResourceTypeEnum?

The type of the resource needed by the fleet. This is the role of a resource in the fleet. Use the OCID to determine the actual OCI resource type such as log group or log.

Remarks

Required

In this article
Back to top