1. Packages
  2. Scaleway
  3. API Docs
  4. FunctionNamespace
Scaleway v1.12.0 published on Monday, Mar 11, 2024 by pulumiverse

scaleway.FunctionNamespace

Explore with Pulumi AI

scaleway logo
Scaleway v1.12.0 published on Monday, Mar 11, 2024 by pulumiverse

    Creates and manages Scaleway Function Namespace. For more information see the documentation.

    Example Usage

    Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.FunctionNamespace("main", {description: "Main function namespace"});
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.FunctionNamespace("main", description="Main function namespace")
    
    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.NewFunctionNamespace(ctx, "main", &scaleway.FunctionNamespaceArgs{
    			Description: pulumi.String("Main function namespace"),
    		})
    		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.FunctionNamespace("main", new()
        {
            Description = "Main function namespace",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.FunctionNamespace;
    import com.pulumi.scaleway.FunctionNamespaceArgs;
    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 FunctionNamespace("main", FunctionNamespaceArgs.builder()        
                .description("Main function namespace")
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:FunctionNamespace
        properties:
          description: Main function namespace
    

    Create FunctionNamespace Resource

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

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

    Description string
    The description of the namespace.
    EnvironmentVariables Dictionary<string, string>
    The environment variables of the namespace.
    Name string

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    ProjectId string
    project_id) The ID of the project the namespace is associated with.
    Region string
    region). The region in which the namespace should be created.
    SecretEnvironmentVariables Dictionary<string, string>
    The secret environment variables of the namespace.
    Description string
    The description of the namespace.
    EnvironmentVariables map[string]string
    The environment variables of the namespace.
    Name string

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    ProjectId string
    project_id) The ID of the project the namespace is associated with.
    Region string
    region). The region in which the namespace should be created.
    SecretEnvironmentVariables map[string]string
    The secret environment variables of the namespace.
    description String
    The description of the namespace.
    environmentVariables Map<String,String>
    The environment variables of the namespace.
    name String

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    projectId String
    project_id) The ID of the project the namespace is associated with.
    region String
    region). The region in which the namespace should be created.
    secretEnvironmentVariables Map<String,String>
    The secret environment variables of the namespace.
    description string
    The description of the namespace.
    environmentVariables {[key: string]: string}
    The environment variables of the namespace.
    name string

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    projectId string
    project_id) The ID of the project the namespace is associated with.
    region string
    region). The region in which the namespace should be created.
    secretEnvironmentVariables {[key: string]: string}
    The secret environment variables of the namespace.
    description str
    The description of the namespace.
    environment_variables Mapping[str, str]
    The environment variables of the namespace.
    name str

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    project_id str
    project_id) The ID of the project the namespace is associated with.
    region str
    region). The region in which the namespace should be created.
    secret_environment_variables Mapping[str, str]
    The secret environment variables of the namespace.
    description String
    The description of the namespace.
    environmentVariables Map<String>
    The environment variables of the namespace.
    name String

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    projectId String
    project_id) The ID of the project the namespace is associated with.
    region String
    region). The region in which the namespace should be created.
    secretEnvironmentVariables Map<String>
    The secret environment variables of the namespace.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    OrganizationId string
    The organization ID the namespace is associated with.
    RegistryEndpoint string
    The registry endpoint of the namespace.
    RegistryNamespaceId string
    The registry namespace ID of the namespace.
    Id string
    The provider-assigned unique ID for this managed resource.
    OrganizationId string
    The organization ID the namespace is associated with.
    RegistryEndpoint string
    The registry endpoint of the namespace.
    RegistryNamespaceId string
    The registry namespace ID of the namespace.
    id String
    The provider-assigned unique ID for this managed resource.
    organizationId String
    The organization ID the namespace is associated with.
    registryEndpoint String
    The registry endpoint of the namespace.
    registryNamespaceId String
    The registry namespace ID of the namespace.
    id string
    The provider-assigned unique ID for this managed resource.
    organizationId string
    The organization ID the namespace is associated with.
    registryEndpoint string
    The registry endpoint of the namespace.
    registryNamespaceId string
    The registry namespace ID of the namespace.
    id str
    The provider-assigned unique ID for this managed resource.
    organization_id str
    The organization ID the namespace is associated with.
    registry_endpoint str
    The registry endpoint of the namespace.
    registry_namespace_id str
    The registry namespace ID of the namespace.
    id String
    The provider-assigned unique ID for this managed resource.
    organizationId String
    The organization ID the namespace is associated with.
    registryEndpoint String
    The registry endpoint of the namespace.
    registryNamespaceId String
    The registry namespace ID of the namespace.

    Look up Existing FunctionNamespace Resource

    Get an existing FunctionNamespace 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?: FunctionNamespaceState, opts?: CustomResourceOptions): FunctionNamespace
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            environment_variables: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            organization_id: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            registry_endpoint: Optional[str] = None,
            registry_namespace_id: Optional[str] = None,
            secret_environment_variables: Optional[Mapping[str, str]] = None) -> FunctionNamespace
    func GetFunctionNamespace(ctx *Context, name string, id IDInput, state *FunctionNamespaceState, opts ...ResourceOption) (*FunctionNamespace, error)
    public static FunctionNamespace Get(string name, Input<string> id, FunctionNamespaceState? state, CustomResourceOptions? opts = null)
    public static FunctionNamespace get(String name, Output<String> id, FunctionNamespaceState 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:
    Description string
    The description of the namespace.
    EnvironmentVariables Dictionary<string, string>
    The environment variables of the namespace.
    Name string

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    OrganizationId string
    The organization ID the namespace is associated with.
    ProjectId string
    project_id) The ID of the project the namespace is associated with.
    Region string
    region). The region in which the namespace should be created.
    RegistryEndpoint string
    The registry endpoint of the namespace.
    RegistryNamespaceId string
    The registry namespace ID of the namespace.
    SecretEnvironmentVariables Dictionary<string, string>
    The secret environment variables of the namespace.
    Description string
    The description of the namespace.
    EnvironmentVariables map[string]string
    The environment variables of the namespace.
    Name string

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    OrganizationId string
    The organization ID the namespace is associated with.
    ProjectId string
    project_id) The ID of the project the namespace is associated with.
    Region string
    region). The region in which the namespace should be created.
    RegistryEndpoint string
    The registry endpoint of the namespace.
    RegistryNamespaceId string
    The registry namespace ID of the namespace.
    SecretEnvironmentVariables map[string]string
    The secret environment variables of the namespace.
    description String
    The description of the namespace.
    environmentVariables Map<String,String>
    The environment variables of the namespace.
    name String

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    organizationId String
    The organization ID the namespace is associated with.
    projectId String
    project_id) The ID of the project the namespace is associated with.
    region String
    region). The region in which the namespace should be created.
    registryEndpoint String
    The registry endpoint of the namespace.
    registryNamespaceId String
    The registry namespace ID of the namespace.
    secretEnvironmentVariables Map<String,String>
    The secret environment variables of the namespace.
    description string
    The description of the namespace.
    environmentVariables {[key: string]: string}
    The environment variables of the namespace.
    name string

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    organizationId string
    The organization ID the namespace is associated with.
    projectId string
    project_id) The ID of the project the namespace is associated with.
    region string
    region). The region in which the namespace should be created.
    registryEndpoint string
    The registry endpoint of the namespace.
    registryNamespaceId string
    The registry namespace ID of the namespace.
    secretEnvironmentVariables {[key: string]: string}
    The secret environment variables of the namespace.
    description str
    The description of the namespace.
    environment_variables Mapping[str, str]
    The environment variables of the namespace.
    name str

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    organization_id str
    The organization ID the namespace is associated with.
    project_id str
    project_id) The ID of the project the namespace is associated with.
    region str
    region). The region in which the namespace should be created.
    registry_endpoint str
    The registry endpoint of the namespace.
    registry_namespace_id str
    The registry namespace ID of the namespace.
    secret_environment_variables Mapping[str, str]
    The secret environment variables of the namespace.
    description String
    The description of the namespace.
    environmentVariables Map<String>
    The environment variables of the namespace.
    name String

    The unique name of the function namespace.

    Important Updates to name will recreate the namespace.

    organizationId String
    The organization ID the namespace is associated with.
    projectId String
    project_id) The ID of the project the namespace is associated with.
    region String
    region). The region in which the namespace should be created.
    registryEndpoint String
    The registry endpoint of the namespace.
    registryNamespaceId String
    The registry namespace ID of the namespace.
    secretEnvironmentVariables Map<String>
    The secret environment variables of the namespace.

    Import

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

    bash

    $ pulumi import scaleway:index/functionNamespace:FunctionNamespace main fr-par/11111111-1111-1111-1111-111111111111
    

    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.0 published on Monday, Mar 11, 2024 by pulumiverse