1. Packages
  2. Panos Provider
  3. API Docs
  4. AggregateLayer3Subinterface
panos 2.0.2 published on Friday, Jun 6, 2025 by paloaltonetworks

panos.AggregateLayer3Subinterface

Explore with Pulumi AI

panos logo
panos 2.0.2 published on Friday, Jun 6, 2025 by paloaltonetworks

    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.panos.Template;
    import com.pulumi.panos.TemplateArgs;
    import com.pulumi.panos.inputs.TemplateLocationArgs;
    import com.pulumi.panos.inputs.TemplateLocationPanoramaArgs;
    import com.pulumi.panos.AggregateInterface;
    import com.pulumi.panos.AggregateInterfaceArgs;
    import com.pulumi.panos.inputs.AggregateInterfaceLocationArgs;
    import com.pulumi.panos.inputs.AggregateInterfaceLocationTemplateArgs;
    import com.pulumi.panos.inputs.AggregateInterfaceLayer3Args;
    import com.pulumi.panos.InterfaceManagementProfile;
    import com.pulumi.panos.InterfaceManagementProfileArgs;
    import com.pulumi.panos.inputs.InterfaceManagementProfileLocationArgs;
    import com.pulumi.panos.inputs.InterfaceManagementProfileLocationTemplateArgs;
    import com.pulumi.panos.AggregateLayer3Subinterface;
    import com.pulumi.panos.AggregateLayer3SubinterfaceArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceLocationArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceLocationTemplateArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceAdjustTcpMssArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceArpArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceBonjourArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceIpArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceDhcpClientArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceIpv6Args;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceNdpProxyArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceIpv6InheritedArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryArgs;
    import com.pulumi.panos.inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisementArgs;
    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 Template("example", TemplateArgs.builder()
                .location(TemplateLocationArgs.builder()
                    .panorama()
                    .build())
                .build());
    
            var parent = new AggregateInterface("parent", AggregateInterfaceArgs.builder()
                .location(AggregateInterfaceLocationArgs.builder()
                    .template(AggregateInterfaceLocationTemplateArgs.builder()
                        .vsys("vsys1")
                        .name(example.name())
                        .build())
                    .build())
                .layer3()
                .build());
    
            var profile = new InterfaceManagementProfile("profile", InterfaceManagementProfileArgs.builder()
                .location(InterfaceManagementProfileLocationArgs.builder()
                    .template(InterfaceManagementProfileLocationTemplateArgs.builder()
                        .name(example.name())
                        .build())
                    .build())
                .build());
    
            var example1 = new AggregateLayer3Subinterface("example1", AggregateLayer3SubinterfaceArgs.builder()
                .location(AggregateLayer3SubinterfaceLocationArgs.builder()
                    .template(AggregateLayer3SubinterfaceLocationTemplateArgs.builder()
                        .name(example.name())
                        .vsys("vsys1")
                        .build())
                    .build())
                .parent(parent.name())
                .tag(1)
                .comment("Basic aggregate layer3 subinterface")
                .adjustTcpMss(AggregateLayer3SubinterfaceAdjustTcpMssArgs.builder()
                    .enable(true)
                    .ipv4_mss_adjustment(40)
                    .ipv6_mss_adjustment(60)
                    .build())
                .arps(AggregateLayer3SubinterfaceArpArgs.builder()
                    .name("192.0.2.1")
                    .hwAddress("00:1a:2b:3c:4d:5e")
                    .build())
                .bonjour(AggregateLayer3SubinterfaceBonjourArgs.builder()
                    .enable(true)
                    .group_id(0)
                    .ttl_check(true)
                    .build())
                .decryptForward(false)
                .dfIgnore(true)
                .interfaceManagementProfile(profile.name())
                .ips(AggregateLayer3SubinterfaceIpArgs.builder()
                    .name("192.0.2.1/24")
                    .sdwanGateway("10.0.0.1")
                    .build())
                .mtu(1500)
                .build());
    
            var example2 = new AggregateLayer3Subinterface("example2", AggregateLayer3SubinterfaceArgs.builder()
                .location(AggregateLayer3SubinterfaceLocationArgs.builder()
                    .template(AggregateLayer3SubinterfaceLocationTemplateArgs.builder()
                        .name(example.name())
                        .vsys("vsys1")
                        .build())
                    .build())
                .parent(parent.name())
                .tag(2)
                .comment("Aggregate layer3 subinterface with DHCP client")
                .dhcpClient(AggregateLayer3SubinterfaceDhcpClientArgs.builder()
                    .enable(true)
                    .create_default_route(true)
                    .default_route_metric(10)
                    .send_hostname(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .interfaceManagementProfile(profile.name())
                .build());
    
            var example3 = new AggregateLayer3Subinterface("example3", AggregateLayer3SubinterfaceArgs.builder()
                .location(AggregateLayer3SubinterfaceLocationArgs.builder()
                    .template(AggregateLayer3SubinterfaceLocationTemplateArgs.builder()
                        .name(example.name())
                        .vsys("vsys1")
                        .build())
                    .build())
                .parent(parent.name())
                .tag(3)
                .comment("Aggregate layer3 subinterface with IPv6 address")
                .ipv6(AggregateLayer3SubinterfaceIpv6Args.builder()
                    .enabled(true)
                    .interface_id("EUI-64")
                    .address(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .mtu(1500)
                .ndpProxy(AggregateLayer3SubinterfaceNdpProxyArgs.builder()
                    .enabled(true)
                    .address(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .interfaceManagementProfile(profile.name())
                .build());
    
            var example4 = new AggregateLayer3Subinterface("example4", AggregateLayer3SubinterfaceArgs.builder()
                .location(AggregateLayer3SubinterfaceLocationArgs.builder()
                    .template(AggregateLayer3SubinterfaceLocationTemplateArgs.builder()
                        .name(example.name())
                        .vsys("vsys1")
                        .build())
                    .build())
                .parent(parent.name())
                .tag(4)
                .comment("Aggregate layer3 subinterface with IPv6 inherited configuration")
                .ipv6(AggregateLayer3SubinterfaceIpv6Args.builder()
                    .enabled(true)
                    .interface_id("EUI-64")
                    .inherited(AggregateLayer3SubinterfaceIpv6InheritedArgs.builder()
                        .enable(true)
                        .assignAddr(                    
                            %!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
                            %!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                        .neighborDiscovery(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryArgs.builder()
                            .dadAttempts(1)
                            .enableDad(true)
                            .nsInterval(1000)
                            .reachableTime(30000)
                            .enableNdpMonitor(true)
                            .routerAdvertisement(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisementArgs.builder()
                                .enable(true)
                                .hopLimit("64")
                                .lifetime(1800)
                                .managedFlag(true)
                                .maxInterval(600)
                                .minInterval(200)
                                .otherFlag(true)
                                .routerPreference("Medium")
                                .enableConsistencyCheck(true)
                                .build())
                            .build())
                        .build())
                    .build())
                .interfaceManagementProfile(profile.name())
                .build());
    
            var example5 = new AggregateLayer3Subinterface("example5", AggregateLayer3SubinterfaceArgs.builder()
                .location(AggregateLayer3SubinterfaceLocationArgs.builder()
                    .template(AggregateLayer3SubinterfaceLocationTemplateArgs.builder()
                        .name(example.name())
                        .vsys("vsys1")
                        .build())
                    .build())
                .parent(parent.name())
                .tag(5)
                .comment("Aggregate layer3 subinterface with IPv6 neighbor discovery")
                .ipv6(AggregateLayer3SubinterfaceIpv6Args.builder()
                    .enabled(true)
                    .interface_id("EUI-64")
                    .neighbor_discovery(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .mtu(1500)
                .interfaceManagementProfile(profile.name())
                .build());
    
        }
    }
    
    resources:
      example:
        type: panos:Template
        properties:
          location:
            panorama: {}
      parent:
        type: panos:AggregateInterface
        properties:
          location:
            template:
              vsys: vsys1
              name: ${example.name}
          layer3: {}
      profile:
        type: panos:InterfaceManagementProfile
        properties:
          location:
            template:
              name: ${example.name}
      example1:
        type: panos:AggregateLayer3Subinterface
        properties:
          location:
            template:
              name: ${example.name}
              vsys: vsys1
          parent: ${parent.name}
          tag: 1
          comment: Basic aggregate layer3 subinterface
          adjustTcpMss:
            enable: true
            ipv4_mss_adjustment: 40
            ipv6_mss_adjustment: 60
          arps:
            - name: 192.0.2.1
              hwAddress: 00:1a:2b:3c:4d:5e
          bonjour:
            enable: true
            group_id: 0
            ttl_check: true
          decryptForward: false
          dfIgnore: true
          interfaceManagementProfile: ${profile.name}
          ips:
            - name: 192.0.2.1/24
              sdwanGateway: 10.0.0.1
          mtu: 1500
      example2:
        type: panos:AggregateLayer3Subinterface
        properties:
          location:
            template:
              name: ${example.name}
              vsys: vsys1
          parent: ${parent.name}
          tag: 2
          comment: Aggregate layer3 subinterface with DHCP client
          dhcpClient:
            enable: true
            create_default_route: true
            default_route_metric: 10
            send_hostname:
              enable: true
              hostname: system-hostname
          interfaceManagementProfile: ${profile.name}
      example3:
        type: panos:AggregateLayer3Subinterface
        properties:
          location:
            template:
              name: ${example.name}
              vsys: vsys1
          parent: ${parent.name}
          tag: 3
          comment: Aggregate layer3 subinterface with IPv6 address
          ipv6:
            enabled: true
            interface_id: EUI-64
            address:
              - name: 2001:db8::1/64
                enableOnInterface: true
                advertise:
                  enable: true
                  validLifetime: '2592000'
                  preferredLifetime: '604800'
                  onlinkFlag: true
                  autoConfigFlag: true
          mtu: 1500
          ndpProxy:
            enabled: true
            address:
              - name: 2001:db8::/64
                negate: false
          interfaceManagementProfile: ${profile.name}
      example4:
        type: panos:AggregateLayer3Subinterface
        properties:
          location:
            template:
              name: ${example.name}
              vsys: vsys1
          parent: ${parent.name}
          tag: 4
          comment: Aggregate layer3 subinterface with IPv6 inherited configuration
          ipv6:
            enabled: true
            interface_id: EUI-64
            inherited:
              enable: true
              assignAddr:
                - name: gua-address-dynamic
                  type:
                    gua:
                      enableOnInterface: true
                      poolType:
                        dynamic: {}
                      advertise:
                        enable: true
                        onlinkFlag: true
                        autoConfigFlag: true
                - name: ula-address
                  type:
                    ula:
                      enableOnInterface: true
                      address: fd00:1234:5678::/48
                      prefix: true
                      anycast: false
                      advertise:
                        enable: true
                        validLifetime: '2592000'
                        preferredLifetime: '604800'
                        onlinkFlag: true
                        autoConfigFlag: true
              neighborDiscovery:
                dadAttempts: 1
                enableDad: true
                nsInterval: 1000
                reachableTime: 30000
                enableNdpMonitor: true
                routerAdvertisement:
                  enable: true
                  hopLimit: '64'
                  lifetime: 1800
                  managedFlag: true
                  maxInterval: 600
                  minInterval: 200
                  otherFlag: true
                  routerPreference: Medium
                  enableConsistencyCheck: true
          interfaceManagementProfile: ${profile.name}
      example5:
        type: panos:AggregateLayer3Subinterface
        properties:
          location:
            template:
              name: ${example.name}
              vsys: vsys1
          parent: ${parent.name}
          tag: 5
          comment: Aggregate layer3 subinterface with IPv6 neighbor discovery
          ipv6:
            enabled: true
            interface_id: EUI-64
            neighbor_discovery:
              dadAttempts: 1
              enableDad: true
              nsInterval: 1000
              reachableTime: 30000
              enableNdpMonitor: true
              neighbor:
                - name: 2001:db8::1
                  hwAddress: 00:1a:2b:3c:4d:5e
              routerAdvertisement:
                enable: true
                hopLimit: '64'
                lifetime: 1800
                managedFlag: false
                maxInterval: 600
                minInterval: 200
                otherFlag: false
                routerPreference: Medium
                enableConsistencyCheck: true
                dnsSupport:
                  enable: true
                  server:
                    - name: 2001:db8::53
                      lifetime: 1200
                  suffix:
                    - name: example.com
                      lifetime: 1200
          mtu: 1500
          interfaceManagementProfile: ${profile.name}
    

    Create AggregateLayer3Subinterface Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AggregateLayer3Subinterface(name: string, args: AggregateLayer3SubinterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def AggregateLayer3Subinterface(resource_name: str,
                                    args: AggregateLayer3SubinterfaceArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def AggregateLayer3Subinterface(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    location: Optional[AggregateLayer3SubinterfaceLocationArgs] = None,
                                    interface_management_profile: Optional[str] = None,
                                    arps: Optional[Sequence[AggregateLayer3SubinterfaceArpArgs]] = None,
                                    comment: Optional[str] = None,
                                    ddns_config: Optional[AggregateLayer3SubinterfaceDdnsConfigArgs] = None,
                                    decrypt_forward: Optional[bool] = None,
                                    df_ignore: Optional[bool] = None,
                                    dhcp_client: Optional[AggregateLayer3SubinterfaceDhcpClientArgs] = None,
                                    adjust_tcp_mss: Optional[AggregateLayer3SubinterfaceAdjustTcpMssArgs] = None,
                                    bonjour: Optional[AggregateLayer3SubinterfaceBonjourArgs] = None,
                                    ips: Optional[Sequence[AggregateLayer3SubinterfaceIpArgs]] = None,
                                    ipv6: Optional[AggregateLayer3SubinterfaceIpv6Args] = None,
                                    mtu: Optional[float] = None,
                                    name: Optional[str] = None,
                                    ndp_proxy: Optional[AggregateLayer3SubinterfaceNdpProxyArgs] = None,
                                    netflow_profile: Optional[str] = None,
                                    parent: Optional[str] = None,
                                    sdwan_link_settings: Optional[AggregateLayer3SubinterfaceSdwanLinkSettingsArgs] = None,
                                    tag: Optional[float] = None)
    func NewAggregateLayer3Subinterface(ctx *Context, name string, args AggregateLayer3SubinterfaceArgs, opts ...ResourceOption) (*AggregateLayer3Subinterface, error)
    public AggregateLayer3Subinterface(string name, AggregateLayer3SubinterfaceArgs args, CustomResourceOptions? opts = null)
    public AggregateLayer3Subinterface(String name, AggregateLayer3SubinterfaceArgs args)
    public AggregateLayer3Subinterface(String name, AggregateLayer3SubinterfaceArgs args, CustomResourceOptions options)
    
    type: panos:AggregateLayer3Subinterface
    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 AggregateLayer3SubinterfaceArgs
    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 AggregateLayer3SubinterfaceArgs
    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 AggregateLayer3SubinterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AggregateLayer3SubinterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AggregateLayer3SubinterfaceArgs
    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 aggregateLayer3SubinterfaceResource = new Panos.AggregateLayer3Subinterface("aggregateLayer3SubinterfaceResource", new()
    {
        Location = new Panos.Inputs.AggregateLayer3SubinterfaceLocationArgs
        {
            Ngfw = new Panos.Inputs.AggregateLayer3SubinterfaceLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Shared = null,
            Template = new Panos.Inputs.AggregateLayer3SubinterfaceLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.AggregateLayer3SubinterfaceLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        InterfaceManagementProfile = "string",
        Arps = new[]
        {
            new Panos.Inputs.AggregateLayer3SubinterfaceArpArgs
            {
                Name = "string",
                HwAddress = "string",
            },
        },
        Comment = "string",
        DdnsConfig = new Panos.Inputs.AggregateLayer3SubinterfaceDdnsConfigArgs
        {
            DdnsCertProfile = "string",
            DdnsEnabled = false,
            DdnsHostname = "string",
            DdnsIps = new[]
            {
                "string",
            },
            DdnsIpv6s = new[]
            {
                "string",
            },
            DdnsUpdateInterval = 0,
            DdnsVendor = "string",
            DdnsVendorConfigs = new[]
            {
                new Panos.Inputs.AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfigArgs
                {
                    Name = "string",
                    Value = "string",
                },
            },
        },
        DecryptForward = false,
        DfIgnore = false,
        DhcpClient = new Panos.Inputs.AggregateLayer3SubinterfaceDhcpClientArgs
        {
            CreateDefaultRoute = false,
            DefaultRouteMetric = 0,
            Enable = false,
            SendHostname = new Panos.Inputs.AggregateLayer3SubinterfaceDhcpClientSendHostnameArgs
            {
                Enable = false,
                Hostname = "string",
            },
        },
        AdjustTcpMss = new Panos.Inputs.AggregateLayer3SubinterfaceAdjustTcpMssArgs
        {
            Enable = false,
            Ipv4MssAdjustment = 0,
            Ipv6MssAdjustment = 0,
        },
        Bonjour = new Panos.Inputs.AggregateLayer3SubinterfaceBonjourArgs
        {
            Enable = false,
            GroupId = 0,
            TtlCheck = false,
        },
        Ips = new[]
        {
            new Panos.Inputs.AggregateLayer3SubinterfaceIpArgs
            {
                Name = "string",
                SdwanGateway = "string",
            },
        },
        Ipv6 = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6Args
        {
            Addresses = new[]
            {
                new Panos.Inputs.AggregateLayer3SubinterfaceIpv6AddressArgs
                {
                    Name = "string",
                    Advertise = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6AddressAdvertiseArgs
                    {
                        AutoConfigFlag = false,
                        Enable = false,
                        OnlinkFlag = false,
                        PreferredLifetime = "string",
                        ValidLifetime = "string",
                    },
                    Anycast = null,
                    EnableOnInterface = false,
                    Prefix = null,
                },
            },
            DhcpClient = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientArgs
            {
                AcceptRaRoute = false,
                DefaultRouteMetric = 0,
                Enable = false,
                NeighborDiscovery = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryArgs
                {
                    DadAttempts = 0,
                    DnsServer = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerArgs
                    {
                        Enable = false,
                        Source = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceArgs
                        {
                            Dhcpv6 = null,
                            Manual = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualArgs
                            {
                                Servers = new[]
                                {
                                    new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualServerArgs
                                    {
                                        Name = "string",
                                        Lifetime = 0,
                                    },
                                },
                            },
                        },
                    },
                    DnsSuffix = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixArgs
                    {
                        Enable = false,
                        Source = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceArgs
                        {
                            Dhcpv6 = null,
                            Manual = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualArgs
                            {
                                Suffixes = new[]
                                {
                                    new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualSuffixArgs
                                    {
                                        Name = "string",
                                        Lifetime = 0,
                                    },
                                },
                            },
                        },
                    },
                    EnableDad = false,
                    EnableNdpMonitor = false,
                    Neighbors = new[]
                    {
                        new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighborArgs
                        {
                            Name = "string",
                            HwAddress = "string",
                        },
                    },
                    NsInterval = 0,
                    ReachableTime = 0,
                },
                Preference = "string",
                PrefixDelegation = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationArgs
                {
                    Enable = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableArgs
                    {
                        No = null,
                        Yes = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableYesArgs
                        {
                            PfxPoolName = "string",
                            PrefixLen = 0,
                            PrefixLenHint = false,
                        },
                    },
                },
                V6Options = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsArgs
                {
                    DuidType = "string",
                    Enable = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableArgs
                    {
                        No = null,
                        Yes = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableYesArgs
                        {
                            NonTempAddr = false,
                            TempAddr = false,
                        },
                    },
                    RapidCommit = false,
                    SupportSrvrReconfig = false,
                },
            },
            Enabled = false,
            Inherited = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedArgs
            {
                AssignAddrs = new[]
                {
                    new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrArgs
                    {
                        Name = "string",
                        Type = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeArgs
                        {
                            Gua = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaArgs
                            {
                                Advertise = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaAdvertiseArgs
                                {
                                    AutoConfigFlag = false,
                                    Enable = false,
                                    OnlinkFlag = false,
                                },
                                EnableOnInterface = false,
                                PoolType = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeArgs
                                {
                                    Dynamic = null,
                                    DynamicId = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeDynamicIdArgs
                                    {
                                        Identifier = 0,
                                    },
                                },
                                PrefixPool = "string",
                            },
                            Ula = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaArgs
                            {
                                Address = "string",
                                Advertise = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertiseArgs
                                {
                                    AutoConfigFlag = false,
                                    Enable = false,
                                    OnlinkFlag = false,
                                    PreferredLifetime = "string",
                                    ValidLifetime = "string",
                                },
                                Anycast = false,
                                EnableOnInterface = false,
                                Prefix = false,
                            },
                        },
                    },
                },
                Enable = false,
                NeighborDiscovery = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryArgs
                {
                    DadAttempts = 0,
                    DnsServer = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerArgs
                    {
                        Enable = false,
                        Source = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceArgs
                        {
                            Dhcpv6 = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceDhcpv6Args
                            {
                                PrefixPool = "string",
                            },
                            Manual = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualArgs
                            {
                                Servers = new[]
                                {
                                    new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualServerArgs
                                    {
                                        Name = "string",
                                        Lifetime = 0,
                                    },
                                },
                            },
                        },
                    },
                    DnsSuffix = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixArgs
                    {
                        Enable = false,
                        Source = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceArgs
                        {
                            Dhcpv6 = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceDhcpv6Args
                            {
                                PrefixPool = "string",
                            },
                            Manual = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualArgs
                            {
                                Suffixes = new[]
                                {
                                    new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualSuffixArgs
                                    {
                                        Name = "string",
                                        Lifetime = 0,
                                    },
                                },
                            },
                        },
                    },
                    EnableDad = false,
                    EnableNdpMonitor = false,
                    Neighbors = new[]
                    {
                        new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighborArgs
                        {
                            Name = "string",
                            HwAddress = "string",
                        },
                    },
                    NsInterval = 0,
                    ReachableTime = 0,
                    RouterAdvertisement = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisementArgs
                    {
                        Enable = false,
                        EnableConsistencyCheck = false,
                        HopLimit = "string",
                        Lifetime = 0,
                        LinkMtu = "string",
                        ManagedFlag = false,
                        MaxInterval = 0,
                        MinInterval = 0,
                        OtherFlag = false,
                        ReachableTime = "string",
                        RetransmissionTimer = "string",
                        RouterPreference = "string",
                    },
                },
            },
            InterfaceId = "string",
            NeighborDiscovery = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryArgs
            {
                DadAttempts = 0,
                EnableDad = false,
                EnableNdpMonitor = false,
                Neighbors = new[]
                {
                    new Panos.Inputs.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighborArgs
                    {
                        Name = "string",
                        HwAddress = "string",
                    },
                },
                NsInterval = 0,
                ReachableTime = 0,
                RouterAdvertisement = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementArgs
                {
                    DnsSupport = new Panos.Inputs.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportArgs
                    {
                        Enable = false,
                        Servers = new[]
                        {
                            new Panos.Inputs.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportServerArgs
                            {
                                Name = "string",
                                Lifetime = 0,
                            },
                        },
                        Suffixes = new[]
                        {
                            new Panos.Inputs.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportSuffixArgs
                            {
                                Name = "string",
                                Lifetime = 0,
                            },
                        },
                    },
                    Enable = false,
                    EnableConsistencyCheck = false,
                    HopLimit = "string",
                    Lifetime = 0,
                    LinkMtu = "string",
                    ManagedFlag = false,
                    MaxInterval = 0,
                    MinInterval = 0,
                    OtherFlag = false,
                    ReachableTime = "string",
                    RetransmissionTimer = "string",
                    RouterPreference = "string",
                },
            },
        },
        Mtu = 0,
        Name = "string",
        NdpProxy = new Panos.Inputs.AggregateLayer3SubinterfaceNdpProxyArgs
        {
            Addresses = new[]
            {
                new Panos.Inputs.AggregateLayer3SubinterfaceNdpProxyAddressArgs
                {
                    Name = "string",
                    Negate = false,
                },
            },
            Enabled = false,
        },
        NetflowProfile = "string",
        Parent = "string",
        SdwanLinkSettings = new Panos.Inputs.AggregateLayer3SubinterfaceSdwanLinkSettingsArgs
        {
            Enable = false,
            SdwanInterfaceProfile = "string",
            UpstreamNat = new Panos.Inputs.AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatArgs
            {
                Ddns = null,
                Enable = false,
                StaticIp = new Panos.Inputs.AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs
                {
                    Fqdn = "string",
                    IpAddress = "string",
                },
            },
        },
        Tag = 0,
    });
    
    example, err := panos.NewAggregateLayer3Subinterface(ctx, "aggregateLayer3SubinterfaceResource", &panos.AggregateLayer3SubinterfaceArgs{
    	Location: &panos.AggregateLayer3SubinterfaceLocationArgs{
    		Ngfw: &panos.AggregateLayer3SubinterfaceLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Shared: &panos.AggregateLayer3SubinterfaceLocationSharedArgs{},
    		Template: &panos.AggregateLayer3SubinterfaceLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.AggregateLayer3SubinterfaceLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    	},
    	InterfaceManagementProfile: pulumi.String("string"),
    	Arps: panos.AggregateLayer3SubinterfaceArpArray{
    		&panos.AggregateLayer3SubinterfaceArpArgs{
    			Name:      pulumi.String("string"),
    			HwAddress: pulumi.String("string"),
    		},
    	},
    	Comment: pulumi.String("string"),
    	DdnsConfig: &panos.AggregateLayer3SubinterfaceDdnsConfigArgs{
    		DdnsCertProfile: pulumi.String("string"),
    		DdnsEnabled:     pulumi.Bool(false),
    		DdnsHostname:    pulumi.String("string"),
    		DdnsIps: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		DdnsIpv6s: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		DdnsUpdateInterval: pulumi.Float64(0),
    		DdnsVendor:         pulumi.String("string"),
    		DdnsVendorConfigs: panos.AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfigArray{
    			&panos.AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfigArgs{
    				Name:  pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    	},
    	DecryptForward: pulumi.Bool(false),
    	DfIgnore:       pulumi.Bool(false),
    	DhcpClient: &panos.AggregateLayer3SubinterfaceDhcpClientArgs{
    		CreateDefaultRoute: pulumi.Bool(false),
    		DefaultRouteMetric: pulumi.Float64(0),
    		Enable:             pulumi.Bool(false),
    		SendHostname: &panos.AggregateLayer3SubinterfaceDhcpClientSendHostnameArgs{
    			Enable:   pulumi.Bool(false),
    			Hostname: pulumi.String("string"),
    		},
    	},
    	AdjustTcpMss: &panos.AggregateLayer3SubinterfaceAdjustTcpMssArgs{
    		Enable:            pulumi.Bool(false),
    		Ipv4MssAdjustment: pulumi.Float64(0),
    		Ipv6MssAdjustment: pulumi.Float64(0),
    	},
    	Bonjour: &panos.AggregateLayer3SubinterfaceBonjourArgs{
    		Enable:   pulumi.Bool(false),
    		GroupId:  pulumi.Float64(0),
    		TtlCheck: pulumi.Bool(false),
    	},
    	Ips: panos.AggregateLayer3SubinterfaceIpArray{
    		&panos.AggregateLayer3SubinterfaceIpArgs{
    			Name:         pulumi.String("string"),
    			SdwanGateway: pulumi.String("string"),
    		},
    	},
    	Ipv6: &panos.AggregateLayer3SubinterfaceIpv6Args{
    		Addresses: panos.AggregateLayer3SubinterfaceIpv6AddressArray{
    			&panos.AggregateLayer3SubinterfaceIpv6AddressArgs{
    				Name: pulumi.String("string"),
    				Advertise: &panos.AggregateLayer3SubinterfaceIpv6AddressAdvertiseArgs{
    					AutoConfigFlag:    pulumi.Bool(false),
    					Enable:            pulumi.Bool(false),
    					OnlinkFlag:        pulumi.Bool(false),
    					PreferredLifetime: pulumi.String("string"),
    					ValidLifetime:     pulumi.String("string"),
    				},
    				Anycast:           &panos.AggregateLayer3SubinterfaceIpv6AddressAnycastArgs{},
    				EnableOnInterface: pulumi.Bool(false),
    				Prefix:            &panos.AggregateLayer3SubinterfaceIpv6AddressPrefixArgs{},
    			},
    		},
    		DhcpClient: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientArgs{
    			AcceptRaRoute:      pulumi.Bool(false),
    			DefaultRouteMetric: pulumi.Float64(0),
    			Enable:             pulumi.Bool(false),
    			NeighborDiscovery: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryArgs{
    				DadAttempts: pulumi.Float64(0),
    				DnsServer: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerArgs{
    					Enable: pulumi.Bool(false),
    					Source: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceArgs{
    						Dhcpv6: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceDhcpv6Args{},
    						Manual: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualArgs{
    							Servers: panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualServerArray{
    								&panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualServerArgs{
    									Name:     pulumi.String("string"),
    									Lifetime: pulumi.Float64(0),
    								},
    							},
    						},
    					},
    				},
    				DnsSuffix: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixArgs{
    					Enable: pulumi.Bool(false),
    					Source: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceArgs{
    						Dhcpv6: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceDhcpv6Args{},
    						Manual: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualArgs{
    							Suffixes: panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualSuffixArray{
    								&panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualSuffixArgs{
    									Name:     pulumi.String("string"),
    									Lifetime: pulumi.Float64(0),
    								},
    							},
    						},
    					},
    				},
    				EnableDad:        pulumi.Bool(false),
    				EnableNdpMonitor: pulumi.Bool(false),
    				Neighbors: panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighborArray{
    					&panos.AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighborArgs{
    						Name:      pulumi.String("string"),
    						HwAddress: pulumi.String("string"),
    					},
    				},
    				NsInterval:    pulumi.Float64(0),
    				ReachableTime: pulumi.Float64(0),
    			},
    			Preference: pulumi.String("string"),
    			PrefixDelegation: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationArgs{
    				Enable: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableArgs{
    					No: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableNoArgs{},
    					Yes: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableYesArgs{
    						PfxPoolName:   pulumi.String("string"),
    						PrefixLen:     pulumi.Float64(0),
    						PrefixLenHint: pulumi.Bool(false),
    					},
    				},
    			},
    			V6Options: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsArgs{
    				DuidType: pulumi.String("string"),
    				Enable: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableArgs{
    					No: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableNoArgs{},
    					Yes: &panos.AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableYesArgs{
    						NonTempAddr: pulumi.Bool(false),
    						TempAddr:    pulumi.Bool(false),
    					},
    				},
    				RapidCommit:         pulumi.Bool(false),
    				SupportSrvrReconfig: pulumi.Bool(false),
    			},
    		},
    		Enabled: pulumi.Bool(false),
    		Inherited: &panos.AggregateLayer3SubinterfaceIpv6InheritedArgs{
    			AssignAddrs: panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrArray{
    				&panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrArgs{
    					Name: pulumi.String("string"),
    					Type: &panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeArgs{
    						Gua: &panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaArgs{
    							Advertise: &panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaAdvertiseArgs{
    								AutoConfigFlag: pulumi.Bool(false),
    								Enable:         pulumi.Bool(false),
    								OnlinkFlag:     pulumi.Bool(false),
    							},
    							EnableOnInterface: pulumi.Bool(false),
    							PoolType: &panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeArgs{
    								Dynamic: &panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeDynamicArgs{},
    								DynamicId: &panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeDynamicIdArgs{
    									Identifier: pulumi.Float64(0),
    								},
    							},
    							PrefixPool: pulumi.String("string"),
    						},
    						Ula: &panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaArgs{
    							Address: pulumi.String("string"),
    							Advertise: &panos.AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertiseArgs{
    								AutoConfigFlag:    pulumi.Bool(false),
    								Enable:            pulumi.Bool(false),
    								OnlinkFlag:        pulumi.Bool(false),
    								PreferredLifetime: pulumi.String("string"),
    								ValidLifetime:     pulumi.String("string"),
    							},
    							Anycast:           pulumi.Bool(false),
    							EnableOnInterface: pulumi.Bool(false),
    							Prefix:            pulumi.Bool(false),
    						},
    					},
    				},
    			},
    			Enable: pulumi.Bool(false),
    			NeighborDiscovery: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryArgs{
    				DadAttempts: pulumi.Float64(0),
    				DnsServer: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerArgs{
    					Enable: pulumi.Bool(false),
    					Source: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceArgs{
    						Dhcpv6: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceDhcpv6Args{
    							PrefixPool: pulumi.String("string"),
    						},
    						Manual: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualArgs{
    							Servers: panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualServerArray{
    								&panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualServerArgs{
    									Name:     pulumi.String("string"),
    									Lifetime: pulumi.Float64(0),
    								},
    							},
    						},
    					},
    				},
    				DnsSuffix: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixArgs{
    					Enable: pulumi.Bool(false),
    					Source: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceArgs{
    						Dhcpv6: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceDhcpv6Args{
    							PrefixPool: pulumi.String("string"),
    						},
    						Manual: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualArgs{
    							Suffixes: panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualSuffixArray{
    								&panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualSuffixArgs{
    									Name:     pulumi.String("string"),
    									Lifetime: pulumi.Float64(0),
    								},
    							},
    						},
    					},
    				},
    				EnableDad:        pulumi.Bool(false),
    				EnableNdpMonitor: pulumi.Bool(false),
    				Neighbors: panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighborArray{
    					&panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighborArgs{
    						Name:      pulumi.String("string"),
    						HwAddress: pulumi.String("string"),
    					},
    				},
    				NsInterval:    pulumi.Float64(0),
    				ReachableTime: pulumi.Float64(0),
    				RouterAdvertisement: &panos.AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisementArgs{
    					Enable:                 pulumi.Bool(false),
    					EnableConsistencyCheck: pulumi.Bool(false),
    					HopLimit:               pulumi.String("string"),
    					Lifetime:               pulumi.Float64(0),
    					LinkMtu:                pulumi.String("string"),
    					ManagedFlag:            pulumi.Bool(false),
    					MaxInterval:            pulumi.Float64(0),
    					MinInterval:            pulumi.Float64(0),
    					OtherFlag:              pulumi.Bool(false),
    					ReachableTime:          pulumi.String("string"),
    					RetransmissionTimer:    pulumi.String("string"),
    					RouterPreference:       pulumi.String("string"),
    				},
    			},
    		},
    		InterfaceId: pulumi.String("string"),
    		NeighborDiscovery: &panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryArgs{
    			DadAttempts:      pulumi.Float64(0),
    			EnableDad:        pulumi.Bool(false),
    			EnableNdpMonitor: pulumi.Bool(false),
    			Neighbors: panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighborArray{
    				&panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighborArgs{
    					Name:      pulumi.String("string"),
    					HwAddress: pulumi.String("string"),
    				},
    			},
    			NsInterval:    pulumi.Float64(0),
    			ReachableTime: pulumi.Float64(0),
    			RouterAdvertisement: &panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementArgs{
    				DnsSupport: &panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportArgs{
    					Enable: pulumi.Bool(false),
    					Servers: panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportServerArray{
    						&panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportServerArgs{
    							Name:     pulumi.String("string"),
    							Lifetime: pulumi.Float64(0),
    						},
    					},
    					Suffixes: panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportSuffixArray{
    						&panos.AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportSuffixArgs{
    							Name:     pulumi.String("string"),
    							Lifetime: pulumi.Float64(0),
    						},
    					},
    				},
    				Enable:                 pulumi.Bool(false),
    				EnableConsistencyCheck: pulumi.Bool(false),
    				HopLimit:               pulumi.String("string"),
    				Lifetime:               pulumi.Float64(0),
    				LinkMtu:                pulumi.String("string"),
    				ManagedFlag:            pulumi.Bool(false),
    				MaxInterval:            pulumi.Float64(0),
    				MinInterval:            pulumi.Float64(0),
    				OtherFlag:              pulumi.Bool(false),
    				ReachableTime:          pulumi.String("string"),
    				RetransmissionTimer:    pulumi.String("string"),
    				RouterPreference:       pulumi.String("string"),
    			},
    		},
    	},
    	Mtu:  pulumi.Float64(0),
    	Name: pulumi.String("string"),
    	NdpProxy: &panos.AggregateLayer3SubinterfaceNdpProxyArgs{
    		Addresses: panos.AggregateLayer3SubinterfaceNdpProxyAddressArray{
    			&panos.AggregateLayer3SubinterfaceNdpProxyAddressArgs{
    				Name:   pulumi.String("string"),
    				Negate: pulumi.Bool(false),
    			},
    		},
    		Enabled: pulumi.Bool(false),
    	},
    	NetflowProfile: pulumi.String("string"),
    	Parent:         pulumi.String("string"),
    	SdwanLinkSettings: &panos.AggregateLayer3SubinterfaceSdwanLinkSettingsArgs{
    		Enable:                pulumi.Bool(false),
    		SdwanInterfaceProfile: pulumi.String("string"),
    		UpstreamNat: &panos.AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatArgs{
    			Ddns:   &panos.AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatDdnsArgs{},
    			Enable: pulumi.Bool(false),
    			StaticIp: &panos.AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs{
    				Fqdn:      pulumi.String("string"),
    				IpAddress: pulumi.String("string"),
    			},
    		},
    	},
    	Tag: pulumi.Float64(0),
    })
    
    var aggregateLayer3SubinterfaceResource = new AggregateLayer3Subinterface("aggregateLayer3SubinterfaceResource", AggregateLayer3SubinterfaceArgs.builder()
        .location(AggregateLayer3SubinterfaceLocationArgs.builder()
            .ngfw(AggregateLayer3SubinterfaceLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .shared(AggregateLayer3SubinterfaceLocationSharedArgs.builder()
                .build())
            .template(AggregateLayer3SubinterfaceLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(AggregateLayer3SubinterfaceLocationTemplateStackArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .build())
        .interfaceManagementProfile("string")
        .arps(AggregateLayer3SubinterfaceArpArgs.builder()
            .name("string")
            .hwAddress("string")
            .build())
        .comment("string")
        .ddnsConfig(AggregateLayer3SubinterfaceDdnsConfigArgs.builder()
            .ddnsCertProfile("string")
            .ddnsEnabled(false)
            .ddnsHostname("string")
            .ddnsIps("string")
            .ddnsIpv6s("string")
            .ddnsUpdateInterval(0.0)
            .ddnsVendor("string")
            .ddnsVendorConfigs(AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfigArgs.builder()
                .name("string")
                .value("string")
                .build())
            .build())
        .decryptForward(false)
        .dfIgnore(false)
        .dhcpClient(AggregateLayer3SubinterfaceDhcpClientArgs.builder()
            .createDefaultRoute(false)
            .defaultRouteMetric(0.0)
            .enable(false)
            .sendHostname(AggregateLayer3SubinterfaceDhcpClientSendHostnameArgs.builder()
                .enable(false)
                .hostname("string")
                .build())
            .build())
        .adjustTcpMss(AggregateLayer3SubinterfaceAdjustTcpMssArgs.builder()
            .enable(false)
            .ipv4MssAdjustment(0.0)
            .ipv6MssAdjustment(0.0)
            .build())
        .bonjour(AggregateLayer3SubinterfaceBonjourArgs.builder()
            .enable(false)
            .groupId(0.0)
            .ttlCheck(false)
            .build())
        .ips(AggregateLayer3SubinterfaceIpArgs.builder()
            .name("string")
            .sdwanGateway("string")
            .build())
        .ipv6(AggregateLayer3SubinterfaceIpv6Args.builder()
            .addresses(AggregateLayer3SubinterfaceIpv6AddressArgs.builder()
                .name("string")
                .advertise(AggregateLayer3SubinterfaceIpv6AddressAdvertiseArgs.builder()
                    .autoConfigFlag(false)
                    .enable(false)
                    .onlinkFlag(false)
                    .preferredLifetime("string")
                    .validLifetime("string")
                    .build())
                .anycast(AggregateLayer3SubinterfaceIpv6AddressAnycastArgs.builder()
                    .build())
                .enableOnInterface(false)
                .prefix(AggregateLayer3SubinterfaceIpv6AddressPrefixArgs.builder()
                    .build())
                .build())
            .dhcpClient(AggregateLayer3SubinterfaceIpv6DhcpClientArgs.builder()
                .acceptRaRoute(false)
                .defaultRouteMetric(0.0)
                .enable(false)
                .neighborDiscovery(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryArgs.builder()
                    .dadAttempts(0.0)
                    .dnsServer(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerArgs.builder()
                        .enable(false)
                        .source(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceArgs.builder()
                            .dhcpv6(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceDhcpv6Args.builder()
                                .build())
                            .manual(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualArgs.builder()
                                .servers(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualServerArgs.builder()
                                    .name("string")
                                    .lifetime(0.0)
                                    .build())
                                .build())
                            .build())
                        .build())
                    .dnsSuffix(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixArgs.builder()
                        .enable(false)
                        .source(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceArgs.builder()
                            .dhcpv6(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceDhcpv6Args.builder()
                                .build())
                            .manual(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualArgs.builder()
                                .suffixes(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualSuffixArgs.builder()
                                    .name("string")
                                    .lifetime(0.0)
                                    .build())
                                .build())
                            .build())
                        .build())
                    .enableDad(false)
                    .enableNdpMonitor(false)
                    .neighbors(AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighborArgs.builder()
                        .name("string")
                        .hwAddress("string")
                        .build())
                    .nsInterval(0.0)
                    .reachableTime(0.0)
                    .build())
                .preference("string")
                .prefixDelegation(AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationArgs.builder()
                    .enable(AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableArgs.builder()
                        .no(AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableNoArgs.builder()
                            .build())
                        .yes(AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableYesArgs.builder()
                            .pfxPoolName("string")
                            .prefixLen(0.0)
                            .prefixLenHint(false)
                            .build())
                        .build())
                    .build())
                .v6Options(AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsArgs.builder()
                    .duidType("string")
                    .enable(AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableArgs.builder()
                        .no(AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableNoArgs.builder()
                            .build())
                        .yes(AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableYesArgs.builder()
                            .nonTempAddr(false)
                            .tempAddr(false)
                            .build())
                        .build())
                    .rapidCommit(false)
                    .supportSrvrReconfig(false)
                    .build())
                .build())
            .enabled(false)
            .inherited(AggregateLayer3SubinterfaceIpv6InheritedArgs.builder()
                .assignAddrs(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrArgs.builder()
                    .name("string")
                    .type(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeArgs.builder()
                        .gua(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaArgs.builder()
                            .advertise(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaAdvertiseArgs.builder()
                                .autoConfigFlag(false)
                                .enable(false)
                                .onlinkFlag(false)
                                .build())
                            .enableOnInterface(false)
                            .poolType(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeArgs.builder()
                                .dynamic(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeDynamicArgs.builder()
                                    .build())
                                .dynamicId(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeDynamicIdArgs.builder()
                                    .identifier(0.0)
                                    .build())
                                .build())
                            .prefixPool("string")
                            .build())
                        .ula(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaArgs.builder()
                            .address("string")
                            .advertise(AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertiseArgs.builder()
                                .autoConfigFlag(false)
                                .enable(false)
                                .onlinkFlag(false)
                                .preferredLifetime("string")
                                .validLifetime("string")
                                .build())
                            .anycast(false)
                            .enableOnInterface(false)
                            .prefix(false)
                            .build())
                        .build())
                    .build())
                .enable(false)
                .neighborDiscovery(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryArgs.builder()
                    .dadAttempts(0.0)
                    .dnsServer(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerArgs.builder()
                        .enable(false)
                        .source(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceArgs.builder()
                            .dhcpv6(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceDhcpv6Args.builder()
                                .prefixPool("string")
                                .build())
                            .manual(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualArgs.builder()
                                .servers(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualServerArgs.builder()
                                    .name("string")
                                    .lifetime(0.0)
                                    .build())
                                .build())
                            .build())
                        .build())
                    .dnsSuffix(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixArgs.builder()
                        .enable(false)
                        .source(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceArgs.builder()
                            .dhcpv6(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceDhcpv6Args.builder()
                                .prefixPool("string")
                                .build())
                            .manual(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualArgs.builder()
                                .suffixes(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualSuffixArgs.builder()
                                    .name("string")
                                    .lifetime(0.0)
                                    .build())
                                .build())
                            .build())
                        .build())
                    .enableDad(false)
                    .enableNdpMonitor(false)
                    .neighbors(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighborArgs.builder()
                        .name("string")
                        .hwAddress("string")
                        .build())
                    .nsInterval(0.0)
                    .reachableTime(0.0)
                    .routerAdvertisement(AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisementArgs.builder()
                        .enable(false)
                        .enableConsistencyCheck(false)
                        .hopLimit("string")
                        .lifetime(0.0)
                        .linkMtu("string")
                        .managedFlag(false)
                        .maxInterval(0.0)
                        .minInterval(0.0)
                        .otherFlag(false)
                        .reachableTime("string")
                        .retransmissionTimer("string")
                        .routerPreference("string")
                        .build())
                    .build())
                .build())
            .interfaceId("string")
            .neighborDiscovery(AggregateLayer3SubinterfaceIpv6NeighborDiscoveryArgs.builder()
                .dadAttempts(0.0)
                .enableDad(false)
                .enableNdpMonitor(false)
                .neighbors(AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighborArgs.builder()
                    .name("string")
                    .hwAddress("string")
                    .build())
                .nsInterval(0.0)
                .reachableTime(0.0)
                .routerAdvertisement(AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementArgs.builder()
                    .dnsSupport(AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportArgs.builder()
                        .enable(false)
                        .servers(AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportServerArgs.builder()
                            .name("string")
                            .lifetime(0.0)
                            .build())
                        .suffixes(AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportSuffixArgs.builder()
                            .name("string")
                            .lifetime(0.0)
                            .build())
                        .build())
                    .enable(false)
                    .enableConsistencyCheck(false)
                    .hopLimit("string")
                    .lifetime(0.0)
                    .linkMtu("string")
                    .managedFlag(false)
                    .maxInterval(0.0)
                    .minInterval(0.0)
                    .otherFlag(false)
                    .reachableTime("string")
                    .retransmissionTimer("string")
                    .routerPreference("string")
                    .build())
                .build())
            .build())
        .mtu(0.0)
        .name("string")
        .ndpProxy(AggregateLayer3SubinterfaceNdpProxyArgs.builder()
            .addresses(AggregateLayer3SubinterfaceNdpProxyAddressArgs.builder()
                .name("string")
                .negate(false)
                .build())
            .enabled(false)
            .build())
        .netflowProfile("string")
        .parent("string")
        .sdwanLinkSettings(AggregateLayer3SubinterfaceSdwanLinkSettingsArgs.builder()
            .enable(false)
            .sdwanInterfaceProfile("string")
            .upstreamNat(AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatArgs.builder()
                .ddns(AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatDdnsArgs.builder()
                    .build())
                .enable(false)
                .staticIp(AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs.builder()
                    .fqdn("string")
                    .ipAddress("string")
                    .build())
                .build())
            .build())
        .tag(0.0)
        .build());
    
    aggregate_layer3_subinterface_resource = panos.AggregateLayer3Subinterface("aggregateLayer3SubinterfaceResource",
        location={
            "ngfw": {
                "ngfw_device": "string",
            },
            "shared": {},
            "template": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
        },
        interface_management_profile="string",
        arps=[{
            "name": "string",
            "hw_address": "string",
        }],
        comment="string",
        ddns_config={
            "ddns_cert_profile": "string",
            "ddns_enabled": False,
            "ddns_hostname": "string",
            "ddns_ips": ["string"],
            "ddns_ipv6s": ["string"],
            "ddns_update_interval": 0,
            "ddns_vendor": "string",
            "ddns_vendor_configs": [{
                "name": "string",
                "value": "string",
            }],
        },
        decrypt_forward=False,
        df_ignore=False,
        dhcp_client={
            "create_default_route": False,
            "default_route_metric": 0,
            "enable": False,
            "send_hostname": {
                "enable": False,
                "hostname": "string",
            },
        },
        adjust_tcp_mss={
            "enable": False,
            "ipv4_mss_adjustment": 0,
            "ipv6_mss_adjustment": 0,
        },
        bonjour={
            "enable": False,
            "group_id": 0,
            "ttl_check": False,
        },
        ips=[{
            "name": "string",
            "sdwan_gateway": "string",
        }],
        ipv6={
            "addresses": [{
                "name": "string",
                "advertise": {
                    "auto_config_flag": False,
                    "enable": False,
                    "onlink_flag": False,
                    "preferred_lifetime": "string",
                    "valid_lifetime": "string",
                },
                "anycast": {},
                "enable_on_interface": False,
                "prefix": {},
            }],
            "dhcp_client": {
                "accept_ra_route": False,
                "default_route_metric": 0,
                "enable": False,
                "neighbor_discovery": {
                    "dad_attempts": 0,
                    "dns_server": {
                        "enable": False,
                        "source": {
                            "dhcpv6": {},
                            "manual": {
                                "servers": [{
                                    "name": "string",
                                    "lifetime": 0,
                                }],
                            },
                        },
                    },
                    "dns_suffix": {
                        "enable": False,
                        "source": {
                            "dhcpv6": {},
                            "manual": {
                                "suffixes": [{
                                    "name": "string",
                                    "lifetime": 0,
                                }],
                            },
                        },
                    },
                    "enable_dad": False,
                    "enable_ndp_monitor": False,
                    "neighbors": [{
                        "name": "string",
                        "hw_address": "string",
                    }],
                    "ns_interval": 0,
                    "reachable_time": 0,
                },
                "preference": "string",
                "prefix_delegation": {
                    "enable": {
                        "no": {},
                        "yes": {
                            "pfx_pool_name": "string",
                            "prefix_len": 0,
                            "prefix_len_hint": False,
                        },
                    },
                },
                "v6_options": {
                    "duid_type": "string",
                    "enable": {
                        "no": {},
                        "yes": {
                            "non_temp_addr": False,
                            "temp_addr": False,
                        },
                    },
                    "rapid_commit": False,
                    "support_srvr_reconfig": False,
                },
            },
            "enabled": False,
            "inherited": {
                "assign_addrs": [{
                    "name": "string",
                    "type": {
                        "gua": {
                            "advertise": {
                                "auto_config_flag": False,
                                "enable": False,
                                "onlink_flag": False,
                            },
                            "enable_on_interface": False,
                            "pool_type": {
                                "dynamic": {},
                                "dynamic_id": {
                                    "identifier": 0,
                                },
                            },
                            "prefix_pool": "string",
                        },
                        "ula": {
                            "address": "string",
                            "advertise": {
                                "auto_config_flag": False,
                                "enable": False,
                                "onlink_flag": False,
                                "preferred_lifetime": "string",
                                "valid_lifetime": "string",
                            },
                            "anycast": False,
                            "enable_on_interface": False,
                            "prefix": False,
                        },
                    },
                }],
                "enable": False,
                "neighbor_discovery": {
                    "dad_attempts": 0,
                    "dns_server": {
                        "enable": False,
                        "source": {
                            "dhcpv6": {
                                "prefix_pool": "string",
                            },
                            "manual": {
                                "servers": [{
                                    "name": "string",
                                    "lifetime": 0,
                                }],
                            },
                        },
                    },
                    "dns_suffix": {
                        "enable": False,
                        "source": {
                            "dhcpv6": {
                                "prefix_pool": "string",
                            },
                            "manual": {
                                "suffixes": [{
                                    "name": "string",
                                    "lifetime": 0,
                                }],
                            },
                        },
                    },
                    "enable_dad": False,
                    "enable_ndp_monitor": False,
                    "neighbors": [{
                        "name": "string",
                        "hw_address": "string",
                    }],
                    "ns_interval": 0,
                    "reachable_time": 0,
                    "router_advertisement": {
                        "enable": False,
                        "enable_consistency_check": False,
                        "hop_limit": "string",
                        "lifetime": 0,
                        "link_mtu": "string",
                        "managed_flag": False,
                        "max_interval": 0,
                        "min_interval": 0,
                        "other_flag": False,
                        "reachable_time": "string",
                        "retransmission_timer": "string",
                        "router_preference": "string",
                    },
                },
            },
            "interface_id": "string",
            "neighbor_discovery": {
                "dad_attempts": 0,
                "enable_dad": False,
                "enable_ndp_monitor": False,
                "neighbors": [{
                    "name": "string",
                    "hw_address": "string",
                }],
                "ns_interval": 0,
                "reachable_time": 0,
                "router_advertisement": {
                    "dns_support": {
                        "enable": False,
                        "servers": [{
                            "name": "string",
                            "lifetime": 0,
                        }],
                        "suffixes": [{
                            "name": "string",
                            "lifetime": 0,
                        }],
                    },
                    "enable": False,
                    "enable_consistency_check": False,
                    "hop_limit": "string",
                    "lifetime": 0,
                    "link_mtu": "string",
                    "managed_flag": False,
                    "max_interval": 0,
                    "min_interval": 0,
                    "other_flag": False,
                    "reachable_time": "string",
                    "retransmission_timer": "string",
                    "router_preference": "string",
                },
            },
        },
        mtu=0,
        name="string",
        ndp_proxy={
            "addresses": [{
                "name": "string",
                "negate": False,
            }],
            "enabled": False,
        },
        netflow_profile="string",
        parent="string",
        sdwan_link_settings={
            "enable": False,
            "sdwan_interface_profile": "string",
            "upstream_nat": {
                "ddns": {},
                "enable": False,
                "static_ip": {
                    "fqdn": "string",
                    "ip_address": "string",
                },
            },
        },
        tag=0)
    
    const aggregateLayer3SubinterfaceResource = new panos.AggregateLayer3Subinterface("aggregateLayer3SubinterfaceResource", {
        location: {
            ngfw: {
                ngfwDevice: "string",
            },
            shared: {},
            template: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
        },
        interfaceManagementProfile: "string",
        arps: [{
            name: "string",
            hwAddress: "string",
        }],
        comment: "string",
        ddnsConfig: {
            ddnsCertProfile: "string",
            ddnsEnabled: false,
            ddnsHostname: "string",
            ddnsIps: ["string"],
            ddnsIpv6s: ["string"],
            ddnsUpdateInterval: 0,
            ddnsVendor: "string",
            ddnsVendorConfigs: [{
                name: "string",
                value: "string",
            }],
        },
        decryptForward: false,
        dfIgnore: false,
        dhcpClient: {
            createDefaultRoute: false,
            defaultRouteMetric: 0,
            enable: false,
            sendHostname: {
                enable: false,
                hostname: "string",
            },
        },
        adjustTcpMss: {
            enable: false,
            ipv4MssAdjustment: 0,
            ipv6MssAdjustment: 0,
        },
        bonjour: {
            enable: false,
            groupId: 0,
            ttlCheck: false,
        },
        ips: [{
            name: "string",
            sdwanGateway: "string",
        }],
        ipv6: {
            addresses: [{
                name: "string",
                advertise: {
                    autoConfigFlag: false,
                    enable: false,
                    onlinkFlag: false,
                    preferredLifetime: "string",
                    validLifetime: "string",
                },
                anycast: {},
                enableOnInterface: false,
                prefix: {},
            }],
            dhcpClient: {
                acceptRaRoute: false,
                defaultRouteMetric: 0,
                enable: false,
                neighborDiscovery: {
                    dadAttempts: 0,
                    dnsServer: {
                        enable: false,
                        source: {
                            dhcpv6: {},
                            manual: {
                                servers: [{
                                    name: "string",
                                    lifetime: 0,
                                }],
                            },
                        },
                    },
                    dnsSuffix: {
                        enable: false,
                        source: {
                            dhcpv6: {},
                            manual: {
                                suffixes: [{
                                    name: "string",
                                    lifetime: 0,
                                }],
                            },
                        },
                    },
                    enableDad: false,
                    enableNdpMonitor: false,
                    neighbors: [{
                        name: "string",
                        hwAddress: "string",
                    }],
                    nsInterval: 0,
                    reachableTime: 0,
                },
                preference: "string",
                prefixDelegation: {
                    enable: {
                        no: {},
                        yes: {
                            pfxPoolName: "string",
                            prefixLen: 0,
                            prefixLenHint: false,
                        },
                    },
                },
                v6Options: {
                    duidType: "string",
                    enable: {
                        no: {},
                        yes: {
                            nonTempAddr: false,
                            tempAddr: false,
                        },
                    },
                    rapidCommit: false,
                    supportSrvrReconfig: false,
                },
            },
            enabled: false,
            inherited: {
                assignAddrs: [{
                    name: "string",
                    type: {
                        gua: {
                            advertise: {
                                autoConfigFlag: false,
                                enable: false,
                                onlinkFlag: false,
                            },
                            enableOnInterface: false,
                            poolType: {
                                dynamic: {},
                                dynamicId: {
                                    identifier: 0,
                                },
                            },
                            prefixPool: "string",
                        },
                        ula: {
                            address: "string",
                            advertise: {
                                autoConfigFlag: false,
                                enable: false,
                                onlinkFlag: false,
                                preferredLifetime: "string",
                                validLifetime: "string",
                            },
                            anycast: false,
                            enableOnInterface: false,
                            prefix: false,
                        },
                    },
                }],
                enable: false,
                neighborDiscovery: {
                    dadAttempts: 0,
                    dnsServer: {
                        enable: false,
                        source: {
                            dhcpv6: {
                                prefixPool: "string",
                            },
                            manual: {
                                servers: [{
                                    name: "string",
                                    lifetime: 0,
                                }],
                            },
                        },
                    },
                    dnsSuffix: {
                        enable: false,
                        source: {
                            dhcpv6: {
                                prefixPool: "string",
                            },
                            manual: {
                                suffixes: [{
                                    name: "string",
                                    lifetime: 0,
                                }],
                            },
                        },
                    },
                    enableDad: false,
                    enableNdpMonitor: false,
                    neighbors: [{
                        name: "string",
                        hwAddress: "string",
                    }],
                    nsInterval: 0,
                    reachableTime: 0,
                    routerAdvertisement: {
                        enable: false,
                        enableConsistencyCheck: false,
                        hopLimit: "string",
                        lifetime: 0,
                        linkMtu: "string",
                        managedFlag: false,
                        maxInterval: 0,
                        minInterval: 0,
                        otherFlag: false,
                        reachableTime: "string",
                        retransmissionTimer: "string",
                        routerPreference: "string",
                    },
                },
            },
            interfaceId: "string",
            neighborDiscovery: {
                dadAttempts: 0,
                enableDad: false,
                enableNdpMonitor: false,
                neighbors: [{
                    name: "string",
                    hwAddress: "string",
                }],
                nsInterval: 0,
                reachableTime: 0,
                routerAdvertisement: {
                    dnsSupport: {
                        enable: false,
                        servers: [{
                            name: "string",
                            lifetime: 0,
                        }],
                        suffixes: [{
                            name: "string",
                            lifetime: 0,
                        }],
                    },
                    enable: false,
                    enableConsistencyCheck: false,
                    hopLimit: "string",
                    lifetime: 0,
                    linkMtu: "string",
                    managedFlag: false,
                    maxInterval: 0,
                    minInterval: 0,
                    otherFlag: false,
                    reachableTime: "string",
                    retransmissionTimer: "string",
                    routerPreference: "string",
                },
            },
        },
        mtu: 0,
        name: "string",
        ndpProxy: {
            addresses: [{
                name: "string",
                negate: false,
            }],
            enabled: false,
        },
        netflowProfile: "string",
        parent: "string",
        sdwanLinkSettings: {
            enable: false,
            sdwanInterfaceProfile: "string",
            upstreamNat: {
                ddns: {},
                enable: false,
                staticIp: {
                    fqdn: "string",
                    ipAddress: "string",
                },
            },
        },
        tag: 0,
    });
    
    type: panos:AggregateLayer3Subinterface
    properties:
        adjustTcpMss:
            enable: false
            ipv4MssAdjustment: 0
            ipv6MssAdjustment: 0
        arps:
            - hwAddress: string
              name: string
        bonjour:
            enable: false
            groupId: 0
            ttlCheck: false
        comment: string
        ddnsConfig:
            ddnsCertProfile: string
            ddnsEnabled: false
            ddnsHostname: string
            ddnsIps:
                - string
            ddnsIpv6s:
                - string
            ddnsUpdateInterval: 0
            ddnsVendor: string
            ddnsVendorConfigs:
                - name: string
                  value: string
        decryptForward: false
        dfIgnore: false
        dhcpClient:
            createDefaultRoute: false
            defaultRouteMetric: 0
            enable: false
            sendHostname:
                enable: false
                hostname: string
        interfaceManagementProfile: string
        ips:
            - name: string
              sdwanGateway: string
        ipv6:
            addresses:
                - advertise:
                    autoConfigFlag: false
                    enable: false
                    onlinkFlag: false
                    preferredLifetime: string
                    validLifetime: string
                  anycast: {}
                  enableOnInterface: false
                  name: string
                  prefix: {}
            dhcpClient:
                acceptRaRoute: false
                defaultRouteMetric: 0
                enable: false
                neighborDiscovery:
                    dadAttempts: 0
                    dnsServer:
                        enable: false
                        source:
                            dhcpv6: {}
                            manual:
                                servers:
                                    - lifetime: 0
                                      name: string
                    dnsSuffix:
                        enable: false
                        source:
                            dhcpv6: {}
                            manual:
                                suffixes:
                                    - lifetime: 0
                                      name: string
                    enableDad: false
                    enableNdpMonitor: false
                    neighbors:
                        - hwAddress: string
                          name: string
                    nsInterval: 0
                    reachableTime: 0
                preference: string
                prefixDelegation:
                    enable:
                        "no": {}
                        "yes":
                            pfxPoolName: string
                            prefixLen: 0
                            prefixLenHint: false
                v6Options:
                    duidType: string
                    enable:
                        "no": {}
                        "yes":
                            nonTempAddr: false
                            tempAddr: false
                    rapidCommit: false
                    supportSrvrReconfig: false
            enabled: false
            inherited:
                assignAddrs:
                    - name: string
                      type:
                        gua:
                            advertise:
                                autoConfigFlag: false
                                enable: false
                                onlinkFlag: false
                            enableOnInterface: false
                            poolType:
                                dynamic: {}
                                dynamicId:
                                    identifier: 0
                            prefixPool: string
                        ula:
                            address: string
                            advertise:
                                autoConfigFlag: false
                                enable: false
                                onlinkFlag: false
                                preferredLifetime: string
                                validLifetime: string
                            anycast: false
                            enableOnInterface: false
                            prefix: false
                enable: false
                neighborDiscovery:
                    dadAttempts: 0
                    dnsServer:
                        enable: false
                        source:
                            dhcpv6:
                                prefixPool: string
                            manual:
                                servers:
                                    - lifetime: 0
                                      name: string
                    dnsSuffix:
                        enable: false
                        source:
                            dhcpv6:
                                prefixPool: string
                            manual:
                                suffixes:
                                    - lifetime: 0
                                      name: string
                    enableDad: false
                    enableNdpMonitor: false
                    neighbors:
                        - hwAddress: string
                          name: string
                    nsInterval: 0
                    reachableTime: 0
                    routerAdvertisement:
                        enable: false
                        enableConsistencyCheck: false
                        hopLimit: string
                        lifetime: 0
                        linkMtu: string
                        managedFlag: false
                        maxInterval: 0
                        minInterval: 0
                        otherFlag: false
                        reachableTime: string
                        retransmissionTimer: string
                        routerPreference: string
            interfaceId: string
            neighborDiscovery:
                dadAttempts: 0
                enableDad: false
                enableNdpMonitor: false
                neighbors:
                    - hwAddress: string
                      name: string
                nsInterval: 0
                reachableTime: 0
                routerAdvertisement:
                    dnsSupport:
                        enable: false
                        servers:
                            - lifetime: 0
                              name: string
                        suffixes:
                            - lifetime: 0
                              name: string
                    enable: false
                    enableConsistencyCheck: false
                    hopLimit: string
                    lifetime: 0
                    linkMtu: string
                    managedFlag: false
                    maxInterval: 0
                    minInterval: 0
                    otherFlag: false
                    reachableTime: string
                    retransmissionTimer: string
                    routerPreference: string
        location:
            ngfw:
                ngfwDevice: string
            shared: {}
            template:
                name: string
                ngfwDevice: string
                panoramaDevice: string
            templateStack:
                name: string
                ngfwDevice: string
                panoramaDevice: string
        mtu: 0
        name: string
        ndpProxy:
            addresses:
                - name: string
                  negate: false
            enabled: false
        netflowProfile: string
        parent: string
        sdwanLinkSettings:
            enable: false
            sdwanInterfaceProfile: string
            upstreamNat:
                ddns: {}
                enable: false
                staticIp:
                    fqdn: string
                    ipAddress: string
        tag: 0
    

    AggregateLayer3Subinterface 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 AggregateLayer3Subinterface resource accepts the following input properties:

    Location AggregateLayer3SubinterfaceLocationArgs
    The location of this object.
    AdjustTcpMss AggregateLayer3SubinterfaceAdjustTcpMssArgs
    Arps []AggregateLayer3SubinterfaceArpArgs
    Bonjour AggregateLayer3SubinterfaceBonjourArgs
    Comment string
    DdnsConfig AggregateLayer3SubinterfaceDdnsConfigArgs
    DecryptForward bool
    DfIgnore bool
    DhcpClient AggregateLayer3SubinterfaceDhcpClientArgs
    InterfaceManagementProfile string
    Interface management profile
    Ips []AggregateLayer3SubinterfaceIpArgs
    Ipv6 AggregateLayer3SubinterfaceIpv6Args
    Mtu float64
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    Name string
    NdpProxy AggregateLayer3SubinterfaceNdpProxyArgs
    NetflowProfile string
    Netflow Server Profile
    Parent string
    SdwanLinkSettings AggregateLayer3SubinterfaceSdwanLinkSettingsArgs
    Tag float64
    802.1q VLAN tag
    location AggregateLayer3SubinterfaceLocationArgs
    The location of this object.
    adjust_tcp_mss AggregateLayer3SubinterfaceAdjustTcpMssArgs
    arps Sequence[AggregateLayer3SubinterfaceArpArgs]
    bonjour AggregateLayer3SubinterfaceBonjourArgs
    comment str
    ddns_config AggregateLayer3SubinterfaceDdnsConfigArgs
    decrypt_forward bool
    df_ignore bool
    dhcp_client AggregateLayer3SubinterfaceDhcpClientArgs
    interface_management_profile str
    Interface management profile
    ips Sequence[AggregateLayer3SubinterfaceIpArgs]
    ipv6 AggregateLayer3SubinterfaceIpv6Args
    mtu float
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name str
    ndp_proxy AggregateLayer3SubinterfaceNdpProxyArgs
    netflow_profile str
    Netflow Server Profile
    parent str
    sdwan_link_settings AggregateLayer3SubinterfaceSdwanLinkSettingsArgs
    tag float
    802.1q VLAN tag
    location Property Map
    The location of this object.
    adjustTcpMss Property Map
    arps List<Property Map>
    bonjour Property Map
    comment String
    ddnsConfig Property Map
    decryptForward Boolean
    dfIgnore Boolean
    dhcpClient Property Map
    interfaceManagementProfile String
    Interface management profile
    ips List<Property Map>
    ipv6 Property Map
    mtu Number
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name String
    ndpProxy Property Map
    netflowProfile String
    Netflow Server Profile
    parent String
    sdwanLinkSettings Property Map
    tag Number
    802.1q VLAN tag

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AggregateLayer3Subinterface resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AggregateLayer3Subinterface Resource

    Get an existing AggregateLayer3Subinterface 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?: AggregateLayer3SubinterfaceState, opts?: CustomResourceOptions): AggregateLayer3Subinterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adjust_tcp_mss: Optional[AggregateLayer3SubinterfaceAdjustTcpMssArgs] = None,
            arps: Optional[Sequence[AggregateLayer3SubinterfaceArpArgs]] = None,
            bonjour: Optional[AggregateLayer3SubinterfaceBonjourArgs] = None,
            comment: Optional[str] = None,
            ddns_config: Optional[AggregateLayer3SubinterfaceDdnsConfigArgs] = None,
            decrypt_forward: Optional[bool] = None,
            df_ignore: Optional[bool] = None,
            dhcp_client: Optional[AggregateLayer3SubinterfaceDhcpClientArgs] = None,
            interface_management_profile: Optional[str] = None,
            ips: Optional[Sequence[AggregateLayer3SubinterfaceIpArgs]] = None,
            ipv6: Optional[AggregateLayer3SubinterfaceIpv6Args] = None,
            location: Optional[AggregateLayer3SubinterfaceLocationArgs] = None,
            mtu: Optional[float] = None,
            name: Optional[str] = None,
            ndp_proxy: Optional[AggregateLayer3SubinterfaceNdpProxyArgs] = None,
            netflow_profile: Optional[str] = None,
            parent: Optional[str] = None,
            sdwan_link_settings: Optional[AggregateLayer3SubinterfaceSdwanLinkSettingsArgs] = None,
            tag: Optional[float] = None) -> AggregateLayer3Subinterface
    func GetAggregateLayer3Subinterface(ctx *Context, name string, id IDInput, state *AggregateLayer3SubinterfaceState, opts ...ResourceOption) (*AggregateLayer3Subinterface, error)
    public static AggregateLayer3Subinterface Get(string name, Input<string> id, AggregateLayer3SubinterfaceState? state, CustomResourceOptions? opts = null)
    public static AggregateLayer3Subinterface get(String name, Output<String> id, AggregateLayer3SubinterfaceState state, CustomResourceOptions options)
    resources:  _:    type: panos:AggregateLayer3Subinterface    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.
    The following state arguments are supported:
    AdjustTcpMss AggregateLayer3SubinterfaceAdjustTcpMssArgs
    Arps []AggregateLayer3SubinterfaceArpArgs
    Bonjour AggregateLayer3SubinterfaceBonjourArgs
    Comment string
    DdnsConfig AggregateLayer3SubinterfaceDdnsConfigArgs
    DecryptForward bool
    DfIgnore bool
    DhcpClient AggregateLayer3SubinterfaceDhcpClientArgs
    InterfaceManagementProfile string
    Interface management profile
    Ips []AggregateLayer3SubinterfaceIpArgs
    Ipv6 AggregateLayer3SubinterfaceIpv6Args
    Location AggregateLayer3SubinterfaceLocationArgs
    The location of this object.
    Mtu float64
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    Name string
    NdpProxy AggregateLayer3SubinterfaceNdpProxyArgs
    NetflowProfile string
    Netflow Server Profile
    Parent string
    SdwanLinkSettings AggregateLayer3SubinterfaceSdwanLinkSettingsArgs
    Tag float64
    802.1q VLAN tag
    adjust_tcp_mss AggregateLayer3SubinterfaceAdjustTcpMssArgs
    arps Sequence[AggregateLayer3SubinterfaceArpArgs]
    bonjour AggregateLayer3SubinterfaceBonjourArgs
    comment str
    ddns_config AggregateLayer3SubinterfaceDdnsConfigArgs
    decrypt_forward bool
    df_ignore bool
    dhcp_client AggregateLayer3SubinterfaceDhcpClientArgs
    interface_management_profile str
    Interface management profile
    ips Sequence[AggregateLayer3SubinterfaceIpArgs]
    ipv6 AggregateLayer3SubinterfaceIpv6Args
    location AggregateLayer3SubinterfaceLocationArgs
    The location of this object.
    mtu float
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name str
    ndp_proxy AggregateLayer3SubinterfaceNdpProxyArgs
    netflow_profile str
    Netflow Server Profile
    parent str
    sdwan_link_settings AggregateLayer3SubinterfaceSdwanLinkSettingsArgs
    tag float
    802.1q VLAN tag
    adjustTcpMss Property Map
    arps List<Property Map>
    bonjour Property Map
    comment String
    ddnsConfig Property Map
    decryptForward Boolean
    dfIgnore Boolean
    dhcpClient Property Map
    interfaceManagementProfile String
    Interface management profile
    ips List<Property Map>
    ipv6 Property Map
    location Property Map
    The location of this object.
    mtu Number
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name String
    ndpProxy Property Map
    netflowProfile String
    Netflow Server Profile
    parent String
    sdwanLinkSettings Property Map
    tag Number
    802.1q VLAN tag

    Supporting Types

    AggregateLayer3SubinterfaceAdjustTcpMss, AggregateLayer3SubinterfaceAdjustTcpMssArgs

    Enable bool
    Set if TCP MSS value should be reduced based on mtu
    Ipv4MssAdjustment double
    IPv4 MSS adjustment size (in bytes)
    Ipv6MssAdjustment double
    IPv6 MSS adjustment size (in bytes)
    Enable bool
    Set if TCP MSS value should be reduced based on mtu
    Ipv4MssAdjustment float64
    IPv4 MSS adjustment size (in bytes)
    Ipv6MssAdjustment float64
    IPv6 MSS adjustment size (in bytes)
    enable Boolean
    Set if TCP MSS value should be reduced based on mtu
    ipv4MssAdjustment Double
    IPv4 MSS adjustment size (in bytes)
    ipv6MssAdjustment Double
    IPv6 MSS adjustment size (in bytes)
    enable boolean
    Set if TCP MSS value should be reduced based on mtu
    ipv4MssAdjustment number
    IPv4 MSS adjustment size (in bytes)
    ipv6MssAdjustment number
    IPv6 MSS adjustment size (in bytes)
    enable bool
    Set if TCP MSS value should be reduced based on mtu
    ipv4_mss_adjustment float
    IPv4 MSS adjustment size (in bytes)
    ipv6_mss_adjustment float
    IPv6 MSS adjustment size (in bytes)
    enable Boolean
    Set if TCP MSS value should be reduced based on mtu
    ipv4MssAdjustment Number
    IPv4 MSS adjustment size (in bytes)
    ipv6MssAdjustment Number
    IPv6 MSS adjustment size (in bytes)

    AggregateLayer3SubinterfaceArp, AggregateLayer3SubinterfaceArpArgs

    Name string
    HwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    Name string
    HwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    name String
    hwAddress String
    MAC address (format xx:xx:xx:xx:xx:xx)
    name string
    hwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    name str
    hw_address str
    MAC address (format xx:xx:xx:xx:xx:xx)
    name String
    hwAddress String
    MAC address (format xx:xx:xx:xx:xx:xx)

    AggregateLayer3SubinterfaceBonjour, AggregateLayer3SubinterfaceBonjourArgs

    Enable bool
    Set to support Bonjour service
    GroupId double
    default 0: NO-Group
    TtlCheck bool
    Set to check and update TTL
    Enable bool
    Set to support Bonjour service
    GroupId float64
    default 0: NO-Group
    TtlCheck bool
    Set to check and update TTL
    enable Boolean
    Set to support Bonjour service
    groupId Double
    default 0: NO-Group
    ttlCheck Boolean
    Set to check and update TTL
    enable boolean
    Set to support Bonjour service
    groupId number
    default 0: NO-Group
    ttlCheck boolean
    Set to check and update TTL
    enable bool
    Set to support Bonjour service
    group_id float
    default 0: NO-Group
    ttl_check bool
    Set to check and update TTL
    enable Boolean
    Set to support Bonjour service
    groupId Number
    default 0: NO-Group
    ttlCheck Boolean
    Set to check and update TTL

    AggregateLayer3SubinterfaceDdnsConfig, AggregateLayer3SubinterfaceDdnsConfigArgs

    DdnsCertProfile string
    DdnsEnabled bool
    DdnsHostname string
    ddns hostname variable or real address
    DdnsIps List<string>
    DdnsIpv6s List<string>
    DdnsUpdateInterval double
    DdnsVendor string
    Vendor and product type
    DdnsVendorConfigs List<AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfig>
    DdnsCertProfile string
    DdnsEnabled bool
    DdnsHostname string
    ddns hostname variable or real address
    DdnsIps []string
    DdnsIpv6s []string
    DdnsUpdateInterval float64
    DdnsVendor string
    Vendor and product type
    DdnsVendorConfigs []AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfig
    ddnsCertProfile String
    ddnsEnabled Boolean
    ddnsHostname String
    ddns hostname variable or real address
    ddnsIps List<String>
    ddnsIpv6s List<String>
    ddnsUpdateInterval Double
    ddnsVendor String
    Vendor and product type
    ddnsVendorConfigs List<AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfig>
    ddnsCertProfile string
    ddnsEnabled boolean
    ddnsHostname string
    ddns hostname variable or real address
    ddnsIps string[]
    ddnsIpv6s string[]
    ddnsUpdateInterval number
    ddnsVendor string
    Vendor and product type
    ddnsVendorConfigs AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfig[]
    ddnsCertProfile String
    ddnsEnabled Boolean
    ddnsHostname String
    ddns hostname variable or real address
    ddnsIps List<String>
    ddnsIpv6s List<String>
    ddnsUpdateInterval Number
    ddnsVendor String
    Vendor and product type
    ddnsVendorConfigs List<Property Map>

    AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfig, AggregateLayer3SubinterfaceDdnsConfigDdnsVendorConfigArgs

    Name string
    Value string
    Name string
    Value string
    name String
    value String
    name string
    value string
    name str
    value str
    name String
    value String

    AggregateLayer3SubinterfaceDhcpClient, AggregateLayer3SubinterfaceDhcpClientArgs

    CreateDefaultRoute bool
    Automatically create default route pointing to default gateway provided by server
    DefaultRouteMetric double
    Metric of the default route created
    Enable bool
    SendHostname AggregateLayer3SubinterfaceDhcpClientSendHostname
    CreateDefaultRoute bool
    Automatically create default route pointing to default gateway provided by server
    DefaultRouteMetric float64
    Metric of the default route created
    Enable bool
    SendHostname AggregateLayer3SubinterfaceDhcpClientSendHostname
    createDefaultRoute Boolean
    Automatically create default route pointing to default gateway provided by server
    defaultRouteMetric Double
    Metric of the default route created
    enable Boolean
    sendHostname AggregateLayer3SubinterfaceDhcpClientSendHostname
    createDefaultRoute boolean
    Automatically create default route pointing to default gateway provided by server
    defaultRouteMetric number
    Metric of the default route created
    enable boolean
    sendHostname AggregateLayer3SubinterfaceDhcpClientSendHostname
    create_default_route bool
    Automatically create default route pointing to default gateway provided by server
    default_route_metric float
    Metric of the default route created
    enable bool
    send_hostname AggregateLayer3SubinterfaceDhcpClientSendHostname
    createDefaultRoute Boolean
    Automatically create default route pointing to default gateway provided by server
    defaultRouteMetric Number
    Metric of the default route created
    enable Boolean
    sendHostname Property Map

    AggregateLayer3SubinterfaceDhcpClientSendHostname, AggregateLayer3SubinterfaceDhcpClientSendHostnameArgs

    Enable bool
    Hostname string
    Set Interface Hostname
    Enable bool
    Hostname string
    Set Interface Hostname
    enable Boolean
    hostname String
    Set Interface Hostname
    enable boolean
    hostname string
    Set Interface Hostname
    enable bool
    hostname str
    Set Interface Hostname
    enable Boolean
    hostname String
    Set Interface Hostname

    AggregateLayer3SubinterfaceIp, AggregateLayer3SubinterfaceIpArgs

    Name string
    SdwanGateway string
    Gateway IPv4 Address
    Name string
    SdwanGateway string
    Gateway IPv4 Address
    name String
    sdwanGateway String
    Gateway IPv4 Address
    name string
    sdwanGateway string
    Gateway IPv4 Address
    name str
    sdwan_gateway str
    Gateway IPv4 Address
    name String
    sdwanGateway String
    Gateway IPv4 Address

    AggregateLayer3SubinterfaceIpv6, AggregateLayer3SubinterfaceIpv6Args

    AggregateLayer3SubinterfaceIpv6Address, AggregateLayer3SubinterfaceIpv6AddressArgs

    name String
    Property Map
    anycast Property Map
    enableOnInterface Boolean
    configure this address on interface
    prefix Property Map

    AggregateLayer3SubinterfaceIpv6AddressAdvertise, AggregateLayer3SubinterfaceIpv6AddressAdvertiseArgs

    AutoConfigFlag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    Enable bool
    enable advertising this prefix in router advertisements
    OnlinkFlag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    PreferredLifetime string
    Preferred Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    ValidLifetime string
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    AutoConfigFlag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    Enable bool
    enable advertising this prefix in router advertisements
    OnlinkFlag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    PreferredLifetime string
    Preferred Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    ValidLifetime string
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    autoConfigFlag Boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable Boolean
    enable advertising this prefix in router advertisements
    onlinkFlag Boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    preferredLifetime String
    Preferred Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    validLifetime String
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    autoConfigFlag boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable boolean
    enable advertising this prefix in router advertisements
    onlinkFlag boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    preferredLifetime string
    Preferred Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    validLifetime string
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    auto_config_flag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable bool
    enable advertising this prefix in router advertisements
    onlink_flag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    preferred_lifetime str
    Preferred Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    valid_lifetime str
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    autoConfigFlag Boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable Boolean
    enable advertising this prefix in router advertisements
    onlinkFlag Boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    preferredLifetime String
    Preferred Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    validLifetime String
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages

    AggregateLayer3SubinterfaceIpv6DhcpClient, AggregateLayer3SubinterfaceIpv6DhcpClientArgs

    acceptRaRoute Boolean
    Accept Router Advertised Default Route
    defaultRouteMetric Number
    Metric of the default route created
    enable Boolean
    Enable DHCPv6 Client
    neighborDiscovery Property Map
    preference String
    Select Low/Medium/High
    prefixDelegation Property Map
    v6Options Property Map

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscovery, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryArgs

    DadAttempts double
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    DnsServer AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServer
    DnsSuffix AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffix
    EnableDad bool
    Enable Duplicate Address Detection
    EnableNdpMonitor bool
    Enable NDP Monitoring
    Neighbors List<AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighbor>
    NsInterval double
    interval (in seconds) between consecutive neighbor solicitation messages
    ReachableTime double
    time (in seconds) that the Reachable status for a neighbor can be maintained
    DadAttempts float64
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    DnsServer AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServer
    DnsSuffix AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffix
    EnableDad bool
    Enable Duplicate Address Detection
    EnableNdpMonitor bool
    Enable NDP Monitoring
    Neighbors []AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighbor
    NsInterval float64
    interval (in seconds) between consecutive neighbor solicitation messages
    ReachableTime float64
    time (in seconds) that the Reachable status for a neighbor can be maintained
    dadAttempts Double
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    dnsServer AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServer
    dnsSuffix AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffix
    enableDad Boolean
    Enable Duplicate Address Detection
    enableNdpMonitor Boolean
    Enable NDP Monitoring
    neighbors List<AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighbor>
    nsInterval Double
    interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime Double
    time (in seconds) that the Reachable status for a neighbor can be maintained
    dadAttempts number
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    dnsServer AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServer
    dnsSuffix AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffix
    enableDad boolean
    Enable Duplicate Address Detection
    enableNdpMonitor boolean
    Enable NDP Monitoring
    neighbors AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighbor[]
    nsInterval number
    interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime number
    time (in seconds) that the Reachable status for a neighbor can be maintained
    dad_attempts float
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    dns_server AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServer
    dns_suffix AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffix
    enable_dad bool
    Enable Duplicate Address Detection
    enable_ndp_monitor bool
    Enable NDP Monitoring
    neighbors Sequence[AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighbor]
    ns_interval float
    interval (in seconds) between consecutive neighbor solicitation messages
    reachable_time float
    time (in seconds) that the Reachable status for a neighbor can be maintained
    dadAttempts Number
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    dnsServer Property Map
    dnsSuffix Property Map
    enableDad Boolean
    Enable Duplicate Address Detection
    enableNdpMonitor Boolean
    Enable NDP Monitoring
    neighbors List<Property Map>
    nsInterval Number
    interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime Number
    time (in seconds) that the Reachable status for a neighbor can be maintained

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServer, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSource, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManual, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualServer, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsServerSourceManualServerArgs

    Name string
    Lifetime double
    (4-3600) Lifetime in Seconds
    Name string
    Lifetime float64
    (4-3600) Lifetime in Seconds
    name String
    lifetime Double
    (4-3600) Lifetime in Seconds
    name string
    lifetime number
    (4-3600) Lifetime in Seconds
    name str
    lifetime float
    (4-3600) Lifetime in Seconds
    name String
    lifetime Number
    (4-3600) Lifetime in Seconds

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffix, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSource, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManual, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualSuffix, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryDnsSuffixSourceManualSuffixArgs

    Name string
    Lifetime double
    (4-3600) lifetime in seconds
    Name string
    Lifetime float64
    (4-3600) lifetime in seconds
    name String
    lifetime Double
    (4-3600) lifetime in seconds
    name string
    lifetime number
    (4-3600) lifetime in seconds
    name str
    lifetime float
    (4-3600) lifetime in seconds
    name String
    lifetime Number
    (4-3600) lifetime in seconds

    AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighbor, AggregateLayer3SubinterfaceIpv6DhcpClientNeighborDiscoveryNeighborArgs

    Name string
    HwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    Name string
    HwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    name String
    hwAddress String
    MAC address (format xx:xx:xx:xx:xx:xx)
    name string
    hwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    name str
    hw_address str
    MAC address (format xx:xx:xx:xx:xx:xx)
    name String
    hwAddress String
    MAC address (format xx:xx:xx:xx:xx:xx)

    AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegation, AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnable, AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableYes, AggregateLayer3SubinterfaceIpv6DhcpClientPrefixDelegationEnableYesArgs

    PfxPoolName string
    Configure unique Prefix Pool Name
    PrefixLen double
    Hint DHCP Prefix Length (bits)
    PrefixLenHint bool
    Send prefix length hint to server
    PfxPoolName string
    Configure unique Prefix Pool Name
    PrefixLen float64
    Hint DHCP Prefix Length (bits)
    PrefixLenHint bool
    Send prefix length hint to server
    pfxPoolName String
    Configure unique Prefix Pool Name
    prefixLen Double
    Hint DHCP Prefix Length (bits)
    prefixLenHint Boolean
    Send prefix length hint to server
    pfxPoolName string
    Configure unique Prefix Pool Name
    prefixLen number
    Hint DHCP Prefix Length (bits)
    prefixLenHint boolean
    Send prefix length hint to server
    pfx_pool_name str
    Configure unique Prefix Pool Name
    prefix_len float
    Hint DHCP Prefix Length (bits)
    prefix_len_hint bool
    Send prefix length hint to server
    pfxPoolName String
    Configure unique Prefix Pool Name
    prefixLen Number
    Hint DHCP Prefix Length (bits)
    prefixLenHint Boolean
    Send prefix length hint to server

    AggregateLayer3SubinterfaceIpv6DhcpClientV6Options, AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsArgs

    DuidType string
    Select DUID-LLT/DUID-LL
    Enable AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnable
    RapidCommit bool
    Enable Rapid Commit
    SupportSrvrReconfig bool
    Enable DHCPv6 Server Re-Configuration Support
    DuidType string
    Select DUID-LLT/DUID-LL
    Enable AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnable
    RapidCommit bool
    Enable Rapid Commit
    SupportSrvrReconfig bool
    Enable DHCPv6 Server Re-Configuration Support
    duidType String
    Select DUID-LLT/DUID-LL
    enable AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnable
    rapidCommit Boolean
    Enable Rapid Commit
    supportSrvrReconfig Boolean
    Enable DHCPv6 Server Re-Configuration Support
    duidType string
    Select DUID-LLT/DUID-LL
    enable AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnable
    rapidCommit boolean
    Enable Rapid Commit
    supportSrvrReconfig boolean
    Enable DHCPv6 Server Re-Configuration Support
    duid_type str
    Select DUID-LLT/DUID-LL
    enable AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnable
    rapid_commit bool
    Enable Rapid Commit
    support_srvr_reconfig bool
    Enable DHCPv6 Server Re-Configuration Support
    duidType String
    Select DUID-LLT/DUID-LL
    enable Property Map
    rapidCommit Boolean
    Enable Rapid Commit
    supportSrvrReconfig Boolean
    Enable DHCPv6 Server Re-Configuration Support

    AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnable, AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableArgs

    AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableYes, AggregateLayer3SubinterfaceIpv6DhcpClientV6OptionsEnableYesArgs

    NonTempAddr bool
    Request Non-Temporary Address Type
    TempAddr bool
    Request Temporary Address Type
    NonTempAddr bool
    Request Non-Temporary Address Type
    TempAddr bool
    Request Temporary Address Type
    nonTempAddr Boolean
    Request Non-Temporary Address Type
    tempAddr Boolean
    Request Temporary Address Type
    nonTempAddr boolean
    Request Non-Temporary Address Type
    tempAddr boolean
    Request Temporary Address Type
    non_temp_addr bool
    Request Non-Temporary Address Type
    temp_addr bool
    Request Temporary Address Type
    nonTempAddr Boolean
    Request Non-Temporary Address Type
    tempAddr Boolean
    Request Temporary Address Type

    AggregateLayer3SubinterfaceIpv6Inherited, AggregateLayer3SubinterfaceIpv6InheritedArgs

    AggregateLayer3SubinterfaceIpv6InheritedAssignAddr, AggregateLayer3SubinterfaceIpv6InheritedAssignAddrArgs

    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrType, AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeArgs

    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGua, AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaArgs

    Property Map
    enableOnInterface Boolean
    Enable on Interface
    poolType Property Map
    prefixPool String
    Prefix-Pool Name

    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaAdvertise, AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaAdvertiseArgs

    AutoConfigFlag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    Enable bool
    Enable advertising this prefix in router advertisements
    OnlinkFlag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    AutoConfigFlag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    Enable bool
    Enable advertising this prefix in router advertisements
    OnlinkFlag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    autoConfigFlag Boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable Boolean
    Enable advertising this prefix in router advertisements
    onlinkFlag Boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    autoConfigFlag boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable boolean
    Enable advertising this prefix in router advertisements
    onlinkFlag boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    auto_config_flag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable bool
    Enable advertising this prefix in router advertisements
    onlink_flag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    autoConfigFlag Boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable Boolean
    Enable advertising this prefix in router advertisements
    onlinkFlag Boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages

    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolType, AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeArgs

    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeDynamicId, AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeGuaPoolTypeDynamicIdArgs

    Identifier double
    Range [0-4095] must be unqiue for this prefix-pool
    Identifier float64
    Range [0-4095] must be unqiue for this prefix-pool
    identifier Double
    Range [0-4095] must be unqiue for this prefix-pool
    identifier number
    Range [0-4095] must be unqiue for this prefix-pool
    identifier float
    Range [0-4095] must be unqiue for this prefix-pool
    identifier Number
    Range [0-4095] must be unqiue for this prefix-pool

    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUla, AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaArgs

    Address string
    Configure ULA (Unique Local Address)
    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertise
    Anycast bool
    Anycast Address
    EnableOnInterface bool
    Configure this address on Interface
    Prefix bool
    Use this as prefix to form full address with interface id/EUI-64
    Address string
    Configure ULA (Unique Local Address)
    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertise
    Anycast bool
    Anycast Address
    EnableOnInterface bool
    Configure this address on Interface
    Prefix bool
    Use this as prefix to form full address with interface id/EUI-64
    address String
    Configure ULA (Unique Local Address)
    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertise
    anycast Boolean
    Anycast Address
    enableOnInterface Boolean
    Configure this address on Interface
    prefix Boolean
    Use this as prefix to form full address with interface id/EUI-64
    address string
    Configure ULA (Unique Local Address)
    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertise
    anycast boolean
    Anycast Address
    enableOnInterface boolean
    Configure this address on Interface
    prefix boolean
    Use this as prefix to form full address with interface id/EUI-64
    address str
    Configure ULA (Unique Local Address)
    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertise
    anycast bool
    Anycast Address
    enable_on_interface bool
    Configure this address on Interface
    prefix bool
    Use this as prefix to form full address with interface id/EUI-64
    address String
    Configure ULA (Unique Local Address)
    Property Map
    anycast Boolean
    Anycast Address
    enableOnInterface Boolean
    Configure this address on Interface
    prefix Boolean
    Use this as prefix to form full address with interface id/EUI-64

    AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertise, AggregateLayer3SubinterfaceIpv6InheritedAssignAddrTypeUlaAdvertiseArgs

    AutoConfigFlag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    Enable bool
    enable advertising this prefix in router advertisements
    OnlinkFlag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    PreferredLifetime string
    Preferred Lifetime (in seconds) of the prefix advertised in Router advertisement messages
    ValidLifetime string
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    AutoConfigFlag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    Enable bool
    enable advertising this prefix in router advertisements
    OnlinkFlag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    PreferredLifetime string
    Preferred Lifetime (in seconds) of the prefix advertised in Router advertisement messages
    ValidLifetime string
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    autoConfigFlag Boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable Boolean
    enable advertising this prefix in router advertisements
    onlinkFlag Boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    preferredLifetime String
    Preferred Lifetime (in seconds) of the prefix advertised in Router advertisement messages
    validLifetime String
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    autoConfigFlag boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable boolean
    enable advertising this prefix in router advertisements
    onlinkFlag boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    preferredLifetime string
    Preferred Lifetime (in seconds) of the prefix advertised in Router advertisement messages
    validLifetime string
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    auto_config_flag bool
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable bool
    enable advertising this prefix in router advertisements
    onlink_flag bool
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    preferred_lifetime str
    Preferred Lifetime (in seconds) of the prefix advertised in Router advertisement messages
    valid_lifetime str
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages
    autoConfigFlag Boolean
    Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages
    enable Boolean
    enable advertising this prefix in router advertisements
    onlinkFlag Boolean
    Set the On-Link Flag (L-bit) of the prefix in Router Advertisement messages
    preferredLifetime String
    Preferred Lifetime (in seconds) of the prefix advertised in Router advertisement messages
    validLifetime String
    Valid Lifetime (in seconds) of the prefix advertised in Router Advertisement messages

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscovery, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryArgs

    DadAttempts double
    Number of consecutive neighbor solicitation messages sent for duplicate address detection
    DnsServer AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServer
    DnsSuffix AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffix
    EnableDad bool
    Enable Duplicate Address Detection (DAD)
    EnableNdpMonitor bool
    Enable NDP Monitoring
    Neighbors List<AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighbor>
    NsInterval double
    Interval (in seconds) between consecutive neighbor solicitation messages
    ReachableTime double
    Time (in seconds) that the Reachable status for a neighbor can be maintained
    RouterAdvertisement AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisement
    DadAttempts float64
    Number of consecutive neighbor solicitation messages sent for duplicate address detection
    DnsServer AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServer
    DnsSuffix AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffix
    EnableDad bool
    Enable Duplicate Address Detection (DAD)
    EnableNdpMonitor bool
    Enable NDP Monitoring
    Neighbors []AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighbor
    NsInterval float64
    Interval (in seconds) between consecutive neighbor solicitation messages
    ReachableTime float64
    Time (in seconds) that the Reachable status for a neighbor can be maintained
    RouterAdvertisement AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisement
    dadAttempts Double
    Number of consecutive neighbor solicitation messages sent for duplicate address detection
    dnsServer AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServer
    dnsSuffix AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffix
    enableDad Boolean
    Enable Duplicate Address Detection (DAD)
    enableNdpMonitor Boolean
    Enable NDP Monitoring
    neighbors List<AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighbor>
    nsInterval Double
    Interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime Double
    Time (in seconds) that the Reachable status for a neighbor can be maintained
    routerAdvertisement AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisement
    dadAttempts number
    Number of consecutive neighbor solicitation messages sent for duplicate address detection
    dnsServer AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServer
    dnsSuffix AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffix
    enableDad boolean
    Enable Duplicate Address Detection (DAD)
    enableNdpMonitor boolean
    Enable NDP Monitoring
    neighbors AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighbor[]
    nsInterval number
    Interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime number
    Time (in seconds) that the Reachable status for a neighbor can be maintained
    routerAdvertisement AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisement
    dad_attempts float
    Number of consecutive neighbor solicitation messages sent for duplicate address detection
    dns_server AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServer
    dns_suffix AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffix
    enable_dad bool
    Enable Duplicate Address Detection (DAD)
    enable_ndp_monitor bool
    Enable NDP Monitoring
    neighbors Sequence[AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighbor]
    ns_interval float
    Interval (in seconds) between consecutive neighbor solicitation messages
    reachable_time float
    Time (in seconds) that the Reachable status for a neighbor can be maintained
    router_advertisement AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisement
    dadAttempts Number
    Number of consecutive neighbor solicitation messages sent for duplicate address detection
    dnsServer Property Map
    dnsSuffix Property Map
    enableDad Boolean
    Enable Duplicate Address Detection (DAD)
    enableNdpMonitor Boolean
    Enable NDP Monitoring
    neighbors List<Property Map>
    nsInterval Number
    Interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime Number
    Time (in seconds) that the Reachable status for a neighbor can be maintained
    routerAdvertisement Property Map

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServer, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerArgs

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSource, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceArgs

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceDhcpv6, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceDhcpv6Args

    PrefixPool string
    Prefix-Pool Name
    PrefixPool string
    Prefix-Pool Name
    prefixPool String
    Prefix-Pool Name
    prefixPool string
    Prefix-Pool Name
    prefix_pool str
    Prefix-Pool Name
    prefixPool String
    Prefix-Pool Name

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManual, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualArgs

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualServer, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsServerSourceManualServerArgs

    Name string
    Lifetime double
    (4-3600) Lifetime in Seconds
    Name string
    Lifetime float64
    (4-3600) Lifetime in Seconds
    name String
    lifetime Double
    (4-3600) Lifetime in Seconds
    name string
    lifetime number
    (4-3600) Lifetime in Seconds
    name str
    lifetime float
    (4-3600) Lifetime in Seconds
    name String
    lifetime Number
    (4-3600) Lifetime in Seconds

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffix, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixArgs

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSource, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceArgs

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceDhcpv6, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceDhcpv6Args

    PrefixPool string
    Prefix-Pool Name
    PrefixPool string
    Prefix-Pool Name
    prefixPool String
    Prefix-Pool Name
    prefixPool string
    Prefix-Pool Name
    prefix_pool str
    Prefix-Pool Name
    prefixPool String
    Prefix-Pool Name

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManual, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualArgs

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualSuffix, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryDnsSuffixSourceManualSuffixArgs

    Name string
    Lifetime double
    (4-3600) lifetime in seconds
    Name string
    Lifetime float64
    (4-3600) lifetime in seconds
    name String
    lifetime Double
    (4-3600) lifetime in seconds
    name string
    lifetime number
    (4-3600) lifetime in seconds
    name str
    lifetime float
    (4-3600) lifetime in seconds
    name String
    lifetime Number
    (4-3600) lifetime in seconds

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighbor, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryNeighborArgs

    Name string
    HwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    Name string
    HwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    name String
    hwAddress String
    MAC address (format xx:xx:xx:xx:xx:xx)
    name string
    hwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    name str
    hw_address str
    MAC address (format xx:xx:xx:xx:xx:xx)
    name String
    hwAddress String
    MAC address (format xx:xx:xx:xx:xx:xx)

    AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisement, AggregateLayer3SubinterfaceIpv6InheritedNeighborDiscoveryRouterAdvertisementArgs

    Enable bool
    EnableConsistencyCheck bool
    check consistency of RA messages from other routers.
    HopLimit string
    Current Hop Limit advertised in Router Advertisement messages
    Lifetime double
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    LinkMtu string
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    ManagedFlag bool
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    MaxInterval double
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    MinInterval double
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    OtherFlag bool
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    ReachableTime string
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    RetransmissionTimer string
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    RouterPreference string
    Enable bool
    EnableConsistencyCheck bool
    check consistency of RA messages from other routers.
    HopLimit string
    Current Hop Limit advertised in Router Advertisement messages
    Lifetime float64
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    LinkMtu string
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    ManagedFlag bool
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    MaxInterval float64
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    MinInterval float64
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    OtherFlag bool
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    ReachableTime string
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    RetransmissionTimer string
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    RouterPreference string
    enable Boolean
    enableConsistencyCheck Boolean
    check consistency of RA messages from other routers.
    hopLimit String
    Current Hop Limit advertised in Router Advertisement messages
    lifetime Double
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    linkMtu String
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    managedFlag Boolean
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    maxInterval Double
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    minInterval Double
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    otherFlag Boolean
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    reachableTime String
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    retransmissionTimer String
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    routerPreference String
    enable boolean
    enableConsistencyCheck boolean
    check consistency of RA messages from other routers.
    hopLimit string
    Current Hop Limit advertised in Router Advertisement messages
    lifetime number
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    linkMtu string
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    managedFlag boolean
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    maxInterval number
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    minInterval number
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    otherFlag boolean
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    reachableTime string
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    retransmissionTimer string
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    routerPreference string
    enable bool
    enable_consistency_check bool
    check consistency of RA messages from other routers.
    hop_limit str
    Current Hop Limit advertised in Router Advertisement messages
    lifetime float
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    link_mtu str
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    managed_flag bool
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    max_interval float
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    min_interval float
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    other_flag bool
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    reachable_time str
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    retransmission_timer str
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    router_preference str
    enable Boolean
    enableConsistencyCheck Boolean
    check consistency of RA messages from other routers.
    hopLimit String
    Current Hop Limit advertised in Router Advertisement messages
    lifetime Number
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    linkMtu String
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    managedFlag Boolean
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    maxInterval Number
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    minInterval Number
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    otherFlag Boolean
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    reachableTime String
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    retransmissionTimer String
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    routerPreference String

    AggregateLayer3SubinterfaceIpv6NeighborDiscovery, AggregateLayer3SubinterfaceIpv6NeighborDiscoveryArgs

    DadAttempts double
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    EnableDad bool
    enable duplicate address detection
    EnableNdpMonitor bool
    enable ndp monitoring
    Neighbors List<AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighbor>
    NsInterval double
    interval (in seconds) between consecutive neighbor solicitation messages
    ReachableTime double
    time (in seconds) that the Reachable status for a neighbor can be maintained
    RouterAdvertisement AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisement
    DadAttempts float64
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    EnableDad bool
    enable duplicate address detection
    EnableNdpMonitor bool
    enable ndp monitoring
    Neighbors []AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighbor
    NsInterval float64
    interval (in seconds) between consecutive neighbor solicitation messages
    ReachableTime float64
    time (in seconds) that the Reachable status for a neighbor can be maintained
    RouterAdvertisement AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisement
    dadAttempts Double
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    enableDad Boolean
    enable duplicate address detection
    enableNdpMonitor Boolean
    enable ndp monitoring
    neighbors List<AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighbor>
    nsInterval Double
    interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime Double
    time (in seconds) that the Reachable status for a neighbor can be maintained
    routerAdvertisement AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisement
    dadAttempts number
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    enableDad boolean
    enable duplicate address detection
    enableNdpMonitor boolean
    enable ndp monitoring
    neighbors AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighbor[]
    nsInterval number
    interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime number
    time (in seconds) that the Reachable status for a neighbor can be maintained
    routerAdvertisement AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisement
    dad_attempts float
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    enable_dad bool
    enable duplicate address detection
    enable_ndp_monitor bool
    enable ndp monitoring
    neighbors Sequence[AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighbor]
    ns_interval float
    interval (in seconds) between consecutive neighbor solicitation messages
    reachable_time float
    time (in seconds) that the Reachable status for a neighbor can be maintained
    router_advertisement AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisement
    dadAttempts Number
    number of consecutive neighbor solicitation messages sent for duplicate address detection
    enableDad Boolean
    enable duplicate address detection
    enableNdpMonitor Boolean
    enable ndp monitoring
    neighbors List<Property Map>
    nsInterval Number
    interval (in seconds) between consecutive neighbor solicitation messages
    reachableTime Number
    time (in seconds) that the Reachable status for a neighbor can be maintained
    routerAdvertisement Property Map

    AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighbor, AggregateLayer3SubinterfaceIpv6NeighborDiscoveryNeighborArgs

    Name string
    HwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    Name string
    HwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    name String
    hwAddress String
    MAC address (format xx:xx:xx:xx:xx:xx)
    name string
    hwAddress string
    MAC address (format xx:xx:xx:xx:xx:xx)
    name str
    hw_address str
    MAC address (format xx:xx:xx:xx:xx:xx)
    name String
    hwAddress String
    MAC address (format xx:xx:xx:xx:xx:xx)

    AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisement, AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementArgs

    DnsSupport AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupport
    Enable bool
    EnableConsistencyCheck bool
    check consistency of RA messages from other routers.
    HopLimit string
    Current Hop Limit advertised in Router Advertisement messages
    Lifetime double
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    LinkMtu string
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    ManagedFlag bool
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    MaxInterval double
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    MinInterval double
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    OtherFlag bool
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    ReachableTime string
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    RetransmissionTimer string
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    RouterPreference string
    DnsSupport AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupport
    Enable bool
    EnableConsistencyCheck bool
    check consistency of RA messages from other routers.
    HopLimit string
    Current Hop Limit advertised in Router Advertisement messages
    Lifetime float64
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    LinkMtu string
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    ManagedFlag bool
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    MaxInterval float64
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    MinInterval float64
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    OtherFlag bool
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    ReachableTime string
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    RetransmissionTimer string
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    RouterPreference string
    dnsSupport AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupport
    enable Boolean
    enableConsistencyCheck Boolean
    check consistency of RA messages from other routers.
    hopLimit String
    Current Hop Limit advertised in Router Advertisement messages
    lifetime Double
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    linkMtu String
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    managedFlag Boolean
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    maxInterval Double
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    minInterval Double
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    otherFlag Boolean
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    reachableTime String
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    retransmissionTimer String
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    routerPreference String
    dnsSupport AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupport
    enable boolean
    enableConsistencyCheck boolean
    check consistency of RA messages from other routers.
    hopLimit string
    Current Hop Limit advertised in Router Advertisement messages
    lifetime number
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    linkMtu string
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    managedFlag boolean
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    maxInterval number
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    minInterval number
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    otherFlag boolean
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    reachableTime string
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    retransmissionTimer string
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    routerPreference string
    dns_support AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupport
    enable bool
    enable_consistency_check bool
    check consistency of RA messages from other routers.
    hop_limit str
    Current Hop Limit advertised in Router Advertisement messages
    lifetime float
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    link_mtu str
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    managed_flag bool
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    max_interval float
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    min_interval float
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    other_flag bool
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    reachable_time str
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    retransmission_timer str
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    router_preference str
    dnsSupport Property Map
    enable Boolean
    enableConsistencyCheck Boolean
    check consistency of RA messages from other routers.
    hopLimit String
    Current Hop Limit advertised in Router Advertisement messages
    lifetime Number
    Router Lifetime (in seconds) advertised in Router Advertisement messages
    linkMtu String
    value of MTU option in Router Advertisement messages, upto 9216 in Jumbo-Frame mode, up to 1500 otherwise
    managedFlag Boolean
    Set the Managed Configuration Flag (M-bit) in Router Advertisement messages
    maxInterval Number
    Maximum interval (seconds) between consecutive unsolicited Router Advertisement messages
    minInterval Number
    Minimum interval (seconds) between consecutive unsolicited Router Advertisement messages
    otherFlag Boolean
    Set the Other Stateful Configuration Flag (O-bit) in Router Advertisement messages
    reachableTime String
    Reachable Time (in milliseconds) advertised in Router Advertisement messages
    retransmissionTimer String
    Retransmission Timer (in milliseconds) advertised in Router Advertisement messages
    routerPreference String

    AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupport, AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportArgs

    AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportServer, AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportServerArgs

    Name string
    Lifetime double
    (4-3600) lifetime in seconds
    Name string
    Lifetime float64
    (4-3600) lifetime in seconds
    name String
    lifetime Double
    (4-3600) lifetime in seconds
    name string
    lifetime number
    (4-3600) lifetime in seconds
    name str
    lifetime float
    (4-3600) lifetime in seconds
    name String
    lifetime Number
    (4-3600) lifetime in seconds

    AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportSuffix, AggregateLayer3SubinterfaceIpv6NeighborDiscoveryRouterAdvertisementDnsSupportSuffixArgs

    Name string
    Lifetime double
    (4-3600) lifetime in seconds
    Name string
    Lifetime float64
    (4-3600) lifetime in seconds
    name String
    lifetime Double
    (4-3600) lifetime in seconds
    name string
    lifetime number
    (4-3600) lifetime in seconds
    name str
    lifetime float
    (4-3600) lifetime in seconds
    name String
    lifetime Number
    (4-3600) lifetime in seconds

    AggregateLayer3SubinterfaceLocation, AggregateLayer3SubinterfaceLocationArgs

    ngfw Property Map
    Located in a specific NGFW device
    shared Property Map
    Panorama shared object
    template Property Map
    Located in a specific template
    templateStack Property Map
    Located in a specific template stack

    AggregateLayer3SubinterfaceLocationNgfw, AggregateLayer3SubinterfaceLocationNgfwArgs

    NgfwDevice string
    The NGFW device
    NgfwDevice string
    The NGFW device
    ngfwDevice String
    The NGFW device
    ngfwDevice string
    The NGFW device
    ngfw_device str
    The NGFW device
    ngfwDevice String
    The NGFW device

    AggregateLayer3SubinterfaceLocationTemplate, AggregateLayer3SubinterfaceLocationTemplateArgs

    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    AggregateLayer3SubinterfaceLocationTemplateStack, AggregateLayer3SubinterfaceLocationTemplateStackArgs

    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template stack
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template stack
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    AggregateLayer3SubinterfaceNdpProxy, AggregateLayer3SubinterfaceNdpProxyArgs

    addresses AggregateLayer3SubinterfaceNdpProxyAddress[]
    enabled boolean
    Enable proxy NDP on the interface
    addresses List<Property Map>
    enabled Boolean
    Enable proxy NDP on the interface

    AggregateLayer3SubinterfaceNdpProxyAddress, AggregateLayer3SubinterfaceNdpProxyAddressArgs

    Name string
    Negate bool
    put the prefix or address on a block list
    Name string
    Negate bool
    put the prefix or address on a block list
    name String
    negate Boolean
    put the prefix or address on a block list
    name string
    negate boolean
    put the prefix or address on a block list
    name str
    negate bool
    put the prefix or address on a block list
    name String
    negate Boolean
    put the prefix or address on a block list

    AggregateLayer3SubinterfaceSdwanLinkSettings, AggregateLayer3SubinterfaceSdwanLinkSettingsArgs

    Enable bool
    Enable sdwan on this ethernet interface
    SdwanInterfaceProfile string
    Sdwan link characteristics
    UpstreamNat AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNat
    Enable bool
    Enable sdwan on this ethernet interface
    SdwanInterfaceProfile string
    Sdwan link characteristics
    UpstreamNat AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNat
    enable Boolean
    Enable sdwan on this ethernet interface
    sdwanInterfaceProfile String
    Sdwan link characteristics
    upstreamNat AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNat
    enable boolean
    Enable sdwan on this ethernet interface
    sdwanInterfaceProfile string
    Sdwan link characteristics
    upstreamNat AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNat
    enable bool
    Enable sdwan on this ethernet interface
    sdwan_interface_profile str
    Sdwan link characteristics
    upstream_nat AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNat
    enable Boolean
    Enable sdwan on this ethernet interface
    sdwanInterfaceProfile String
    Sdwan link characteristics
    upstreamNat Property Map

    AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNat, AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatArgs

    ddns Property Map
    enable Boolean
    Enable upstream NAT IP config
    staticIp Property Map

    AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatStaticIp, AggregateLayer3SubinterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs

    Fqdn string
    Upstream NAT address FQDN name configuration
    IpAddress string
    Upstream NAT IP address
    Fqdn string
    Upstream NAT address FQDN name configuration
    IpAddress string
    Upstream NAT IP address
    fqdn String
    Upstream NAT address FQDN name configuration
    ipAddress String
    Upstream NAT IP address
    fqdn string
    Upstream NAT address FQDN name configuration
    ipAddress string
    Upstream NAT IP address
    fqdn str
    Upstream NAT address FQDN name configuration
    ip_address str
    Upstream NAT IP address
    fqdn String
    Upstream NAT address FQDN name configuration
    ipAddress String
    Upstream NAT IP address

    Package Details

    Repository
    panos paloaltonetworks/terraform-provider-panos
    License
    Notes
    This Pulumi package is based on the panos Terraform Provider.
    panos logo
    panos 2.0.2 published on Friday, Jun 6, 2025 by paloaltonetworks