Class NetworkInterfaceSubInterface
Inheritance
NetworkInterfaceSubInterface
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class NetworkInterfaceSubInterface : IDirectResponseSchema
Properties
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
IpAddress
An IPv4 internal IP address to assign to the instance for this subinterface. If specified,
ip_allocation_mode should be set to ALLOCATE_IP.
Declaration
[JsonProperty("ipAddress")]
public virtual string IpAddress { get; set; }
Property Value
IpAllocationMode
Declaration
[JsonProperty("ipAllocationMode")]
public virtual string IpAllocationMode { get; set; }
Property Value
Subnetwork
If specified, this subnetwork must belong to the same network as that of the network interface. If not
specified the subnet of network interface will be used. If you specify this property, you can specify the
subnetwork as a full or partial URL. For example, the following are all valid URLs: -
https://www.googleapis.com/compute/v1/projects/project/regions/region /subnetworks/subnetwork -
regions/region/subnetworks/subnetwork
Declaration
[JsonProperty("subnetwork")]
public virtual string Subnetwork { get; set; }
Property Value
Vlan
VLAN tag. Should match the VLAN(s) supported by the subnetwork to which this subinterface is connecting.
Declaration
[JsonProperty("vlan")]
public virtual int? Vlan { get; set; }
Property Value
Implements