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

scaleway.MnqSnsCredentials

Explore with Pulumi AI

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

    Creates and manages Scaleway Messaging and queuing SNS Credentials. For further information please check our documentation

    Example Usage

    Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const mainMnqSns = new scaleway.MnqSns("mainMnqSns", {});
    const mainMnqSnsCredentials = new scaleway.MnqSnsCredentials("mainMnqSnsCredentials", {
        projectId: mainMnqSns.projectId,
        permissions: {
            canManage: false,
            canReceive: true,
            canPublish: false,
        },
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main_mnq_sns = scaleway.MnqSns("mainMnqSns")
    main_mnq_sns_credentials = scaleway.MnqSnsCredentials("mainMnqSnsCredentials",
        project_id=main_mnq_sns.project_id,
        permissions=scaleway.MnqSnsCredentialsPermissionsArgs(
            can_manage=False,
            can_receive=True,
            can_publish=False,
        ))
    
    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 {
    		mainMnqSns, err := scaleway.NewMnqSns(ctx, "mainMnqSns", nil)
    		if err != nil {
    			return err
    		}
    		_, err = scaleway.NewMnqSnsCredentials(ctx, "mainMnqSnsCredentials", &scaleway.MnqSnsCredentialsArgs{
    			ProjectId: mainMnqSns.ProjectId,
    			Permissions: &scaleway.MnqSnsCredentialsPermissionsArgs{
    				CanManage:  pulumi.Bool(false),
    				CanReceive: pulumi.Bool(true),
    				CanPublish: pulumi.Bool(false),
    			},
    		})
    		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 mainMnqSns = new Scaleway.MnqSns("mainMnqSns");
    
        var mainMnqSnsCredentials = new Scaleway.MnqSnsCredentials("mainMnqSnsCredentials", new()
        {
            ProjectId = mainMnqSns.ProjectId,
            Permissions = new Scaleway.Inputs.MnqSnsCredentialsPermissionsArgs
            {
                CanManage = false,
                CanReceive = true,
                CanPublish = false,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.MnqSns;
    import com.pulumi.scaleway.MnqSnsCredentials;
    import com.pulumi.scaleway.MnqSnsCredentialsArgs;
    import com.pulumi.scaleway.inputs.MnqSnsCredentialsPermissionsArgs;
    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 mainMnqSns = new MnqSns("mainMnqSns");
    
            var mainMnqSnsCredentials = new MnqSnsCredentials("mainMnqSnsCredentials", MnqSnsCredentialsArgs.builder()        
                .projectId(mainMnqSns.projectId())
                .permissions(MnqSnsCredentialsPermissionsArgs.builder()
                    .canManage(false)
                    .canReceive(true)
                    .canPublish(false)
                    .build())
                .build());
    
        }
    }
    
    resources:
      mainMnqSns:
        type: scaleway:MnqSns
      mainMnqSnsCredentials:
        type: scaleway:MnqSnsCredentials
        properties:
          projectId: ${mainMnqSns.projectId}
          permissions:
            canManage: false
            canReceive: true
            canPublish: false
    

    Create MnqSnsCredentials Resource

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

    Constructor syntax

    new MnqSnsCredentials(name: string, args?: MnqSnsCredentialsArgs, opts?: CustomResourceOptions);
    @overload
    def MnqSnsCredentials(resource_name: str,
                          args: Optional[MnqSnsCredentialsArgs] = None,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def MnqSnsCredentials(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          name: Optional[str] = None,
                          permissions: Optional[MnqSnsCredentialsPermissionsArgs] = None,
                          project_id: Optional[str] = None,
                          region: Optional[str] = None)
    func NewMnqSnsCredentials(ctx *Context, name string, args *MnqSnsCredentialsArgs, opts ...ResourceOption) (*MnqSnsCredentials, error)
    public MnqSnsCredentials(string name, MnqSnsCredentialsArgs? args = null, CustomResourceOptions? opts = null)
    public MnqSnsCredentials(String name, MnqSnsCredentialsArgs args)
    public MnqSnsCredentials(String name, MnqSnsCredentialsArgs args, CustomResourceOptions options)
    
    type: scaleway:MnqSnsCredentials
    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 MnqSnsCredentialsArgs
    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 MnqSnsCredentialsArgs
    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 MnqSnsCredentialsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MnqSnsCredentialsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MnqSnsCredentialsArgs
    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 mnqSnsCredentialsResource = new Scaleway.MnqSnsCredentials("mnqSnsCredentialsResource", new()
    {
        Name = "string",
        Permissions = new Scaleway.Inputs.MnqSnsCredentialsPermissionsArgs
        {
            CanManage = false,
            CanPublish = false,
            CanReceive = false,
        },
        ProjectId = "string",
        Region = "string",
    });
    
    example, err := scaleway.NewMnqSnsCredentials(ctx, "mnqSnsCredentialsResource", &scaleway.MnqSnsCredentialsArgs{
    	Name: pulumi.String("string"),
    	Permissions: &scaleway.MnqSnsCredentialsPermissionsArgs{
    		CanManage:  pulumi.Bool(false),
    		CanPublish: pulumi.Bool(false),
    		CanReceive: pulumi.Bool(false),
    	},
    	ProjectId: pulumi.String("string"),
    	Region:    pulumi.String("string"),
    })
    
    var mnqSnsCredentialsResource = new MnqSnsCredentials("mnqSnsCredentialsResource", MnqSnsCredentialsArgs.builder()        
        .name("string")
        .permissions(MnqSnsCredentialsPermissionsArgs.builder()
            .canManage(false)
            .canPublish(false)
            .canReceive(false)
            .build())
        .projectId("string")
        .region("string")
        .build());
    
    mnq_sns_credentials_resource = scaleway.MnqSnsCredentials("mnqSnsCredentialsResource",
        name="string",
        permissions=scaleway.MnqSnsCredentialsPermissionsArgs(
            can_manage=False,
            can_publish=False,
            can_receive=False,
        ),
        project_id="string",
        region="string")
    
    const mnqSnsCredentialsResource = new scaleway.MnqSnsCredentials("mnqSnsCredentialsResource", {
        name: "string",
        permissions: {
            canManage: false,
            canPublish: false,
            canReceive: false,
        },
        projectId: "string",
        region: "string",
    });
    
    type: scaleway:MnqSnsCredentials
    properties:
        name: string
        permissions:
            canManage: false
            canPublish: false
            canReceive: false
        projectId: string
        region: string
    

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

    Name string
    The unique name of the sns credentials.
    Permissions Pulumiverse.Scaleway.Inputs.MnqSnsCredentialsPermissions
    . List of permissions associated to these credentials. Only one of permissions may be set.
    ProjectId string
    project_id) The ID of the project the sns is enabled for.
    Region string
    region). The region in which sns is enabled.
    Name string
    The unique name of the sns credentials.
    Permissions MnqSnsCredentialsPermissionsArgs
    . List of permissions associated to these credentials. Only one of permissions may be set.
    ProjectId string
    project_id) The ID of the project the sns is enabled for.
    Region string
    region). The region in which sns is enabled.
    name String
    The unique name of the sns credentials.
    permissions MnqSnsCredentialsPermissions
    . List of permissions associated to these credentials. Only one of permissions may be set.
    projectId String
    project_id) The ID of the project the sns is enabled for.
    region String
    region). The region in which sns is enabled.
    name string
    The unique name of the sns credentials.
    permissions MnqSnsCredentialsPermissions
    . List of permissions associated to these credentials. Only one of permissions may be set.
    projectId string
    project_id) The ID of the project the sns is enabled for.
    region string
    region). The region in which sns is enabled.
    name str
    The unique name of the sns credentials.
    permissions MnqSnsCredentialsPermissionsArgs
    . List of permissions associated to these credentials. Only one of permissions may be set.
    project_id str
    project_id) The ID of the project the sns is enabled for.
    region str
    region). The region in which sns is enabled.
    name String
    The unique name of the sns credentials.
    permissions Property Map
    . List of permissions associated to these credentials. Only one of permissions may be set.
    projectId String
    project_id) The ID of the project the sns is enabled for.
    region String
    region). The region in which sns is enabled.

    Outputs

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

    AccessKey string
    The ID of the key.
    Id string
    The provider-assigned unique ID for this managed resource.
    SecretKey string
    The secret value of the key.
    AccessKey string
    The ID of the key.
    Id string
    The provider-assigned unique ID for this managed resource.
    SecretKey string
    The secret value of the key.
    accessKey String
    The ID of the key.
    id String
    The provider-assigned unique ID for this managed resource.
    secretKey String
    The secret value of the key.
    accessKey string
    The ID of the key.
    id string
    The provider-assigned unique ID for this managed resource.
    secretKey string
    The secret value of the key.
    access_key str
    The ID of the key.
    id str
    The provider-assigned unique ID for this managed resource.
    secret_key str
    The secret value of the key.
    accessKey String
    The ID of the key.
    id String
    The provider-assigned unique ID for this managed resource.
    secretKey String
    The secret value of the key.

    Look up Existing MnqSnsCredentials Resource

    Get an existing MnqSnsCredentials 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?: MnqSnsCredentialsState, opts?: CustomResourceOptions): MnqSnsCredentials
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_key: Optional[str] = None,
            name: Optional[str] = None,
            permissions: Optional[MnqSnsCredentialsPermissionsArgs] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            secret_key: Optional[str] = None) -> MnqSnsCredentials
    func GetMnqSnsCredentials(ctx *Context, name string, id IDInput, state *MnqSnsCredentialsState, opts ...ResourceOption) (*MnqSnsCredentials, error)
    public static MnqSnsCredentials Get(string name, Input<string> id, MnqSnsCredentialsState? state, CustomResourceOptions? opts = null)
    public static MnqSnsCredentials get(String name, Output<String> id, MnqSnsCredentialsState 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:
    AccessKey string
    The ID of the key.
    Name string
    The unique name of the sns credentials.
    Permissions Pulumiverse.Scaleway.Inputs.MnqSnsCredentialsPermissions
    . List of permissions associated to these credentials. Only one of permissions may be set.
    ProjectId string
    project_id) The ID of the project the sns is enabled for.
    Region string
    region). The region in which sns is enabled.
    SecretKey string
    The secret value of the key.
    AccessKey string
    The ID of the key.
    Name string
    The unique name of the sns credentials.
    Permissions MnqSnsCredentialsPermissionsArgs
    . List of permissions associated to these credentials. Only one of permissions may be set.
    ProjectId string
    project_id) The ID of the project the sns is enabled for.
    Region string
    region). The region in which sns is enabled.
    SecretKey string
    The secret value of the key.
    accessKey String
    The ID of the key.
    name String
    The unique name of the sns credentials.
    permissions MnqSnsCredentialsPermissions
    . List of permissions associated to these credentials. Only one of permissions may be set.
    projectId String
    project_id) The ID of the project the sns is enabled for.
    region String
    region). The region in which sns is enabled.
    secretKey String
    The secret value of the key.
    accessKey string
    The ID of the key.
    name string
    The unique name of the sns credentials.
    permissions MnqSnsCredentialsPermissions
    . List of permissions associated to these credentials. Only one of permissions may be set.
    projectId string
    project_id) The ID of the project the sns is enabled for.
    region string
    region). The region in which sns is enabled.
    secretKey string
    The secret value of the key.
    access_key str
    The ID of the key.
    name str
    The unique name of the sns credentials.
    permissions MnqSnsCredentialsPermissionsArgs
    . List of permissions associated to these credentials. Only one of permissions may be set.
    project_id str
    project_id) The ID of the project the sns is enabled for.
    region str
    region). The region in which sns is enabled.
    secret_key str
    The secret value of the key.
    accessKey String
    The ID of the key.
    name String
    The unique name of the sns credentials.
    permissions Property Map
    . List of permissions associated to these credentials. Only one of permissions may be set.
    projectId String
    project_id) The ID of the project the sns is enabled for.
    region String
    region). The region in which sns is enabled.
    secretKey String
    The secret value of the key.

    Supporting Types

    MnqSnsCredentialsPermissions, MnqSnsCredentialsPermissionsArgs

    CanManage bool
    . Defines if user can manage the associated resource(s).
    CanPublish bool
    . Defines if user can publish messages to the service.
    CanReceive bool
    . Defines if user can receive messages from the service.
    CanManage bool
    . Defines if user can manage the associated resource(s).
    CanPublish bool
    . Defines if user can publish messages to the service.
    CanReceive bool
    . Defines if user can receive messages from the service.
    canManage Boolean
    . Defines if user can manage the associated resource(s).
    canPublish Boolean
    . Defines if user can publish messages to the service.
    canReceive Boolean
    . Defines if user can receive messages from the service.
    canManage boolean
    . Defines if user can manage the associated resource(s).
    canPublish boolean
    . Defines if user can publish messages to the service.
    canReceive boolean
    . Defines if user can receive messages from the service.
    can_manage bool
    . Defines if user can manage the associated resource(s).
    can_publish bool
    . Defines if user can publish messages to the service.
    can_receive bool
    . Defines if user can receive messages from the service.
    canManage Boolean
    . Defines if user can manage the associated resource(s).
    canPublish Boolean
    . Defines if user can publish messages to the service.
    canReceive Boolean
    . Defines if user can receive messages from the service.

    Import

    SNS credentials can be imported using the {region}/{id}, e.g.

    bash

    $ pulumi import scaleway:index/mnqSnsCredentials:MnqSnsCredentials 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