Namespace Pulumi.AliCloud.Ddos
Classes
DdosBgpInstance
Anti-DDoS Advanced instance resource. "Ddosbgp" is the short term of this product.
NOTE: The endpoint of bssopenapi used only support "business.aliyuncs.com" at present.
NOTE: Available in 1.57.0+ .
Example Usage
using Pulumi;
using AliCloud = Pulumi.AliCloud;
class MyStack : Stack
{
public MyStack()
{
var instance = new AliCloud.Ddos.DdosBgpInstance("instance", new AliCloud.Ddos.DdosBgpInstanceArgs
{
Bandwidth = "201",
BaseBandwidth = "20",
IpCount = "100",
IpType = "IPv4",
});
}
}
DdosBgpInstanceArgs
DdosBgpInstanceState
DdosCooInstance
BGP-Line Anti-DDoS instance resource. "Ddoscoo" is the short term of this product. See What is Anti-DDoS Pro.
NOTE: The product region only support cn-hangzhou.
NOTE: The endpoint of bssopenapi used only support "business.aliyuncs.com" at present.
NOTE: Available in 1.37.0+ .
Example Usage
using Pulumi;
using AliCloud = Pulumi.AliCloud;
class MyStack : Stack
{
public MyStack()
{
var newInstance = new AliCloud.Ddos.DdosCooInstance("newInstance", new AliCloud.Ddos.DdosCooInstanceArgs
{
Bandwidth = "30",
BaseBandwidth = "30",
DomainCount = "50",
Period = "1",
PortCount = "50",
ServiceBandwidth = "100",
});
}
}