1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. WorkersKvNamespace
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

cloudflare.WorkersKvNamespace

Explore with Pulumi AI

cloudflare logo
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const exampleWorkersKvNamespace = new cloudflare.WorkersKvNamespace("example_workers_kv_namespace", {
        accountId: "023e105f4ecef8ad9ca31a8372d0c353",
        title: "My Own Namespace",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_workers_kv_namespace = cloudflare.WorkersKvNamespace("example_workers_kv_namespace",
        account_id="023e105f4ecef8ad9ca31a8372d0c353",
        title="My Own Namespace")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.NewWorkersKvNamespace(ctx, "example_workers_kv_namespace", &cloudflare.WorkersKvNamespaceArgs{
    			AccountId: pulumi.String("023e105f4ecef8ad9ca31a8372d0c353"),
    			Title:     pulumi.String("My Own Namespace"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cloudflare = Pulumi.Cloudflare;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleWorkersKvNamespace = new Cloudflare.WorkersKvNamespace("example_workers_kv_namespace", new()
        {
            AccountId = "023e105f4ecef8ad9ca31a8372d0c353",
            Title = "My Own Namespace",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.WorkersKvNamespace;
    import com.pulumi.cloudflare.WorkersKvNamespaceArgs;
    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 exampleWorkersKvNamespace = new WorkersKvNamespace("exampleWorkersKvNamespace", WorkersKvNamespaceArgs.builder()
                .accountId("023e105f4ecef8ad9ca31a8372d0c353")
                .title("My Own Namespace")
                .build());
    
        }
    }
    
    resources:
      exampleWorkersKvNamespace:
        type: cloudflare:WorkersKvNamespace
        name: example_workers_kv_namespace
        properties:
          accountId: 023e105f4ecef8ad9ca31a8372d0c353
          title: My Own Namespace
    

    Create WorkersKvNamespace Resource

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

    Constructor syntax

    new WorkersKvNamespace(name: string, args: WorkersKvNamespaceArgs, opts?: CustomResourceOptions);
    @overload
    def WorkersKvNamespace(resource_name: str,
                           args: WorkersKvNamespaceArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkersKvNamespace(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           account_id: Optional[str] = None,
                           title: Optional[str] = None)
    func NewWorkersKvNamespace(ctx *Context, name string, args WorkersKvNamespaceArgs, opts ...ResourceOption) (*WorkersKvNamespace, error)
    public WorkersKvNamespace(string name, WorkersKvNamespaceArgs args, CustomResourceOptions? opts = null)
    public WorkersKvNamespace(String name, WorkersKvNamespaceArgs args)
    public WorkersKvNamespace(String name, WorkersKvNamespaceArgs args, CustomResourceOptions options)
    
    type: cloudflare:WorkersKvNamespace
    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 WorkersKvNamespaceArgs
    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 WorkersKvNamespaceArgs
    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 WorkersKvNamespaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkersKvNamespaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkersKvNamespaceArgs
    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 workersKvNamespaceResource = new Cloudflare.WorkersKvNamespace("workersKvNamespaceResource", new()
    {
        AccountId = "string",
        Title = "string",
    });
    
    example, err := cloudflare.NewWorkersKvNamespace(ctx, "workersKvNamespaceResource", &cloudflare.WorkersKvNamespaceArgs{
    	AccountId: pulumi.String("string"),
    	Title:     pulumi.String("string"),
    })
    
    var workersKvNamespaceResource = new WorkersKvNamespace("workersKvNamespaceResource", WorkersKvNamespaceArgs.builder()
        .accountId("string")
        .title("string")
        .build());
    
    workers_kv_namespace_resource = cloudflare.WorkersKvNamespace("workersKvNamespaceResource",
        account_id="string",
        title="string")
    
    const workersKvNamespaceResource = new cloudflare.WorkersKvNamespace("workersKvNamespaceResource", {
        accountId: "string",
        title: "string",
    });
    
    type: cloudflare:WorkersKvNamespace
    properties:
        accountId: string
        title: string
    

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

    AccountId string
    Identifier
    Title string
    A human-readable string name for a Namespace.
    AccountId string
    Identifier
    Title string
    A human-readable string name for a Namespace.
    accountId String
    Identifier
    title String
    A human-readable string name for a Namespace.
    accountId string
    Identifier
    title string
    A human-readable string name for a Namespace.
    account_id str
    Identifier
    title str
    A human-readable string name for a Namespace.
    accountId String
    Identifier
    title String
    A human-readable string name for a Namespace.

    Outputs

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

    Beta bool
    True if new beta namespace, with additional preview features.
    Id string
    The provider-assigned unique ID for this managed resource.
    SupportsUrlEncoding bool
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    Beta bool
    True if new beta namespace, with additional preview features.
    Id string
    The provider-assigned unique ID for this managed resource.
    SupportsUrlEncoding bool
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    beta Boolean
    True if new beta namespace, with additional preview features.
    id String
    The provider-assigned unique ID for this managed resource.
    supportsUrlEncoding Boolean
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    beta boolean
    True if new beta namespace, with additional preview features.
    id string
    The provider-assigned unique ID for this managed resource.
    supportsUrlEncoding boolean
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    beta bool
    True if new beta namespace, with additional preview features.
    id str
    The provider-assigned unique ID for this managed resource.
    supports_url_encoding bool
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    beta Boolean
    True if new beta namespace, with additional preview features.
    id String
    The provider-assigned unique ID for this managed resource.
    supportsUrlEncoding Boolean
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".

    Look up Existing WorkersKvNamespace Resource

    Get an existing WorkersKvNamespace 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?: WorkersKvNamespaceState, opts?: CustomResourceOptions): WorkersKvNamespace
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            beta: Optional[bool] = None,
            supports_url_encoding: Optional[bool] = None,
            title: Optional[str] = None) -> WorkersKvNamespace
    func GetWorkersKvNamespace(ctx *Context, name string, id IDInput, state *WorkersKvNamespaceState, opts ...ResourceOption) (*WorkersKvNamespace, error)
    public static WorkersKvNamespace Get(string name, Input<string> id, WorkersKvNamespaceState? state, CustomResourceOptions? opts = null)
    public static WorkersKvNamespace get(String name, Output<String> id, WorkersKvNamespaceState state, CustomResourceOptions options)
    resources:  _:    type: cloudflare:WorkersKvNamespace    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:
    AccountId string
    Identifier
    Beta bool
    True if new beta namespace, with additional preview features.
    SupportsUrlEncoding bool
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    Title string
    A human-readable string name for a Namespace.
    AccountId string
    Identifier
    Beta bool
    True if new beta namespace, with additional preview features.
    SupportsUrlEncoding bool
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    Title string
    A human-readable string name for a Namespace.
    accountId String
    Identifier
    beta Boolean
    True if new beta namespace, with additional preview features.
    supportsUrlEncoding Boolean
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    title String
    A human-readable string name for a Namespace.
    accountId string
    Identifier
    beta boolean
    True if new beta namespace, with additional preview features.
    supportsUrlEncoding boolean
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    title string
    A human-readable string name for a Namespace.
    account_id str
    Identifier
    beta bool
    True if new beta namespace, with additional preview features.
    supports_url_encoding bool
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    title str
    A human-readable string name for a Namespace.
    accountId String
    Identifier
    beta Boolean
    True if new beta namespace, with additional preview features.
    supportsUrlEncoding Boolean
    True if keys written on the URL will be URL-decoded before storing. For example, if set to "true", a key written on the URL as "%3F" will be stored as "?".
    title String
    A human-readable string name for a Namespace.

    Import

    $ pulumi import cloudflare:index/workersKvNamespace:WorkersKvNamespace example '<account_id>/<namespace_id>'
    

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

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi