akamai.AppSecEval
Scopes: Security policy
Issues an evaluation mode command (Start
, Stop
, Restart
, Update
, or Complete
) to a security configuration.
Evaluation mode is used for testing and fine-tuning your Kona Rule Set rules and configuration settings.
In evaluation mode rules are triggered by events, but the only thing those rules do is record the actions they would have taken had the event occurred on the production network.
Related API Endpoint: /appsec/v1/configs/{configId}/versions/{versionNumber}/security-policies/{policyId}/eval
Output Options
The following options can be used to determine the information returned, and how that returned information is formatted:
evaluating_ruleset
. Versioning information for the Kona Rule Set being evaluated.expiration_date
. Date when the evaluation period ends.current_ruleset
. Versioning information for the Kona Rule Set currently in use on the production network.eval_status
. If true, an evaluation is currently in progress; if false, evaluation is either paused or is not running.
Example Usage
Basic usage
using System.Collections.Generic;
using Pulumi;
using Akamai = Pulumi.Akamai;
return await Deployment.RunAsync(() =>
{
var configuration = Akamai.GetAppSecConfiguration.Invoke(new()
{
Name = "Documentation",
});
var evalOperation = new Akamai.AppSecEval("evalOperation", new()
{
ConfigId = configuration.Apply(getAppSecConfigurationResult => getAppSecConfigurationResult.ConfigId),
SecurityPolicyId = "gms1_134637",
EvalOperation = "START",
});
return new Dictionary<string, object?>
{
["evalModeEvaluatingRuleset"] = evalOperation.EvaluatingRuleset,
["evalModeExpirationDate"] = evalOperation.ExpirationDate,
["evalModeCurrentRuleset"] = evalOperation.CurrentRuleset,
["evalModeStatus"] = evalOperation.EvalStatus,
};
});
package main
import (
"github.com/pulumi/pulumi-akamai/sdk/v4/go/akamai"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
configuration, err := akamai.LookupAppSecConfiguration(ctx, &akamai.LookupAppSecConfigurationArgs{
Name: pulumi.StringRef("Documentation"),
}, nil)
if err != nil {
return err
}
evalOperation, err := akamai.NewAppSecEval(ctx, "evalOperation", &akamai.AppSecEvalArgs{
ConfigId: *pulumi.Int(configuration.ConfigId),
SecurityPolicyId: pulumi.String("gms1_134637"),
EvalOperation: pulumi.String("START"),
})
if err != nil {
return err
}
ctx.Export("evalModeEvaluatingRuleset", evalOperation.EvaluatingRuleset)
ctx.Export("evalModeExpirationDate", evalOperation.ExpirationDate)
ctx.Export("evalModeCurrentRuleset", evalOperation.CurrentRuleset)
ctx.Export("evalModeStatus", evalOperation.EvalStatus)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.akamai.AkamaiFunctions;
import com.pulumi.akamai.inputs.GetAppSecConfigurationArgs;
import com.pulumi.akamai.AppSecEval;
import com.pulumi.akamai.AppSecEvalArgs;
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 configuration = AkamaiFunctions.getAppSecConfiguration(GetAppSecConfigurationArgs.builder()
.name("Documentation")
.build());
var evalOperation = new AppSecEval("evalOperation", AppSecEvalArgs.builder()
.configId(configuration.applyValue(getAppSecConfigurationResult -> getAppSecConfigurationResult.configId()))
.securityPolicyId("gms1_134637")
.evalOperation("START")
.build());
ctx.export("evalModeEvaluatingRuleset", evalOperation.evaluatingRuleset());
ctx.export("evalModeExpirationDate", evalOperation.expirationDate());
ctx.export("evalModeCurrentRuleset", evalOperation.currentRuleset());
ctx.export("evalModeStatus", evalOperation.evalStatus());
}
}
import pulumi
import pulumi_akamai as akamai
configuration = akamai.get_app_sec_configuration(name="Documentation")
eval_operation = akamai.AppSecEval("evalOperation",
config_id=configuration.config_id,
security_policy_id="gms1_134637",
eval_operation="START")
pulumi.export("evalModeEvaluatingRuleset", eval_operation.evaluating_ruleset)
pulumi.export("evalModeExpirationDate", eval_operation.expiration_date)
pulumi.export("evalModeCurrentRuleset", eval_operation.current_ruleset)
pulumi.export("evalModeStatus", eval_operation.eval_status)
import * as pulumi from "@pulumi/pulumi";
import * as akamai from "@pulumi/akamai";
const configuration = akamai.getAppSecConfiguration({
name: "Documentation",
});
const evalOperation = new akamai.AppSecEval("evalOperation", {
configId: configuration.then(configuration => configuration.configId),
securityPolicyId: "gms1_134637",
evalOperation: "START",
});
export const evalModeEvaluatingRuleset = evalOperation.evaluatingRuleset;
export const evalModeExpirationDate = evalOperation.expirationDate;
export const evalModeCurrentRuleset = evalOperation.currentRuleset;
export const evalModeStatus = evalOperation.evalStatus;
resources:
evalOperation:
type: akamai:AppSecEval
properties:
configId: ${configuration.configId}
securityPolicyId: gms1_134637
evalOperation: START
variables:
configuration:
fn::invoke:
Function: akamai:getAppSecConfiguration
Arguments:
name: Documentation
outputs:
evalModeEvaluatingRuleset: ${evalOperation.evaluatingRuleset}
evalModeExpirationDate: ${evalOperation.expirationDate}
evalModeCurrentRuleset: ${evalOperation.currentRuleset}
evalModeStatus: ${evalOperation.evalStatus}
Create AppSecEval Resource
new AppSecEval(name: string, args: AppSecEvalArgs, opts?: CustomResourceOptions);
@overload
def AppSecEval(resource_name: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[int] = None,
eval_mode: Optional[str] = None,
eval_operation: Optional[str] = None,
security_policy_id: Optional[str] = None)
@overload
def AppSecEval(resource_name: str,
args: AppSecEvalArgs,
opts: Optional[ResourceOptions] = None)
func NewAppSecEval(ctx *Context, name string, args AppSecEvalArgs, opts ...ResourceOption) (*AppSecEval, error)
public AppSecEval(string name, AppSecEvalArgs args, CustomResourceOptions? opts = null)
public AppSecEval(String name, AppSecEvalArgs args)
public AppSecEval(String name, AppSecEvalArgs args, CustomResourceOptions options)
type: akamai:AppSecEval
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppSecEvalArgs
- 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 AppSecEvalArgs
- 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 AppSecEvalArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppSecEvalArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppSecEvalArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AppSecEval 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 AppSecEval resource accepts the following input properties:
- Config
Id int . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- Eval
Operation string . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- Security
Policy stringId . Unique identifier of the security policy associated with the evaluation process.
- Eval
Mode string . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- Config
Id int . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- Eval
Operation string . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- Security
Policy stringId . Unique identifier of the security policy associated with the evaluation process.
- Eval
Mode string . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- config
Id Integer . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- eval
Operation String . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- security
Policy StringId . Unique identifier of the security policy associated with the evaluation process.
- eval
Mode String . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- config
Id number . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- eval
Operation string . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- security
Policy stringId . Unique identifier of the security policy associated with the evaluation process.
- eval
Mode string . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- config_
id int . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- eval_
operation str . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- security_
policy_ strid . Unique identifier of the security policy associated with the evaluation process.
- eval_
mode str . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- config
Id Number . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- eval
Operation String . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- security
Policy StringId . Unique identifier of the security policy associated with the evaluation process.
- eval
Mode String . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
Outputs
All input properties are implicitly available as output properties. Additionally, the AppSecEval resource produces the following output properties:
- Current
Ruleset string Versioning information for the Kona Rule Set currently in use in production
- Eval
Status string Whether an evaluation is currently in progress
- Evaluating
Ruleset string Versioning information for the Kona Rule Set being evaluated
- Expiration
Date string Date when the evaluation period ends
- Id string
The provider-assigned unique ID for this managed resource.
- Current
Ruleset string Versioning information for the Kona Rule Set currently in use in production
- Eval
Status string Whether an evaluation is currently in progress
- Evaluating
Ruleset string Versioning information for the Kona Rule Set being evaluated
- Expiration
Date string Date when the evaluation period ends
- Id string
The provider-assigned unique ID for this managed resource.
- current
Ruleset String Versioning information for the Kona Rule Set currently in use in production
- eval
Status String Whether an evaluation is currently in progress
- evaluating
Ruleset String Versioning information for the Kona Rule Set being evaluated
- expiration
Date String Date when the evaluation period ends
- id String
The provider-assigned unique ID for this managed resource.
- current
Ruleset string Versioning information for the Kona Rule Set currently in use in production
- eval
Status string Whether an evaluation is currently in progress
- evaluating
Ruleset string Versioning information for the Kona Rule Set being evaluated
- expiration
Date string Date when the evaluation period ends
- id string
The provider-assigned unique ID for this managed resource.
- current_
ruleset str Versioning information for the Kona Rule Set currently in use in production
- eval_
status str Whether an evaluation is currently in progress
- evaluating_
ruleset str Versioning information for the Kona Rule Set being evaluated
- expiration_
date str Date when the evaluation period ends
- id str
The provider-assigned unique ID for this managed resource.
- current
Ruleset String Versioning information for the Kona Rule Set currently in use in production
- eval
Status String Whether an evaluation is currently in progress
- evaluating
Ruleset String Versioning information for the Kona Rule Set being evaluated
- expiration
Date String Date when the evaluation period ends
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing AppSecEval Resource
Get an existing AppSecEval 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?: AppSecEvalState, opts?: CustomResourceOptions): AppSecEval
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[int] = None,
current_ruleset: Optional[str] = None,
eval_mode: Optional[str] = None,
eval_operation: Optional[str] = None,
eval_status: Optional[str] = None,
evaluating_ruleset: Optional[str] = None,
expiration_date: Optional[str] = None,
security_policy_id: Optional[str] = None) -> AppSecEval
func GetAppSecEval(ctx *Context, name string, id IDInput, state *AppSecEvalState, opts ...ResourceOption) (*AppSecEval, error)
public static AppSecEval Get(string name, Input<string> id, AppSecEvalState? state, CustomResourceOptions? opts = null)
public static AppSecEval get(String name, Output<String> id, AppSecEvalState 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.
- Config
Id int . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- Current
Ruleset string Versioning information for the Kona Rule Set currently in use in production
- Eval
Mode string . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- Eval
Operation string . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- Eval
Status string Whether an evaluation is currently in progress
- Evaluating
Ruleset string Versioning information for the Kona Rule Set being evaluated
- Expiration
Date string Date when the evaluation period ends
- Security
Policy stringId . Unique identifier of the security policy associated with the evaluation process.
- Config
Id int . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- Current
Ruleset string Versioning information for the Kona Rule Set currently in use in production
- Eval
Mode string . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- Eval
Operation string . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- Eval
Status string Whether an evaluation is currently in progress
- Evaluating
Ruleset string Versioning information for the Kona Rule Set being evaluated
- Expiration
Date string Date when the evaluation period ends
- Security
Policy stringId . Unique identifier of the security policy associated with the evaluation process.
- config
Id Integer . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- current
Ruleset String Versioning information for the Kona Rule Set currently in use in production
- eval
Mode String . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- eval
Operation String . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- eval
Status String Whether an evaluation is currently in progress
- evaluating
Ruleset String Versioning information for the Kona Rule Set being evaluated
- expiration
Date String Date when the evaluation period ends
- security
Policy StringId . Unique identifier of the security policy associated with the evaluation process.
- config
Id number . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- current
Ruleset string Versioning information for the Kona Rule Set currently in use in production
- eval
Mode string . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- eval
Operation string . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- eval
Status string Whether an evaluation is currently in progress
- evaluating
Ruleset string Versioning information for the Kona Rule Set being evaluated
- expiration
Date string Date when the evaluation period ends
- security
Policy stringId . Unique identifier of the security policy associated with the evaluation process.
- config_
id int . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- current_
ruleset str Versioning information for the Kona Rule Set currently in use in production
- eval_
mode str . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- eval_
operation str . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- eval_
status str Whether an evaluation is currently in progress
- evaluating_
ruleset str Versioning information for the Kona Rule Set being evaluated
- expiration_
date str Date when the evaluation period ends
- security_
policy_ strid . Unique identifier of the security policy associated with the evaluation process.
- config
Id Number . Unique identifier of the security configuration where evaluation mode will take place (or is currently taking place).
- current
Ruleset String Versioning information for the Kona Rule Set currently in use in production
- eval
Mode String . Set to ASE_AUTO to have your Kona Rule Set rules automatically updated during the evaluation period; set to ASE_MANUAL if you want to manually update your evaluation rules. Note that this option is only available to organizations running the Adaptive Security Engine (ASE) beta. For more information about ASE, please contact your Akamai representative.
- eval
Operation String . Evaluation mode operation. Allowed values are:
- START. Starts evaluation mode. By default, evaluation mode runs for four weeks.
- STOP, Pauses evaluation mode without upgrading the Kona Rule Set on your production network.
- RESTART. Resumes an evaluation trial that was paused by using the STOP command.
- UPDATE. Upgrades the Kona Rule Set rules in the evaluation ruleset to their latest versions.
- COMPLETE. Concludes the evaluation period (even if the four-week trial mode is not over) and automatically upgrades the Kona Rule Set on your production network to the same rule set you just finished evaluating.
- eval
Status String Whether an evaluation is currently in progress
- evaluating
Ruleset String Versioning information for the Kona Rule Set being evaluated
- expiration
Date String Date when the evaluation period ends
- security
Policy StringId . Unique identifier of the security policy associated with the evaluation process.
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
akamai
Terraform Provider.