sdwan.ServiceDhcpServerFeature
Explore with Pulumi AI
This resource can manage a Service DHCP Server Feature.
- Minimum SD-WAN Manager version:
20.12.0
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ServiceDhcpServerFeature;
import com.pulumi.sdwan.ServiceDhcpServerFeatureArgs;
import com.pulumi.sdwan.inputs.ServiceDhcpServerFeatureStaticLeaseArgs;
import com.pulumi.sdwan.inputs.ServiceDhcpServerFeatureOptionCodeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ServiceDhcpServerFeature("example", ServiceDhcpServerFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.networkAddress("1.2.3.4")
.subnetMask("255.255.255.0")
.excludes("192.168.1.1")
.leaseTime(86400)
.interfaceMtu(65535)
.domainName("example.com")
.defaultGateway("1.2.3.4")
.dnsServers("8.8.8.8")
.tftpServers("1.1.1.1")
.staticLeases(ServiceDhcpServerFeatureStaticLeaseArgs.builder()
.mac_address("01:02:03:04:05:06")
.ip_address("1.2.3.4")
.build())
.optionCodes(ServiceDhcpServerFeatureOptionCodeArgs.builder()
.code(250)
.ascii("example")
.build())
.build());
}
}
resources:
example:
type: sdwan:ServiceDhcpServerFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
networkAddress: 1.2.3.4
subnetMask: 255.255.255.0
excludes:
- 192.168.1.1
leaseTime: 86400
interfaceMtu: 65535
domainName: example.com
defaultGateway: 1.2.3.4
dnsServers:
- 8.8.8.8
tftpServers:
- 1.1.1.1
staticLeases:
- mac_address: 01:02:03:04:05:06
ip_address: 1.2.3.4
optionCodes:
- code: 250
ascii: example
Create ServiceDhcpServerFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceDhcpServerFeature(name: string, args: ServiceDhcpServerFeatureArgs, opts?: CustomResourceOptions);
@overload
def ServiceDhcpServerFeature(resource_name: str,
args: ServiceDhcpServerFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceDhcpServerFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
interface_mtu: Optional[int] = None,
dns_servers: Optional[Sequence[str]] = None,
lease_time: Optional[int] = None,
dns_servers_variable: Optional[str] = None,
domain_name: Optional[str] = None,
domain_name_variable: Optional[str] = None,
exclude_variable: Optional[str] = None,
excludes: Optional[Sequence[str]] = None,
lease_time_variable: Optional[str] = None,
default_gateway: Optional[str] = None,
tftp_servers_variable: Optional[str] = None,
description: Optional[str] = None,
default_gateway_variable: Optional[str] = None,
name: Optional[str] = None,
network_address: Optional[str] = None,
network_address_variable: Optional[str] = None,
option_codes: Optional[Sequence[ServiceDhcpServerFeatureOptionCodeArgs]] = None,
static_leases: Optional[Sequence[ServiceDhcpServerFeatureStaticLeaseArgs]] = None,
subnet_mask: Optional[str] = None,
subnet_mask_variable: Optional[str] = None,
tftp_servers: Optional[Sequence[str]] = None,
interface_mtu_variable: Optional[str] = None)
func NewServiceDhcpServerFeature(ctx *Context, name string, args ServiceDhcpServerFeatureArgs, opts ...ResourceOption) (*ServiceDhcpServerFeature, error)
public ServiceDhcpServerFeature(string name, ServiceDhcpServerFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceDhcpServerFeature(String name, ServiceDhcpServerFeatureArgs args)
public ServiceDhcpServerFeature(String name, ServiceDhcpServerFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceDhcpServerFeature
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 ServiceDhcpServerFeatureArgs
- 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 ServiceDhcpServerFeatureArgs
- 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 ServiceDhcpServerFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceDhcpServerFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceDhcpServerFeatureArgs
- 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 serviceDhcpServerFeatureResource = new Sdwan.ServiceDhcpServerFeature("serviceDhcpServerFeatureResource", new()
{
FeatureProfileId = "string",
InterfaceMtu = 0,
DnsServers = new[]
{
"string",
},
LeaseTime = 0,
DnsServersVariable = "string",
DomainName = "string",
DomainNameVariable = "string",
ExcludeVariable = "string",
Excludes = new[]
{
"string",
},
LeaseTimeVariable = "string",
DefaultGateway = "string",
TftpServersVariable = "string",
Description = "string",
DefaultGatewayVariable = "string",
Name = "string",
NetworkAddress = "string",
NetworkAddressVariable = "string",
OptionCodes = new[]
{
new Sdwan.Inputs.ServiceDhcpServerFeatureOptionCodeArgs
{
Ascii = "string",
AsciiVariable = "string",
Code = 0,
CodeVariable = "string",
Hex = "string",
HexVariable = "string",
IpVariable = "string",
Ips = new[]
{
"string",
},
},
},
StaticLeases = new[]
{
new Sdwan.Inputs.ServiceDhcpServerFeatureStaticLeaseArgs
{
IpAddress = "string",
IpAddressVariable = "string",
MacAddress = "string",
MacAddressVariable = "string",
},
},
SubnetMask = "string",
SubnetMaskVariable = "string",
TftpServers = new[]
{
"string",
},
InterfaceMtuVariable = "string",
});
example, err := sdwan.NewServiceDhcpServerFeature(ctx, "serviceDhcpServerFeatureResource", &sdwan.ServiceDhcpServerFeatureArgs{
FeatureProfileId: pulumi.String("string"),
InterfaceMtu: pulumi.Int(0),
DnsServers: pulumi.StringArray{
pulumi.String("string"),
},
LeaseTime: pulumi.Int(0),
DnsServersVariable: pulumi.String("string"),
DomainName: pulumi.String("string"),
DomainNameVariable: pulumi.String("string"),
ExcludeVariable: pulumi.String("string"),
Excludes: pulumi.StringArray{
pulumi.String("string"),
},
LeaseTimeVariable: pulumi.String("string"),
DefaultGateway: pulumi.String("string"),
TftpServersVariable: pulumi.String("string"),
Description: pulumi.String("string"),
DefaultGatewayVariable: pulumi.String("string"),
Name: pulumi.String("string"),
NetworkAddress: pulumi.String("string"),
NetworkAddressVariable: pulumi.String("string"),
OptionCodes: sdwan.ServiceDhcpServerFeatureOptionCodeArray{
&sdwan.ServiceDhcpServerFeatureOptionCodeArgs{
Ascii: pulumi.String("string"),
AsciiVariable: pulumi.String("string"),
Code: pulumi.Int(0),
CodeVariable: pulumi.String("string"),
Hex: pulumi.String("string"),
HexVariable: pulumi.String("string"),
IpVariable: pulumi.String("string"),
Ips: pulumi.StringArray{
pulumi.String("string"),
},
},
},
StaticLeases: sdwan.ServiceDhcpServerFeatureStaticLeaseArray{
&sdwan.ServiceDhcpServerFeatureStaticLeaseArgs{
IpAddress: pulumi.String("string"),
IpAddressVariable: pulumi.String("string"),
MacAddress: pulumi.String("string"),
MacAddressVariable: pulumi.String("string"),
},
},
SubnetMask: pulumi.String("string"),
SubnetMaskVariable: pulumi.String("string"),
TftpServers: pulumi.StringArray{
pulumi.String("string"),
},
InterfaceMtuVariable: pulumi.String("string"),
})
var serviceDhcpServerFeatureResource = new ServiceDhcpServerFeature("serviceDhcpServerFeatureResource", ServiceDhcpServerFeatureArgs.builder()
.featureProfileId("string")
.interfaceMtu(0)
.dnsServers("string")
.leaseTime(0)
.dnsServersVariable("string")
.domainName("string")
.domainNameVariable("string")
.excludeVariable("string")
.excludes("string")
.leaseTimeVariable("string")
.defaultGateway("string")
.tftpServersVariable("string")
.description("string")
.defaultGatewayVariable("string")
.name("string")
.networkAddress("string")
.networkAddressVariable("string")
.optionCodes(ServiceDhcpServerFeatureOptionCodeArgs.builder()
.ascii("string")
.asciiVariable("string")
.code(0)
.codeVariable("string")
.hex("string")
.hexVariable("string")
.ipVariable("string")
.ips("string")
.build())
.staticLeases(ServiceDhcpServerFeatureStaticLeaseArgs.builder()
.ipAddress("string")
.ipAddressVariable("string")
.macAddress("string")
.macAddressVariable("string")
.build())
.subnetMask("string")
.subnetMaskVariable("string")
.tftpServers("string")
.interfaceMtuVariable("string")
.build());
service_dhcp_server_feature_resource = sdwan.ServiceDhcpServerFeature("serviceDhcpServerFeatureResource",
feature_profile_id="string",
interface_mtu=0,
dns_servers=["string"],
lease_time=0,
dns_servers_variable="string",
domain_name="string",
domain_name_variable="string",
exclude_variable="string",
excludes=["string"],
lease_time_variable="string",
default_gateway="string",
tftp_servers_variable="string",
description="string",
default_gateway_variable="string",
name="string",
network_address="string",
network_address_variable="string",
option_codes=[{
"ascii": "string",
"ascii_variable": "string",
"code": 0,
"code_variable": "string",
"hex": "string",
"hex_variable": "string",
"ip_variable": "string",
"ips": ["string"],
}],
static_leases=[{
"ip_address": "string",
"ip_address_variable": "string",
"mac_address": "string",
"mac_address_variable": "string",
}],
subnet_mask="string",
subnet_mask_variable="string",
tftp_servers=["string"],
interface_mtu_variable="string")
const serviceDhcpServerFeatureResource = new sdwan.ServiceDhcpServerFeature("serviceDhcpServerFeatureResource", {
featureProfileId: "string",
interfaceMtu: 0,
dnsServers: ["string"],
leaseTime: 0,
dnsServersVariable: "string",
domainName: "string",
domainNameVariable: "string",
excludeVariable: "string",
excludes: ["string"],
leaseTimeVariable: "string",
defaultGateway: "string",
tftpServersVariable: "string",
description: "string",
defaultGatewayVariable: "string",
name: "string",
networkAddress: "string",
networkAddressVariable: "string",
optionCodes: [{
ascii: "string",
asciiVariable: "string",
code: 0,
codeVariable: "string",
hex: "string",
hexVariable: "string",
ipVariable: "string",
ips: ["string"],
}],
staticLeases: [{
ipAddress: "string",
ipAddressVariable: "string",
macAddress: "string",
macAddressVariable: "string",
}],
subnetMask: "string",
subnetMaskVariable: "string",
tftpServers: ["string"],
interfaceMtuVariable: "string",
});
type: sdwan:ServiceDhcpServerFeature
properties:
defaultGateway: string
defaultGatewayVariable: string
description: string
dnsServers:
- string
dnsServersVariable: string
domainName: string
domainNameVariable: string
excludeVariable: string
excludes:
- string
featureProfileId: string
interfaceMtu: 0
interfaceMtuVariable: string
leaseTime: 0
leaseTimeVariable: string
name: string
networkAddress: string
networkAddressVariable: string
optionCodes:
- ascii: string
asciiVariable: string
code: 0
codeVariable: string
hex: string
hexVariable: string
ipVariable: string
ips:
- string
staticLeases:
- ipAddress: string
ipAddressVariable: string
macAddress: string
macAddressVariable: string
subnetMask: string
subnetMaskVariable: string
tftpServers:
- string
tftpServersVariable: string
ServiceDhcpServerFeature 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 ServiceDhcpServerFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Default
Gateway string - Set IP address of default gateway
- Default
Gateway stringVariable - Variable name
- Description string
- The description of the Feature
- Dns
Servers List<string> - Configure one or more DNS server IP addresses
- Dns
Servers stringVariable - Variable name
- Domain
Name string - Set domain name client uses to resolve hostnames
- Domain
Name stringVariable - Variable name
- Exclude
Variable string - Variable name
- Excludes List<string>
- Configure IPv4 address to exclude from DHCP address pool
- Interface
Mtu int - Set MTU on interface to DHCP client - Range:
68
-65535
- Interface
Mtu stringVariable - Variable name
- Lease
Time int - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- Lease
Time stringVariable - Variable name
- Name string
- The name of the Feature
- Network
Address string - Network Address
- Network
Address stringVariable - Variable name
- Option
Codes List<ServiceDhcp Server Feature Option Code> - Configure Options Code
- Static
Leases List<ServiceDhcp Server Feature Static Lease> - Configure static IP addresses
- Subnet
Mask string - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Subnet
Mask stringVariable - Variable name
- Tftp
Servers List<string> - Configure TFTP server IP addresses
- Tftp
Servers stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Default
Gateway string - Set IP address of default gateway
- Default
Gateway stringVariable - Variable name
- Description string
- The description of the Feature
- Dns
Servers []string - Configure one or more DNS server IP addresses
- Dns
Servers stringVariable - Variable name
- Domain
Name string - Set domain name client uses to resolve hostnames
- Domain
Name stringVariable - Variable name
- Exclude
Variable string - Variable name
- Excludes []string
- Configure IPv4 address to exclude from DHCP address pool
- Interface
Mtu int - Set MTU on interface to DHCP client - Range:
68
-65535
- Interface
Mtu stringVariable - Variable name
- Lease
Time int - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- Lease
Time stringVariable - Variable name
- Name string
- The name of the Feature
- Network
Address string - Network Address
- Network
Address stringVariable - Variable name
- Option
Codes []ServiceDhcp Server Feature Option Code Args - Configure Options Code
- Static
Leases []ServiceDhcp Server Feature Static Lease Args - Configure static IP addresses
- Subnet
Mask string - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Subnet
Mask stringVariable - Variable name
- Tftp
Servers []string - Configure TFTP server IP addresses
- Tftp
Servers stringVariable - Variable name
- feature
Profile StringId - Feature Profile ID
- default
Gateway String - Set IP address of default gateway
- default
Gateway StringVariable - Variable name
- description String
- The description of the Feature
- dns
Servers List<String> - Configure one or more DNS server IP addresses
- dns
Servers StringVariable - Variable name
- domain
Name String - Set domain name client uses to resolve hostnames
- domain
Name StringVariable - Variable name
- exclude
Variable String - Variable name
- excludes List<String>
- Configure IPv4 address to exclude from DHCP address pool
- interface
Mtu Integer - Set MTU on interface to DHCP client - Range:
68
-65535
- interface
Mtu StringVariable - Variable name
- lease
Time Integer - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- lease
Time StringVariable - Variable name
- name String
- The name of the Feature
- network
Address String - Network Address
- network
Address StringVariable - Variable name
- option
Codes List<ServiceDhcp Server Feature Option Code> - Configure Options Code
- static
Leases List<ServiceDhcp Server Feature Static Lease> - Configure static IP addresses
- subnet
Mask String - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- subnet
Mask StringVariable - Variable name
- tftp
Servers List<String> - Configure TFTP server IP addresses
- tftp
Servers StringVariable - Variable name
- feature
Profile stringId - Feature Profile ID
- default
Gateway string - Set IP address of default gateway
- default
Gateway stringVariable - Variable name
- description string
- The description of the Feature
- dns
Servers string[] - Configure one or more DNS server IP addresses
- dns
Servers stringVariable - Variable name
- domain
Name string - Set domain name client uses to resolve hostnames
- domain
Name stringVariable - Variable name
- exclude
Variable string - Variable name
- excludes string[]
- Configure IPv4 address to exclude from DHCP address pool
- interface
Mtu number - Set MTU on interface to DHCP client - Range:
68
-65535
- interface
Mtu stringVariable - Variable name
- lease
Time number - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- lease
Time stringVariable - Variable name
- name string
- The name of the Feature
- network
Address string - Network Address
- network
Address stringVariable - Variable name
- option
Codes ServiceDhcp Server Feature Option Code[] - Configure Options Code
- static
Leases ServiceDhcp Server Feature Static Lease[] - Configure static IP addresses
- subnet
Mask string - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- subnet
Mask stringVariable - Variable name
- tftp
Servers string[] - Configure TFTP server IP addresses
- tftp
Servers stringVariable - Variable name
- feature_
profile_ strid - Feature Profile ID
- default_
gateway str - Set IP address of default gateway
- default_
gateway_ strvariable - Variable name
- description str
- The description of the Feature
- dns_
servers Sequence[str] - Configure one or more DNS server IP addresses
- dns_
servers_ strvariable - Variable name
- domain_
name str - Set domain name client uses to resolve hostnames
- domain_
name_ strvariable - Variable name
- exclude_
variable str - Variable name
- excludes Sequence[str]
- Configure IPv4 address to exclude from DHCP address pool
- interface_
mtu int - Set MTU on interface to DHCP client - Range:
68
-65535
- interface_
mtu_ strvariable - Variable name
- lease_
time int - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- lease_
time_ strvariable - Variable name
- name str
- The name of the Feature
- network_
address str - Network Address
- network_
address_ strvariable - Variable name
- option_
codes Sequence[ServiceDhcp Server Feature Option Code Args] - Configure Options Code
- static_
leases Sequence[ServiceDhcp Server Feature Static Lease Args] - Configure static IP addresses
- subnet_
mask str - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- subnet_
mask_ strvariable - Variable name
- tftp_
servers Sequence[str] - Configure TFTP server IP addresses
- tftp_
servers_ strvariable - Variable name
- feature
Profile StringId - Feature Profile ID
- default
Gateway String - Set IP address of default gateway
- default
Gateway StringVariable - Variable name
- description String
- The description of the Feature
- dns
Servers List<String> - Configure one or more DNS server IP addresses
- dns
Servers StringVariable - Variable name
- domain
Name String - Set domain name client uses to resolve hostnames
- domain
Name StringVariable - Variable name
- exclude
Variable String - Variable name
- excludes List<String>
- Configure IPv4 address to exclude from DHCP address pool
- interface
Mtu Number - Set MTU on interface to DHCP client - Range:
68
-65535
- interface
Mtu StringVariable - Variable name
- lease
Time Number - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- lease
Time StringVariable - Variable name
- name String
- The name of the Feature
- network
Address String - Network Address
- network
Address StringVariable - Variable name
- option
Codes List<Property Map> - Configure Options Code
- static
Leases List<Property Map> - Configure static IP addresses
- subnet
Mask String - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- subnet
Mask StringVariable - Variable name
- tftp
Servers List<String> - Configure TFTP server IP addresses
- tftp
Servers StringVariable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceDhcpServerFeature resource produces the following output properties:
Look up Existing ServiceDhcpServerFeature Resource
Get an existing ServiceDhcpServerFeature 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?: ServiceDhcpServerFeatureState, opts?: CustomResourceOptions): ServiceDhcpServerFeature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
default_gateway: Optional[str] = None,
default_gateway_variable: Optional[str] = None,
description: Optional[str] = None,
dns_servers: Optional[Sequence[str]] = None,
dns_servers_variable: Optional[str] = None,
domain_name: Optional[str] = None,
domain_name_variable: Optional[str] = None,
exclude_variable: Optional[str] = None,
excludes: Optional[Sequence[str]] = None,
feature_profile_id: Optional[str] = None,
interface_mtu: Optional[int] = None,
interface_mtu_variable: Optional[str] = None,
lease_time: Optional[int] = None,
lease_time_variable: Optional[str] = None,
name: Optional[str] = None,
network_address: Optional[str] = None,
network_address_variable: Optional[str] = None,
option_codes: Optional[Sequence[ServiceDhcpServerFeatureOptionCodeArgs]] = None,
static_leases: Optional[Sequence[ServiceDhcpServerFeatureStaticLeaseArgs]] = None,
subnet_mask: Optional[str] = None,
subnet_mask_variable: Optional[str] = None,
tftp_servers: Optional[Sequence[str]] = None,
tftp_servers_variable: Optional[str] = None,
version: Optional[int] = None) -> ServiceDhcpServerFeature
func GetServiceDhcpServerFeature(ctx *Context, name string, id IDInput, state *ServiceDhcpServerFeatureState, opts ...ResourceOption) (*ServiceDhcpServerFeature, error)
public static ServiceDhcpServerFeature Get(string name, Input<string> id, ServiceDhcpServerFeatureState? state, CustomResourceOptions? opts = null)
public static ServiceDhcpServerFeature get(String name, Output<String> id, ServiceDhcpServerFeatureState state, CustomResourceOptions options)
resources: _: type: sdwan:ServiceDhcpServerFeature 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.
- Default
Gateway string - Set IP address of default gateway
- Default
Gateway stringVariable - Variable name
- Description string
- The description of the Feature
- Dns
Servers List<string> - Configure one or more DNS server IP addresses
- Dns
Servers stringVariable - Variable name
- Domain
Name string - Set domain name client uses to resolve hostnames
- Domain
Name stringVariable - Variable name
- Exclude
Variable string - Variable name
- Excludes List<string>
- Configure IPv4 address to exclude from DHCP address pool
- Feature
Profile stringId - Feature Profile ID
- Interface
Mtu int - Set MTU on interface to DHCP client - Range:
68
-65535
- Interface
Mtu stringVariable - Variable name
- Lease
Time int - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- Lease
Time stringVariable - Variable name
- Name string
- The name of the Feature
- Network
Address string - Network Address
- Network
Address stringVariable - Variable name
- Option
Codes List<ServiceDhcp Server Feature Option Code> - Configure Options Code
- Static
Leases List<ServiceDhcp Server Feature Static Lease> - Configure static IP addresses
- Subnet
Mask string - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Subnet
Mask stringVariable - Variable name
- Tftp
Servers List<string> - Configure TFTP server IP addresses
- Tftp
Servers stringVariable - Variable name
- Version int
- The version of the Feature
- Default
Gateway string - Set IP address of default gateway
- Default
Gateway stringVariable - Variable name
- Description string
- The description of the Feature
- Dns
Servers []string - Configure one or more DNS server IP addresses
- Dns
Servers stringVariable - Variable name
- Domain
Name string - Set domain name client uses to resolve hostnames
- Domain
Name stringVariable - Variable name
- Exclude
Variable string - Variable name
- Excludes []string
- Configure IPv4 address to exclude from DHCP address pool
- Feature
Profile stringId - Feature Profile ID
- Interface
Mtu int - Set MTU on interface to DHCP client - Range:
68
-65535
- Interface
Mtu stringVariable - Variable name
- Lease
Time int - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- Lease
Time stringVariable - Variable name
- Name string
- The name of the Feature
- Network
Address string - Network Address
- Network
Address stringVariable - Variable name
- Option
Codes []ServiceDhcp Server Feature Option Code Args - Configure Options Code
- Static
Leases []ServiceDhcp Server Feature Static Lease Args - Configure static IP addresses
- Subnet
Mask string - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Subnet
Mask stringVariable - Variable name
- Tftp
Servers []string - Configure TFTP server IP addresses
- Tftp
Servers stringVariable - Variable name
- Version int
- The version of the Feature
- default
Gateway String - Set IP address of default gateway
- default
Gateway StringVariable - Variable name
- description String
- The description of the Feature
- dns
Servers List<String> - Configure one or more DNS server IP addresses
- dns
Servers StringVariable - Variable name
- domain
Name String - Set domain name client uses to resolve hostnames
- domain
Name StringVariable - Variable name
- exclude
Variable String - Variable name
- excludes List<String>
- Configure IPv4 address to exclude from DHCP address pool
- feature
Profile StringId - Feature Profile ID
- interface
Mtu Integer - Set MTU on interface to DHCP client - Range:
68
-65535
- interface
Mtu StringVariable - Variable name
- lease
Time Integer - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- lease
Time StringVariable - Variable name
- name String
- The name of the Feature
- network
Address String - Network Address
- network
Address StringVariable - Variable name
- option
Codes List<ServiceDhcp Server Feature Option Code> - Configure Options Code
- static
Leases List<ServiceDhcp Server Feature Static Lease> - Configure static IP addresses
- subnet
Mask String - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- subnet
Mask StringVariable - Variable name
- tftp
Servers List<String> - Configure TFTP server IP addresses
- tftp
Servers StringVariable - Variable name
- version Integer
- The version of the Feature
- default
Gateway string - Set IP address of default gateway
- default
Gateway stringVariable - Variable name
- description string
- The description of the Feature
- dns
Servers string[] - Configure one or more DNS server IP addresses
- dns
Servers stringVariable - Variable name
- domain
Name string - Set domain name client uses to resolve hostnames
- domain
Name stringVariable - Variable name
- exclude
Variable string - Variable name
- excludes string[]
- Configure IPv4 address to exclude from DHCP address pool
- feature
Profile stringId - Feature Profile ID
- interface
Mtu number - Set MTU on interface to DHCP client - Range:
68
-65535
- interface
Mtu stringVariable - Variable name
- lease
Time number - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- lease
Time stringVariable - Variable name
- name string
- The name of the Feature
- network
Address string - Network Address
- network
Address stringVariable - Variable name
- option
Codes ServiceDhcp Server Feature Option Code[] - Configure Options Code
- static
Leases ServiceDhcp Server Feature Static Lease[] - Configure static IP addresses
- subnet
Mask string - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- subnet
Mask stringVariable - Variable name
- tftp
Servers string[] - Configure TFTP server IP addresses
- tftp
Servers stringVariable - Variable name
- version number
- The version of the Feature
- default_
gateway str - Set IP address of default gateway
- default_
gateway_ strvariable - Variable name
- description str
- The description of the Feature
- dns_
servers Sequence[str] - Configure one or more DNS server IP addresses
- dns_
servers_ strvariable - Variable name
- domain_
name str - Set domain name client uses to resolve hostnames
- domain_
name_ strvariable - Variable name
- exclude_
variable str - Variable name
- excludes Sequence[str]
- Configure IPv4 address to exclude from DHCP address pool
- feature_
profile_ strid - Feature Profile ID
- interface_
mtu int - Set MTU on interface to DHCP client - Range:
68
-65535
- interface_
mtu_ strvariable - Variable name
- lease_
time int - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- lease_
time_ strvariable - Variable name
- name str
- The name of the Feature
- network_
address str - Network Address
- network_
address_ strvariable - Variable name
- option_
codes Sequence[ServiceDhcp Server Feature Option Code Args] - Configure Options Code
- static_
leases Sequence[ServiceDhcp Server Feature Static Lease Args] - Configure static IP addresses
- subnet_
mask str - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- subnet_
mask_ strvariable - Variable name
- tftp_
servers Sequence[str] - Configure TFTP server IP addresses
- tftp_
servers_ strvariable - Variable name
- version int
- The version of the Feature
- default
Gateway String - Set IP address of default gateway
- default
Gateway StringVariable - Variable name
- description String
- The description of the Feature
- dns
Servers List<String> - Configure one or more DNS server IP addresses
- dns
Servers StringVariable - Variable name
- domain
Name String - Set domain name client uses to resolve hostnames
- domain
Name StringVariable - Variable name
- exclude
Variable String - Variable name
- excludes List<String>
- Configure IPv4 address to exclude from DHCP address pool
- feature
Profile StringId - Feature Profile ID
- interface
Mtu Number - Set MTU on interface to DHCP client - Range:
68
-65535
- interface
Mtu StringVariable - Variable name
- lease
Time Number - Configure how long a DHCP-assigned IP address is valid - Range:
60
-31536000
- Default value:86400
- lease
Time StringVariable - Variable name
- name String
- The name of the Feature
- network
Address String - Network Address
- network
Address StringVariable - Variable name
- option
Codes List<Property Map> - Configure Options Code
- static
Leases List<Property Map> - Configure static IP addresses
- subnet
Mask String - Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- subnet
Mask StringVariable - Variable name
- tftp
Servers List<String> - Configure TFTP server IP addresses
- tftp
Servers StringVariable - Variable name
- version Number
- The version of the Feature
Supporting Types
ServiceDhcpServerFeatureOptionCode, ServiceDhcpServerFeatureOptionCodeArgs
- Ascii string
- Set ASCII value
- Ascii
Variable string - Variable name
- Code int
- Set Option Code
- Range:
1
-254
- Range:
- Code
Variable string - Variable name
- Hex string
- Set HEX value
- Hex
Variable string - Variable name
- Ip
Variable string - Variable name
- Ips List<string>
- Set ip address
- Ascii string
- Set ASCII value
- Ascii
Variable string - Variable name
- Code int
- Set Option Code
- Range:
1
-254
- Range:
- Code
Variable string - Variable name
- Hex string
- Set HEX value
- Hex
Variable string - Variable name
- Ip
Variable string - Variable name
- Ips []string
- Set ip address
- ascii String
- Set ASCII value
- ascii
Variable String - Variable name
- code Integer
- Set Option Code
- Range:
1
-254
- Range:
- code
Variable String - Variable name
- hex String
- Set HEX value
- hex
Variable String - Variable name
- ip
Variable String - Variable name
- ips List<String>
- Set ip address
- ascii string
- Set ASCII value
- ascii
Variable string - Variable name
- code number
- Set Option Code
- Range:
1
-254
- Range:
- code
Variable string - Variable name
- hex string
- Set HEX value
- hex
Variable string - Variable name
- ip
Variable string - Variable name
- ips string[]
- Set ip address
- ascii str
- Set ASCII value
- ascii_
variable str - Variable name
- code int
- Set Option Code
- Range:
1
-254
- Range:
- code_
variable str - Variable name
- hex str
- Set HEX value
- hex_
variable str - Variable name
- ip_
variable str - Variable name
- ips Sequence[str]
- Set ip address
- ascii String
- Set ASCII value
- ascii
Variable String - Variable name
- code Number
- Set Option Code
- Range:
1
-254
- Range:
- code
Variable String - Variable name
- hex String
- Set HEX value
- hex
Variable String - Variable name
- ip
Variable String - Variable name
- ips List<String>
- Set ip address
ServiceDhcpServerFeatureStaticLease, ServiceDhcpServerFeatureStaticLeaseArgs
- Ip
Address string - Set client’s static IP address
- Ip
Address stringVariable - Variable name
- Mac
Address string - Set MAC address of client
- Mac
Address stringVariable - Variable name
- Ip
Address string - Set client’s static IP address
- Ip
Address stringVariable - Variable name
- Mac
Address string - Set MAC address of client
- Mac
Address stringVariable - Variable name
- ip
Address String - Set client’s static IP address
- ip
Address StringVariable - Variable name
- mac
Address String - Set MAC address of client
- mac
Address StringVariable - Variable name
- ip
Address string - Set client’s static IP address
- ip
Address stringVariable - Variable name
- mac
Address string - Set MAC address of client
- mac
Address stringVariable - Variable name
- ip_
address str - Set client’s static IP address
- ip_
address_ strvariable - Variable name
- mac_
address str - Set MAC address of client
- mac_
address_ strvariable - Variable name
- ip
Address String - Set client’s static IP address
- ip
Address StringVariable - Variable name
- mac
Address String - Set MAC address of client
- mac
Address StringVariable - Variable name
Import
Expected import identifier with the format: “service_dhcp_server_feature_id,feature_profile_id”
$ pulumi import sdwan:index/serviceDhcpServerFeature:ServiceDhcpServerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.