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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AppSecEvalGroup resource accepts the following input properties:
- AttackGroup string
- Unique identifier of the evaluation attack group being modified
- AttackGroup stringAction 
- Action to be taken when the attack group is triggered
- ConfigId int
- Unique identifier of the security configuration
- SecurityPolicy stringId 
- Unique identifier of the security policy
- ConditionException string
- JSON-formatted condition and exception information for the evaluation attack group
- AttackGroup string
- Unique identifier of the evaluation attack group being modified
- AttackGroup stringAction 
- Action to be taken when the attack group is triggered
- ConfigId int
- Unique identifier of the security configuration
- SecurityPolicy stringId 
- Unique identifier of the security policy
- ConditionException string
- JSON-formatted condition and exception information for the evaluation attack group
- attackGroup String
- Unique identifier of the evaluation attack group being modified
- attackGroup StringAction 
- Action to be taken when the attack group is triggered
- configId Integer
- Unique identifier of the security configuration
- securityPolicy StringId 
- Unique identifier of the security policy
- conditionException String
- JSON-formatted condition and exception information for the evaluation attack group
- attackGroup string
- Unique identifier of the evaluation attack group being modified
- attackGroup stringAction 
- Action to be taken when the attack group is triggered
- configId number
- Unique identifier of the security configuration
- securityPolicy stringId 
- Unique identifier of the security policy
- conditionException 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
- attackGroup String
- Unique identifier of the evaluation attack group being modified
- attackGroup StringAction 
- Action to be taken when the attack group is triggered
- configId Number
- Unique identifier of the security configuration
- securityPolicy StringId 
- Unique identifier of the security policy
- conditionException 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) -> AppSecEvalGroupfunc 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)resources:  _:    type: akamai:AppSecEvalGroup    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.
- AttackGroup string
- Unique identifier of the evaluation attack group being modified
- AttackGroup stringAction 
- Action to be taken when the attack group is triggered
- ConditionException string
- JSON-formatted condition and exception information for the evaluation attack group
- ConfigId int
- Unique identifier of the security configuration
- SecurityPolicy stringId 
- Unique identifier of the security policy
- AttackGroup string
- Unique identifier of the evaluation attack group being modified
- AttackGroup stringAction 
- Action to be taken when the attack group is triggered
- ConditionException string
- JSON-formatted condition and exception information for the evaluation attack group
- ConfigId int
- Unique identifier of the security configuration
- SecurityPolicy stringId 
- Unique identifier of the security policy
- attackGroup String
- Unique identifier of the evaluation attack group being modified
- attackGroup StringAction 
- Action to be taken when the attack group is triggered
- conditionException String
- JSON-formatted condition and exception information for the evaluation attack group
- configId Integer
- Unique identifier of the security configuration
- securityPolicy StringId 
- Unique identifier of the security policy
- attackGroup string
- Unique identifier of the evaluation attack group being modified
- attackGroup stringAction 
- Action to be taken when the attack group is triggered
- conditionException string
- JSON-formatted condition and exception information for the evaluation attack group
- configId number
- Unique identifier of the security configuration
- securityPolicy 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
- attackGroup String
- Unique identifier of the evaluation attack group being modified
- attackGroup StringAction 
- Action to be taken when the attack group is triggered
- conditionException String
- JSON-formatted condition and exception information for the evaluation attack group
- configId Number
- Unique identifier of the security configuration
- securityPolicy 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 akamaiTerraform Provider.