1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. quotas
  5. TemplateService
Viewing docs for Alibaba Cloud v3.97.0
published on Saturday, Mar 14, 2026 by Pulumi
alicloud logo
Viewing docs for Alibaba Cloud v3.97.0
published on Saturday, Mar 14, 2026 by Pulumi

    Provides a Quotas Template Service resource.

    Quota Template Service.

    For information about Quotas Template Service and how to use it, see What is Template Service.

    NOTE: Available since v1.230.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const _default = new alicloud.quotas.TemplateService("default", {serviceStatus: 1});
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.quotas.TemplateService("default", service_status=1)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/quotas"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_, err := quotas.NewTemplateService(ctx, "default", &quotas.TemplateServiceArgs{
    			ServiceStatus: pulumi.Int(1),
    		})
    		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 config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var @default = new AliCloud.Quotas.TemplateService("default", new()
        {
            ServiceStatus = 1,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.quotas.TemplateService;
    import com.pulumi.alicloud.quotas.TemplateServiceArgs;
    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) {
            final var config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            var default_ = new TemplateService("default", TemplateServiceArgs.builder()
                .serviceStatus(1)
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      default:
        type: alicloud:quotas:TemplateService
        properties:
          serviceStatus: '1'
    

    Deleting alicloud.quotas.TemplateService or removing it from your configuration

    Terraform cannot destroy resource alicloud.quotas.TemplateService. Terraform will remove this resource from the state file, however resources may remain.

    📚 Need more examples? VIEW MORE EXAMPLES

    Create TemplateService Resource

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

    Constructor syntax

    new TemplateService(name: string, args: TemplateServiceArgs, opts?: CustomResourceOptions);
    @overload
    def TemplateService(resource_name: str,
                        args: TemplateServiceArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def TemplateService(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        service_status: Optional[int] = None)
    func NewTemplateService(ctx *Context, name string, args TemplateServiceArgs, opts ...ResourceOption) (*TemplateService, error)
    public TemplateService(string name, TemplateServiceArgs args, CustomResourceOptions? opts = null)
    public TemplateService(String name, TemplateServiceArgs args)
    public TemplateService(String name, TemplateServiceArgs args, CustomResourceOptions options)
    
    type: alicloud:quotas:TemplateService
    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 TemplateServiceArgs
    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 TemplateServiceArgs
    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 TemplateServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TemplateServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TemplateServiceArgs
    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 templateServiceResource = new AliCloud.Quotas.TemplateService("templateServiceResource", new()
    {
        ServiceStatus = 0,
    });
    
    example, err := quotas.NewTemplateService(ctx, "templateServiceResource", &quotas.TemplateServiceArgs{
    	ServiceStatus: pulumi.Int(0),
    })
    
    var templateServiceResource = new TemplateService("templateServiceResource", TemplateServiceArgs.builder()
        .serviceStatus(0)
        .build());
    
    template_service_resource = alicloud.quotas.TemplateService("templateServiceResource", service_status=0)
    
    const templateServiceResource = new alicloud.quotas.TemplateService("templateServiceResource", {serviceStatus: 0});
    
    type: alicloud:quotas:TemplateService
    properties:
        serviceStatus: 0
    

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

    ServiceStatus int
    Status of the quota template. Valid values:

    • -1: disabled.
    ServiceStatus int
    Status of the quota template. Valid values:

    • -1: disabled.
    serviceStatus Integer
    Status of the quota template. Valid values:

    • -1: disabled.
    serviceStatus number
    Status of the quota template. Valid values:

    • -1: disabled.
    service_status int
    Status of the quota template. Valid values:

    • -1: disabled.
    serviceStatus Number
    Status of the quota template. Valid values:

    • -1: disabled.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TemplateService 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 TemplateService Resource

    Get an existing TemplateService 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?: TemplateServiceState, opts?: CustomResourceOptions): TemplateService
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            service_status: Optional[int] = None) -> TemplateService
    func GetTemplateService(ctx *Context, name string, id IDInput, state *TemplateServiceState, opts ...ResourceOption) (*TemplateService, error)
    public static TemplateService Get(string name, Input<string> id, TemplateServiceState? state, CustomResourceOptions? opts = null)
    public static TemplateService get(String name, Output<String> id, TemplateServiceState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:quotas:TemplateService    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:
    ServiceStatus int
    Status of the quota template. Valid values:

    • -1: disabled.
    ServiceStatus int
    Status of the quota template. Valid values:

    • -1: disabled.
    serviceStatus Integer
    Status of the quota template. Valid values:

    • -1: disabled.
    serviceStatus number
    Status of the quota template. Valid values:

    • -1: disabled.
    service_status int
    Status of the quota template. Valid values:

    • -1: disabled.
    serviceStatus Number
    Status of the quota template. Valid values:

    • -1: disabled.

    Import

    Quotas Template Service can be imported using the id, e.g.

    $ terraform import alicloud_quotas_template_service.example 
    

    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.
    alicloud logo
    Viewing docs for Alibaba Cloud v3.97.0
    published on Saturday, Mar 14, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.