Show / Hide Table of Contents

    Class VirtualMachineScaleSetIpTag

    Contains the IP tag associated with the public IP address.

    Inheritance
    Object
    VirtualMachineScaleSetIpTag
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Compute.dll
    Syntax
    public class VirtualMachineScaleSetIpTag

    Constructors

    VirtualMachineScaleSetIpTag()

    Initializes a new instance of the VirtualMachineScaleSetIpTag class.

    Declaration
    public VirtualMachineScaleSetIpTag ();

    VirtualMachineScaleSetIpTag(String, String)

    Initializes a new instance of the VirtualMachineScaleSetIpTag class.

    Declaration
    public VirtualMachineScaleSetIpTag (string ipTagType = null, string tag = null);
    Parameters
    String ipTagType

    IP tag type. Example: FirstPartyUsage.

    String tag

    IP tag associated with the public IP. Example: SQL, Storage etc.

    Properties

    IpTagType

    Gets or sets IP tag type. Example: FirstPartyUsage.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="ipTagType")]
    public string IpTagType { get; set; }
    Property Value
    String

    Tag

    Gets or sets IP tag associated with the public IP. Example: SQL, Storage etc.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="tag")]
    public string Tag { get; set; }
    Property Value
    String

    Back to top Azure SDK for Net