1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. ddos
  5. BasicThreshold
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.ddos.BasicThreshold

Explore with Pulumi AI

Provides a Ddos Basic Threshold resource.

For information about Ddos Basic Threshold and how to use it, see What is Threshold.

NOTE: Available since v1.183.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") || "tf-example";
const _default = alicloud.getZones({
    availableDiskCategory: "cloud_efficiency",
    availableResourceCreation: "VSwitch",
});
const defaultGetInstanceTypes = _default.then(_default => alicloud.ecs.getInstanceTypes({
    availabilityZone: _default.zones?.[0]?.id,
    instanceTypeFamily: "ecs.sn1ne",
}));
const defaultGetImages = alicloud.ecs.getImages({
    nameRegex: "^ubuntu_18.*64",
    mostRecent: true,
    owners: "system",
});
const defaultNetwork = new alicloud.vpc.Network("default", {
    vpcName: name,
    cidrBlock: "192.168.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
    vswitchName: name,
    vpcId: defaultNetwork.id,
    cidrBlock: "192.168.192.0/24",
    zoneId: _default.then(_default => _default.ids?.[0]),
});
const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("default", {
    name: name,
    vpcId: defaultNetwork.id,
});
const defaultInstance = new alicloud.ecs.Instance("default", {
    imageId: defaultGetImages.then(defaultGetImages => defaultGetImages.images?.[0]?.id),
    instanceType: defaultGetInstanceTypes.then(defaultGetInstanceTypes => defaultGetInstanceTypes.instanceTypes?.[0]?.id),
    instanceName: name,
    securityGroups: [defaultSecurityGroup].map(__item => __item.id),
    internetChargeType: "PayByTraffic",
    internetMaxBandwidthOut: 10,
    availabilityZone: _default.then(_default => _default.zones?.[0]?.id),
    instanceChargeType: "PostPaid",
    systemDiskCategory: "cloud_efficiency",
    vswitchId: defaultSwitch.id,
});
const example = new alicloud.ddos.BasicThreshold("example", {
    instanceType: "ecs",
    instanceId: defaultInstance.id,
    internetIp: defaultInstance.publicIp,
    bps: 100,
    pps: 60000,
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf-example"
default = alicloud.get_zones(available_disk_category="cloud_efficiency",
    available_resource_creation="VSwitch")
default_get_instance_types = alicloud.ecs.get_instance_types(availability_zone=default.zones[0].id,
    instance_type_family="ecs.sn1ne")
default_get_images = alicloud.ecs.get_images(name_regex="^ubuntu_18.*64",
    most_recent=True,
    owners="system")
default_network = alicloud.vpc.Network("default",
    vpc_name=name,
    cidr_block="192.168.0.0/16")
default_switch = alicloud.vpc.Switch("default",
    vswitch_name=name,
    vpc_id=default_network.id,
    cidr_block="192.168.192.0/24",
    zone_id=default.ids[0])
default_security_group = alicloud.ecs.SecurityGroup("default",
    name=name,
    vpc_id=default_network.id)
default_instance = alicloud.ecs.Instance("default",
    image_id=default_get_images.images[0].id,
    instance_type=default_get_instance_types.instance_types[0].id,
    instance_name=name,
    security_groups=[__item.id for __item in [default_security_group]],
    internet_charge_type="PayByTraffic",
    internet_max_bandwidth_out=10,
    availability_zone=default.zones[0].id,
    instance_charge_type="PostPaid",
    system_disk_category="cloud_efficiency",
    vswitch_id=default_switch.id)
example = alicloud.ddos.BasicThreshold("example",
    instance_type="ecs",
    instance_id=default_instance.id,
    internet_ip=default_instance.public_ip,
    bps=100,
    pps=60000)
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ddos"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"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 := "tf-example";
if param := cfg.Get("name"); param != ""{
name = param
}
_default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
AvailableDiskCategory: pulumi.StringRef("cloud_efficiency"),
AvailableResourceCreation: pulumi.StringRef("VSwitch"),
}, nil);
if err != nil {
return err
}
defaultGetInstanceTypes, err := ecs.GetInstanceTypes(ctx, &ecs.GetInstanceTypesArgs{
AvailabilityZone: pulumi.StringRef(_default.Zones[0].Id),
InstanceTypeFamily: pulumi.StringRef("ecs.sn1ne"),
}, nil);
if err != nil {
return err
}
defaultGetImages, err := ecs.GetImages(ctx, &ecs.GetImagesArgs{
NameRegex: pulumi.StringRef("^ubuntu_18.*64"),
MostRecent: pulumi.BoolRef(true),
Owners: pulumi.StringRef("system"),
}, nil);
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
VpcName: pulumi.String(name),
CidrBlock: pulumi.String("192.168.0.0/16"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
VswitchName: pulumi.String(name),
VpcId: defaultNetwork.ID(),
CidrBlock: pulumi.String("192.168.192.0/24"),
ZoneId: pulumi.String(_default.Ids[0]),
})
if err != nil {
return err
}
defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
Name: pulumi.String(name),
VpcId: defaultNetwork.ID(),
})
if err != nil {
return err
}
var splat0 pulumi.StringArray
for _, val0 := range %!v(PANIC=Format method: fatal: An assertion has failed: tok: ) {
splat0 = append(splat0, val0.ID())
}
defaultInstance, err := ecs.NewInstance(ctx, "default", &ecs.InstanceArgs{
ImageId: pulumi.String(defaultGetImages.Images[0].Id),
InstanceType: pulumi.String(defaultGetInstanceTypes.InstanceTypes[0].Id),
InstanceName: pulumi.String(name),
SecurityGroups: splat0,
InternetChargeType: pulumi.String("PayByTraffic"),
InternetMaxBandwidthOut: pulumi.Int(10),
AvailabilityZone: pulumi.String(_default.Zones[0].Id),
InstanceChargeType: pulumi.String("PostPaid"),
SystemDiskCategory: pulumi.String("cloud_efficiency"),
VswitchId: defaultSwitch.ID(),
})
if err != nil {
return err
}
_, err = ddos.NewBasicThreshold(ctx, "example", &ddos.BasicThresholdArgs{
InstanceType: pulumi.String("ecs"),
InstanceId: defaultInstance.ID(),
InternetIp: defaultInstance.PublicIp,
Bps: pulumi.Int(100),
Pps: pulumi.Int(60000),
})
if err != nil {
return err
}
return nil
})
}
Copy
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") ?? "tf-example";
    var @default = AliCloud.GetZones.Invoke(new()
    {
        AvailableDiskCategory = "cloud_efficiency",
        AvailableResourceCreation = "VSwitch",
    });

    var defaultGetInstanceTypes = AliCloud.Ecs.GetInstanceTypes.Invoke(new()
    {
        AvailabilityZone = @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        InstanceTypeFamily = "ecs.sn1ne",
    });

    var defaultGetImages = AliCloud.Ecs.GetImages.Invoke(new()
    {
        NameRegex = "^ubuntu_18.*64",
        MostRecent = true,
        Owners = "system",
    });

    var defaultNetwork = new AliCloud.Vpc.Network("default", new()
    {
        VpcName = name,
        CidrBlock = "192.168.0.0/16",
    });

    var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
    {
        VswitchName = name,
        VpcId = defaultNetwork.Id,
        CidrBlock = "192.168.192.0/24",
        ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Ids[0])),
    });

    var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("default", new()
    {
        Name = name,
        VpcId = defaultNetwork.Id,
    });

    var defaultInstance = new AliCloud.Ecs.Instance("default", new()
    {
        ImageId = defaultGetImages.Apply(getImagesResult => getImagesResult.Images[0]?.Id),
        InstanceType = defaultGetInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes[0]?.Id),
        InstanceName = name,
        SecurityGroups = new[]
        {
            defaultSecurityGroup,
        }.Select(__item => __item.Id).ToList(),
        InternetChargeType = "PayByTraffic",
        InternetMaxBandwidthOut = 10,
        AvailabilityZone = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
        InstanceChargeType = "PostPaid",
        SystemDiskCategory = "cloud_efficiency",
        VswitchId = defaultSwitch.Id,
    });

    var example = new AliCloud.Ddos.BasicThreshold("example", new()
    {
        InstanceType = "ecs",
        InstanceId = defaultInstance.Id,
        InternetIp = defaultInstance.PublicIp,
        Bps = 100,
        Pps = 60000,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.ecs.EcsFunctions;
import com.pulumi.alicloud.ecs.inputs.GetInstanceTypesArgs;
import com.pulumi.alicloud.ecs.inputs.GetImagesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.ecs.SecurityGroup;
import com.pulumi.alicloud.ecs.SecurityGroupArgs;
import com.pulumi.alicloud.ecs.Instance;
import com.pulumi.alicloud.ecs.InstanceArgs;
import com.pulumi.alicloud.ddos.BasicThreshold;
import com.pulumi.alicloud.ddos.BasicThresholdArgs;
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("tf-example");
        final var default = AlicloudFunctions.getZones(GetZonesArgs.builder()
            .availableDiskCategory("cloud_efficiency")
            .availableResourceCreation("VSwitch")
            .build());

        final var defaultGetInstanceTypes = EcsFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
            .availabilityZone(default_.zones()[0].id())
            .instanceTypeFamily("ecs.sn1ne")
            .build());

        final var defaultGetImages = EcsFunctions.getImages(GetImagesArgs.builder()
            .nameRegex("^ubuntu_18.*64")
            .mostRecent(true)
            .owners("system")
            .build());

        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
            .vpcName(name)
            .cidrBlock("192.168.0.0/16")
            .build());

        var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
            .vswitchName(name)
            .vpcId(defaultNetwork.id())
            .cidrBlock("192.168.192.0/24")
            .zoneId(default_.ids()[0])
            .build());

        var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()
            .name(name)
            .vpcId(defaultNetwork.id())
            .build());

        var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
            .imageId(defaultGetImages.applyValue(getImagesResult -> getImagesResult.images()[0].id()))
            .instanceType(defaultGetInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes()[0].id()))
            .instanceName(name)
            .securityGroups(defaultSecurityGroup.stream().map(element -> element.id()).collect(toList()))
            .internetChargeType("PayByTraffic")
            .internetMaxBandwidthOut("10")
            .availabilityZone(default_.zones()[0].id())
            .instanceChargeType("PostPaid")
            .systemDiskCategory("cloud_efficiency")
            .vswitchId(defaultSwitch.id())
            .build());

        var example = new BasicThreshold("example", BasicThresholdArgs.builder()
            .instanceType("ecs")
            .instanceId(defaultInstance.id())
            .internetIp(defaultInstance.publicIp())
            .bps(100)
            .pps(60000)
            .build());

    }
}
Copy
Coming soon!

