outscale.NicLink
Explore with Pulumi AI
Manages a NIC link.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resources
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const net01 = new outscale.Net("net01", {ipRange: "10.0.0.0/16"});
const subnet01 = new outscale.Subnet("subnet01", {
subregionName: `${_var.region}a`,
ipRange: "10.0.0.0/16",
netId: net01.netId,
});
const vm01 = new outscale.Vm("vm01", {
imageId: _var.image_id,
vmType: _var.vm_type,
keypairName: _var.keypair_name,
subnetId: subnet01.subnetId,
});
const nic01 = new outscale.Nic("nic01", {subnetId: subnet01.subnetId});
import pulumi
import pulumi_outscale as outscale
net01 = outscale.Net("net01", ip_range="10.0.0.0/16")
subnet01 = outscale.Subnet("subnet01",
subregion_name=f"{var['region']}a",
ip_range="10.0.0.0/16",
net_id=net01.net_id)
vm01 = outscale.Vm("vm01",
image_id=var["image_id"],
vm_type=var["vm_type"],
keypair_name=var["keypair_name"],
subnet_id=subnet01.subnet_id)
nic01 = outscale.Nic("nic01", subnet_id=subnet01.subnet_id)
package main
import (
"fmt"
"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 {
net01, err := outscale.NewNet(ctx, "net01", &outscale.NetArgs{
IpRange: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
subnet01, err := outscale.NewSubnet(ctx, "subnet01", &outscale.SubnetArgs{
SubregionName: pulumi.Sprintf("%va", _var.Region),
IpRange: pulumi.String("10.0.0.0/16"),
NetId: net01.NetId,
})
if err != nil {
return err
}
_, err = outscale.NewVm(ctx, "vm01", &outscale.VmArgs{
ImageId: pulumi.Any(_var.Image_id),
VmType: pulumi.Any(_var.Vm_type),
KeypairName: pulumi.Any(_var.Keypair_name),
SubnetId: subnet01.SubnetId,
})
if err != nil {
return err
}
_, err = outscale.NewNic(ctx, "nic01", &outscale.NicArgs{
SubnetId: subnet01.SubnetId,
})
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 net01 = new Outscale.Net("net01", new()
{
IpRange = "10.0.0.0/16",
});
var subnet01 = new Outscale.Subnet("subnet01", new()
{
SubregionName = $"{@var.Region}a",
IpRange = "10.0.0.0/16",
NetId = net01.NetId,
});
var vm01 = new Outscale.Vm("vm01", new()
{
ImageId = @var.Image_id,
VmType = @var.Vm_type,
KeypairName = @var.Keypair_name,
SubnetId = subnet01.SubnetId,
});
var nic01 = new Outscale.Nic("nic01", new()
{
SubnetId = subnet01.SubnetId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Net;
import com.pulumi.outscale.NetArgs;
import com.pulumi.outscale.Subnet;
import com.pulumi.outscale.SubnetArgs;
import com.pulumi.outscale.Vm;
import com.pulumi.outscale.VmArgs;
import com.pulumi.outscale.Nic;
import com.pulumi.outscale.NicArgs;
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 net01 = new Net("net01", NetArgs.builder()
.ipRange("10.0.0.0/16")
.build());
var subnet01 = new Subnet("subnet01", SubnetArgs.builder()
.subregionName(String.format("%sa", var_.region()))
.ipRange("10.0.0.0/16")
.netId(net01.netId())
.build());
var vm01 = new Vm("vm01", VmArgs.builder()
.imageId(var_.image_id())
.vmType(var_.vm_type())
.keypairName(var_.keypair_name())
.subnetId(subnet01.subnetId())
.build());
var nic01 = new Nic("nic01", NicArgs.builder()
.subnetId(subnet01.subnetId())
.build());
}
}
resources:
net01:
type: outscale:Net
properties:
ipRange: 10.0.0.0/16
subnet01:
type: outscale:Subnet
properties:
subregionName: ${var.region}a
ipRange: 10.0.0.0/16
netId: ${net01.netId}
vm01:
type: outscale:Vm
properties:
imageId: ${var.image_id}
vmType: ${var.vm_type}
keypairName: ${var.keypair_name}
subnetId: ${subnet01.subnetId}
nic01:
type: outscale:Nic
properties:
subnetId: ${subnet01.subnetId}
Link a NIC to a VM
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const nicLink01 = new outscale.NicLink("nicLink01", {
deviceNumber: 1,
vmId: outscale_vm.vm01.vm_id,
nicId: outscale_nic.nic01.nic_id,
});
import pulumi
import pulumi_outscale as outscale
nic_link01 = outscale.NicLink("nicLink01",
device_number=1,
vm_id=outscale_vm["vm01"]["vm_id"],
nic_id=outscale_nic["nic01"]["nic_id"])
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.NewNicLink(ctx, "nicLink01", &outscale.NicLinkArgs{
DeviceNumber: pulumi.Float64(1),
VmId: pulumi.Any(outscale_vm.Vm01.Vm_id),
NicId: pulumi.Any(outscale_nic.Nic01.Nic_id),
})
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 nicLink01 = new Outscale.NicLink("nicLink01", new()
{
DeviceNumber = 1,
VmId = outscale_vm.Vm01.Vm_id,
NicId = outscale_nic.Nic01.Nic_id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.NicLink;
import com.pulumi.outscale.NicLinkArgs;
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 nicLink01 = new NicLink("nicLink01", NicLinkArgs.builder()
.deviceNumber("1")
.vmId(outscale_vm.vm01().vm_id())
.nicId(outscale_nic.nic01().nic_id())
.build());
}
}
resources:
nicLink01:
type: outscale:NicLink
properties:
deviceNumber: '1'
vmId: ${outscale_vm.vm01.vm_id}
nicId: ${outscale_nic.nic01.nic_id}
Create NicLink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NicLink(name: string, args: NicLinkArgs, opts?: CustomResourceOptions);
@overload
def NicLink(resource_name: str,
args: NicLinkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NicLink(resource_name: str,
opts: Optional[ResourceOptions] = None,
device_number: Optional[float] = None,
nic_id: Optional[str] = None,
vm_id: Optional[str] = None,
nic_link_id: Optional[str] = None)
func NewNicLink(ctx *Context, name string, args NicLinkArgs, opts ...ResourceOption) (*NicLink, error)
public NicLink(string name, NicLinkArgs args, CustomResourceOptions? opts = null)
public NicLink(String name, NicLinkArgs args)
public NicLink(String name, NicLinkArgs args, CustomResourceOptions options)
type: outscale:NicLink
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 NicLinkArgs
- 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 NicLinkArgs
- 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 NicLinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NicLinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NicLinkArgs
- 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 nicLinkResource = new Outscale.NicLink("nicLinkResource", new()
{
DeviceNumber = 0,
NicId = "string",
VmId = "string",
NicLinkId = "string",
});
example, err := outscale.NewNicLink(ctx, "nicLinkResource", &outscale.NicLinkArgs{
DeviceNumber: pulumi.Float64(0),
NicId: pulumi.String("string"),
VmId: pulumi.String("string"),
NicLinkId: pulumi.String("string"),
})
var nicLinkResource = new NicLink("nicLinkResource", NicLinkArgs.builder()
.deviceNumber(0)
.nicId("string")
.vmId("string")
.nicLinkId("string")
.build());
nic_link_resource = outscale.NicLink("nicLinkResource",
device_number=0,
nic_id="string",
vm_id="string",
nic_link_id="string")
const nicLinkResource = new outscale.NicLink("nicLinkResource", {
deviceNumber: 0,
nicId: "string",
vmId: "string",
nicLinkId: "string",
});
type: outscale:NicLink
properties:
deviceNumber: 0
nicId: string
nicLinkId: string
vmId: string
NicLink 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 NicLink resource accepts the following input properties:
- Device
Number double - The index of the VM device for the NIC attachment (between
1
and7
, both included). - Nic
Id string - The ID of the NIC you want to attach.
- Vm
Id string - The ID of the VM to which you want to attach the NIC.
- Nic
Link stringId
- Device
Number float64 - The index of the VM device for the NIC attachment (between
1
and7
, both included). - Nic
Id string - The ID of the NIC you want to attach.
- Vm
Id string - The ID of the VM to which you want to attach the NIC.
- Nic
Link stringId
- device
Number Double - The index of the VM device for the NIC attachment (between
1
and7
, both included). - nic
Id String - The ID of the NIC you want to attach.
- vm
Id String - The ID of the VM to which you want to attach the NIC.
- nic
Link StringId
- device
Number number - The index of the VM device for the NIC attachment (between
1
and7
, both included). - nic
Id string - The ID of the NIC you want to attach.
- vm
Id string - The ID of the VM to which you want to attach the NIC.
- nic
Link stringId
- device_
number float - The index of the VM device for the NIC attachment (between
1
and7
, both included). - nic_
id str - The ID of the NIC you want to attach.
- vm_
id str - The ID of the VM to which you want to attach the NIC.
- nic_
link_ strid
- device
Number Number - The index of the VM device for the NIC attachment (between
1
and7
, both included). - nic
Id String - The ID of the NIC you want to attach.
- vm
Id String - The ID of the VM to which you want to attach the NIC.
- nic
Link StringId
Outputs
All input properties are implicitly available as output properties. Additionally, the NicLink resource produces the following output properties:
- Delete
On boolVm Deletion - Id string
- The provider-assigned unique ID for this managed resource.
- Link
Nic stringId - The ID of the NIC attachment.
- Request
Id string - State string
- Vm
Account stringId
- Delete
On boolVm Deletion - Id string
- The provider-assigned unique ID for this managed resource.
- Link
Nic stringId - The ID of the NIC attachment.
- Request
Id string - State string
- Vm
Account stringId
- delete
On BooleanVm Deletion - id String
- The provider-assigned unique ID for this managed resource.
- link
Nic StringId - The ID of the NIC attachment.
- request
Id String - state String
- vm
Account StringId
- delete
On booleanVm Deletion - id string
- The provider-assigned unique ID for this managed resource.
- link
Nic stringId - The ID of the NIC attachment.
- request
Id string - state string
- vm
Account stringId
- delete_
on_ boolvm_ deletion - id str
- The provider-assigned unique ID for this managed resource.
- link_
nic_ strid - The ID of the NIC attachment.
- request_
id str - state str
- vm_
account_ strid
- delete
On BooleanVm Deletion - id String
- The provider-assigned unique ID for this managed resource.
- link
Nic StringId - The ID of the NIC attachment.
- request
Id String - state String
- vm
Account StringId
Look up Existing NicLink Resource
Get an existing NicLink 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?: NicLinkState, opts?: CustomResourceOptions): NicLink
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
delete_on_vm_deletion: Optional[bool] = None,
device_number: Optional[float] = None,
link_nic_id: Optional[str] = None,
nic_id: Optional[str] = None,
nic_link_id: Optional[str] = None,
request_id: Optional[str] = None,
state: Optional[str] = None,
vm_account_id: Optional[str] = None,
vm_id: Optional[str] = None) -> NicLink
func GetNicLink(ctx *Context, name string, id IDInput, state *NicLinkState, opts ...ResourceOption) (*NicLink, error)
public static NicLink Get(string name, Input<string> id, NicLinkState? state, CustomResourceOptions? opts = null)
public static NicLink get(String name, Output<String> id, NicLinkState state, CustomResourceOptions options)
resources: _: type: outscale:NicLink 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.
- Delete
On boolVm Deletion - Device
Number double - The index of the VM device for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC attachment.
- Nic
Id string - The ID of the NIC you want to attach.
- Nic
Link stringId - Request
Id string - State string
- Vm
Account stringId - Vm
Id string - The ID of the VM to which you want to attach the NIC.
- Delete
On boolVm Deletion - Device
Number float64 - The index of the VM device for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC attachment.
- Nic
Id string - The ID of the NIC you want to attach.
- Nic
Link stringId - Request
Id string - State string
- Vm
Account stringId - Vm
Id string - The ID of the VM to which you want to attach the NIC.
- delete
On BooleanVm Deletion - device
Number Double - The index of the VM device for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC attachment.
- nic
Id String - The ID of the NIC you want to attach.
- nic
Link StringId - request
Id String - state String
- vm
Account StringId - vm
Id String - The ID of the VM to which you want to attach the NIC.
- delete
On booleanVm Deletion - device
Number number - The index of the VM device for the NIC attachment (between
1
and7
, both included). - link
Nic stringId - The ID of the NIC attachment.
- nic
Id string - The ID of the NIC you want to attach.
- nic
Link stringId - request
Id string - state string
- vm
Account stringId - vm
Id string - The ID of the VM to which you want to attach the NIC.
- delete_
on_ boolvm_ deletion - device_
number float - The index of the VM device for the NIC attachment (between
1
and7
, both included). - link_
nic_ strid - The ID of the NIC attachment.
- nic_
id str - The ID of the NIC you want to attach.
- nic_
link_ strid - request_
id str - state str
- vm_
account_ strid - vm_
id str - The ID of the VM to which you want to attach the NIC.
- delete
On BooleanVm Deletion - device
Number Number - The index of the VM device for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC attachment.
- nic
Id String - The ID of the NIC you want to attach.
- nic
Link StringId - request
Id String - state String
- vm
Account StringId - vm
Id String - The ID of the VM to which you want to attach the NIC.
Import
A NIC link can be imported using the NIC ID. For example:
console
$ pulumi import outscale:index/nicLink:NicLink ImportedNicLink eni-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.