EthernetInterface resource
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
resources:
#
# Creates a layer 2 ethernet interface without vlan configuration
#
scmL2Intf:
type: scm:EthernetInterface
name: scm_l2_intf
properties:
name: $scm_l2_intf
comment: Managed by Pulumi
folder: ngfw-shared
linkSpeed: auto
linkDuplex: full
linkState: auto
layer2: {}
#
# Creates a tap ethernet interface without vlan configuration
#
scmTapIntf:
type: scm:EthernetInterface
name: scm_tap_intf
properties:
name: $scm_tap_intf
comment: Managed by Pulumi
folder: ngfw-shared
linkSpeed: auto
linkDuplex: full
linkState: auto
tap: {}
#
# Creates a layer3 ethernet interface without ip configuration
#
scmL3Intf:
type: scm:EthernetInterface
name: scm_l3_intf
properties:
name: $scm_l3_intf
comment: Managed by Pulumi
folder: ngfw-shared
linkSpeed: auto
linkDuplex: full
linkState: auto
layer3: {}
#
# Creates a layer3 ethernet interface with static ip address
#
scmL3IntfStatic:
type: scm:EthernetInterface
name: scm_l3_intf_static
properties:
name: $scm_l3_intf_static
comment: Managed by Pulumi
folder: ngfw-shared
layer3:
ips:
- name: 198.18.1.1/24
#
# Creates a layer3 ethernet interface with dhcp-assigned ip address
#
scmL3IntfDhcp:
type: scm:EthernetInterface
name: scm_l3_intf_dhcp
properties:
name: $scm_l3_intf_dhcp
comment: Managed by Pulumi
folder: ngfw-shared
layer3:
dhcpClient:
enable: true
createDefaultRoute: true
defaultRouteMetric: 10
#
# Creates a layer3 ethernet interface with pppoe
#
scmL3IntfPppoe:
type: scm:EthernetInterface
name: scm_l3_intf_pppoe
properties:
name: $scm_l3_intf_pppoe
comment: Managed by Pulumi
folder: ngfw-shared
layer3:
pppoe:
authentication: auto
enable: true
username: testname
password: testpass
createDefaultRoute: true
defaultRouteMetric: 10
#
# Creates a layer3 ethernet interface with multiple static ip addresses
#
scmL3IntfComplex:
type: scm:EthernetInterface
name: scm_l3_intf_complex
properties:
name: $scm_l3_intf_complex
comment: Managed by Pulumi
folder: ngfw-shared
linkSpeed: auto
linkDuplex: full
linkState: auto
layer3:
ips:
- name: 198.18.1.1/24
name: 198.18.1.2/32
mtu: 1500
Create EthernetInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EthernetInterface(name: string, args?: EthernetInterfaceArgs, opts?: CustomResourceOptions);@overload
def EthernetInterface(resource_name: str,
args: Optional[EthernetInterfaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def EthernetInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
comment: Optional[str] = None,
default_value: Optional[str] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
layer2: Optional[EthernetInterfaceLayer2Args] = None,
layer3: Optional[EthernetInterfaceLayer3Args] = None,
link_duplex: Optional[str] = None,
link_speed: Optional[str] = None,
link_state: Optional[str] = None,
name: Optional[str] = None,
poe: Optional[EthernetInterfacePoeArgs] = None,
snippet: Optional[str] = None,
tap: Optional[EthernetInterfaceTapArgs] = None)func NewEthernetInterface(ctx *Context, name string, args *EthernetInterfaceArgs, opts ...ResourceOption) (*EthernetInterface, error)public EthernetInterface(string name, EthernetInterfaceArgs? args = null, CustomResourceOptions? opts = null)
public EthernetInterface(String name, EthernetInterfaceArgs args)
public EthernetInterface(String name, EthernetInterfaceArgs args, CustomResourceOptions options)
type: scm:EthernetInterface
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EthernetInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EthernetInterfaceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EthernetInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EthernetInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EthernetInterfaceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ethernetInterfaceResource = new Scm.EthernetInterface("ethernetInterfaceResource", new()
{
Comment = "string",
DefaultValue = "string",
Device = "string",
Folder = "string",
Layer2 = new Scm.Inputs.EthernetInterfaceLayer2Args
{
Lldp = new Scm.Inputs.EthernetInterfaceLayer2LldpArgs
{
Enable = false,
},
VlanTag = "string",
},
Layer3 = new Scm.Inputs.EthernetInterfaceLayer3Args
{
Arps = new[]
{
new Scm.Inputs.EthernetInterfaceLayer3ArpArgs
{
HwAddress = "string",
Name = "string",
},
},
DdnsConfig = new Scm.Inputs.EthernetInterfaceLayer3DdnsConfigArgs
{
DdnsCertProfile = "string",
DdnsHostname = "string",
DdnsVendor = "string",
DdnsVendorConfig = "string",
DdnsEnabled = false,
DdnsIp = "string",
DdnsUpdateInterval = 0,
},
DhcpClient = new Scm.Inputs.EthernetInterfaceLayer3DhcpClientArgs
{
CreateDefaultRoute = false,
DefaultRouteMetric = 0,
Enable = false,
SendHostname = new Scm.Inputs.EthernetInterfaceLayer3DhcpClientSendHostnameArgs
{
Enable = false,
Hostname = "string",
},
},
InterfaceManagementProfile = "string",
Ips = new[]
{
new Scm.Inputs.EthernetInterfaceLayer3IpArgs
{
Name = "string",
},
},
Mtu = 0,
Pppoe = new Scm.Inputs.EthernetInterfaceLayer3PppoeArgs
{
Password = "string",
Username = "string",
AccessConcentrator = "string",
Authentication = "string",
DefaultRouteMetric = 0,
Enable = false,
Passive = new Scm.Inputs.EthernetInterfaceLayer3PppoePassiveArgs
{
Enable = false,
},
Service = "string",
StaticAddress = new Scm.Inputs.EthernetInterfaceLayer3PppoeStaticAddressArgs
{
Ip = "string",
},
},
},
LinkDuplex = "string",
LinkSpeed = "string",
LinkState = "string",
Name = "string",
Poe = new Scm.Inputs.EthernetInterfacePoeArgs
{
PoeEnabled = false,
PoeRsvdPwr = 0,
},
Snippet = "string",
Tap = null,
});
example, err := scm.NewEthernetInterface(ctx, "ethernetInterfaceResource", &scm.EthernetInterfaceArgs{
Comment: pulumi.String("string"),
DefaultValue: pulumi.String("string"),
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Layer2: &scm.EthernetInterfaceLayer2Args{
Lldp: &scm.EthernetInterfaceLayer2LldpArgs{
Enable: pulumi.Bool(false),
},
VlanTag: pulumi.String("string"),
},
Layer3: &scm.EthernetInterfaceLayer3Args{
Arps: scm.EthernetInterfaceLayer3ArpArray{
&scm.EthernetInterfaceLayer3ArpArgs{
HwAddress: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
DdnsConfig: &scm.EthernetInterfaceLayer3DdnsConfigArgs{
DdnsCertProfile: pulumi.String("string"),
DdnsHostname: pulumi.String("string"),
DdnsVendor: pulumi.String("string"),
DdnsVendorConfig: pulumi.String("string"),
DdnsEnabled: pulumi.Bool(false),
DdnsIp: pulumi.String("string"),
DdnsUpdateInterval: pulumi.Int(0),
},
DhcpClient: &scm.EthernetInterfaceLayer3DhcpClientArgs{
CreateDefaultRoute: pulumi.Bool(false),
DefaultRouteMetric: pulumi.Int(0),
Enable: pulumi.Bool(false),
SendHostname: &scm.EthernetInterfaceLayer3DhcpClientSendHostnameArgs{
Enable: pulumi.Bool(false),
Hostname: pulumi.String("string"),
},
},
InterfaceManagementProfile: pulumi.String("string"),
Ips: scm.EthernetInterfaceLayer3IpArray{
&scm.EthernetInterfaceLayer3IpArgs{
Name: pulumi.String("string"),
},
},
Mtu: pulumi.Int(0),
Pppoe: &scm.EthernetInterfaceLayer3PppoeArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
AccessConcentrator: pulumi.String("string"),
Authentication: pulumi.String("string"),
DefaultRouteMetric: pulumi.Int(0),
Enable: pulumi.Bool(false),
Passive: &scm.EthernetInterfaceLayer3PppoePassiveArgs{
Enable: pulumi.Bool(false),
},
Service: pulumi.String("string"),
StaticAddress: &scm.EthernetInterfaceLayer3PppoeStaticAddressArgs{
Ip: pulumi.String("string"),
},
},
},
LinkDuplex: pulumi.String("string"),
LinkSpeed: pulumi.String("string"),
LinkState: pulumi.String("string"),
Name: pulumi.String("string"),
Poe: &scm.EthernetInterfacePoeArgs{
PoeEnabled: pulumi.Bool(false),
PoeRsvdPwr: pulumi.Int(0),
},
Snippet: pulumi.String("string"),
Tap: &scm.EthernetInterfaceTapArgs{},
})
var ethernetInterfaceResource = new EthernetInterface("ethernetInterfaceResource", EthernetInterfaceArgs.builder()
.comment("string")
.defaultValue("string")
.device("string")
.folder("string")
.layer2(EthernetInterfaceLayer2Args.builder()
.lldp(EthernetInterfaceLayer2LldpArgs.builder()
.enable(false)
.build())
.vlanTag("string")
.build())
.layer3(EthernetInterfaceLayer3Args.builder()
.arps(EthernetInterfaceLayer3ArpArgs.builder()
.hwAddress("string")
.name("string")
.build())
.ddnsConfig(EthernetInterfaceLayer3DdnsConfigArgs.builder()
.ddnsCertProfile("string")
.ddnsHostname("string")
.ddnsVendor("string")
.ddnsVendorConfig("string")
.ddnsEnabled(false)
.ddnsIp("string")
.ddnsUpdateInterval(0)
.build())
.dhcpClient(EthernetInterfaceLayer3DhcpClientArgs.builder()
.createDefaultRoute(false)
.defaultRouteMetric(0)
.enable(false)
.sendHostname(EthernetInterfaceLayer3DhcpClientSendHostnameArgs.builder()
.enable(false)
.hostname("string")
.build())
.build())
.interfaceManagementProfile("string")
.ips(EthernetInterfaceLayer3IpArgs.builder()
.name("string")
.build())
.mtu(0)
.pppoe(EthernetInterfaceLayer3PppoeArgs.builder()
.password("string")
.username("string")
.accessConcentrator("string")
.authentication("string")
.defaultRouteMetric(0)
.enable(false)
.passive(EthernetInterfaceLayer3PppoePassiveArgs.builder()
.enable(false)
.build())
.service("string")
.staticAddress(EthernetInterfaceLayer3PppoeStaticAddressArgs.builder()
.ip("string")
.build())
.build())
.build())
.linkDuplex("string")
.linkSpeed("string")
.linkState("string")
.name("string")
.poe(EthernetInterfacePoeArgs.builder()
.poeEnabled(false)
.poeRsvdPwr(0)
.build())
.snippet("string")
.tap(EthernetInterfaceTapArgs.builder()
.build())
.build());
ethernet_interface_resource = scm.EthernetInterface("ethernetInterfaceResource",
comment="string",
default_value="string",
device="string",
folder="string",
layer2={
"lldp": {
"enable": False,
},
"vlan_tag": "string",
},
layer3={
"arps": [{
"hw_address": "string",
"name": "string",
}],
"ddns_config": {
"ddns_cert_profile": "string",
"ddns_hostname": "string",
"ddns_vendor": "string",
"ddns_vendor_config": "string",
"ddns_enabled": False,
"ddns_ip": "string",
"ddns_update_interval": 0,
},
"dhcp_client": {
"create_default_route": False,
"default_route_metric": 0,
"enable": False,
"send_hostname": {
"enable": False,
"hostname": "string",
},
},
"interface_management_profile": "string",
"ips": [{
"name": "string",
}],
"mtu": 0,
"pppoe": {
"password": "string",
"username": "string",
"access_concentrator": "string",
"authentication": "string",
"default_route_metric": 0,
"enable": False,
"passive": {
"enable": False,
},
"service": "string",
"static_address": {
"ip": "string",
},
},
},
link_duplex="string",
link_speed="string",
link_state="string",
name="string",
poe={
"poe_enabled": False,
"poe_rsvd_pwr": 0,
},
snippet="string",
tap={})
const ethernetInterfaceResource = new scm.EthernetInterface("ethernetInterfaceResource", {
comment: "string",
defaultValue: "string",
device: "string",
folder: "string",
layer2: {
lldp: {
enable: false,
},
vlanTag: "string",
},
layer3: {
arps: [{
hwAddress: "string",
name: "string",
}],
ddnsConfig: {
ddnsCertProfile: "string",
ddnsHostname: "string",
ddnsVendor: "string",
ddnsVendorConfig: "string",
ddnsEnabled: false,
ddnsIp: "string",
ddnsUpdateInterval: 0,
},
dhcpClient: {
createDefaultRoute: false,
defaultRouteMetric: 0,
enable: false,
sendHostname: {
enable: false,
hostname: "string",
},
},
interfaceManagementProfile: "string",
ips: [{
name: "string",
}],
mtu: 0,
pppoe: {
password: "string",
username: "string",
accessConcentrator: "string",
authentication: "string",
defaultRouteMetric: 0,
enable: false,
passive: {
enable: false,
},
service: "string",
staticAddress: {
ip: "string",
},
},
},
linkDuplex: "string",
linkSpeed: "string",
linkState: "string",
name: "string",
poe: {
poeEnabled: false,
poeRsvdPwr: 0,
},
snippet: "string",
tap: {},
});
type: scm:EthernetInterface
properties:
comment: string
defaultValue: string
device: string
folder: string
layer2:
lldp:
enable: false
vlanTag: string
layer3:
arps:
- hwAddress: string
name: string
ddnsConfig:
ddnsCertProfile: string
ddnsEnabled: false
ddnsHostname: string
ddnsIp: string
ddnsUpdateInterval: 0
ddnsVendor: string
ddnsVendorConfig: string
dhcpClient:
createDefaultRoute: false
defaultRouteMetric: 0
enable: false
sendHostname:
enable: false
hostname: string
interfaceManagementProfile: string
ips:
- name: string
mtu: 0
pppoe:
accessConcentrator: string
authentication: string
defaultRouteMetric: 0
enable: false
passive:
enable: false
password: string
service: string
staticAddress:
ip: string
username: string
linkDuplex: string
linkSpeed: string
linkState: string
name: string
poe:
poeEnabled: false
poeRsvdPwr: 0
snippet: string
tap: {}
EthernetInterface Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EthernetInterface resource accepts the following input properties:
- Comment string
- Interface description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Layer2
Ethernet
Interface Layer2 - Layer2
- Layer3
Ethernet
Interface Layer3 - Ethernet Interface Layer 3 configuration
- Link
Duplex string - Link duplex
- Link
Speed string - Link speed
- Link
State string - Link state
- Name string
- Interface name
- Poe
Ethernet
Interface Poe - Poe
- Snippet string
- The snippet in which the resource is defined
- Tap
Ethernet
Interface Tap - Tap
- Comment string
- Interface description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Layer2
Ethernet
Interface Layer2Args - Layer2
- Layer3
Ethernet
Interface Layer3Args - Ethernet Interface Layer 3 configuration
- Link
Duplex string - Link duplex
- Link
Speed string - Link speed
- Link
State string - Link state
- Name string
- Interface name
- Poe
Ethernet
Interface Poe Args - Poe
- Snippet string
- The snippet in which the resource is defined
- Tap
Ethernet
Interface Tap Args - Tap
- comment String
- Interface description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- layer2
Ethernet
Interface Layer2 - Layer2
- layer3
Ethernet
Interface Layer3 - Ethernet Interface Layer 3 configuration
- link
Duplex String - Link duplex
- link
Speed String - Link speed
- link
State String - Link state
- name String
- Interface name
- poe
Ethernet
Interface Poe - Poe
- snippet String
- The snippet in which the resource is defined
- tap
Ethernet
Interface Tap - Tap
- comment string
- Interface description
- default
Value string - Default interface assignment
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- layer2
Ethernet
Interface Layer2 - Layer2
- layer3
Ethernet
Interface Layer3 - Ethernet Interface Layer 3 configuration
- link
Duplex string - Link duplex
- link
Speed string - Link speed
- link
State string - Link state
- name string
- Interface name
- poe
Ethernet
Interface Poe - Poe
- snippet string
- The snippet in which the resource is defined
- tap
Ethernet
Interface Tap - Tap
- comment str
- Interface description
- default_
value str - Default interface assignment
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- layer2
Ethernet
Interface Layer2Args - Layer2
- layer3
Ethernet
Interface Layer3Args - Ethernet Interface Layer 3 configuration
- link_
duplex str - Link duplex
- link_
speed str - Link speed
- link_
state str - Link state
- name str
- Interface name
- poe
Ethernet
Interface Poe Args - Poe
- snippet str
- The snippet in which the resource is defined
- tap
Ethernet
Interface Tap Args - Tap
- comment String
- Interface description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- layer2 Property Map
- Layer2
- layer3 Property Map
- Ethernet Interface Layer 3 configuration
- link
Duplex String - Link duplex
- link
Speed String - Link speed
- link
State String - Link state
- name String
- Interface name
- poe Property Map
- Poe
- snippet String
- The snippet in which the resource is defined
- tap Property Map
- Tap
Outputs
All input properties are implicitly available as output properties. Additionally, the EthernetInterface resource produces the following output properties:
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- encrypted_
values Mapping[str, str] - Map of sensitive values returned from the API.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
Look up Existing EthernetInterface Resource
Get an existing EthernetInterface resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EthernetInterfaceState, opts?: CustomResourceOptions): EthernetInterface@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
comment: Optional[str] = None,
default_value: Optional[str] = None,
device: Optional[str] = None,
encrypted_values: Optional[Mapping[str, str]] = None,
folder: Optional[str] = None,
layer2: Optional[EthernetInterfaceLayer2Args] = None,
layer3: Optional[EthernetInterfaceLayer3Args] = None,
link_duplex: Optional[str] = None,
link_speed: Optional[str] = None,
link_state: Optional[str] = None,
name: Optional[str] = None,
poe: Optional[EthernetInterfacePoeArgs] = None,
snippet: Optional[str] = None,
tap: Optional[EthernetInterfaceTapArgs] = None,
tfid: Optional[str] = None) -> EthernetInterfacefunc GetEthernetInterface(ctx *Context, name string, id IDInput, state *EthernetInterfaceState, opts ...ResourceOption) (*EthernetInterface, error)public static EthernetInterface Get(string name, Input<string> id, EthernetInterfaceState? state, CustomResourceOptions? opts = null)public static EthernetInterface get(String name, Output<String> id, EthernetInterfaceState state, CustomResourceOptions options)resources: _: type: scm:EthernetInterface get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Comment string
- Interface description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Folder string
- The folder in which the resource is defined
- Layer2
Ethernet
Interface Layer2 - Layer2
- Layer3
Ethernet
Interface Layer3 - Ethernet Interface Layer 3 configuration
- Link
Duplex string - Link duplex
- Link
Speed string - Link speed
- Link
State string - Link state
- Name string
- Interface name
- Poe
Ethernet
Interface Poe - Poe
- Snippet string
- The snippet in which the resource is defined
- Tap
Ethernet
Interface Tap - Tap
- Tfid string
- Comment string
- Interface description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Folder string
- The folder in which the resource is defined
- Layer2
Ethernet
Interface Layer2Args - Layer2
- Layer3
Ethernet
Interface Layer3Args - Ethernet Interface Layer 3 configuration
- Link
Duplex string - Link duplex
- Link
Speed string - Link speed
- Link
State string - Link state
- Name string
- Interface name
- Poe
Ethernet
Interface Poe Args - Poe
- Snippet string
- The snippet in which the resource is defined
- Tap
Ethernet
Interface Tap Args - Tap
- Tfid string
- comment String
- Interface description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- folder String
- The folder in which the resource is defined
- layer2
Ethernet
Interface Layer2 - Layer2
- layer3
Ethernet
Interface Layer3 - Ethernet Interface Layer 3 configuration
- link
Duplex String - Link duplex
- link
Speed String - Link speed
- link
State String - Link state
- name String
- Interface name
- poe
Ethernet
Interface Poe - Poe
- snippet String
- The snippet in which the resource is defined
- tap
Ethernet
Interface Tap - Tap
- tfid String
- comment string
- Interface description
- default
Value string - Default interface assignment
- device string
- The device in which the resource is defined
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- folder string
- The folder in which the resource is defined
- layer2
Ethernet
Interface Layer2 - Layer2
- layer3
Ethernet
Interface Layer3 - Ethernet Interface Layer 3 configuration
- link
Duplex string - Link duplex
- link
Speed string - Link speed
- link
State string - Link state
- name string
- Interface name
- poe
Ethernet
Interface Poe - Poe
- snippet string
- The snippet in which the resource is defined
- tap
Ethernet
Interface Tap - Tap
- tfid string
- comment str
- Interface description
- default_
value str - Default interface assignment
- device str
- The device in which the resource is defined
- encrypted_
values Mapping[str, str] - Map of sensitive values returned from the API.
- folder str
- The folder in which the resource is defined
- layer2
Ethernet
Interface Layer2Args - Layer2
- layer3
Ethernet
Interface Layer3Args - Ethernet Interface Layer 3 configuration
- link_
duplex str - Link duplex
- link_
speed str - Link speed
- link_
state str - Link state
- name str
- Interface name
- poe
Ethernet
Interface Poe Args - Poe
- snippet str
- The snippet in which the resource is defined
- tap
Ethernet
Interface Tap Args - Tap
- tfid str
- comment String
- Interface description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- folder String
- The folder in which the resource is defined
- layer2 Property Map
- Layer2
- layer3 Property Map
- Ethernet Interface Layer 3 configuration
- link
Duplex String - Link duplex
- link
Speed String - Link speed
- link
State String - Link state
- name String
- Interface name
- poe Property Map
- Poe
- snippet String
- The snippet in which the resource is defined
- tap Property Map
- Tap
- tfid String
Supporting Types
EthernetInterfaceLayer2, EthernetInterfaceLayer2Args
- Lldp
Ethernet
Interface Layer2Lldp - LLDP Settings
- Vlan
Tag string - Assign interface to VLAN tag
- Lldp
Ethernet
Interface Layer2Lldp - LLDP Settings
- Vlan
Tag string - Assign interface to VLAN tag
- lldp
Ethernet
Interface Layer2Lldp - LLDP Settings
- vlan
Tag String - Assign interface to VLAN tag
- lldp
Ethernet
Interface Layer2Lldp - LLDP Settings
- vlan
Tag string - Assign interface to VLAN tag
- lldp
Ethernet
Interface Layer2Lldp - LLDP Settings
- vlan_
tag str - Assign interface to VLAN tag
- lldp Property Map
- LLDP Settings
- vlan
Tag String - Assign interface to VLAN tag
EthernetInterfaceLayer2Lldp, EthernetInterfaceLayer2LldpArgs
- Enable bool
- Enable LLDP on Interface
- Enable bool
- Enable LLDP on Interface
- enable Boolean
- Enable LLDP on Interface
- enable boolean
- Enable LLDP on Interface
- enable bool
- Enable LLDP on Interface
- enable Boolean
- Enable LLDP on Interface
EthernetInterfaceLayer3, EthernetInterfaceLayer3Args
- Arps
List<Ethernet
Interface Layer3Arp> - Ethernet Interfaces ARP configuration
- Ddns
Config EthernetInterface Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- Dhcp
Client EthernetInterface Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- Interface
Management stringProfile - Interface management profile
- Ips
List<Ethernet
Interface Layer3Ip> - Ethernet Interface IP addresses
- Mtu int
- MTU
- Pppoe
Ethernet
Interface Layer3Pppoe - Pppoe
- Arps
[]Ethernet
Interface Layer3Arp - Ethernet Interfaces ARP configuration
- Ddns
Config EthernetInterface Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- Dhcp
Client EthernetInterface Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- Interface
Management stringProfile - Interface management profile
- Ips
[]Ethernet
Interface Layer3Ip - Ethernet Interface IP addresses
- Mtu int
- MTU
- Pppoe
Ethernet
Interface Layer3Pppoe - Pppoe
- arps
List<Ethernet
Interface Layer3Arp> - Ethernet Interfaces ARP configuration
- ddns
Config EthernetInterface Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- dhcp
Client EthernetInterface Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- interface
Management StringProfile - Interface management profile
- ips
List<Ethernet
Interface Layer3Ip> - Ethernet Interface IP addresses
- mtu Integer
- MTU
- pppoe
Ethernet
Interface Layer3Pppoe - Pppoe
- arps
Ethernet
Interface Layer3Arp[] - Ethernet Interfaces ARP configuration
- ddns
Config EthernetInterface Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- dhcp
Client EthernetInterface Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- interface
Management stringProfile - Interface management profile
- ips
Ethernet
Interface Layer3Ip[] - Ethernet Interface IP addresses
- mtu number
- MTU
- pppoe
Ethernet
Interface Layer3Pppoe - Pppoe
- arps
Sequence[Ethernet
Interface Layer3Arp] - Ethernet Interfaces ARP configuration
- ddns_
config EthernetInterface Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- dhcp_
client EthernetInterface Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- interface_
management_ strprofile - Interface management profile
- ips
Sequence[Ethernet
Interface Layer3Ip] - Ethernet Interface IP addresses
- mtu int
- MTU
- pppoe
Ethernet
Interface Layer3Pppoe - Pppoe
- arps List<Property Map>
- Ethernet Interfaces ARP configuration
- ddns
Config Property Map - Dynamic DNS configuration specific to the Ethernet Interfaces.
- dhcp
Client Property Map - Ethernet Interfaces DHCP Client Object
- interface
Management StringProfile - Interface management profile
- ips List<Property Map>
- Ethernet Interface IP addresses
- mtu Number
- MTU
- pppoe Property Map
- Pppoe
EthernetInterfaceLayer3Arp, EthernetInterfaceLayer3ArpArgs
- hw_
address str - MAC address
- name str
- IP address
EthernetInterfaceLayer3DdnsConfig, EthernetInterfaceLayer3DdnsConfigArgs
- Ddns
Cert stringProfile - Certificate profile
- Ddns
Hostname string - Ddns hostname
- Ddns
Vendor string - DDNS vendor
- Ddns
Vendor stringConfig - DDNS vendor
- Ddns
Enabled bool - Enable DDNS?
- Ddns
Ip string - IP to register (static only)
- Ddns
Update intInterval - Update interval (days)
- Ddns
Cert stringProfile - Certificate profile
- Ddns
Hostname string - Ddns hostname
- Ddns
Vendor string - DDNS vendor
- Ddns
Vendor stringConfig - DDNS vendor
- Ddns
Enabled bool - Enable DDNS?
- Ddns
Ip string - IP to register (static only)
- Ddns
Update intInterval - Update interval (days)
- ddns
Cert StringProfile - Certificate profile
- ddns
Hostname String - Ddns hostname
- ddns
Vendor String - DDNS vendor
- ddns
Vendor StringConfig - DDNS vendor
- ddns
Enabled Boolean - Enable DDNS?
- ddns
Ip String - IP to register (static only)
- ddns
Update IntegerInterval - Update interval (days)
- ddns
Cert stringProfile - Certificate profile
- ddns
Hostname string - Ddns hostname
- ddns
Vendor string - DDNS vendor
- ddns
Vendor stringConfig - DDNS vendor
- ddns
Enabled boolean - Enable DDNS?
- ddns
Ip string - IP to register (static only)
- ddns
Update numberInterval - Update interval (days)
- ddns_
cert_ strprofile - Certificate profile
- ddns_
hostname str - Ddns hostname
- ddns_
vendor str - DDNS vendor
- ddns_
vendor_ strconfig - DDNS vendor
- ddns_
enabled bool - Enable DDNS?
- ddns_
ip str - IP to register (static only)
- ddns_
update_ intinterval - Update interval (days)
- ddns
Cert StringProfile - Certificate profile
- ddns
Hostname String - Ddns hostname
- ddns
Vendor String - DDNS vendor
- ddns
Vendor StringConfig - DDNS vendor
- ddns
Enabled Boolean - Enable DDNS?
- ddns
Ip String - IP to register (static only)
- ddns
Update NumberInterval - Update interval (days)
EthernetInterfaceLayer3DhcpClient, EthernetInterfaceLayer3DhcpClientArgs
- Create
Default boolRoute - Automatically create default route pointing to default gateway provided by server
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable DHCP?
- Send
Hostname EthernetInterface Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend hostname
- Create
Default boolRoute - Automatically create default route pointing to default gateway provided by server
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable DHCP?
- Send
Hostname EthernetInterface Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend hostname
- create
Default BooleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route IntegerMetric - Metric of the default route created
- enable Boolean
- Enable DHCP?
- send
Hostname EthernetInterface Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend hostname
- create
Default booleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route numberMetric - Metric of the default route created
- enable boolean
- Enable DHCP?
- send
Hostname EthernetInterface Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend hostname
- create_
default_ boolroute - Automatically create default route pointing to default gateway provided by server
- default_
route_ intmetric - Metric of the default route created
- enable bool
- Enable DHCP?
- send_
hostname EthernetInterface Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend hostname
- create
Default BooleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route NumberMetric - Metric of the default route created
- enable Boolean
- Enable DHCP?
- send
Hostname Property Map - Ethernet Interfaces DHCP ClientSend hostname
EthernetInterfaceLayer3DhcpClientSendHostname, EthernetInterfaceLayer3DhcpClientSendHostnameArgs
EthernetInterfaceLayer3Ip, EthernetInterfaceLayer3IpArgs
- Name string
- Ethernet Interface IP addresses name
- Name string
- Ethernet Interface IP addresses name
- name String
- Ethernet Interface IP addresses name
- name string
- Ethernet Interface IP addresses name
- name str
- Ethernet Interface IP addresses name
- name String
- Ethernet Interface IP addresses name
EthernetInterfaceLayer3Pppoe, EthernetInterfaceLayer3PppoeArgs
- Password string
- Password
- Username string
- Username
- Access
Concentrator string - Access concentrator
- Authentication string
- Authentication protocol
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable
- Passive
Ethernet
Interface Layer3Pppoe Passive - Passive
- Service string
- Service
- Static
Address EthernetInterface Layer3Pppoe Static Address - Static address
- Password string
- Password
- Username string
- Username
- Access
Concentrator string - Access concentrator
- Authentication string
- Authentication protocol
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable
- Passive
Ethernet
Interface Layer3Pppoe Passive - Passive
- Service string
- Service
- Static
Address EthernetInterface Layer3Pppoe Static Address - Static address
- password String
- Password
- username String
- Username
- access
Concentrator String - Access concentrator
- authentication String
- Authentication protocol
- default
Route IntegerMetric - Metric of the default route created
- enable Boolean
- Enable
- passive
Ethernet
Interface Layer3Pppoe Passive - Passive
- service String
- Service
- static
Address EthernetInterface Layer3Pppoe Static Address - Static address
- password string
- Password
- username string
- Username
- access
Concentrator string - Access concentrator
- authentication string
- Authentication protocol
- default
Route numberMetric - Metric of the default route created
- enable boolean
- Enable
- passive
Ethernet
Interface Layer3Pppoe Passive - Passive
- service string
- Service
- static
Address EthernetInterface Layer3Pppoe Static Address - Static address
- password str
- Password
- username str
- Username
- access_
concentrator str - Access concentrator
- authentication str
- Authentication protocol
- default_
route_ intmetric - Metric of the default route created
- enable bool
- Enable
- passive
Ethernet
Interface Layer3Pppoe Passive - Passive
- service str
- Service
- static_
address EthernetInterface Layer3Pppoe Static Address - Static address
- password String
- Password
- username String
- Username
- access
Concentrator String - Access concentrator
- authentication String
- Authentication protocol
- default
Route NumberMetric - Metric of the default route created
- enable Boolean
- Enable
- passive Property Map
- Passive
- service String
- Service
- static
Address Property Map - Static address
EthernetInterfaceLayer3PppoePassive, EthernetInterfaceLayer3PppoePassiveArgs
- Enable bool
- Passive Mode enabled
- Enable bool
- Passive Mode enabled
- enable Boolean
- Passive Mode enabled
- enable boolean
- Passive Mode enabled
- enable bool
- Passive Mode enabled
- enable Boolean
- Passive Mode enabled
EthernetInterfaceLayer3PppoeStaticAddress, EthernetInterfaceLayer3PppoeStaticAddressArgs
- Ip string
- Static IP address
- Ip string
- Static IP address
- ip String
- Static IP address
- ip string
- Static IP address
- ip str
- Static IP address
- ip String
- Static IP address
EthernetInterfacePoe, EthernetInterfacePoeArgs
- Poe
Enabled bool - Enabled PoE?
- Poe
Rsvd intPwr - PoE reserved power
- Poe
Enabled bool - Enabled PoE?
- Poe
Rsvd intPwr - PoE reserved power
- poe
Enabled Boolean - Enabled PoE?
- poe
Rsvd IntegerPwr - PoE reserved power
- poe
Enabled boolean - Enabled PoE?
- poe
Rsvd numberPwr - PoE reserved power
- poe_
enabled bool - Enabled PoE?
- poe_
rsvd_ intpwr - PoE reserved power
- poe
Enabled Boolean - Enabled PoE?
- poe
Rsvd NumberPwr - PoE reserved power
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
