1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. WorkersKvNamespace
Cloudflare v6.0.1 published on Wednesday, Apr 16, 2025 by Pulumi

cloudflare.WorkersKvNamespace

Explore with Pulumi AI

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",
});
Copy
import pulumi
import pulumi_cloudflare as cloudflare

example_workers_kv_namespace = cloudflare.WorkersKvNamespace("example_workers_kv_namespace",
    account_id="023e105f4ecef8ad9ca31a8372d0c353",
    title="My Own Namespace")
Copy
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
	})
}
Copy
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",
    });

});
Copy
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());

    }
}
Copy
resources:
  exampleWorkersKvNamespace:
    type: cloudflare:WorkersKvNamespace
    name: example_workers_kv_namespace
    properties:
      accountId: 023e105f4ecef8ad9ca31a8372d0c353
      title: My Own Namespace
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. WorkersKvNamespaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. WorkersKvNamespaceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WorkersKvNamespaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
example, err := cloudflare.NewWorkersKvNamespace(ctx, "workersKvNamespaceResource", &cloudflare.WorkersKvNamespaceArgs{
	AccountId: pulumi.String("string"),
	Title:     pulumi.String("string"),
})
Copy
var workersKvNamespaceResource = new WorkersKvNamespace("workersKvNamespaceResource", WorkersKvNamespaceArgs.builder()
    .accountId("string")
    .title("string")
    .build());
Copy
workers_kv_namespace_resource = cloudflare.WorkersKvNamespace("workersKvNamespaceResource",
    account_id="string",
    title="string")
Copy
const workersKvNamespaceResource = new cloudflare.WorkersKvNamespace("workersKvNamespaceResource", {
    accountId: "string",
    title: "string",
});
Copy
type: cloudflare:WorkersKvNamespace
properties:
    accountId: string
    title: string
Copy

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 This property is required. string
Identifier
Title This property is required. string
A human-readable string name for a Namespace.
AccountId This property is required. string
Identifier
Title This property is required. string
A human-readable string name for a Namespace.
accountId This property is required. String
Identifier
title This property is required. String
A human-readable string name for a Namespace.
accountId This property is required. string
Identifier
title This property is required. string
A human-readable string name for a Namespace.
account_id This property is required. str
Identifier
title This property is required. str
A human-readable string name for a Namespace.
accountId This property is required. String
Identifier
title This property is required. 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:

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 "?".
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 "?".
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 "?".
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 "?".
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 "?".
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,
        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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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
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
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
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
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
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
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>'
Copy

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.