Create BasicThreshold Resource

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

Constructor syntax

new BasicThreshold(name: string, args: BasicThresholdArgs, opts?: CustomResourceOptions);
@overload
def BasicThreshold(resource_name: str,
                   args: BasicThresholdArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def BasicThreshold(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   bps: Optional[int] = None,
                   instance_id: Optional[str] = None,
                   instance_type: Optional[str] = None,
                   internet_ip: Optional[str] = None,
                   pps: Optional[int] = None)
func NewBasicThreshold(ctx *Context, name string, args BasicThresholdArgs, opts ...ResourceOption) (*BasicThreshold, error)
public BasicThreshold(string name, BasicThresholdArgs args, CustomResourceOptions? opts = null)
public BasicThreshold(String name, BasicThresholdArgs args)
public BasicThreshold(String name, BasicThresholdArgs args, CustomResourceOptions options)
type: alicloud:ddos:BasicThreshold
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. BasicThresholdArgs
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. BasicThresholdArgs
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. BasicThresholdArgs
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. BasicThresholdArgs
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. BasicThresholdArgs
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 basicThresholdResource = new AliCloud.Ddos.BasicThreshold("basicThresholdResource", new()
{
    Bps = 0,
    InstanceId = "string",
    InstanceType = "string",
    InternetIp = "string",
    Pps = 0,
});
Copy
example, err := ddos.NewBasicThreshold(ctx, "basicThresholdResource", &ddos.BasicThresholdArgs{
	Bps:          pulumi.Int(0),
	InstanceId:   pulumi.String("string"),
	InstanceType: pulumi.String("string"),
	InternetIp:   pulumi.String("string"),
	Pps:          pulumi.Int(0),
})
Copy
var basicThresholdResource = new BasicThreshold("basicThresholdResource", BasicThresholdArgs.builder()
    .bps(0)
    .instanceId("string")
    .instanceType("string")
    .internetIp("string")
    .pps(0)
    .build());
Copy
basic_threshold_resource = alicloud.ddos.BasicThreshold("basicThresholdResource",
    bps=0,
    instance_id="string",
    instance_type="string",
    internet_ip="string",
    pps=0)
Copy
const basicThresholdResource = new alicloud.ddos.BasicThreshold("basicThresholdResource", {
    bps: 0,
    instanceId: "string",
    instanceType: "string",
    internetIp: "string",
    pps: 0,
});
Copy
type: alicloud:ddos:BasicThreshold
properties:
    bps: 0
    instanceId: string
    instanceType: string
    internetIp: string
    pps: 0
Copy

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

Bps This property is required. int
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
InstanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the instance.
InstanceType
This property is required.
Changes to this property will trigger replacement.
string
The type of the Instance. Valid values: ecs,slb,eip.
InternetIp
This property is required.
Changes to this property will trigger replacement.
string
The IP address of the public IP address asset.
Pps This property is required. int
The current message number cleaning threshold. Unit: pps.
Bps This property is required. int
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
InstanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the instance.
InstanceType
This property is required.
Changes to this property will trigger replacement.
string
The type of the Instance. Valid values: ecs,slb,eip.
InternetIp
This property is required.
Changes to this property will trigger replacement.
string
The IP address of the public IP address asset.
Pps This property is required. int
The current message number cleaning threshold. Unit: pps.
bps This property is required. Integer
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
instanceId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the instance.
instanceType
This property is required.
Changes to this property will trigger replacement.
String
The type of the Instance. Valid values: ecs,slb,eip.
internetIp
This property is required.
Changes to this property will trigger replacement.
String
The IP address of the public IP address asset.
pps This property is required. Integer
The current message number cleaning threshold. Unit: pps.
bps This property is required. number
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
instanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the instance.
instanceType
This property is required.
Changes to this property will trigger replacement.
string
The type of the Instance. Valid values: ecs,slb,eip.
internetIp
This property is required.
Changes to this property will trigger replacement.
string
The IP address of the public IP address asset.
pps This property is required. number
The current message number cleaning threshold. Unit: pps.
bps This property is required. int
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
instance_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the instance.
instance_type
This property is required.
Changes to this property will trigger replacement.
str
The type of the Instance. Valid values: ecs,slb,eip.
internet_ip
This property is required.
Changes to this property will trigger replacement.
str
The IP address of the public IP address asset.
pps This property is required. int
The current message number cleaning threshold. Unit: pps.
bps This property is required. Number
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
instanceId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the instance.
instanceType
This property is required.
Changes to this property will trigger replacement.
String
The type of the Instance. Valid values: ecs,slb,eip.
internetIp
This property is required.
Changes to this property will trigger replacement.
String
The IP address of the public IP address asset.
pps This property is required. Number
The current message number cleaning threshold. Unit: pps.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
MaxBps int
Maximum flow cleaning threshold. Unit: Mbps.
MaxPps int
The maximum number of messages cleaning threshold. Unit: pps.
Id string
The provider-assigned unique ID for this managed resource.
MaxBps int
Maximum flow cleaning threshold. Unit: Mbps.
MaxPps int
The maximum number of messages cleaning threshold. Unit: pps.
id String
The provider-assigned unique ID for this managed resource.
maxBps Integer
Maximum flow cleaning threshold. Unit: Mbps.
maxPps Integer
The maximum number of messages cleaning threshold. Unit: pps.
id string
The provider-assigned unique ID for this managed resource.
maxBps number
Maximum flow cleaning threshold. Unit: Mbps.
maxPps number
The maximum number of messages cleaning threshold. Unit: pps.
id str
The provider-assigned unique ID for this managed resource.
max_bps int
Maximum flow cleaning threshold. Unit: Mbps.
max_pps int
The maximum number of messages cleaning threshold. Unit: pps.
id String
The provider-assigned unique ID for this managed resource.
maxBps Number
Maximum flow cleaning threshold. Unit: Mbps.
maxPps Number
The maximum number of messages cleaning threshold. Unit: pps.

Look up Existing BasicThreshold Resource

Get an existing BasicThreshold 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?: BasicThresholdState, opts?: CustomResourceOptions): BasicThreshold
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bps: Optional[int] = None,
        instance_id: Optional[str] = None,
        instance_type: Optional[str] = None,
        internet_ip: Optional[str] = None,
        max_bps: Optional[int] = None,
        max_pps: Optional[int] = None,
        pps: Optional[int] = None) -> BasicThreshold
