Show / Hide Table of Contents

Class ApexFaIntegrationPrerequisitesCheck

The results of a prerequisites check for APEX FA integration

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

Properties

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApexFaIntegrationPrerequisitesCheck.StatusEnum? Status { get; set; }
Property Value
Type Description
ApexFaIntegrationPrerequisitesCheck.StatusEnum?

Status indicating the outcome of the prerequisites check.

StatusDetails

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

Messages describing the prerequisites check outcome. Messages can provide actionable information when the status indicates a failure.

In this article
Back to top