Akamai v7.4.1 published on Tuesday, Sep 24, 2024 by Pulumi
akamai.AppSecEvalGroup
Explore with Pulumi AI
Create AppSecEvalGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppSecEvalGroup(name: string, args: AppSecEvalGroupArgs, opts?: CustomResourceOptions);
@overload
def AppSecEvalGroup(resource_name: str,
args: AppSecEvalGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AppSecEvalGroup(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 NewAppSecEvalGroup(ctx *Context, name string, args AppSecEvalGroupArgs, opts ...ResourceOption) (*AppSecEvalGroup, error)
public AppSecEvalGroup(string name, AppSecEvalGroupArgs args, CustomResourceOptions? opts = null)
public AppSecEvalGroup(String name, AppSecEvalGroupArgs args)
public AppSecEvalGroup(String name, AppSecEvalGroupArgs args, CustomResourceOptions options)
type: akamai:AppSecEvalGroup
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 AppSecEvalGroupArgs
- 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 AppSecEvalGroupArgs
- 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 AppSecEvalGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppSecEvalGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppSecEvalGroupArgs
- 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 appSecEvalGroupResource = new Akamai.AppSecEvalGroup("appSecEvalGroupResource", new()
{
AttackGroup = "string",
AttackGroupAction = "string",
ConfigId = 0,
SecurityPolicyId = "string",
ConditionException = "string",
});
example, err := akamai.NewAppSecEvalGroup(ctx, "appSecEvalGroupResource", &akamai.AppSecEvalGroupArgs{
AttackGroup: pulumi.String("string"),
AttackGroupAction: pulumi.String("string"),
ConfigId: pulumi.Int(0),
SecurityPolicyId: pulumi.String("string"),
ConditionException: pulumi.String("string"),
})
var appSecEvalGroupResource = new AppSecEvalGroup("appSecEvalGroupResource", AppSecEvalGroupArgs.builder()
.attackGroup("string")
.attackGroupAction("string")
.configId(0)
.securityPolicyId("string")
.conditionException("string")
.build());
app_sec_eval_group_resource = akamai.AppSecEvalGroup("appSecEvalGroupResource",
attack_group="string",
attack_group_action="string",
config_id=0,
security_policy_id="string",
condition_exception="string")
const appSecEvalGroupResource = new akamai.AppSecEvalGroup("appSecEvalGroupResource", {
attackGroup: "string",
attackGroupAction: "string",
configId: 0,
securityPolicyId: "string",
conditionException: "string",
});
type: akamai:AppSecEvalGroup
properties:
attackGroup: string
attackGroupAction: string
conditionException: string
configId: 0
securityPolicyId: string
AppSecEvalGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AppSecEvalGroup resource accepts the following input properties:
- Attack
Group string - Unique identifier of the evaluation attack group being 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 evaluation attack group
- Attack
Group string - Unique identifier of the evaluation attack group being 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 evaluation attack group
- attack
Group String - Unique identifier of the evaluation attack group being 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 evaluation attack group
- attack
Group string - Unique identifier of the evaluation attack group being 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 evaluation attack group
- attack_
group str - Unique identifier of the evaluation attack group being 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 evaluation attack group
- attack
Group String - Unique identifier of the evaluation attack group being 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 evaluation attack group
Outputs
All input properties are implicitly available as output properties. Additionally, the AppSecEvalGroup 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 AppSecEvalGroup Resource
Get an existing AppSecEvalGroup 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?: AppSecEvalGroupState, opts?: CustomResourceOptions): AppSecEvalGroup
@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) -> AppSecEvalGroup
func GetAppSecEvalGroup(ctx *Context, name string, id IDInput, state *AppSecEvalGroupState, opts ...ResourceOption) (*AppSecEvalGroup, error)
public static AppSecEvalGroup Get(string name, Input<string> id, AppSecEvalGroupState? state, CustomResourceOptions? opts = null)
public static AppSecEvalGroup get(String name, Output<String> id, AppSecEvalGroupState 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 identifier of the evaluation attack group being 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 evaluation attack group
- Config
Id int - Unique identifier of the security configuration
- Security
Policy stringId - Unique identifier of the security policy
- Attack
Group string - Unique identifier of the evaluation attack group being 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 evaluation attack group
- Config
Id int - Unique identifier of the security configuration
- Security
Policy stringId - Unique identifier of the security policy
- attack
Group String - Unique identifier of the evaluation attack group being 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 evaluation attack group
- config
Id Integer - Unique identifier of the security configuration
- security
Policy StringId - Unique identifier of the security policy
- attack
Group string - Unique identifier of the evaluation attack group being 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 evaluation attack group
- config
Id number - Unique identifier of the security configuration
- security
Policy stringId - Unique identifier of the security policy
- attack_
group str - Unique identifier of the evaluation attack group being 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 evaluation attack group
- config_
id int - Unique identifier of the security configuration
- security_
policy_ strid - Unique identifier of the security policy
- attack
Group String - Unique identifier of the evaluation attack group being 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 evaluation 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.