1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. TsfMicroservice
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.TsfMicroservice

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a tsf microservice

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const microservice = new tencentcloud.TsfMicroservice("microservice", {
        microserviceDesc: "desc-microservice",
        microserviceName: "test-microservice",
        namespaceId: "namespace-vjlkzkgy",
        tags: {
            createdBy: "terraform",
        },
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    microservice = tencentcloud.TsfMicroservice("microservice",
        microservice_desc="desc-microservice",
        microservice_name="test-microservice",
        namespace_id="namespace-vjlkzkgy",
        tags={
            "createdBy": "terraform",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewTsfMicroservice(ctx, "microservice", &tencentcloud.TsfMicroserviceArgs{
    			MicroserviceDesc: pulumi.String("desc-microservice"),
    			MicroserviceName: pulumi.String("test-microservice"),
    			NamespaceId:      pulumi.String("namespace-vjlkzkgy"),
    			Tags: pulumi.StringMap{
    				"createdBy": pulumi.String("terraform"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var microservice = new Tencentcloud.TsfMicroservice("microservice", new()
        {
            MicroserviceDesc = "desc-microservice",
            MicroserviceName = "test-microservice",
            NamespaceId = "namespace-vjlkzkgy",
            Tags = 
            {
                { "createdBy", "terraform" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TsfMicroservice;
    import com.pulumi.tencentcloud.TsfMicroserviceArgs;
    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 microservice = new TsfMicroservice("microservice", TsfMicroserviceArgs.builder()
                .microserviceDesc("desc-microservice")
                .microserviceName("test-microservice")
                .namespaceId("namespace-vjlkzkgy")
                .tags(Map.of("createdBy", "terraform"))
                .build());
    
        }
    }
    
    resources:
      microservice:
        type: tencentcloud:TsfMicroservice
        properties:
          microserviceDesc: desc-microservice
          microserviceName: test-microservice
          namespaceId: namespace-vjlkzkgy
          tags:
            createdBy: terraform
    

    Create TsfMicroservice Resource

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

    Constructor syntax

    new TsfMicroservice(name: string, args: TsfMicroserviceArgs, opts?: CustomResourceOptions);
    @overload
    def TsfMicroservice(resource_name: str,
                        args: TsfMicroserviceArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def TsfMicroservice(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        microservice_name: Optional[str] = None,
                        namespace_id: Optional[str] = None,
                        microservice_desc: Optional[str] = None,
                        tags: Optional[Mapping[str, str]] = None,
                        tsf_microservice_id: Optional[str] = None)
    func NewTsfMicroservice(ctx *Context, name string, args TsfMicroserviceArgs, opts ...ResourceOption) (*TsfMicroservice, error)
    public TsfMicroservice(string name, TsfMicroserviceArgs args, CustomResourceOptions? opts = null)
    public TsfMicroservice(String name, TsfMicroserviceArgs args)
    public TsfMicroservice(String name, TsfMicroserviceArgs args, CustomResourceOptions options)
    
    type: tencentcloud:TsfMicroservice
    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 TsfMicroserviceArgs
    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 TsfMicroserviceArgs
    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 TsfMicroserviceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TsfMicroserviceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TsfMicroserviceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    MicroserviceName string
    Microservice name.
    NamespaceId string
    Namespace ID.
    MicroserviceDesc string
    Microservice description information.
    Tags Dictionary<string, string>
    Tag description list.
    TsfMicroserviceId string
    ID of the resource.
    MicroserviceName string
    Microservice name.
    NamespaceId string
    Namespace ID.
    MicroserviceDesc string
    Microservice description information.
    Tags map[string]string
    Tag description list.
    TsfMicroserviceId string
    ID of the resource.
    microserviceName String
    Microservice name.
    namespaceId String
    Namespace ID.
    microserviceDesc String
    Microservice description information.
    tags Map<String,String>
    Tag description list.
    tsfMicroserviceId String
    ID of the resource.
    microserviceName string
    Microservice name.
    namespaceId string
    Namespace ID.
    microserviceDesc string
    Microservice description information.
    tags {[key: string]: string}
    Tag description list.
    tsfMicroserviceId string
    ID of the resource.
    microservice_name str
    Microservice name.
    namespace_id str
    Namespace ID.
    microservice_desc str
    Microservice description information.
    tags Mapping[str, str]
    Tag description list.
    tsf_microservice_id str
    ID of the resource.
    microserviceName String
    Microservice name.
    namespaceId String
    Namespace ID.
    microserviceDesc String
    Microservice description information.
    tags Map<String>
    Tag description list.
    tsfMicroserviceId String
    ID of the resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing TsfMicroservice Resource

    Get an existing TsfMicroservice 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?: TsfMicroserviceState, opts?: CustomResourceOptions): TsfMicroservice
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            microservice_desc: Optional[str] = None,
            microservice_name: Optional[str] = None,
            namespace_id: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tsf_microservice_id: Optional[str] = None) -> TsfMicroservice
    func GetTsfMicroservice(ctx *Context, name string, id IDInput, state *TsfMicroserviceState, opts ...ResourceOption) (*TsfMicroservice, error)
    public static TsfMicroservice Get(string name, Input<string> id, TsfMicroserviceState? state, CustomResourceOptions? opts = null)
    public static TsfMicroservice get(String name, Output<String> id, TsfMicroserviceState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:TsfMicroservice    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:
    MicroserviceDesc string
    Microservice description information.
    MicroserviceName string
    Microservice name.
    NamespaceId string
    Namespace ID.
    Tags Dictionary<string, string>
    Tag description list.
    TsfMicroserviceId string
    ID of the resource.
    MicroserviceDesc string
    Microservice description information.
    MicroserviceName string
    Microservice name.
    NamespaceId string
    Namespace ID.
    Tags map[string]string
    Tag description list.
    TsfMicroserviceId string
    ID of the resource.
    microserviceDesc String
    Microservice description information.
    microserviceName String
    Microservice name.
    namespaceId String
    Namespace ID.
    tags Map<String,String>
    Tag description list.
    tsfMicroserviceId String
    ID of the resource.
    microserviceDesc string
    Microservice description information.
    microserviceName string
    Microservice name.
    namespaceId string
    Namespace ID.
    tags {[key: string]: string}
    Tag description list.
    tsfMicroserviceId string
    ID of the resource.
    microservice_desc str
    Microservice description information.
    microservice_name str
    Microservice name.
    namespace_id str
    Namespace ID.
    tags Mapping[str, str]
    Tag description list.
    tsf_microservice_id str
    ID of the resource.
    microserviceDesc String
    Microservice description information.
    microserviceName String
    Microservice name.
    namespaceId String
    Namespace ID.
    tags Map<String>
    Tag description list.
    tsfMicroserviceId String
    ID of the resource.

    Import

    tsf microservice can be imported using the namespaceId#microserviceId, e.g.

    $ pulumi import tencentcloud:index/tsfMicroservice:TsfMicroservice microservice namespace-vjlkzkgy#ms-vjeb43lw
    

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

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack