1. Packages
  2. Outscale Provider
  3. API Docs
  4. getNetPeerings
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getNetPeerings

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    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<GetNetPeeringsFilter>
    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 []GetNetPeeringsFilter
    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<GetNetPeeringsFilter>
    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 GetNetPeeringsFilter[]
    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[GetNetPeeringsFilter]
    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
    NetPeerings List<GetNetPeeringsNetPeering>
    Information about one or more Net peerings.
    RequestId string
    Filters List<GetNetPeeringsFilter>
    Id string
    NetPeerings []GetNetPeeringsNetPeering
    Information about one or more Net peerings.
    RequestId string
    Filters []GetNetPeeringsFilter
    id String
    netPeerings List<GetNetPeeringsNetPeering>
    Information about one or more Net peerings.
    requestId String
    filters List<GetNetPeeringsFilter>
    id string
    netPeerings GetNetPeeringsNetPeering[]
    Information about one or more Net peerings.
    requestId string
    filters GetNetPeeringsFilter[]
    id String
    netPeerings List<Property Map>
    Information about one or more Net peerings.
    requestId String
    filters List<Property Map>

    Supporting Types

    GetNetPeeringsFilter

    Name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    Values List<string>
    Name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    Values []string
    name String
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    values List<String>
    name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    values string[]
    name str
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    values Sequence[str]
    name String
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    values List<String>

    GetNetPeeringsNetPeering

    AccepterNets List<GetNetPeeringsNetPeeringAccepterNet>
    Information about the accepter Net.
    NetPeeringId string
    The ID of the Net peering.
    SourceNets List<GetNetPeeringsNetPeeringSourceNet>
    Information about the source Net.
    States List<GetNetPeeringsNetPeeringState>
    Information about the state of the Net peering.
    Tags List<GetNetPeeringsNetPeeringTag>
    One or more tags associated with the Net peering.
    AccepterNets []GetNetPeeringsNetPeeringAccepterNet
    Information about the accepter Net.
    NetPeeringId string
    The ID of the Net peering.
    SourceNets []GetNetPeeringsNetPeeringSourceNet
    Information about the source Net.
    States []GetNetPeeringsNetPeeringState
    Information about the state of the Net peering.
    Tags []GetNetPeeringsNetPeeringTag
    One or more tags associated with the Net peering.
    accepterNets List<GetNetPeeringsNetPeeringAccepterNet>
    Information about the accepter Net.
    netPeeringId String
    The ID of the Net peering.
    sourceNets List<GetNetPeeringsNetPeeringSourceNet>
    Information about the source Net.
    states List<GetNetPeeringsNetPeeringState>
    Information about the state of the Net peering.
    tags List<GetNetPeeringsNetPeeringTag>
    One or more tags associated with the Net peering.
    accepterNets GetNetPeeringsNetPeeringAccepterNet[]
    Information about the accepter Net.
    netPeeringId string
    The ID of the Net peering.
    sourceNets GetNetPeeringsNetPeeringSourceNet[]
    Information about the source Net.
    states GetNetPeeringsNetPeeringState[]
    Information about the state of the Net peering.
    tags GetNetPeeringsNetPeeringTag[]
    One or more tags associated with the Net peering.
    accepter_nets Sequence[GetNetPeeringsNetPeeringAccepterNet]
    Information about the accepter Net.
    net_peering_id str
    The ID of the Net peering.
    source_nets Sequence[GetNetPeeringsNetPeeringSourceNet]
    Information about the source Net.
    states Sequence[GetNetPeeringsNetPeeringState]
    Information about the state of the Net peering.
    tags Sequence[GetNetPeeringsNetPeeringTag]
    One or more tags associated with the Net peering.
    accepterNets List<Property Map>
    Information about the accepter Net.
    netPeeringId String
    The ID of the Net peering.
    sourceNets List<Property Map>
    Information about the source Net.
    states List<Property Map>
    Information about the state of the Net peering.
    tags List<Property Map>
    One or more tags associated with the Net peering.

    GetNetPeeringsNetPeeringAccepterNet

    AccountId string
    The account ID of the owner of the source Net.
    IpRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    NetId string
    The ID of the source Net.
    AccountId string
    The account ID of the owner of the source Net.
    IpRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    NetId string
    The ID of the source Net.
    accountId String
    The account ID of the owner of the source Net.
    ipRange String
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId String
    The ID of the source Net.
    accountId string
    The account ID of the owner of the source Net.
    ipRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId string
    The ID of the source Net.
    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.
    accountId String
    The account ID of the owner of the source Net.
    ipRange String
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId String
    The ID of the source Net.

    GetNetPeeringsNetPeeringSourceNet

    AccountId string
    The account ID of the owner of the source Net.
    IpRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    NetId string
    The ID of the source Net.
    AccountId string
    The account ID of the owner of the source Net.
    IpRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    NetId string
    The ID of the source Net.
    accountId String
    The account ID of the owner of the source Net.
    ipRange String
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId String
    The ID of the source Net.
    accountId string
    The account ID of the owner of the source Net.
    ipRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId string
    The ID of the source Net.
    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.
    accountId String
    The account ID of the owner of the source Net.
    ipRange String
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId String
    The ID of the source Net.

    GetNetPeeringsNetPeeringState

    Message string
    Additional information about the state of the Net peering.
    Name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    Message string
    Additional information about the state of the Net peering.
    Name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    message String
    Additional information about the state of the Net peering.
    name String
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    message string
    Additional information about the state of the Net peering.
    name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    message str
    Additional information about the state of the Net peering.
    name str
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    message String
    Additional information about the state of the Net peering.
    name String
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).

    GetNetPeeringsNetPeeringTag

    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.
    key string
    The key of the tag, with a minimum of 1 character.
    value string
    The value of the tag, between 0 and 255 characters.
    key str
    The key of the tag, with a minimum of 1 character.
    value str
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale