alicloud.esa.KvNamespace
Explore with Pulumi AI
Provides a ESA Kv Namespace resource.
For information about ESA Kv Namespace and how to use it, see What is Kv Namespace.
NOTE: Available since v1.244.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = new alicloud.esa.KvNamespace("default", {
description: "this is a example namespace.",
kvNamespace: "example_namespace",
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.esa.KvNamespace("default",
description="this is a example namespace.",
kv_namespace="example_namespace")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/esa"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := esa.NewKvNamespace(ctx, "default", &esa.KvNamespaceArgs{
Description: pulumi.String("this is a example namespace."),
KvNamespace: pulumi.String("example_namespace"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = new AliCloud.Esa.KvNamespace("default", new()
{
Description = "this is a example namespace.",
NamespaceValue = "example_namespace",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.esa.KvNamespace;
import com.pulumi.alicloud.esa.KvNamespaceArgs;
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 default_ = new KvNamespace("default", KvNamespaceArgs.builder()
.description("this is a example namespace.")
.kvNamespace("example_namespace")
.build());
}
}
resources:
default:
type: alicloud:esa:KvNamespace
properties:
description: this is a example namespace.
kvNamespace: example_namespace
Create KvNamespace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KvNamespace(name: string, args: KvNamespaceArgs, opts?: CustomResourceOptions);
@overload
def KvNamespace(resource_name: str,
args: KvNamespaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KvNamespace(resource_name: str,
opts: Optional[ResourceOptions] = None,
kv_namespace: Optional[str] = None,
description: Optional[str] = None)
func NewKvNamespace(ctx *Context, name string, args KvNamespaceArgs, opts ...ResourceOption) (*KvNamespace, error)
public KvNamespace(string name, KvNamespaceArgs args, CustomResourceOptions? opts = null)
public KvNamespace(String name, KvNamespaceArgs args)
public KvNamespace(String name, KvNamespaceArgs args, CustomResourceOptions options)
type: alicloud:esa:KvNamespace
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 KvNamespaceArgs
- 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 KvNamespaceArgs
- 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 KvNamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KvNamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KvNamespaceArgs
- 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 alicloudKvNamespaceResource = new AliCloud.Esa.KvNamespace("alicloudKvNamespaceResource", new()
{
NamespaceValue = "string",
Description = "string",
});
example, err := esa.NewKvNamespace(ctx, "alicloudKvNamespaceResource", &esa.KvNamespaceArgs{
KvNamespace: pulumi.String("string"),
Description: pulumi.String("string"),
})
var alicloudKvNamespaceResource = new KvNamespace("alicloudKvNamespaceResource", KvNamespaceArgs.builder()
.kvNamespace("string")
.description("string")
.build());
alicloud_kv_namespace_resource = alicloud.esa.KvNamespace("alicloudKvNamespaceResource",
kv_namespace="string",
description="string")
const alicloudKvNamespaceResource = new alicloud.esa.KvNamespace("alicloudKvNamespaceResource", {
kvNamespace: "string",
description: "string",
});
type: alicloud:esa:KvNamespace
properties:
description: string
kvNamespace: string
KvNamespace 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 KvNamespace resource accepts the following input properties:
- Namespace
Value string - KV storage space name
- Description string
- The description of the namespace.
- Kv
Namespace string - KV storage space name
- Description string
- The description of the namespace.
- kv
Namespace String - KV storage space name
- description String
- The description of the namespace.
- kv
Namespace string - KV storage space name
- description string
- The description of the namespace.
- kv_
namespace str - KV storage space name
- description str
- The description of the namespace.
- kv
Namespace String - KV storage space name
- description String
- The description of the namespace.
Outputs
All input properties are implicitly available as output properties. Additionally, the KvNamespace resource produces the following output properties:
Look up Existing KvNamespace Resource
Get an existing KvNamespace 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?: KvNamespaceState, opts?: CustomResourceOptions): KvNamespace
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
kv_namespace: Optional[str] = None,
status: Optional[str] = None) -> KvNamespace
func GetKvNamespace(ctx *Context, name string, id IDInput, state *KvNamespaceState, opts ...ResourceOption) (*KvNamespace, error)
public static KvNamespace Get(string name, Input<string> id, KvNamespaceState? state, CustomResourceOptions? opts = null)
public static KvNamespace get(String name, Output<String> id, KvNamespaceState state, CustomResourceOptions options)
resources: _: type: alicloud:esa:KvNamespace 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.
- Description string
- The description of the namespace.
- Namespace
Value string - KV storage space name
- Status string
- KV storage space State
- Description string
- The description of the namespace.
- Kv
Namespace string - KV storage space name
- Status string
- KV storage space State
- description String
- The description of the namespace.
- kv
Namespace String - KV storage space name
- status String
- KV storage space State
- description string
- The description of the namespace.
- kv
Namespace string - KV storage space name
- status string
- KV storage space State
- description str
- The description of the namespace.
- kv_
namespace str - KV storage space name
- status str
- KV storage space State
- description String
- The description of the namespace.
- kv
Namespace String - KV storage space name
- status String
- KV storage space State
Import
ESA Kv Namespace can be imported using the id, e.g.
$ pulumi import alicloud:esa/kvNamespace:KvNamespace example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.