outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getNetPeerings
Explore with Pulumi AI
Provides information about Net peerings.
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 netPeerings01 = outscale.getNetPeerings({
filters: [
{
name: "source_net_net_ids",
values: ["vpc-12345678"],
},
{
name: "state_names",
values: [
"active",
"pending-acceptance",
],
},
],
});
import pulumi
import pulumi_outscale as outscale
net_peerings01 = outscale.get_net_peerings(filters=[
{
"name": "source_net_net_ids",
"values": ["vpc-12345678"],
},
{
"name": "state_names",
"values": [
"active",
"pending-acceptance",
],
},
])
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.GetNetPeerings(ctx, &outscale.GetNetPeeringsArgs{
Filters: []outscale.GetNetPeeringsFilter{
{
Name: "source_net_net_ids",
Values: []string{
"vpc-12345678",
},
},
{
Name: "state_names",
Values: []string{
"active",
"pending-acceptance",
},
},
},
}, 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 netPeerings01 = Outscale.GetNetPeerings.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetNetPeeringsFilterInputArgs
{
Name = "source_net_net_ids",
Values = new[]
{
"vpc-12345678",
},
},
new Outscale.Inputs.GetNetPeeringsFilterInputArgs
{
Name = "state_names",
Values = new[]
{
"active",
"pending-acceptance",
},
},
},
});
});
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.GetNetPeeringsArgs;
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 netPeerings01 = OutscaleFunctions.getNetPeerings(GetNetPeeringsArgs.builder()
.filters(
GetNetPeeringsFilterArgs.builder()
.name("source_net_net_ids")
.values("vpc-12345678")
.build(),
GetNetPeeringsFilterArgs.builder()
.name("state_names")
.values(
"active",
"pending-acceptance")
.build())
.build());
}
}
variables:
netPeerings01:
fn::invoke:
function: outscale:getNetPeerings
arguments:
filters:
- name: source_net_net_ids
values:
- vpc-12345678
- name: state_names
values:
- active
- pending-acceptance
Using getNetPeerings
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 getNetPeerings(args: GetNetPeeringsArgs, opts?: InvokeOptions): Promise<GetNetPeeringsResult>
function getNetPeeringsOutput(args: GetNetPeeringsOutputArgs, opts?: InvokeOptions): Output<GetNetPeeringsResult>
def get_net_peerings(filters: Optional[Sequence[GetNetPeeringsFilter]] = None,
id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetNetPeeringsResult
def get_net_peerings_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetPeeringsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNetPeeringsResult]
func GetNetPeerings(ctx *Context, args *GetNetPeeringsArgs, opts ...InvokeOption) (*GetNetPeeringsResult, error)
func GetNetPeeringsOutput(ctx *Context, args *GetNetPeeringsOutputArgs, opts ...InvokeOption) GetNetPeeringsResultOutput
> Note: This function is named GetNetPeerings
in the Go SDK.
public static class GetNetPeerings
{
public static Task<GetNetPeeringsResult> InvokeAsync(GetNetPeeringsArgs args, InvokeOptions? opts = null)
public static Output<GetNetPeeringsResult> Invoke(GetNetPeeringsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetNetPeeringsResult> getNetPeerings(GetNetPeeringsArgs args, InvokeOptions options)
public static Output<GetNetPeeringsResult> getNetPeerings(GetNetPeeringsArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getNetPeerings:getNetPeerings
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Net Peerings 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
Net Peerings 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
Net Peerings 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
Net Peerings 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
Net Peerings 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
getNetPeerings Result
The following output properties are available:
- Id string
- Net
Peerings List<GetNet Peerings Net Peering> - Information about one or more Net peerings.
- Request
Id string - Filters
List<Get
Net Peerings Filter>
- Id string
- Net
Peerings []GetNet Peerings Net Peering - Information about one or more Net peerings.
- Request
Id string - Filters
[]Get
Net Peerings Filter
- id String
- net
Peerings List<GetNet Peerings Net Peering> - Information about one or more Net peerings.
- request
Id String - filters
List<Get
Net Peerings Filter>
- id string
- net
Peerings GetNet Peerings Net Peering[] - Information about one or more Net peerings.
- request
Id string - filters
Get
Net Peerings Filter[]
- id str
- net_
peerings Sequence[GetNet Peerings Net Peering] - Information about one or more Net peerings.
- request_
id str - filters
Sequence[Get
Net Peerings Filter]
- id String
- net
Peerings List<Property Map> - Information about one or more Net peerings.
- request
Id String - filters List<Property Map>
Supporting Types
GetNetPeeringsFilter
GetNetPeeringsNetPeering
- Accepter
Nets List<GetNet Peerings Net Peering Accepter Net> - Information about the accepter Net.
- Net
Peering stringId - The ID of the Net peering.
- Source
Nets List<GetNet Peerings Net Peering Source Net> - Information about the source Net.
- States
List<Get
Net Peerings Net Peering State> - Information about the state of the Net peering.
- List<Get
Net Peerings Net Peering Tag> - One or more tags associated with the Net peering.
- Accepter
Nets []GetNet Peerings Net Peering Accepter Net - Information about the accepter Net.
- Net
Peering stringId - The ID of the Net peering.
- Source
Nets []GetNet Peerings Net Peering Source Net - Information about the source Net.
- States
[]Get
Net Peerings Net Peering State - Information about the state of the Net peering.
- []Get
Net Peerings Net Peering Tag - One or more tags associated with the Net peering.
- accepter
Nets List<GetNet Peerings Net Peering Accepter Net> - Information about the accepter Net.
- net
Peering StringId - The ID of the Net peering.
- source
Nets List<GetNet Peerings Net Peering Source Net> - Information about the source Net.
- states
List<Get
Net Peerings Net Peering State> - Information about the state of the Net peering.
- List<Get
Net Peerings Net Peering Tag> - One or more tags associated with the Net peering.
- accepter
Nets GetNet Peerings Net Peering Accepter Net[] - Information about the accepter Net.
- net
Peering stringId - The ID of the Net peering.
- source
Nets GetNet Peerings Net Peering Source Net[] - Information about the source Net.
- states
Get
Net Peerings Net Peering State[] - Information about the state of the Net peering.
- Get
Net Peerings Net Peering Tag[] - One or more tags associated with the Net peering.
- accepter_
nets Sequence[GetNet Peerings Net Peering Accepter Net] - Information about the accepter Net.
- net_
peering_ strid - The ID of the Net peering.
- source_
nets Sequence[GetNet Peerings Net Peering Source Net] - Information about the source Net.
- states
Sequence[Get
Net Peerings Net Peering State] - Information about the state of the Net peering.
- Sequence[Get
Net Peerings Net Peering Tag] - One or more tags associated with the Net peering.
- accepter
Nets List<Property Map> - Information about the accepter Net.
- net
Peering StringId - The ID of the Net peering.
- source
Nets List<Property Map> - Information about the source Net.
- states List<Property Map>
- Information about the state of the Net peering.
- List<Property Map>
- One or more tags associated with the Net peering.
GetNetPeeringsNetPeeringAccepterNet
- account_
id str - The account ID of the owner of the source Net.
- ip_
range str - The IP range for the source Net, in CIDR notation (for example,
10.0.0.0/16
). - net_
id str - The ID of the source Net.
GetNetPeeringsNetPeeringSourceNet
- account_
id str - The account ID of the owner of the source Net.
- ip_
range str - The IP range for the source Net, in CIDR notation (for example,
10.0.0.0/16
). - net_
id str - The ID of the source Net.
GetNetPeeringsNetPeeringState
GetNetPeeringsNetPeeringTag
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.