akamai.AppSecAttackGroup
Explore with Pulumi AI
Create AppSecAttackGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppSecAttackGroup(name: string, args: AppSecAttackGroupArgs, opts?: CustomResourceOptions);
@overload
def AppSecAttackGroup(resource_name: str,
args: AppSecAttackGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AppSecAttackGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
attack_group: Optional[str] = None,
attack_group_action: Optional[str] = None,
config_id: Optional[int] = None,
security_policy_id: Optional[str] = None,
condition_exception: Optional[str] = None)
func NewAppSecAttackGroup(ctx *Context, name string, args AppSecAttackGroupArgs, opts ...ResourceOption) (*AppSecAttackGroup, error)
public AppSecAttackGroup(string name, AppSecAttackGroupArgs args, CustomResourceOptions? opts = null)
public AppSecAttackGroup(String name, AppSecAttackGroupArgs args)
public AppSecAttackGroup(String name, AppSecAttackGroupArgs args, CustomResourceOptions options)
type: akamai:AppSecAttackGroup
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 AppSecAttackGroupArgs
- 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 AppSecAttackGroupArgs
- 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 AppSecAttackGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppSecAttackGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppSecAttackGroupArgs
- 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 appSecAttackGroupResource = new Akamai.AppSecAttackGroup("appSecAttackGroupResource", new()
{
AttackGroup = "string",
AttackGroupAction = "string",
ConfigId = 0,
SecurityPolicyId = "string",
ConditionException = "string",
});
example, err := akamai.NewAppSecAttackGroup(ctx, "appSecAttackGroupResource", &akamai.AppSecAttackGroupArgs{
AttackGroup: pulumi.String("string"),
AttackGroupAction: pulumi.String("string"),
ConfigId: pulumi.Int(0),
SecurityPolicyId: pulumi.String("string"),
ConditionException: pulumi.String("string"),
})
var appSecAttackGroupResource = new AppSecAttackGroup("appSecAttackGroupResource", AppSecAttackGroupArgs.builder()
.attackGroup("string")
.attackGroupAction("string")
.configId(0)
.securityPolicyId("string")
.conditionException("string")
.build());
app_sec_attack_group_resource = akamai.AppSecAttackGroup("appSecAttackGroupResource",
attack_group="string",
attack_group_action="string",
config_id=0,
security_policy_id="string",
condition_exception="string")
const appSecAttackGroupResource = new akamai.AppSecAttackGroup("appSecAttackGroupResource", {
attackGroup: "string",
attackGroupAction: "string",
configId: 0,
securityPolicyId: "string",
conditionException: "string",
});
type: akamai:AppSecAttackGroup
properties:
attackGroup: string
attackGroupAction: string
conditionException: string
configId: 0
securityPolicyId: string
AppSecAttackGroup 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 AppSecAttackGroup resource accepts the following input properties:
- Attack
Group string - Unique name of the attack group to be modified
- Attack
Group stringAction - Action to be taken when the attack group is triggered
- Config
Id int - Unique identifier of the security configuration
- Security
Policy stringId - Unique identifier of the security policy
- Condition
Exception string - JSON-formatted condition and exception information for the attack group
- Attack
Group string - Unique name of the attack group to be modified
- Attack
Group stringAction - Action to be taken when the attack group is triggered
- Config
Id int - Unique identifier of the security configuration
- Security
Policy stringId - Unique identifier of the security policy
- Condition
Exception string - JSON-formatted condition and exception information for the attack group
- attack
Group String - Unique name of the attack group to be modified
- attack
Group StringAction - Action to be taken when the attack group is triggered
- config
Id Integer - Unique identifier of the security configuration
- security
Policy StringId - Unique identifier of the security policy
- condition
Exception String - JSON-formatted condition and exception information for the attack group
- attack
Group string - Unique name of the attack group to be modified
- attack
Group stringAction - Action to be taken when the attack group is triggered
- config
Id number - Unique identifier of the security configuration
- security
Policy stringId - Unique identifier of the security policy
- condition
Exception string - JSON-formatted condition and exception information for the attack group
- attack_
group str - Unique name of the attack group to be modified
- attack_
group_ straction - Action to be taken when the attack group is triggered
- config_
id int - Unique identifier of the security configuration
- security_
policy_ strid - Unique identifier of the security policy
- condition_
exception str - JSON-formatted condition and exception information for the attack group
- attack
Group String - Unique name of the attack group to be modified
- attack
Group StringAction - Action to be taken when the attack group is triggered
- config
Id Number - Unique identifier of the security configuration
- security
Policy StringId - Unique identifier of the security policy
- condition
Exception String - JSON-formatted condition and exception information for the attack group
Outputs
All input properties are implicitly available as output properties. Additionally, the AppSecAttackGroup 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 AppSecAttackGroup Resource
Get an existing AppSecAttackGroup 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?: AppSecAttackGroupState, opts?: CustomResourceOptions): AppSecAttackGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attack_group: Optional[str] = None,
attack_group_action: Optional[str] = None,
condition_exception: Optional[str] = None,
config_id: Optional[int] = None,
security_policy_id: Optional[str] = None) -> AppSecAttackGroup
func GetAppSecAttackGroup(ctx *Context, name string, id IDInput, state *AppSecAttackGroupState, opts ...ResourceOption) (*AppSecAttackGroup, error)
public static AppSecAttackGroup Get(string name, Input<string> id, AppSecAttackGroupState? state, CustomResourceOptions? opts = null)
public static AppSecAttackGroup get(String name, Output<String> id, AppSecAttackGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Attack
Group string - Unique name of the attack group to be modified
- Attack
Group stringAction - Action to be taken when the attack group is triggered
- Condition
Exception string - JSON-formatted condition and exception information for the attack group
- Config
Id int - Unique identifier of the security configuration
- Security
Policy stringId - Unique identifier of the security policy
- Attack
Group string - Unique name of the attack group to be modified
- Attack
Group stringAction - Action to be taken when the attack group is triggered
- Condition
Exception string - JSON-formatted condition and exception information for the attack group
- Config
Id int - Unique identifier of the security configuration
- Security
Policy stringId - Unique identifier of the security policy
- attack
Group String - Unique name of the attack group to be modified
- attack
Group StringAction - Action to be taken when the attack group is triggered
- condition
Exception String - JSON-formatted condition and exception information for the attack group
- config
Id Integer - Unique identifier of the security configuration
- security
Policy StringId - Unique identifier of the security policy
- attack
Group string - Unique name of the attack group to be modified
- attack
Group stringAction - Action to be taken when the attack group is triggered
- condition
Exception string - JSON-formatted condition and exception information for the attack group
- config
Id number - Unique identifier of the security configuration
- security
Policy stringId - Unique identifier of the security policy
- attack_
group str - Unique name of the attack group to be modified
- attack_
group_ straction - Action to be taken when the attack group is triggered
- condition_
exception str - JSON-formatted condition and exception information for the attack group
- config_
id int - Unique identifier of the security configuration
- security_
policy_ strid - Unique identifier of the security policy
- attack
Group String - Unique name of the attack group to be modified
- attack
Group StringAction - Action to be taken when the attack group is triggered
- condition
Exception String - JSON-formatted condition and exception information for the attack group
- config
Id Number - Unique identifier of the security configuration
- security
Policy StringId - Unique identifier of the security policy
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamai
Terraform Provider.