Class HostingReadinessProblem
Details a problem reported by a hosting manager preventing a cluster deployment.
Namespace: Neon.Kube.Hosting
Assembly: Neon.Kube.dll
Syntax
public class HostingReadinessProblem
Constructors
HostingReadinessProblem(string, string)
Constructor.
Declaration
public HostingReadinessProblem(string type, string details)
Parameters
Type | Name | Description |
---|---|---|
string | type | Identifies the problem type. |
string | details | Specifies the problem details. |
Fields
AwsType
Identifies AWS related problems.
Declaration
public const string AwsType = "aws"
Field Value
Type | Description |
---|---|
string |
AzureType
Identifies Azure related problems.
Declaration
public const string AzureType = "azure"
Field Value
Type | Description |
---|---|
string |
ClusterDefinitionType
Identifies cluster definition related problems.
Declaration
public const string ClusterDefinitionType = "cluster-def"
Field Value
Type | Description |
---|---|
string |
HyperVType
Identifies Hyper-V related problems.
Declaration
public const string HyperVType = "hyper-v"
Field Value
Type | Description |
---|---|
string |
XenServerType
Identifies XenServer related problems.
Declaration
public const string XenServerType = "xenserver"
Field Value
Type | Description |
---|---|
string |
Properties
Details
Returns the problem details.
Declaration
public string Details { get; }
Property Value
Type | Description |
---|---|
string |
Type
Returns the problem type.
Declaration
public string Type { get; }
Property Value
Type | Description |
---|---|
string |