outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getNets
Explore with Pulumi AI
Provides information about Nets.
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 nets01 = outscale.getNets({
filters: [
{
name: "net_ids",
values: [
"vpc-12345678",
"vpc-87654321",
],
},
{
name: "ip_ranges",
values: ["10.0.0.0/16"],
},
],
});
import pulumi
import pulumi_outscale as outscale
nets01 = outscale.get_nets(filters=[
{
"name": "net_ids",
"values": [
"vpc-12345678",
"vpc-87654321",
],
},
{
"name": "ip_ranges",
"values": ["10.0.0.0/16"],
},
])
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.GetNets(ctx, &outscale.GetNetsArgs{
Filters: []outscale.GetNetsFilter{
{
Name: "net_ids",
Values: []string{
"vpc-12345678",
"vpc-87654321",
},
},
{
Name: "ip_ranges",
Values: []string{
"10.0.0.0/16",
},
},
},
}, 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 nets01 = Outscale.GetNets.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetNetsFilterInputArgs
{
Name = "net_ids",
Values = new[]
{
"vpc-12345678",
"vpc-87654321",
},
},
new Outscale.Inputs.GetNetsFilterInputArgs
{
Name = "ip_ranges",
Values = new[]
{
"10.0.0.0/16",
},
},
},
});
});
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.GetNetsArgs;
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 nets01 = OutscaleFunctions.getNets(GetNetsArgs.builder()
.filters(
GetNetsFilterArgs.builder()
.name("net_ids")
.values(
"vpc-12345678",
"vpc-87654321")
.build(),
GetNetsFilterArgs.builder()
.name("ip_ranges")
.values("10.0.0.0/16")
.build())
.build());
}
}
variables:
nets01:
fn::invoke:
function: outscale:getNets
arguments:
filters:
- name: net_ids
values:
- vpc-12345678
- vpc-87654321
- name: ip_ranges
values:
- 10.0.0.0/16
Using getNets
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 getNets(args: GetNetsArgs, opts?: InvokeOptions): Promise<GetNetsResult>
function getNetsOutput(args: GetNetsOutputArgs, opts?: InvokeOptions): Output<GetNetsResult>
def get_nets(filters: Optional[Sequence[GetNetsFilter]] = None,
id: Optional[str] = None,
net_ids: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetNetsResult
def get_nets_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
net_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNetsResult]
func GetNets(ctx *Context, args *GetNetsArgs, opts ...InvokeOption) (*GetNetsResult, error)
func GetNetsOutput(ctx *Context, args *GetNetsOutputArgs, opts ...InvokeOption) GetNetsResultOutput
> Note: This function is named GetNets
in the Go SDK.
public static class GetNets
{
public static Task<GetNetsResult> InvokeAsync(GetNetsArgs args, InvokeOptions? opts = null)
public static Output<GetNetsResult> Invoke(GetNetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetNetsResult> getNets(GetNetsArgs args, InvokeOptions options)
public static Output<GetNetsResult> getNets(GetNetsArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getNets:getNets
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Nets 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
- Net
Ids List<string> - The ID of the Net.
- Filters
[]Get
Nets 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
- Net
Ids []string - The ID of the Net.
- filters
List<Get
Nets 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
- net
Ids List<String> - The ID of the Net.
- filters
Get
Nets 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
- net
Ids string[] - The ID of the Net.
- filters
Sequence[Get
Nets 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
- net_
ids Sequence[str] - The ID of the Net.
- 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
- net
Ids List<String> - The ID of the Net.
getNets Result
The following output properties are available:
- Id string
- Nets
List<Get
Nets Net> - Information about the described Nets.
- Request
Id string - Filters
List<Get
Nets Filter> - Net
Ids List<string> - The ID of the Net.
- Id string
- Nets
[]Get
Nets Net - Information about the described Nets.
- Request
Id string - Filters
[]Get
Nets Filter - Net
Ids []string - The ID of the Net.
- id String
- nets
List<Get
Nets Net> - Information about the described Nets.
- request
Id String - filters
List<Get
Nets Filter> - net
Ids List<String> - The ID of the Net.
- id string
- nets
Get
Nets Net[] - Information about the described Nets.
- request
Id string - filters
Get
Nets Filter[] - net
Ids string[] - The ID of the Net.
- id str
- nets
Sequence[Get
Nets Net] - Information about the described Nets.
- request_
id str - filters
Sequence[Get
Nets Filter] - net_
ids Sequence[str] - The ID of the Net.
- id String
- nets List<Property Map>
- Information about the described Nets.
- request
Id String - filters List<Property Map>
- net
Ids List<String> - The ID of the Net.
Supporting Types
GetNetsFilter
GetNetsNet
- Dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - Ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - Net
Id string - The ID of the Net.
- State string
- The state of the Net (
pending
|available
|deleting
). - List<Get
Nets Net Tag> - One or more tags associated with the Net.
- Tenancy string
- The VM tenancy in a Net.
- Dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - Ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - Net
Id string - The ID of the Net.
- State string
- The state of the Net (
pending
|available
|deleting
). - []Get
Nets Net Tag - One or more tags associated with the Net.
- Tenancy string
- The VM tenancy in a Net.
- dhcp
Options StringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - ip
Range String - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - net
Id String - The ID of the Net.
- state String
- The state of the Net (
pending
|available
|deleting
). - List<Get
Nets Net Tag> - One or more tags associated with the Net.
- tenancy String
- The VM tenancy in a Net.
- dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - net
Id string - The ID of the Net.
- state string
- The state of the Net (
pending
|available
|deleting
). - Get
Nets Net Tag[] - One or more tags associated with the Net.
- tenancy string
- The VM tenancy in a Net.
- dhcp_
options_ strset_ id - The ID of the DHCP options set (or
default
if you want to associate the default one). - ip_
range str - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - net_
id str - The ID of the Net.
- state str
- The state of the Net (
pending
|available
|deleting
). - Sequence[Get
Nets Net Tag] - One or more tags associated with the Net.
- tenancy str
- The VM tenancy in a Net.
- dhcp
Options StringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - ip
Range String - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - net
Id String - The ID of the Net.
- state String
- The state of the Net (
pending
|available
|deleting
). - List<Property Map>
- One or more tags associated with the Net.
- tenancy String
- The VM tenancy in a Net.
GetNetsNetTag
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.