Scaleway v1.27.0 published on Monday, Apr 21, 2025 by pulumiverse
scaleway.network.getPrivateNetwork
Explore with Pulumi AI
Gets information about a Private Network.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
// Get info by name
const myName = scaleway.network.getPrivateNetwork({
    name: "foobar",
});
// Get info by name and VPC ID
const myNameAndVpcId = scaleway.network.getPrivateNetwork({
    name: "foobar",
    vpcId: "11111111-1111-1111-1111-111111111111",
});
// Get info by IP ID
const myId = scaleway.network.getPrivateNetwork({
    privateNetworkId: "11111111-1111-1111-1111-111111111111",
});
import pulumi
import pulumi_scaleway as scaleway
# Get info by name
my_name = scaleway.network.get_private_network(name="foobar")
# Get info by name and VPC ID
my_name_and_vpc_id = scaleway.network.get_private_network(name="foobar",
    vpc_id="11111111-1111-1111-1111-111111111111")
# Get info by IP ID
my_id = scaleway.network.get_private_network(private_network_id="11111111-1111-1111-1111-111111111111")
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/network"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// Get info by name
		_, err := network.LookupPrivateNetwork(ctx, &network.LookupPrivateNetworkArgs{
			Name: pulumi.StringRef("foobar"),
		}, nil)
		if err != nil {
			return err
		}
		// Get info by name and VPC ID
		_, err = network.LookupPrivateNetwork(ctx, &network.LookupPrivateNetworkArgs{
			Name:  pulumi.StringRef("foobar"),
			VpcId: pulumi.StringRef("11111111-1111-1111-1111-111111111111"),
		}, nil)
		if err != nil {
			return err
		}
		// Get info by IP ID
		_, err = network.LookupPrivateNetwork(ctx, &network.LookupPrivateNetworkArgs{
			PrivateNetworkId: pulumi.StringRef("11111111-1111-1111-1111-111111111111"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumi.Scaleway;
return await Deployment.RunAsync(() => 
{
    // Get info by name
    var myName = Scaleway.Network.GetPrivateNetwork.Invoke(new()
    {
        Name = "foobar",
    });
    // Get info by name and VPC ID
    var myNameAndVpcId = Scaleway.Network.GetPrivateNetwork.Invoke(new()
    {
        Name = "foobar",
        VpcId = "11111111-1111-1111-1111-111111111111",
    });
    // Get info by IP ID
    var myId = Scaleway.Network.GetPrivateNetwork.Invoke(new()
    {
        PrivateNetworkId = "11111111-1111-1111-1111-111111111111",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.network.NetworkFunctions;
import com.pulumi.scaleway.network.inputs.GetPrivateNetworkArgs;
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) {
        // Get info by name
        final var myName = NetworkFunctions.getPrivateNetwork(GetPrivateNetworkArgs.builder()
            .name("foobar")
            .build());
        // Get info by name and VPC ID
        final var myNameAndVpcId = NetworkFunctions.getPrivateNetwork(GetPrivateNetworkArgs.builder()
            .name("foobar")
            .vpcId("11111111-1111-1111-1111-111111111111")
            .build());
        // Get info by IP ID
        final var myId = NetworkFunctions.getPrivateNetwork(GetPrivateNetworkArgs.builder()
            .privateNetworkId("11111111-1111-1111-1111-111111111111")
            .build());
    }
}
variables:
  # Get info by name
  myName:
    fn::invoke:
      function: scaleway:network:getPrivateNetwork
      arguments:
        name: foobar
  # Get info by name and VPC ID
  myNameAndVpcId:
    fn::invoke:
      function: scaleway:network:getPrivateNetwork
      arguments:
        name: foobar
        vpcId: 11111111-1111-1111-1111-111111111111
  # Get info by IP ID
  myId:
    fn::invoke:
      function: scaleway:network:getPrivateNetwork
      arguments:
        privateNetworkId: 11111111-1111-1111-1111-111111111111
Using getPrivateNetwork
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 getPrivateNetwork(args: GetPrivateNetworkArgs, opts?: InvokeOptions): Promise<GetPrivateNetworkResult>
function getPrivateNetworkOutput(args: GetPrivateNetworkOutputArgs, opts?: InvokeOptions): Output<GetPrivateNetworkResult>def get_private_network(name: Optional[str] = None,
                        private_network_id: Optional[str] = None,
                        project_id: Optional[str] = None,
                        region: Optional[str] = None,
                        vpc_id: Optional[str] = None,
                        opts: Optional[InvokeOptions] = None) -> GetPrivateNetworkResult
def get_private_network_output(name: Optional[pulumi.Input[str]] = None,
                        private_network_id: Optional[pulumi.Input[str]] = None,
                        project_id: Optional[pulumi.Input[str]] = None,
                        region: Optional[pulumi.Input[str]] = None,
                        vpc_id: Optional[pulumi.Input[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetPrivateNetworkResult]func LookupPrivateNetwork(ctx *Context, args *LookupPrivateNetworkArgs, opts ...InvokeOption) (*LookupPrivateNetworkResult, error)
func LookupPrivateNetworkOutput(ctx *Context, args *LookupPrivateNetworkOutputArgs, opts ...InvokeOption) LookupPrivateNetworkResultOutput> Note: This function is named LookupPrivateNetwork in the Go SDK.
public static class GetPrivateNetwork 
{
    public static Task<GetPrivateNetworkResult> InvokeAsync(GetPrivateNetworkArgs args, InvokeOptions? opts = null)
    public static Output<GetPrivateNetworkResult> Invoke(GetPrivateNetworkInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPrivateNetworkResult> getPrivateNetwork(GetPrivateNetworkArgs args, InvokeOptions options)
public static Output<GetPrivateNetworkResult> getPrivateNetwork(GetPrivateNetworkArgs args, InvokeOptions options)
fn::invoke:
  function: scaleway:network/getPrivateNetwork:getPrivateNetwork
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Name string
 - Name of the Private Network. Cannot be used with 
private_network_id. - Private
Network stringId  - ID of the Private Network. Cannot be used with 
nameorvpc_id. - Project
Id string - The ID of the Project the Private Network is associated with.
 - Region string
 - Vpc
Id string - ID of the VPC the Private Network is in. Cannot be used with 
private_network_id. 
- Name string
 - Name of the Private Network. Cannot be used with 
private_network_id. - Private
Network stringId  - ID of the Private Network. Cannot be used with 
nameorvpc_id. - Project
Id string - The ID of the Project the Private Network is associated with.
 - Region string
 - Vpc
Id string - ID of the VPC the Private Network is in. Cannot be used with 
private_network_id. 
- name String
 - Name of the Private Network. Cannot be used with 
private_network_id. - private
Network StringId  - ID of the Private Network. Cannot be used with 
nameorvpc_id. - project
Id String - The ID of the Project the Private Network is associated with.
 - region String
 - vpc
Id String - ID of the VPC the Private Network is in. Cannot be used with 
private_network_id. 
- name string
 - Name of the Private Network. Cannot be used with 
private_network_id. - private
Network stringId  - ID of the Private Network. Cannot be used with 
nameorvpc_id. - project
Id string - The ID of the Project the Private Network is associated with.
 - region string
 - vpc
Id string - ID of the VPC the Private Network is in. Cannot be used with 
private_network_id. 
- name str
 - Name of the Private Network. Cannot be used with 
private_network_id. - private_
network_ strid  - ID of the Private Network. Cannot be used with 
nameorvpc_id. - project_
id str - The ID of the Project the Private Network is associated with.
 - region str
 - vpc_
id str - ID of the VPC the Private Network is in. Cannot be used with 
private_network_id. 
- name String
 - Name of the Private Network. Cannot be used with 
private_network_id. - private
Network StringId  - ID of the Private Network. Cannot be used with 
nameorvpc_id. - project
Id String - The ID of the Project the Private Network is associated with.
 - region String
 - vpc
Id String - ID of the VPC the Private Network is in. Cannot be used with 
private_network_id. 
getPrivateNetwork Result
The following output properties are available:
- Created
At string - Id string
 - The provider-assigned unique ID for this managed resource.
 - Ipv4Subnets
List<Pulumiverse.
Scaleway. Network. Outputs. Get Private Network Ipv4Subnet>  - The IPv4 subnet associated with the Private Network.
 - Ipv6Subnets
List<Pulumiverse.
Scaleway. Network. Outputs. Get Private Network Ipv6Subnet>  - The IPv6 subnets associated with the Private Network.
 - Is
Regional bool - Organization
Id string - List<string>
 - Updated
At string - Zone string
 - Name string
 - Private
Network stringId  - Project
Id string - Region string
 - Vpc
Id string 
- Created
At string - Id string
 - The provider-assigned unique ID for this managed resource.
 - Ipv4Subnets
[]Get
Private Network Ipv4Subnet  - The IPv4 subnet associated with the Private Network.
 - Ipv6Subnets
[]Get
Private Network Ipv6Subnet  - The IPv6 subnets associated with the Private Network.
 - Is
Regional bool - Organization
Id string - []string
 - Updated
At string - Zone string
 - Name string
 - Private
Network stringId  - Project
Id string - Region string
 - Vpc
Id string 
- created
At String - id String
 - The provider-assigned unique ID for this managed resource.
 - ipv4Subnets
List<Get
Private Network Ipv4Subnet>  - The IPv4 subnet associated with the Private Network.
 - ipv6Subnets
List<Get
Private Network Ipv6Subnet>  - The IPv6 subnets associated with the Private Network.
 - is
Regional Boolean - organization
Id String - List<String>
 - updated
At String - zone String
 - name String
 - private
Network StringId  - project
Id String - region String
 - vpc
Id String 
- created
At string - id string
 - The provider-assigned unique ID for this managed resource.
 - ipv4Subnets
Get
Private Network Ipv4Subnet[]  - The IPv4 subnet associated with the Private Network.
 - ipv6Subnets
Get
Private Network Ipv6Subnet[]  - The IPv6 subnets associated with the Private Network.
 - is
Regional boolean - organization
Id string - string[]
 - updated
At string - zone string
 - name string
 - private
Network stringId  - project
Id string - region string
 - vpc
Id string 
- created_
at str - id str
 - The provider-assigned unique ID for this managed resource.
 - ipv4_
subnets Sequence[GetPrivate Network Ipv4Subnet]  - The IPv4 subnet associated with the Private Network.
 - ipv6_
subnets Sequence[GetPrivate Network Ipv6Subnet]  - The IPv6 subnets associated with the Private Network.
 - is_
regional bool - organization_
id str - Sequence[str]
 - updated_
at str - zone str
 - name str
 - private_
network_ strid  - project_
id str - region str
 - vpc_
id str 
- created
At String - id String
 - The provider-assigned unique ID for this managed resource.
 - ipv4Subnets List<Property Map>
 - The IPv4 subnet associated with the Private Network.
 - ipv6Subnets List<Property Map>
 - The IPv6 subnets associated with the Private Network.
 - is
Regional Boolean - organization
Id String - List<String>
 - updated
At String - zone String
 - name String
 - private
Network StringId  - project
Id String - region String
 - vpc
Id String 
Supporting Types
GetPrivateNetworkIpv4Subnet   
- Address string
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - Created
At string - The date and time of the creation of the subnet
 - Id string
 - The ID of the Private Network.
 - Prefix
Length int - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - Subnet string
 - The subnet CIDR
 - Subnet
Mask string - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - Updated
At string - The date and time of the last update of the subnet
 
- Address string
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - Created
At string - The date and time of the creation of the subnet
 - Id string
 - The ID of the Private Network.
 - Prefix
Length int - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - Subnet string
 - The subnet CIDR
 - Subnet
Mask string - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - Updated
At string - The date and time of the last update of the subnet
 
- address String
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - created
At String - The date and time of the creation of the subnet
 - id String
 - The ID of the Private Network.
 - prefix
Length Integer - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - subnet String
 - The subnet CIDR
 - subnet
Mask String - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - updated
At String - The date and time of the last update of the subnet
 
- address string
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - created
At string - The date and time of the creation of the subnet
 - id string
 - The ID of the Private Network.
 - prefix
Length number - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - subnet string
 - The subnet CIDR
 - subnet
Mask string - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - updated
At string - The date and time of the last update of the subnet
 
- address str
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - created_
at str - The date and time of the creation of the subnet
 - id str
 - The ID of the Private Network.
 - prefix_
length int - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - subnet str
 - The subnet CIDR
 - subnet_
mask str - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - updated_
at str - The date and time of the last update of the subnet
 
- address String
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - created
At String - The date and time of the creation of the subnet
 - id String
 - The ID of the Private Network.
 - prefix
Length Number - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - subnet String
 - The subnet CIDR
 - subnet
Mask String - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - updated
At String - The date and time of the last update of the subnet
 
GetPrivateNetworkIpv6Subnet   
- Address string
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - Created
At string - The date and time of the creation of the subnet
 - Id string
 - The ID of the Private Network.
 - Prefix
Length int - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - Subnet string
 - The subnet CIDR
 - Subnet
Mask string - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - Updated
At string - The date and time of the last update of the subnet
 
- Address string
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - Created
At string - The date and time of the creation of the subnet
 - Id string
 - The ID of the Private Network.
 - Prefix
Length int - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - Subnet string
 - The subnet CIDR
 - Subnet
Mask string - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - Updated
At string - The date and time of the last update of the subnet
 
- address String
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - created
At String - The date and time of the creation of the subnet
 - id String
 - The ID of the Private Network.
 - prefix
Length Integer - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - subnet String
 - The subnet CIDR
 - subnet
Mask String - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - updated
At String - The date and time of the last update of the subnet
 
- address string
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - created
At string - The date and time of the creation of the subnet
 - id string
 - The ID of the Private Network.
 - prefix
Length number - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - subnet string
 - The subnet CIDR
 - subnet
Mask string - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - updated
At string - The date and time of the last update of the subnet
 
- address str
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - created_
at str - The date and time of the creation of the subnet
 - id str
 - The ID of the Private Network.
 - prefix_
length int - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - subnet str
 - The subnet CIDR
 - subnet_
mask str - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - updated_
at str - The date and time of the last update of the subnet
 
- address String
 - The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
 - created
At String - The date and time of the creation of the subnet
 - id String
 - The ID of the Private Network.
 - prefix
Length Number - The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
 - subnet String
 - The subnet CIDR
 - subnet
Mask String - The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
 - updated
At String - The date and time of the last update of the subnet
 
Package Details
- Repository
 - scaleway pulumiverse/pulumi-scaleway
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
scalewayTerraform Provider.