published on Saturday, Mar 14, 2026 by Pulumi
published on Saturday, Mar 14, 2026 by Pulumi
Provides a Max Compute Tunnel Quota Timer resource.
For information about Max Compute Tunnel Quota Timer and how to use it, see What is Tunnel Quota Timer.
DEPRECATED: This resource has been deprecated from version
1.260.0.
NOTE: Deprecated since v1.260.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.maxcompute.TunnelQuotaTimer("default", {
quotaTimers: [
{
beginTime: "00:00",
endTime: "01:00",
tunnelQuotaParameter: {
slotNum: 50,
elasticReservedSlotNum: 50,
},
},
{
beginTime: "01:00",
endTime: "02:00",
tunnelQuotaParameter: {
slotNum: 50,
elasticReservedSlotNum: 50,
},
},
{
beginTime: "02:00",
endTime: "24:00",
tunnelQuotaParameter: {
slotNum: 50,
elasticReservedSlotNum: 50,
},
},
],
nickname: "ot_terraform_p",
timeZone: "Asia/Shanghai",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.maxcompute.TunnelQuotaTimer("default",
quota_timers=[
{
"begin_time": "00:00",
"end_time": "01:00",
"tunnel_quota_parameter": {
"slot_num": 50,
"elastic_reserved_slot_num": 50,
},
},
{
"begin_time": "01:00",
"end_time": "02:00",
"tunnel_quota_parameter": {
"slot_num": 50,
"elastic_reserved_slot_num": 50,
},
},
{
"begin_time": "02:00",
"end_time": "24:00",
"tunnel_quota_parameter": {
"slot_num": 50,
"elastic_reserved_slot_num": 50,
},
},
],
nickname="ot_terraform_p",
time_zone="Asia/Shanghai")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/maxcompute"
"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 := maxcompute.NewTunnelQuotaTimer(ctx, "default", &maxcompute.TunnelQuotaTimerArgs{
QuotaTimers: maxcompute.TunnelQuotaTimerQuotaTimerArray{
&maxcompute.TunnelQuotaTimerQuotaTimerArgs{
BeginTime: pulumi.String("00:00"),
EndTime: pulumi.String("01:00"),
TunnelQuotaParameter: &maxcompute.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs{
SlotNum: pulumi.Int(50),
ElasticReservedSlotNum: pulumi.Int(50),
},
},
&maxcompute.TunnelQuotaTimerQuotaTimerArgs{
BeginTime: pulumi.String("01:00"),
EndTime: pulumi.String("02:00"),
TunnelQuotaParameter: &maxcompute.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs{
SlotNum: pulumi.Int(50),
ElasticReservedSlotNum: pulumi.Int(50),
},
},
&maxcompute.TunnelQuotaTimerQuotaTimerArgs{
BeginTime: pulumi.String("02:00"),
EndTime: pulumi.String("24:00"),
TunnelQuotaParameter: &maxcompute.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs{
SlotNum: pulumi.Int(50),
ElasticReservedSlotNum: pulumi.Int(50),
},
},
},
Nickname: pulumi.String("ot_terraform_p"),
TimeZone: pulumi.String("Asia/Shanghai"),
})
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.MaxCompute.TunnelQuotaTimer("default", new()
{
QuotaTimers = new[]
{
new AliCloud.MaxCompute.Inputs.TunnelQuotaTimerQuotaTimerArgs
{
BeginTime = "00:00",
EndTime = "01:00",
TunnelQuotaParameter = new AliCloud.MaxCompute.Inputs.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs
{
SlotNum = 50,
ElasticReservedSlotNum = 50,
},
},
new AliCloud.MaxCompute.Inputs.TunnelQuotaTimerQuotaTimerArgs
{
BeginTime = "01:00",
EndTime = "02:00",
TunnelQuotaParameter = new AliCloud.MaxCompute.Inputs.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs
{
SlotNum = 50,
ElasticReservedSlotNum = 50,
},
},
new AliCloud.MaxCompute.Inputs.TunnelQuotaTimerQuotaTimerArgs
{
BeginTime = "02:00",
EndTime = "24:00",
TunnelQuotaParameter = new AliCloud.MaxCompute.Inputs.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs
{
SlotNum = 50,
ElasticReservedSlotNum = 50,
},
},
},
Nickname = "ot_terraform_p",
TimeZone = "Asia/Shanghai",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.maxcompute.TunnelQuotaTimer;
import com.pulumi.alicloud.maxcompute.TunnelQuotaTimerArgs;
import com.pulumi.alicloud.maxcompute.inputs.TunnelQuotaTimerQuotaTimerArgs;
import com.pulumi.alicloud.maxcompute.inputs.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs;
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 TunnelQuotaTimer("default", TunnelQuotaTimerArgs.builder()
.quotaTimers(
TunnelQuotaTimerQuotaTimerArgs.builder()
.beginTime("00:00")
.endTime("01:00")
.tunnelQuotaParameter(TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs.builder()
.slotNum(50)
.elasticReservedSlotNum(50)
.build())
.build(),
TunnelQuotaTimerQuotaTimerArgs.builder()
.beginTime("01:00")
.endTime("02:00")
.tunnelQuotaParameter(TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs.builder()
.slotNum(50)
.elasticReservedSlotNum(50)
.build())
.build(),
TunnelQuotaTimerQuotaTimerArgs.builder()
.beginTime("02:00")
.endTime("24:00")
.tunnelQuotaParameter(TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs.builder()
.slotNum(50)
.elasticReservedSlotNum(50)
.build())
.build())
.nickname("ot_terraform_p")
.timeZone("Asia/Shanghai")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:maxcompute:TunnelQuotaTimer
properties:
quotaTimers:
- beginTime: 00:00
endTime: 01:00
tunnelQuotaParameter:
slotNum: '50'
elasticReservedSlotNum: '50'
- beginTime: 01:00
endTime: 02:00
tunnelQuotaParameter:
slotNum: '50'
elasticReservedSlotNum: '50'
- beginTime: 02:00
endTime: 24:00
tunnelQuotaParameter:
slotNum: '50'
elasticReservedSlotNum: '50'
nickname: ot_terraform_p
timeZone: Asia/Shanghai
Deleting alicloud.maxcompute.TunnelQuotaTimer or removing it from your configuration
Terraform cannot destroy resource alicloud.maxcompute.TunnelQuotaTimer. Terraform will remove this resource from the state file, however resources may remain.
📚 Need more examples? VIEW MORE EXAMPLES
Create TunnelQuotaTimer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TunnelQuotaTimer(name: string, args: TunnelQuotaTimerArgs, opts?: CustomResourceOptions);@overload
def TunnelQuotaTimer(resource_name: str,
args: TunnelQuotaTimerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TunnelQuotaTimer(resource_name: str,
opts: Optional[ResourceOptions] = None,
nickname: Optional[str] = None,
quota_timers: Optional[Sequence[TunnelQuotaTimerQuotaTimerArgs]] = None,
time_zone: Optional[str] = None)func NewTunnelQuotaTimer(ctx *Context, name string, args TunnelQuotaTimerArgs, opts ...ResourceOption) (*TunnelQuotaTimer, error)public TunnelQuotaTimer(string name, TunnelQuotaTimerArgs args, CustomResourceOptions? opts = null)
public TunnelQuotaTimer(String name, TunnelQuotaTimerArgs args)
public TunnelQuotaTimer(String name, TunnelQuotaTimerArgs args, CustomResourceOptions options)
type: alicloud:maxcompute:TunnelQuotaTimer
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 TunnelQuotaTimerArgs
- 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 TunnelQuotaTimerArgs
- 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 TunnelQuotaTimerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TunnelQuotaTimerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TunnelQuotaTimerArgs
- 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 tunnelQuotaTimerResource = new AliCloud.MaxCompute.TunnelQuotaTimer("tunnelQuotaTimerResource", new()
{
Nickname = "string",
QuotaTimers = new[]
{
new AliCloud.MaxCompute.Inputs.TunnelQuotaTimerQuotaTimerArgs
{
BeginTime = "string",
EndTime = "string",
TunnelQuotaParameter = new AliCloud.MaxCompute.Inputs.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs
{
ElasticReservedSlotNum = 0,
SlotNum = 0,
},
},
},
TimeZone = "string",
});
example, err := maxcompute.NewTunnelQuotaTimer(ctx, "tunnelQuotaTimerResource", &maxcompute.TunnelQuotaTimerArgs{
Nickname: pulumi.String("string"),
QuotaTimers: maxcompute.TunnelQuotaTimerQuotaTimerArray{
&maxcompute.TunnelQuotaTimerQuotaTimerArgs{
BeginTime: pulumi.String("string"),
EndTime: pulumi.String("string"),
TunnelQuotaParameter: &maxcompute.TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs{
ElasticReservedSlotNum: pulumi.Int(0),
SlotNum: pulumi.Int(0),
},
},
},
TimeZone: pulumi.String("string"),
})
var tunnelQuotaTimerResource = new TunnelQuotaTimer("tunnelQuotaTimerResource", TunnelQuotaTimerArgs.builder()
.nickname("string")
.quotaTimers(TunnelQuotaTimerQuotaTimerArgs.builder()
.beginTime("string")
.endTime("string")
.tunnelQuotaParameter(TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs.builder()
.elasticReservedSlotNum(0)
.slotNum(0)
.build())
.build())
.timeZone("string")
.build());
tunnel_quota_timer_resource = alicloud.maxcompute.TunnelQuotaTimer("tunnelQuotaTimerResource",
nickname="string",
quota_timers=[{
"begin_time": "string",
"end_time": "string",
"tunnel_quota_parameter": {
"elastic_reserved_slot_num": 0,
"slot_num": 0,
},
}],
time_zone="string")
const tunnelQuotaTimerResource = new alicloud.maxcompute.TunnelQuotaTimer("tunnelQuotaTimerResource", {
nickname: "string",
quotaTimers: [{
beginTime: "string",
endTime: "string",
tunnelQuotaParameter: {
elasticReservedSlotNum: 0,
slotNum: 0,
},
}],
timeZone: "string",
});
type: alicloud:maxcompute:TunnelQuotaTimer
properties:
nickname: string
quotaTimers:
- beginTime: string
endTime: string
tunnelQuotaParameter:
elasticReservedSlotNum: 0
slotNum: 0
timeZone: string
TunnelQuotaTimer 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 TunnelQuotaTimer resource accepts the following input properties:
- Nickname string
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- Quota
Timers List<Pulumi.Ali Cloud. Max Compute. Inputs. Tunnel Quota Timer Quota Timer> Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- Time
Zone string - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- Nickname string
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- Quota
Timers []TunnelQuota Timer Quota Timer Args Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- Time
Zone string - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- nickname String
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- quota
Timers List<TunnelQuota Timer Quota Timer> Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- time
Zone String - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- nickname string
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- quota
Timers TunnelQuota Timer Quota Timer[] Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- time
Zone string - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- nickname str
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- quota_
timers Sequence[TunnelQuota Timer Quota Timer Args] Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- time_
zone str - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- nickname String
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- quota
Timers List<Property Map> Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- time
Zone String - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
Outputs
All input properties are implicitly available as output properties. Additionally, the TunnelQuotaTimer 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 TunnelQuotaTimer Resource
Get an existing TunnelQuotaTimer 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?: TunnelQuotaTimerState, opts?: CustomResourceOptions): TunnelQuotaTimer@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
nickname: Optional[str] = None,
quota_timers: Optional[Sequence[TunnelQuotaTimerQuotaTimerArgs]] = None,
time_zone: Optional[str] = None) -> TunnelQuotaTimerfunc GetTunnelQuotaTimer(ctx *Context, name string, id IDInput, state *TunnelQuotaTimerState, opts ...ResourceOption) (*TunnelQuotaTimer, error)public static TunnelQuotaTimer Get(string name, Input<string> id, TunnelQuotaTimerState? state, CustomResourceOptions? opts = null)public static TunnelQuotaTimer get(String name, Output<String> id, TunnelQuotaTimerState state, CustomResourceOptions options)resources: _: type: alicloud:maxcompute:TunnelQuotaTimer 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.
- Nickname string
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- Quota
Timers List<Pulumi.Ali Cloud. Max Compute. Inputs. Tunnel Quota Timer Quota Timer> Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- Time
Zone string - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- Nickname string
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- Quota
Timers []TunnelQuota Timer Quota Timer Args Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- Time
Zone string - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- nickname String
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- quota
Timers List<TunnelQuota Timer Quota Timer> Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- time
Zone String - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- nickname string
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- quota
Timers TunnelQuota Timer Quota Timer[] Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- time
Zone string - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- nickname str
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- quota_
timers Sequence[TunnelQuota Timer Quota Timer Args] Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- time_
zone str - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
- nickname String
- The nickname of the exclusive Resource Group (Tunnel Quota) for the level - 1 data transmission service.
- quota
Timers List<Property Map> Time-Sharing configuration
NOTE: -- The same reserved Quota resource group supports up to 48 time intervals. The minimum duration of a time interval is 30 minutes. -- After the current data transmission service is configured for time-sharing, if you need to perform a downgrade operation on the data transmission service (package year and month), please reduce the time-sharing concurrency first. -- The effective time of the time-sharing configuration is 0 to 5 minutes, and the billing will be calculated according to the actual effective time. -- Please make sure to set the time range completely from 00:00 to 24:00 See
quota_timerbelow.- time
Zone String - Time zone, reference: Asia/Shanghai In general, the system will automatically generate the time zone according to the region without configuration.
Supporting Types
TunnelQuotaTimerQuotaTimer, TunnelQuotaTimerQuotaTimerArgs
- Begin
Time string - The time-sharing configuration start time. Reference value: 00:00
- End
Time string - The end time of the timesharing configuration. Reference value: 24:00
- Tunnel
Quota Pulumi.Parameter Ali Cloud. Max Compute. Inputs. Tunnel Quota Timer Quota Timer Tunnel Quota Parameter - Time-sharing configuration parameters. See
tunnel_quota_parameterbelow.
- Begin
Time string - The time-sharing configuration start time. Reference value: 00:00
- End
Time string - The end time of the timesharing configuration. Reference value: 24:00
- Tunnel
Quota TunnelParameter Quota Timer Quota Timer Tunnel Quota Parameter - Time-sharing configuration parameters. See
tunnel_quota_parameterbelow.
- begin
Time String - The time-sharing configuration start time. Reference value: 00:00
- end
Time String - The end time of the timesharing configuration. Reference value: 24:00
- tunnel
Quota TunnelParameter Quota Timer Quota Timer Tunnel Quota Parameter - Time-sharing configuration parameters. See
tunnel_quota_parameterbelow.
- begin
Time string - The time-sharing configuration start time. Reference value: 00:00
- end
Time string - The end time of the timesharing configuration. Reference value: 24:00
- tunnel
Quota TunnelParameter Quota Timer Quota Timer Tunnel Quota Parameter - Time-sharing configuration parameters. See
tunnel_quota_parameterbelow.
- begin_
time str - The time-sharing configuration start time. Reference value: 00:00
- end_
time str - The end time of the timesharing configuration. Reference value: 24:00
- tunnel_
quota_ Tunnelparameter Quota Timer Quota Timer Tunnel Quota Parameter - Time-sharing configuration parameters. See
tunnel_quota_parameterbelow.
- begin
Time String - The time-sharing configuration start time. Reference value: 00:00
- end
Time String - The end time of the timesharing configuration. Reference value: 24:00
- tunnel
Quota Property MapParameter - Time-sharing configuration parameters. See
tunnel_quota_parameterbelow.
TunnelQuotaTimerQuotaTimerTunnelQuotaParameter, TunnelQuotaTimerQuotaTimerTunnelQuotaParameterArgs
- Elastic
Reserved intSlot Num - The number of elastic reserved concurrency (Slot).
- Slot
Num int The number of reserved concurrency (Slot).
NOTE: The reserved concurrency (Slot) cannot be modified. The number of concurrency slots must be the same as that of the purchased tunnel quota.
- Elastic
Reserved intSlot Num - The number of elastic reserved concurrency (Slot).
- Slot
Num int The number of reserved concurrency (Slot).
NOTE: The reserved concurrency (Slot) cannot be modified. The number of concurrency slots must be the same as that of the purchased tunnel quota.
- elastic
Reserved IntegerSlot Num - The number of elastic reserved concurrency (Slot).
- slot
Num Integer The number of reserved concurrency (Slot).
NOTE: The reserved concurrency (Slot) cannot be modified. The number of concurrency slots must be the same as that of the purchased tunnel quota.
- elastic
Reserved numberSlot Num - The number of elastic reserved concurrency (Slot).
- slot
Num number The number of reserved concurrency (Slot).
NOTE: The reserved concurrency (Slot) cannot be modified. The number of concurrency slots must be the same as that of the purchased tunnel quota.
- elastic_
reserved_ intslot_ num - The number of elastic reserved concurrency (Slot).
- slot_
num int The number of reserved concurrency (Slot).
NOTE: The reserved concurrency (Slot) cannot be modified. The number of concurrency slots must be the same as that of the purchased tunnel quota.
- elastic
Reserved NumberSlot Num - The number of elastic reserved concurrency (Slot).
- slot
Num Number The number of reserved concurrency (Slot).
NOTE: The reserved concurrency (Slot) cannot be modified. The number of concurrency slots must be the same as that of the purchased tunnel quota.
Import
Max Compute Tunnel Quota Timer can be imported using the id, e.g.
$ pulumi import alicloud:maxcompute/tunnelQuotaTimer:TunnelQuotaTimer 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
alicloudTerraform Provider.
published on Saturday, Mar 14, 2026 by Pulumi
