Class: Google::Apis::ComputeAlpha::NetworkInterfaceSubInterface
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::NetworkInterfaceSubInterface
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#ip_address ⇒ String
An IPv4 internal IP address to assign to the instance for this subinterface.
-
#ip_allocation_mode ⇒ String
Corresponds to the JSON property
ipAllocationMode
. -
#subnetwork ⇒ String
If specified, this subnetwork must belong to the same network as that of the network interface.
-
#vlan ⇒ Fixnum
VLAN tag.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkInterfaceSubInterface
constructor
A new instance of NetworkInterfaceSubInterface.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkInterfaceSubInterface
Returns a new instance of NetworkInterfaceSubInterface.
27036 27037 27038 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27036 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip_address ⇒ String
An IPv4 internal IP address to assign to the instance for this subinterface.
If specified, ip_allocation_mode should be set to ALLOCATE_IP.
Corresponds to the JSON property ipAddress
27013 27014 27015 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27013 def ip_address @ip_address end |
#ip_allocation_mode ⇒ String
Corresponds to the JSON property ipAllocationMode
27018 27019 27020 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27018 def ip_allocation_mode @ip_allocation_mode end |
#subnetwork ⇒ String
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
Corresponds to the JSON property subnetwork
27028 27029 27030 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27028 def subnetwork @subnetwork end |
#vlan ⇒ Fixnum
VLAN tag. Should match the VLAN(s) supported by the subnetwork to which this
subinterface is connecting.
Corresponds to the JSON property vlan
27034 27035 27036 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27034 def vlan @vlan end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27041 27042 27043 27044 27045 27046 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27041 def update!(**args) @ip_address = args[:ip_address] if args.key?(:ip_address) @ip_allocation_mode = args[:ip_allocation_mode] if args.key?(:ip_allocation_mode) @subnetwork = args[:subnetwork] if args.key?(:subnetwork) @vlan = args[:vlan] if args.key?(:vlan) end |