1. Packages
  2. Scaleway
  3. API Docs
  4. iot
  5. Network
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

scaleway.iot.Network

Explore with Pulumi AI

scaleway logo
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const mainHub = new scaleway.iot.Hub("main", {
        name: "main",
        productPlan: "plan_shared",
    });
    const main = new scaleway.iot.Network("main", {
        name: "main",
        hubId: mainHub.id,
        type: "sigfox",
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main_hub = scaleway.iot.Hub("main",
        name="main",
        product_plan="plan_shared")
    main = scaleway.iot.Network("main",
        name="main",
        hub_id=main_hub.id,
        type="sigfox")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/iot"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		mainHub, err := iot.NewHub(ctx, "main", &iot.HubArgs{
    			Name:        pulumi.String("main"),
    			ProductPlan: pulumi.String("plan_shared"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = iot.NewNetwork(ctx, "main", &iot.NetworkArgs{
    			Name:  pulumi.String("main"),
    			HubId: mainHub.ID(),
    			Type:  pulumi.String("sigfox"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var mainHub = new Scaleway.Iot.Hub("main", new()
        {
            Name = "main",
            ProductPlan = "plan_shared",
        });
    
        var main = new Scaleway.Iot.Network("main", new()
        {
            Name = "main",
            HubId = mainHub.Id,
            Type = "sigfox",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.iot.Hub;
    import com.pulumi.scaleway.iot.HubArgs;
    import com.pulumi.scaleway.iot.Network;
    import com.pulumi.scaleway.iot.NetworkArgs;
    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 mainHub = new Hub("mainHub", HubArgs.builder()
                .name("main")
                .productPlan("plan_shared")
                .build());
    
            var main = new Network("main", NetworkArgs.builder()
                .name("main")
                .hubId(mainHub.id())
                .type("sigfox")
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:iot:Network
        properties:
          name: main
          hubId: ${mainHub.id}
          type: sigfox
      mainHub:
        type: scaleway:iot:Hub
        name: main
        properties:
          name: main
          productPlan: plan_shared
    

    Create Network Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);
    @overload
    def Network(resource_name: str,
                args: NetworkArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Network(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                hub_id: Optional[str] = None,
                type: Optional[str] = None,
                name: Optional[str] = None,
                region: Optional[str] = None,
                topic_prefix: Optional[str] = None)
    func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)
    public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
    public Network(String name, NetworkArgs args)
    public Network(String name, NetworkArgs args, CustomResourceOptions options)
    
    type: scaleway:iot:Network
    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 NetworkArgs
    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 NetworkArgs
    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 NetworkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkArgs
    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 networkResource = new Scaleway.Iot.Network("networkResource", new()
    {
        HubId = "string",
        Type = "string",
        Name = "string",
        Region = "string",
        TopicPrefix = "string",
    });
    
    example, err := iot.NewNetwork(ctx, "networkResource", &iot.NetworkArgs{
    	HubId:       pulumi.String("string"),
    	Type:        pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Region:      pulumi.String("string"),
    	TopicPrefix: pulumi.String("string"),
    })
    
    var networkResource = new Network("networkResource", NetworkArgs.builder()
        .hubId("string")
        .type("string")
        .name("string")
        .region("string")
        .topicPrefix("string")
        .build());
    
    network_resource = scaleway.iot.Network("networkResource",
        hub_id="string",
        type="string",
        name="string",
        region="string",
        topic_prefix="string")
    
    const networkResource = new scaleway.iot.Network("networkResource", {
        hubId: "string",
        type: "string",
        name: "string",
        region: "string",
        topicPrefix: "string",
    });
    
    type: scaleway:iot:Network
    properties:
        hubId: string
        name: string
        region: string
        topicPrefix: string
        type: string
    

    Network 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 Network resource accepts the following input properties:

    HubId string
    The hub ID to which the Network will be attached to.
    Type string
    The network type to create (e.g. sigfox).
    Name string
    The name of the IoT Network you want to create (e.g. my-net).
    Region string
    (Defaults to provider region) The region in which the Network is attached to.
    TopicPrefix string
    The prefix that will be prepended to all topics for this Network.
    HubId string
    The hub ID to which the Network will be attached to.
    Type string
    The network type to create (e.g. sigfox).
    Name string
    The name of the IoT Network you want to create (e.g. my-net).
    Region string
    (Defaults to provider region) The region in which the Network is attached to.
    TopicPrefix string
    The prefix that will be prepended to all topics for this Network.
    hubId String
    The hub ID to which the Network will be attached to.
    type String
    The network type to create (e.g. sigfox).
    name String
    The name of the IoT Network you want to create (e.g. my-net).
    region String
    (Defaults to provider region) The region in which the Network is attached to.
    topicPrefix String
    The prefix that will be prepended to all topics for this Network.
    hubId string
    The hub ID to which the Network will be attached to.
    type string
    The network type to create (e.g. sigfox).
    name string
    The name of the IoT Network you want to create (e.g. my-net).
    region string
    (Defaults to provider region) The region in which the Network is attached to.
    topicPrefix string
    The prefix that will be prepended to all topics for this Network.
    hub_id str
    The hub ID to which the Network will be attached to.
    type str
    The network type to create (e.g. sigfox).
    name str
    The name of the IoT Network you want to create (e.g. my-net).
    region str
    (Defaults to provider region) The region in which the Network is attached to.
    topic_prefix str
    The prefix that will be prepended to all topics for this Network.
    hubId String
    The hub ID to which the Network will be attached to.
    type String
    The network type to create (e.g. sigfox).
    name String
    The name of the IoT Network you want to create (e.g. my-net).
    region String
    (Defaults to provider region) The region in which the Network is attached to.
    topicPrefix String
    The prefix that will be prepended to all topics for this Network.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:

    CreatedAt string
    The date and time the Network was created.
    Endpoint string
    The endpoint to use when interacting with the network.
    Id string
    The provider-assigned unique ID for this managed resource.
    Secret string
    The endpoint key to keep secret.
    CreatedAt string
    The date and time the Network was created.
    Endpoint string
    The endpoint to use when interacting with the network.
    Id string
    The provider-assigned unique ID for this managed resource.
    Secret string
    The endpoint key to keep secret.
    createdAt String
    The date and time the Network was created.
    endpoint String
    The endpoint to use when interacting with the network.
    id String
    The provider-assigned unique ID for this managed resource.
    secret String
    The endpoint key to keep secret.
    createdAt string
    The date and time the Network was created.
    endpoint string
    The endpoint to use when interacting with the network.
    id string
    The provider-assigned unique ID for this managed resource.
    secret string
    The endpoint key to keep secret.
    created_at str
    The date and time the Network was created.
    endpoint str
    The endpoint to use when interacting with the network.
    id str
    The provider-assigned unique ID for this managed resource.
    secret str
    The endpoint key to keep secret.
    createdAt String
    The date and time the Network was created.
    endpoint String
    The endpoint to use when interacting with the network.
    id String
    The provider-assigned unique ID for this managed resource.
    secret String
    The endpoint key to keep secret.

    Look up Existing Network Resource

    Get an existing Network 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?: NetworkState, opts?: CustomResourceOptions): Network
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            endpoint: Optional[str] = None,
            hub_id: Optional[str] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            secret: Optional[str] = None,
            topic_prefix: Optional[str] = None,
            type: Optional[str] = None) -> Network
    func GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)
    public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)
    public static Network get(String name, Output<String> id, NetworkState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:iot:Network    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.
    The following state arguments are supported:
    CreatedAt string
    The date and time the Network was created.
    Endpoint string
    The endpoint to use when interacting with the network.
    HubId string
    The hub ID to which the Network will be attached to.
    Name string
    The name of the IoT Network you want to create (e.g. my-net).
    Region string
    (Defaults to provider region) The region in which the Network is attached to.
    Secret string
    The endpoint key to keep secret.
    TopicPrefix string
    The prefix that will be prepended to all topics for this Network.
    Type string
    The network type to create (e.g. sigfox).
    CreatedAt string
    The date and time the Network was created.
    Endpoint string
    The endpoint to use when interacting with the network.
    HubId string
    The hub ID to which the Network will be attached to.
    Name string
    The name of the IoT Network you want to create (e.g. my-net).
    Region string
    (Defaults to provider region) The region in which the Network is attached to.
    Secret string
    The endpoint key to keep secret.
    TopicPrefix string
    The prefix that will be prepended to all topics for this Network.
    Type string
    The network type to create (e.g. sigfox).
    createdAt String
    The date and time the Network was created.
    endpoint String
    The endpoint to use when interacting with the network.
    hubId String
    The hub ID to which the Network will be attached to.
    name String
    The name of the IoT Network you want to create (e.g. my-net).
    region String
    (Defaults to provider region) The region in which the Network is attached to.
    secret String
    The endpoint key to keep secret.
    topicPrefix String
    The prefix that will be prepended to all topics for this Network.
    type String
    The network type to create (e.g. sigfox).
    createdAt string
    The date and time the Network was created.
    endpoint string
    The endpoint to use when interacting with the network.
    hubId string
    The hub ID to which the Network will be attached to.
    name string
    The name of the IoT Network you want to create (e.g. my-net).
    region string
    (Defaults to provider region) The region in which the Network is attached to.
    secret string
    The endpoint key to keep secret.
    topicPrefix string
    The prefix that will be prepended to all topics for this Network.
    type string
    The network type to create (e.g. sigfox).
    created_at str
    The date and time the Network was created.
    endpoint str
    The endpoint to use when interacting with the network.
    hub_id str
    The hub ID to which the Network will be attached to.
    name str
    The name of the IoT Network you want to create (e.g. my-net).
    region str
    (Defaults to provider region) The region in which the Network is attached to.
    secret str
    The endpoint key to keep secret.
    topic_prefix str
    The prefix that will be prepended to all topics for this Network.
    type str
    The network type to create (e.g. sigfox).
    createdAt String
    The date and time the Network was created.
    endpoint String
    The endpoint to use when interacting with the network.
    hubId String
    The hub ID to which the Network will be attached to.
    name String
    The name of the IoT Network you want to create (e.g. my-net).
    region String
    (Defaults to provider region) The region in which the Network is attached to.
    secret String
    The endpoint key to keep secret.
    topicPrefix String
    The prefix that will be prepended to all topics for this Network.
    type String
    The network type to create (e.g. sigfox).

    Import

    IoT Networks can be imported using the {region}/{id}, e.g.

    bash

    $ pulumi import scaleway:iot/network:Network net01 fr-par/11111111-1111-1111-1111-111111111111
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse