outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getNics
Explore with Pulumi AI
Provides information about network interface cards (NICs).
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const nics01 = outscale.getNics({
filters: [
{
name: "nic_ids",
values: [
"eni-12345678",
"eni-87654321",
],
},
{
name: "link_nic_vm_ids",
values: ["i-12345678"],
},
],
});
import pulumi
import pulumi_outscale as outscale
nics01 = outscale.get_nics(filters=[
{
"name": "nic_ids",
"values": [
"eni-12345678",
"eni-87654321",
],
},
{
"name": "link_nic_vm_ids",
"values": ["i-12345678"],
},
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.GetNics(ctx, &outscale.GetNicsArgs{
Filters: []outscale.GetNicsFilter{
{
Name: "nic_ids",
Values: []string{
"eni-12345678",
"eni-87654321",
},
},
{
Name: "link_nic_vm_ids",
Values: []string{
"i-12345678",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var nics01 = Outscale.GetNics.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetNicsFilterInputArgs
{
Name = "nic_ids",
Values = new[]
{
"eni-12345678",
"eni-87654321",
},
},
new Outscale.Inputs.GetNicsFilterInputArgs
{
Name = "link_nic_vm_ids",
Values = new[]
{
"i-12345678",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.OutscaleFunctions;
import com.pulumi.outscale.inputs.GetNicsArgs;
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) {
final var nics01 = OutscaleFunctions.getNics(GetNicsArgs.builder()
.filters(
GetNicsFilterArgs.builder()
.name("nic_ids")
.values(
"eni-12345678",
"eni-87654321")
.build(),
GetNicsFilterArgs.builder()
.name("link_nic_vm_ids")
.values("i-12345678")
.build())
.build());
}
}
variables:
nics01:
fn::invoke:
function: outscale:getNics
arguments:
filters:
- name: nic_ids
values:
- eni-12345678
- eni-87654321
- name: link_nic_vm_ids
values:
- i-12345678
Using getNics
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 getNics(args: GetNicsArgs, opts?: InvokeOptions): Promise<GetNicsResult>
function getNicsOutput(args: GetNicsOutputArgs, opts?: InvokeOptions): Output<GetNicsResult>
def get_nics(filters: Optional[Sequence[GetNicsFilter]] = None,
id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetNicsResult
def get_nics_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNicsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNicsResult]
func GetNics(ctx *Context, args *GetNicsArgs, opts ...InvokeOption) (*GetNicsResult, error)
func GetNicsOutput(ctx *Context, args *GetNicsOutputArgs, opts ...InvokeOption) GetNicsResultOutput
> Note: This function is named GetNics
in the Go SDK.
public static class GetNics
{
public static Task<GetNicsResult> InvokeAsync(GetNicsArgs args, InvokeOptions? opts = null)
public static Output<GetNicsResult> Invoke(GetNicsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetNicsResult> getNics(GetNicsArgs args, InvokeOptions options)
public static Output<GetNicsResult> getNics(GetNicsArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getNics:getNics
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Nics Filter> - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- Id string
- Filters
[]Get
Nics Filter - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- Id string
- filters
List<Get
Nics Filter> - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id String
- filters
Get
Nics Filter[] - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id string
- filters
Sequence[Get
Nics Filter] - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id str
- filters List<Property Map>
- A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id String
getNics Result
The following output properties are available:
- Id string
- Nics
List<Get
Nics Nic> - Information about one or more NICs.
- Request
Id string - Filters
List<Get
Nics Filter>
- Id string
- Nics
[]Get
Nics Nic - Information about one or more NICs.
- Request
Id string - Filters
[]Get
Nics Filter
- id String
- nics
List<Get
Nics Nic> - Information about one or more NICs.
- request
Id String - filters
List<Get
Nics Filter>
- id string
- nics
Get
Nics Nic[] - Information about one or more NICs.
- request
Id string - filters
Get
Nics Filter[]
- id str
- nics
Sequence[Get
Nics Nic] - Information about one or more NICs.
- request_
id str - filters
Sequence[Get
Nics Filter]
- id String
- nics List<Property Map>
- Information about one or more NICs.
- request
Id String - filters List<Property Map>
Supporting Types
GetNicsFilter
GetNicsNic
- Account
Id string - The account ID of the owner of the NIC.
- Description string
- The description of the NIC.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics List<GetNics Nic Link Nic> - Information about the NIC attachment.
- Link
Public List<GetIps Nics Nic Link Public Ip> - Information about the public IP association.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips List<GetNics Nic Private Ip> - The private IPs of the NIC.
- Security
Groups List<GetNics Nic Security Group> - One or more IDs of security groups for the NIC.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Subnet
Id string - The ID of the Subnet.
- Subregion
Name string - The Subregion in which the NIC is located.
- List<Get
Nics Nic Tag> - One or more tags associated with the NIC.
- Account
Id string - The account ID of the owner of the NIC.
- Description string
- The description of the NIC.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics []GetNics Nic Link Nic - Information about the NIC attachment.
- Link
Public []GetIps Nics Nic Link Public Ip - Information about the public IP association.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips []GetNics Nic Private Ip - The private IPs of the NIC.
- Security
Groups []GetNics Nic Security Group - One or more IDs of security groups for the NIC.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Subnet
Id string - The ID of the Subnet.
- Subregion
Name string - The Subregion in which the NIC is located.
- []Get
Nics Nic Tag - One or more tags associated with the NIC.
- account
Id String - The account ID of the owner of the NIC.
- description String
- The description of the NIC.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<GetNics Nic Link Nic> - Information about the NIC attachment.
- link
Public List<GetIps Nics Nic Link Public Ip> - Information about the public IP association.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<GetNics Nic Private Ip> - The private IPs of the NIC.
- security
Groups List<GetNics Nic Security Group> - One or more IDs of security groups for the NIC.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subnet
Id String - The ID of the Subnet.
- subregion
Name String - The Subregion in which the NIC is located.
- List<Get
Nics Nic Tag> - One or more tags associated with the NIC.
- account
Id string - The account ID of the owner of the NIC.
- description string
- The description of the NIC.
- is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics GetNics Nic Link Nic[] - Information about the NIC attachment.
- link
Public GetIps Nics Nic Link Public Ip[] - Information about the public IP association.
- mac
Address string - The Media Access Control (MAC) address of the NIC.
- net
Id string - The ID of the Net for the NIC.
- nic
Id string - The ID of the NIC.
- private
Dns stringName - The name of the private DNS.
- private
Ips GetNics Nic Private Ip[] - The private IPs of the NIC.
- security
Groups GetNics Nic Security Group[] - One or more IDs of security groups for the NIC.
- state string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subnet
Id string - The ID of the Subnet.
- subregion
Name string - The Subregion in which the NIC is located.
- Get
Nics Nic Tag[] - One or more tags associated with the NIC.
- account_
id str - The account ID of the owner of the NIC.
- description str
- The description of the NIC.
- is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_
nics Sequence[GetNics Nic Link Nic] - Information about the NIC attachment.
- link_
public_ Sequence[Getips Nics Nic Link Public Ip] - Information about the public IP association.
- mac_
address str - The Media Access Control (MAC) address of the NIC.
- net_
id str - The ID of the Net for the NIC.
- nic_
id str - The ID of the NIC.
- private_
dns_ strname - The name of the private DNS.
- private_
ips Sequence[GetNics Nic Private Ip] - The private IPs of the NIC.
- security_
groups Sequence[GetNics Nic Security Group] - One or more IDs of security groups for the NIC.
- state str
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subnet_
id str - The ID of the Subnet.
- subregion_
name str - The Subregion in which the NIC is located.
- Sequence[Get
Nics Nic Tag] - One or more tags associated with the NIC.
- account
Id String - The account ID of the owner of the NIC.
- description String
- The description of the NIC.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<Property Map> - Information about the NIC attachment.
- link
Public List<Property Map>Ips - Information about the public IP association.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<Property Map> - The private IPs of the NIC.
- security
Groups List<Property Map> - One or more IDs of security groups for the NIC.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subnet
Id String - The ID of the Subnet.
- subregion
Name String - The Subregion in which the NIC is located.
- List<Property Map>
- One or more tags associated with the NIC.
GetNicsNicLinkNic
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number double - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC to attach.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Vm
Account stringId - The account ID of the owner of the VM.
- Vm
Id string - The ID of the VM.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number float64 - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC to attach.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Vm
Account stringId - The account ID of the owner of the VM.
- Vm
Id string - The ID of the VM.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number Double - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - vm
Account StringId - The account ID of the owner of the VM.
- vm
Id String - The ID of the VM.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number number - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic stringId - The ID of the NIC to attach.
- state string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - vm
Account stringId - The account ID of the owner of the VM.
- vm
Id string - The ID of the VM.
- delete_
on_ boolvm_ deletion - If true, the NIC is deleted when the VM is terminated.
- device_
number float - The device index for the NIC attachment (between
1
and7
, both included). - link_
nic_ strid - The ID of the NIC to attach.
- state str
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - vm_
account_ strid - The account ID of the owner of the VM.
- vm_
id str - The ID of the VM.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number Number - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - vm
Account StringId - The account ID of the owner of the VM.
- vm
Id String - The ID of the VM.
GetNicsNicLinkPublicIp
- Link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP associated with the NIC.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Ip stringId - The allocation ID of the public IP.
- Link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP associated with the NIC.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Ip stringId - The allocation ID of the public IP.
- link
Public StringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP associated with the NIC.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Ip StringId - The allocation ID of the public IP.
- link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP associated with the NIC.
- public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Ip stringId - The allocation ID of the public IP.
- link_
public_ strip_ id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP associated with the NIC.
- public_
ip_ straccount_ id - The account ID of the owner of the public IP.
- public_
ip_ strid - The allocation ID of the public IP.
- link
Public StringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP associated with the NIC.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Ip StringId - The allocation ID of the public IP.
GetNicsNicPrivateIp
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public List<GetIps Nics Nic Private Ip Link Public Ip> - Information about the public IP association.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public []GetIps Nics Nic Private Ip Link Public Ip - Information about the public IP association.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<GetIps Nics Nic Private Ip Link Public Ip> - Information about the public IP association.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
- is
Primary boolean - If true, the IP is the primary private IP of the NIC.
- link
Public GetIps Nics Nic Private Ip Link Public Ip[] - Information about the public IP association.
- private
Dns stringName - The name of the private DNS.
- private
Ip string - The private IP of the NIC.
- is_
primary bool - If true, the IP is the primary private IP of the NIC.
- link_
public_ Sequence[Getips Nics Nic Private Ip Link Public Ip] - Information about the public IP association.
- private_
dns_ strname - The name of the private DNS.
- private_
ip str - The private IP of the NIC.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<Property Map>Ips - Information about the public IP association.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
GetNicsNicPrivateIpLinkPublicIp
- Link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP associated with the NIC.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Ip stringId - The allocation ID of the public IP.
- Link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP associated with the NIC.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Ip stringId - The allocation ID of the public IP.
- link
Public StringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP associated with the NIC.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Ip StringId - The allocation ID of the public IP.
- link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP associated with the NIC.
- public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Ip stringId - The allocation ID of the public IP.
- link_
public_ strip_ id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP associated with the NIC.
- public_
ip_ straccount_ id - The account ID of the owner of the public IP.
- public_
ip_ strid - The allocation ID of the public IP.
- link
Public StringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP associated with the NIC.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Ip StringId - The allocation ID of the public IP.
GetNicsNicSecurityGroup
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringId - The ID of the security group.
- security
Group stringName - The name of the security group.
- security_
group_ strid - The ID of the security group.
- security_
group_ strname - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
GetNicsNicTag
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.