func GetBasicThreshold(ctx *Context, name string, id IDInput, state *BasicThresholdState, opts ...ResourceOption) (*BasicThreshold, error)
public static BasicThreshold Get(string name, Input<string> id, BasicThresholdState? state, CustomResourceOptions? opts = null)
public static BasicThreshold get(String name, Output<String> id, BasicThresholdState state, CustomResourceOptions options)
resources:  _:    type: alicloud:ddos:BasicThreshold    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:
Bps int
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
InstanceId Changes to this property will trigger replacement. string
The ID of the instance.
InstanceType Changes to this property will trigger replacement. string
The type of the Instance. Valid values: ecs,slb,eip.
InternetIp Changes to this property will trigger replacement. string
The IP address of the public IP address asset.
MaxBps int
Maximum flow cleaning threshold. Unit: Mbps.
MaxPps int
The maximum number of messages cleaning threshold. Unit: pps.
Pps int
The current message number cleaning threshold. Unit: pps.
Bps int
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
InstanceId Changes to this property will trigger replacement. string
The ID of the instance.
InstanceType Changes to this property will trigger replacement. string
The type of the Instance. Valid values: ecs,slb,eip.
InternetIp Changes to this property will trigger replacement. string
The IP address of the public IP address asset.
MaxBps int
Maximum flow cleaning threshold. Unit: Mbps.
MaxPps int
The maximum number of messages cleaning threshold. Unit: pps.
Pps int
The current message number cleaning threshold. Unit: pps.
bps Integer
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
instanceId Changes to this property will trigger replacement. String
The ID of the instance.
instanceType Changes to this property will trigger replacement. String
The type of the Instance. Valid values: ecs,slb,eip.
internetIp Changes to this property will trigger replacement. String
The IP address of the public IP address asset.
maxBps Integer
Maximum flow cleaning threshold. Unit: Mbps.
maxPps Integer
The maximum number of messages cleaning threshold. Unit: pps.
pps Integer
The current message number cleaning threshold. Unit: pps.
bps number
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
instanceId Changes to this property will trigger replacement. string
The ID of the instance.
instanceType Changes to this property will trigger replacement. string
The type of the Instance. Valid values: ecs,slb,eip.
internetIp Changes to this property will trigger replacement. string
The IP address of the public IP address asset.
maxBps number
Maximum flow cleaning threshold. Unit: Mbps.
maxPps number
The maximum number of messages cleaning threshold. Unit: pps.
pps number
The current message number cleaning threshold. Unit: pps.
bps int
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
instance_id Changes to this property will trigger replacement. str
The ID of the instance.
instance_type Changes to this property will trigger replacement. str
The type of the Instance. Valid values: ecs,slb,eip.
internet_ip Changes to this property will trigger replacement. str
The IP address of the public IP address asset.
max_bps int
Maximum flow cleaning threshold. Unit: Mbps.
max_pps int
The maximum number of messages cleaning threshold. Unit: pps.
pps int
The current message number cleaning threshold. Unit: pps.
bps Number
Specifies the traffic scrubbing threshold. Unit: Mbit/s. The traffic scrubbing threshold cannot exceed the peak inbound or outbound Internet traffic, whichever is larger, of the asset.
instanceId Changes to this property will trigger replacement. String
The ID of the instance.
instanceType Changes to this property will trigger replacement. String
The type of the Instance. Valid values: ecs,slb,eip.
internetIp Changes to this property will trigger replacement. String
The IP address of the public IP address asset.
maxBps Number
Maximum flow cleaning threshold. Unit: Mbps.
maxPps Number
The maximum number of messages cleaning threshold. Unit: pps.
pps Number
The current message number cleaning threshold. Unit: pps.

Import

Ddos Basic Threshold can be imported using the id, e.g.

$ pulumi import alicloud:ddos/basicThreshold:BasicThreshold example <instance_type>:<instance_id>:<internet_ip>
Copy

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.