1. Packages
  2. Scaleway
  3. API Docs
  4. MnqSqs
Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse

scaleway.MnqSqs

Explore with Pulumi AI

scaleway logo
Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse

    Activate Scaleway Messaging and queuing SQS for a project. For further information please check our documentation

    Example Usage

    Basic

    Activate SQS for default project

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.MnqSqs("main", {});
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.MnqSqs("main")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scaleway.NewMnqSqs(ctx, "main", nil)
    		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 main = new Scaleway.MnqSqs("main");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.MnqSqs;
    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 main = new MnqSqs("main");
    
        }
    }
    
    resources:
      main:
        type: scaleway:MnqSqs
    

    Activate SQS for a specific project

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumi/scaleway";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const project = scaleway.getAccountProject({
        name: "default",
    });
    const forProject = new scaleway.MnqSqs("forProject", {projectId: project.then(project => project.id)});
    
    import pulumi
    import pulumi_scaleway as scaleway
    import pulumiverse_scaleway as scaleway
    
    project = scaleway.get_account_project(name="default")
    for_project = scaleway.MnqSqs("forProject", project_id=project.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		project, err := scaleway.LookupAccountProject(ctx, &scaleway.LookupAccountProjectArgs{
    			Name: pulumi.StringRef("default"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = scaleway.NewMnqSqs(ctx, "forProject", &scaleway.MnqSqsArgs{
    			ProjectId: pulumi.String(project.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumi.Scaleway;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var project = Scaleway.GetAccountProject.Invoke(new()
        {
            Name = "default",
        });
    
        var forProject = new Scaleway.MnqSqs("forProject", new()
        {
            ProjectId = project.Apply(getAccountProjectResult => getAccountProjectResult.Id),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.ScalewayFunctions;
    import com.pulumi.scaleway.inputs.GetAccountProjectArgs;
    import com.pulumi.scaleway.MnqSqs;
    import com.pulumi.scaleway.MnqSqsArgs;
    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 project = ScalewayFunctions.getAccountProject(GetAccountProjectArgs.builder()
                .name("default")
                .build());
    
            var forProject = new MnqSqs("forProject", MnqSqsArgs.builder()        
                .projectId(project.applyValue(getAccountProjectResult -> getAccountProjectResult.id()))
                .build());
    
        }
    }
    
    resources:
      forProject:
        type: scaleway:MnqSqs
        properties:
          projectId: ${project.id}
    variables:
      project:
        fn::invoke:
          Function: scaleway:getAccountProject
          Arguments:
            name: default
    

    Create MnqSqs Resource

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

    Constructor syntax

    new MnqSqs(name: string, args?: MnqSqsArgs, opts?: CustomResourceOptions);
    @overload
    def MnqSqs(resource_name: str,
               args: Optional[MnqSqsArgs] = None,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def MnqSqs(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               project_id: Optional[str] = None,
               region: Optional[str] = None)
    func NewMnqSqs(ctx *Context, name string, args *MnqSqsArgs, opts ...ResourceOption) (*MnqSqs, error)
    public MnqSqs(string name, MnqSqsArgs? args = null, CustomResourceOptions? opts = null)
    public MnqSqs(String name, MnqSqsArgs args)
    public MnqSqs(String name, MnqSqsArgs args, CustomResourceOptions options)
    
    type: scaleway:MnqSqs
    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 MnqSqsArgs
    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 MnqSqsArgs
    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 MnqSqsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MnqSqsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MnqSqsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var mnqSqsResource = new Scaleway.MnqSqs("mnqSqsResource", new()
    {
        ProjectId = "string",
        Region = "string",
    });
    
    example, err := scaleway.NewMnqSqs(ctx, "mnqSqsResource", &scaleway.MnqSqsArgs{
    	ProjectId: pulumi.String("string"),
    	Region:    pulumi.String("string"),
    })
    
    var mnqSqsResource = new MnqSqs("mnqSqsResource", MnqSqsArgs.builder()        
        .projectId("string")
        .region("string")
        .build());
    
    mnq_sqs_resource = scaleway.MnqSqs("mnqSqsResource",
        project_id="string",
        region="string")
    
    const mnqSqsResource = new scaleway.MnqSqs("mnqSqsResource", {
        projectId: "string",
        region: "string",
    });
    
    type: scaleway:MnqSqs
    properties:
        projectId: string
        region: string
    

    MnqSqs Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The MnqSqs resource accepts the following input properties:

    ProjectId string
    project_id) The ID of the project the sqs will be enabled for.
    Region string
    region). The region in which sqs will be enabled.
    ProjectId string
    project_id) The ID of the project the sqs will be enabled for.
    Region string
    region). The region in which sqs will be enabled.
    projectId String
    project_id) The ID of the project the sqs will be enabled for.
    region String
    region). The region in which sqs will be enabled.
    projectId string
    project_id) The ID of the project the sqs will be enabled for.
    region string
    region). The region in which sqs will be enabled.
    project_id str
    project_id) The ID of the project the sqs will be enabled for.
    region str
    region). The region in which sqs will be enabled.
    projectId String
    project_id) The ID of the project the sqs will be enabled for.
    region String
    region). The region in which sqs will be enabled.

    Outputs

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

    Endpoint string
    The endpoint of the SQS service for this project.
    Id string
    The provider-assigned unique ID for this managed resource.
    Endpoint string
    The endpoint of the SQS service for this project.
    Id string
    The provider-assigned unique ID for this managed resource.
    endpoint String
    The endpoint of the SQS service for this project.
    id String
    The provider-assigned unique ID for this managed resource.
    endpoint string
    The endpoint of the SQS service for this project.
    id string
    The provider-assigned unique ID for this managed resource.
    endpoint str
    The endpoint of the SQS service for this project.
    id str
    The provider-assigned unique ID for this managed resource.
    endpoint String
    The endpoint of the SQS service for this project.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing MnqSqs Resource

    Get an existing MnqSqs 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?: MnqSqsState, opts?: CustomResourceOptions): MnqSqs
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            endpoint: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None) -> MnqSqs
    func GetMnqSqs(ctx *Context, name string, id IDInput, state *MnqSqsState, opts ...ResourceOption) (*MnqSqs, error)
    public static MnqSqs Get(string name, Input<string> id, MnqSqsState? state, CustomResourceOptions? opts = null)
    public static MnqSqs get(String name, Output<String> id, MnqSqsState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    Endpoint string
    The endpoint of the SQS service for this project.
    ProjectId string
    project_id) The ID of the project the sqs will be enabled for.
    Region string
    region). The region in which sqs will be enabled.
    Endpoint string
    The endpoint of the SQS service for this project.
    ProjectId string
    project_id) The ID of the project the sqs will be enabled for.
    Region string
    region). The region in which sqs will be enabled.
    endpoint String
    The endpoint of the SQS service for this project.
    projectId String
    project_id) The ID of the project the sqs will be enabled for.
    region String
    region). The region in which sqs will be enabled.
    endpoint string
    The endpoint of the SQS service for this project.
    projectId string
    project_id) The ID of the project the sqs will be enabled for.
    region string
    region). The region in which sqs will be enabled.
    endpoint str
    The endpoint of the SQS service for this project.
    project_id str
    project_id) The ID of the project the sqs will be enabled for.
    region str
    region). The region in which sqs will be enabled.
    endpoint String
    The endpoint of the SQS service for this project.
    projectId String
    project_id) The ID of the project the sqs will be enabled for.
    region String
    region). The region in which sqs will be enabled.

    Import

    SQS status can be imported using the {region}/{project_id}, e.g.

    bash

    $ pulumi import scaleway:index/mnqSqs:MnqSqs main fr-par/11111111111111111111111111111111
    

    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.12.1 published on Monday, Apr 15, 2024 by pulumiverse