Interface AzureImageDetails
Holds the information required to deploy a node from an Azure VM image.
Namespace: Neon.Kube.Models
Assembly: Neon.Kube.Models.dll
Syntax
[Target("all")]
public interface AzureImageDetails
Properties
ComputePlan
Identifies the Azure marketplace compute plan.
Declaration
[JsonProperty(PropertyName = "ComputePlan", Required = Required.Always, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
AzureComputePlan ComputePlan { get; set; }
Property Value
Type | Description |
---|---|
AzureComputePlan |
ImageReference
Identifies the Azure VM image.
Declaration
[JsonProperty(PropertyName = "ImageReference", Required = Required.Always, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
AzureImageReference ImageReference { get; set; }
Property Value
Type | Description |
---|---|
AzureImageReference |