Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
AggregateInterface data source
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// Look up aggregate interface by its ID.
const scmAggregateInterfaceDs = scm.getAggregateInterface({
id: "ddad1e64-0b64-41a4-b361-c6199761a8f1",
});
export const aggregateInterfaceDataSourceResults = {
id: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.id),
name: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.name),
comment: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.comment),
layer3: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.layer3),
folder: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.folder),
};
import pulumi
import pulumi_scm as scm
# Look up aggregate interface by its ID.
scm_aggregate_interface_ds = scm.get_aggregate_interface(id="ddad1e64-0b64-41a4-b361-c6199761a8f1")
pulumi.export("aggregateInterfaceDataSourceResults", {
"id": scm_aggregate_interface_ds.id,
"name": scm_aggregate_interface_ds.name,
"comment": scm_aggregate_interface_ds.comment,
"layer3": scm_aggregate_interface_ds.layer3,
"folder": scm_aggregate_interface_ds.folder,
})
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Look up aggregate interface by its ID.
scmAggregateInterfaceDs, err := scm.LookupAggregateInterface(ctx, &scm.LookupAggregateInterfaceArgs{
Id: "ddad1e64-0b64-41a4-b361-c6199761a8f1",
}, nil)
if err != nil {
return err
}
ctx.Export("aggregateInterfaceDataSourceResults", pulumi.Map{
"id": scmAggregateInterfaceDs.Id,
"name": scmAggregateInterfaceDs.Name,
"comment": scmAggregateInterfaceDs.Comment,
"layer3": scmAggregateInterfaceDs.Layer3,
"folder": scmAggregateInterfaceDs.Folder,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// Look up aggregate interface by its ID.
var scmAggregateInterfaceDs = Scm.GetAggregateInterface.Invoke(new()
{
Id = "ddad1e64-0b64-41a4-b361-c6199761a8f1",
});
return new Dictionary<string, object?>
{
["aggregateInterfaceDataSourceResults"] =
{
{ "id", scmAggregateInterfaceDs.Apply(getAggregateInterfaceResult => getAggregateInterfaceResult.Id) },
{ "name", scmAggregateInterfaceDs.Apply(getAggregateInterfaceResult => getAggregateInterfaceResult.Name) },
{ "comment", scmAggregateInterfaceDs.Apply(getAggregateInterfaceResult => getAggregateInterfaceResult.Comment) },
{ "layer3", scmAggregateInterfaceDs.Apply(getAggregateInterfaceResult => getAggregateInterfaceResult.Layer3) },
{ "folder", scmAggregateInterfaceDs.Apply(getAggregateInterfaceResult => getAggregateInterfaceResult.Folder) },
},
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ScmFunctions;
import com.pulumi.scm.inputs.GetAggregateInterfaceArgs;
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) {
// Look up aggregate interface by its ID.
final var scmAggregateInterfaceDs = ScmFunctions.getAggregateInterface(GetAggregateInterfaceArgs.builder()
.id("ddad1e64-0b64-41a4-b361-c6199761a8f1")
.build());
ctx.export("aggregateInterfaceDataSourceResults", Map.ofEntries(
Map.entry("id", scmAggregateInterfaceDs.id()),
Map.entry("name", scmAggregateInterfaceDs.name()),
Map.entry("comment", scmAggregateInterfaceDs.comment()),
Map.entry("layer3", scmAggregateInterfaceDs.layer3()),
Map.entry("folder", scmAggregateInterfaceDs.folder())
));
}
}
variables:
# Look up aggregate interface by its ID.
scmAggregateInterfaceDs:
fn::invoke:
function: scm:getAggregateInterface
arguments:
id: ddad1e64-0b64-41a4-b361-c6199761a8f1
outputs:
# Output various attributes from the found aggregate interface to verify the lookups were successful.
aggregateInterfaceDataSourceResults:
id: ${scmAggregateInterfaceDs.id}
name: ${scmAggregateInterfaceDs.name}
comment: ${scmAggregateInterfaceDs.comment}
layer3: ${scmAggregateInterfaceDs.layer3}
folder: ${scmAggregateInterfaceDs.folder}
Using getAggregateInterface
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAggregateInterface(args: GetAggregateInterfaceArgs, opts?: InvokeOptions): Promise<GetAggregateInterfaceResult>
function getAggregateInterfaceOutput(args: GetAggregateInterfaceOutputArgs, opts?: InvokeOptions): Output<GetAggregateInterfaceResult>def get_aggregate_interface(id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAggregateInterfaceResult
def get_aggregate_interface_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAggregateInterfaceResult]func LookupAggregateInterface(ctx *Context, args *LookupAggregateInterfaceArgs, opts ...InvokeOption) (*LookupAggregateInterfaceResult, error)
func LookupAggregateInterfaceOutput(ctx *Context, args *LookupAggregateInterfaceOutputArgs, opts ...InvokeOption) LookupAggregateInterfaceResultOutput> Note: This function is named LookupAggregateInterface in the Go SDK.
public static class GetAggregateInterface
{
public static Task<GetAggregateInterfaceResult> InvokeAsync(GetAggregateInterfaceArgs args, InvokeOptions? opts = null)
public static Output<GetAggregateInterfaceResult> Invoke(GetAggregateInterfaceInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAggregateInterfaceResult> getAggregateInterface(GetAggregateInterfaceArgs args, InvokeOptions options)
public static Output<GetAggregateInterfaceResult> getAggregateInterface(GetAggregateInterfaceArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getAggregateInterface:getAggregateInterface
arguments:
# arguments dictionaryThe following arguments are supported:
getAggregateInterface Result
The following output properties are available:
- Comment string
- Aggregate interface description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Id string
- UUID of the resource
- Layer2
Get
Aggregate Interface Layer2 - Layer2
- Layer3
Get
Aggregate Interface Layer3 - Aggregate Interface Layer 3 configuration
- Name string
- Aggregate interface name
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Comment string
- Aggregate interface description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Id string
- UUID of the resource
- Layer2
Get
Aggregate Interface Layer2 - Layer2
- Layer3
Get
Aggregate Interface Layer3 - Aggregate Interface Layer 3 configuration
- Name string
- Aggregate interface name
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- comment String
- Aggregate interface description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- id String
- UUID of the resource
- layer2
Get
Aggregate Interface Layer2 - Layer2
- layer3
Get
Aggregate Interface Layer3 - Aggregate Interface Layer 3 configuration
- name String
- Aggregate interface name
- snippet String
- The snippet in which the resource is defined
- tfid String
- comment string
- Aggregate interface description
- default
Value string - Default interface assignment
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- id string
- UUID of the resource
- layer2
Get
Aggregate Interface Layer2 - Layer2
- layer3
Get
Aggregate Interface Layer3 - Aggregate Interface Layer 3 configuration
- name string
- Aggregate interface name
- snippet string
- The snippet in which the resource is defined
- tfid string
- comment str
- Aggregate interface description
- default_
value str - Default interface assignment
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- id str
- UUID of the resource
- layer2
Get
Aggregate Interface Layer2 - Layer2
- layer3
Get
Aggregate Interface Layer3 - Aggregate Interface Layer 3 configuration
- name str
- Aggregate interface name
- snippet str
- The snippet in which the resource is defined
- tfid str
- comment String
- Aggregate interface description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- id String
- UUID of the resource
- layer2 Property Map
- Layer2
- layer3 Property Map
- Aggregate Interface Layer 3 configuration
- name String
- Aggregate interface name
- snippet String
- The snippet in which the resource is defined
- tfid String
Supporting Types
GetAggregateInterfaceLayer2
- Lacp
Get
Aggregate Interface Layer2Lacp - Lacp
- Vlan
Tag string - VLAN tag
- Lacp
Get
Aggregate Interface Layer2Lacp - Lacp
- Vlan
Tag string - VLAN tag
- lacp
Get
Aggregate Interface Layer2Lacp - Lacp
- vlan
Tag String - VLAN tag
- lacp
Get
Aggregate Interface Layer2Lacp - Lacp
- vlan
Tag string - VLAN tag
- lacp
Get
Aggregate Interface Layer2Lacp - Lacp
- vlan_
tag str - VLAN tag
- lacp Property Map
- Lacp
- vlan
Tag String - VLAN tag
GetAggregateInterfaceLayer2Lacp
- Enable bool
- Enable LACP?
- Fast
Failover bool - Fast failover
- Max
Ports int - Maximum number of physical ports bundled in the LAG
- Mode string
- Mode
- System
Priority int - LACP system priority in system ID
- Transmission
Rate string - Transmission mode
- Enable bool
- Enable LACP?
- Fast
Failover bool - Fast failover
- Max
Ports int - Maximum number of physical ports bundled in the LAG
- Mode string
- Mode
- System
Priority int - LACP system priority in system ID
- Transmission
Rate string - Transmission mode
- enable Boolean
- Enable LACP?
- fast
Failover Boolean - Fast failover
- max
Ports Integer - Maximum number of physical ports bundled in the LAG
- mode String
- Mode
- system
Priority Integer - LACP system priority in system ID
- transmission
Rate String - Transmission mode
- enable boolean
- Enable LACP?
- fast
Failover boolean - Fast failover
- max
Ports number - Maximum number of physical ports bundled in the LAG
- mode string
- Mode
- system
Priority number - LACP system priority in system ID
- transmission
Rate string - Transmission mode
- enable bool
- Enable LACP?
- fast_
failover bool - Fast failover
- max_
ports int - Maximum number of physical ports bundled in the LAG
- mode str
- Mode
- system_
priority int - LACP system priority in system ID
- transmission_
rate str - Transmission mode
- enable Boolean
- Enable LACP?
- fast
Failover Boolean - Fast failover
- max
Ports Number - Maximum number of physical ports bundled in the LAG
- mode String
- Mode
- system
Priority Number - LACP system priority in system ID
- transmission
Rate String - Transmission mode
GetAggregateInterfaceLayer3
- Arps
List<Get
Aggregate Interface Layer3Arp> - Aggregate Ethernet ARP configuration
- Ddns
Config GetAggregate Interface Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- Dhcp
Client GetAggregate Interface Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- Interface
Management stringProfile - Interface management profile
- Ips
List<Get
Aggregate Interface Layer3Ip> - Aggregate Interface IP addresses
- Lacp
Get
Aggregate Interface Layer3Lacp - Lacp
- Mtu int
- MTU
- Arps
[]Get
Aggregate Interface Layer3Arp - Aggregate Ethernet ARP configuration
- Ddns
Config GetAggregate Interface Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- Dhcp
Client GetAggregate Interface Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- Interface
Management stringProfile - Interface management profile
- Ips
[]Get
Aggregate Interface Layer3Ip - Aggregate Interface IP addresses
- Lacp
Get
Aggregate Interface Layer3Lacp - Lacp
- Mtu int
- MTU
- arps
List<Get
Aggregate Interface Layer3Arp> - Aggregate Ethernet ARP configuration
- ddns
Config GetAggregate Interface Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- dhcp
Client GetAggregate Interface Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- interface
Management StringProfile - Interface management profile
- ips
List<Get
Aggregate Interface Layer3Ip> - Aggregate Interface IP addresses
- lacp
Get
Aggregate Interface Layer3Lacp - Lacp
- mtu Integer
- MTU
- arps
Get
Aggregate Interface Layer3Arp[] - Aggregate Ethernet ARP configuration
- ddns
Config GetAggregate Interface Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- dhcp
Client GetAggregate Interface Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- interface
Management stringProfile - Interface management profile
- ips
Get
Aggregate Interface Layer3Ip[] - Aggregate Interface IP addresses
- lacp
Get
Aggregate Interface Layer3Lacp - Lacp
- mtu number
- MTU
- arps
Sequence[Get
Aggregate Interface Layer3Arp] - Aggregate Ethernet ARP configuration
- ddns_
config GetAggregate Interface Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- dhcp_
client GetAggregate Interface Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- interface_
management_ strprofile - Interface management profile
- ips
Sequence[Get
Aggregate Interface Layer3Ip] - Aggregate Interface IP addresses
- lacp
Get
Aggregate Interface Layer3Lacp - Lacp
- mtu int
- MTU
- arps List<Property Map>
- Aggregate Ethernet ARP configuration
- ddns
Config Property Map - Dynamic DNS configuration specific to the Aggregate Interface.
- dhcp
Client Property Map - Aggregate Ethernet DHCP Client Object
- interface
Management StringProfile - Interface management profile
- ips List<Property Map>
- Aggregate Interface IP addresses
- lacp Property Map
- Lacp
- mtu Number
- MTU
GetAggregateInterfaceLayer3Arp
- hw_
address str - MAC address
- name str
- IP address
GetAggregateInterfaceLayer3DdnsConfig
- Ddns
Cert stringProfile - Certificate profile
- Ddns
Enabled bool - Enable DDNS?
- Ddns
Hostname string - Ddns hostname
- Ddns
Ip string - IP to register (static only)
- Ddns
Update intInterval - Update interval (days)
- Ddns
Vendor string - DDNS vendor
- Ddns
Vendor stringConfig - DDNS vendor
- Ddns
Cert stringProfile - Certificate profile
- Ddns
Enabled bool - Enable DDNS?
- Ddns
Hostname string - Ddns hostname
- Ddns
Ip string - IP to register (static only)
- Ddns
Update intInterval - Update interval (days)
- Ddns
Vendor string - DDNS vendor
- Ddns
Vendor stringConfig - DDNS vendor
- ddns
Cert StringProfile - Certificate profile
- ddns
Enabled Boolean - Enable DDNS?
- ddns
Hostname String - Ddns hostname
- ddns
Ip String - IP to register (static only)
- ddns
Update IntegerInterval - Update interval (days)
- ddns
Vendor String - DDNS vendor
- ddns
Vendor StringConfig - DDNS vendor
- ddns
Cert stringProfile - Certificate profile
- ddns
Enabled boolean - Enable DDNS?
- ddns
Hostname string - Ddns hostname
- ddns
Ip string - IP to register (static only)
- ddns
Update numberInterval - Update interval (days)
- ddns
Vendor string - DDNS vendor
- ddns
Vendor stringConfig - DDNS vendor
- ddns_
cert_ strprofile - Certificate profile
- ddns_
enabled bool - Enable DDNS?
- ddns_
hostname str - Ddns hostname
- ddns_
ip str - IP to register (static only)
- ddns_
update_ intinterval - Update interval (days)
- ddns_
vendor str - DDNS vendor
- ddns_
vendor_ strconfig - DDNS vendor
- ddns
Cert StringProfile - Certificate profile
- ddns
Enabled Boolean - Enable DDNS?
- ddns
Hostname String - Ddns hostname
- ddns
Ip String - IP to register (static only)
- ddns
Update NumberInterval - Update interval (days)
- ddns
Vendor String - DDNS vendor
- ddns
Vendor StringConfig - DDNS vendor
GetAggregateInterfaceLayer3DhcpClient
- Create
Default boolRoute - Automatically create default route pointing to default gateway provided by server
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable DHCP?
- Send
Hostname GetAggregate Interface Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- Create
Default boolRoute - Automatically create default route pointing to default gateway provided by server
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable DHCP?
- Send
Hostname GetAggregate Interface Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- create
Default BooleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route IntegerMetric - Metric of the default route created
- enable Boolean
- Enable DHCP?
- send
Hostname GetAggregate Interface Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- create
Default booleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route numberMetric - Metric of the default route created
- enable boolean
- Enable DHCP?
- send
Hostname GetAggregate Interface Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- create_
default_ boolroute - Automatically create default route pointing to default gateway provided by server
- default_
route_ intmetric - Metric of the default route created
- enable bool
- Enable DHCP?
- send_
hostname GetAggregate Interface Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- create
Default BooleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route NumberMetric - Metric of the default route created
- enable Boolean
- Enable DHCP?
- send
Hostname Property Map - Aggregate Ethernet DHCP Client Send hostname
GetAggregateInterfaceLayer3DhcpClientSendHostname
GetAggregateInterfaceLayer3Ip
- Name string
- Aggregate Interface IP addresses name
- Name string
- Aggregate Interface IP addresses name
- name String
- Aggregate Interface IP addresses name
- name string
- Aggregate Interface IP addresses name
- name str
- Aggregate Interface IP addresses name
- name String
- Aggregate Interface IP addresses name
GetAggregateInterfaceLayer3Lacp
- Enable bool
- Enable LACP?
- Fast
Failover bool - Fast failover
- Max
Ports int - Maximum number of physical ports bundled in the LAG
- Mode string
- Mode
- System
Priority int - LACP system priority in system ID
- Transmission
Rate string - Transmission mode
- Enable bool
- Enable LACP?
- Fast
Failover bool - Fast failover
- Max
Ports int - Maximum number of physical ports bundled in the LAG
- Mode string
- Mode
- System
Priority int - LACP system priority in system ID
- Transmission
Rate string - Transmission mode
- enable Boolean
- Enable LACP?
- fast
Failover Boolean - Fast failover
- max
Ports Integer - Maximum number of physical ports bundled in the LAG
- mode String
- Mode
- system
Priority Integer - LACP system priority in system ID
- transmission
Rate String - Transmission mode
- enable boolean
- Enable LACP?
- fast
Failover boolean - Fast failover
- max
Ports number - Maximum number of physical ports bundled in the LAG
- mode string
- Mode
- system
Priority number - LACP system priority in system ID
- transmission
Rate string - Transmission mode
- enable bool
- Enable LACP?
- fast_
failover bool - Fast failover
- max_
ports int - Maximum number of physical ports bundled in the LAG
- mode str
- Mode
- system_
priority int - LACP system priority in system ID
- transmission_
rate str - Transmission mode
- enable Boolean
- Enable LACP?
- fast
Failover Boolean - Fast failover
- max
Ports Number - Maximum number of physical ports bundled in the LAG
- mode String
- Mode
- system
Priority Number - LACP system priority in system ID
- transmission
Rate String - Transmission mode
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
