ReplicaNic
Last updated
Was this helpful?
lan
Integer
The LAN ID of this replica NIC.
name
String
The replica NIC name.
dhcp
Boolean
DHCP for this replica NIC. This is an optional attribute with the default value 'TRUE' if not specified in the request payload or as null.
[optional]
firewall_active
Boolean
Activate or deactivate the firewall. By default, an active firewall without any defined rules will block all incoming network traffic except for the firewall rules that explicitly allows certain protocols, IP addresses and ports.
[optional]
firewall_type
String
The type of firewall rules that will be allowed on the NIC. If not specified, the default INGRESS value is used.
[optional]
require 'ionoscloud-vm-autoscaling'
instance = IonoscloudVmAutoscaling::ReplicaNic.new(
lan: 1,
name: LAN NIC 1,
dhcp: true,
firewall_active: true,
firewall_type: INGRESS,
flow_logs: null,
firewall_rules: null
)Last updated
Was this helpful?
Was this helpful?