1. Packages
  2. Akamai
  3. API Docs
  4. AppSecSiemSettings
Akamai v8.0.0 published on Saturday, Mar 1, 2025 by Pulumi

akamai.AppSecSiemSettings

Explore with Pulumi AI

akamai logo
Akamai v8.0.0 published on Saturday, Mar 1, 2025 by Pulumi

    Create AppSecSiemSettings Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AppSecSiemSettings(name: string, args: AppSecSiemSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def AppSecSiemSettings(resource_name: str,
                           args: AppSecSiemSettingsArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppSecSiemSettings(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           config_id: Optional[int] = None,
                           enable_for_all_policies: Optional[bool] = None,
                           enable_siem: Optional[bool] = None,
                           siem_id: Optional[int] = None,
                           enable_botman_siem: Optional[bool] = None,
                           exceptions: Optional[AppSecSiemSettingsExceptionsArgs] = None,
                           security_policy_ids: Optional[Sequence[str]] = None)
    func NewAppSecSiemSettings(ctx *Context, name string, args AppSecSiemSettingsArgs, opts ...ResourceOption) (*AppSecSiemSettings, error)
    public AppSecSiemSettings(string name, AppSecSiemSettingsArgs args, CustomResourceOptions? opts = null)
    public AppSecSiemSettings(String name, AppSecSiemSettingsArgs args)
    public AppSecSiemSettings(String name, AppSecSiemSettingsArgs args, CustomResourceOptions options)
    
    type: akamai:AppSecSiemSettings
    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 AppSecSiemSettingsArgs
    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 AppSecSiemSettingsArgs
    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 AppSecSiemSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppSecSiemSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppSecSiemSettingsArgs
    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 appSecSiemSettingsResource = new Akamai.AppSecSiemSettings("appSecSiemSettingsResource", new()
    {
        ConfigId = 0,
        EnableForAllPolicies = false,
        EnableSiem = false,
        SiemId = 0,
        EnableBotmanSiem = false,
        Exceptions = new Akamai.Inputs.AppSecSiemSettingsExceptionsArgs
        {
            ApiRequestConstraints = new[]
            {
                "string",
            },
            AprProtections = new[]
            {
                "string",
            },
            BotManagements = new[]
            {
                "string",
            },
            ClientReps = new[]
            {
                "string",
            },
            CustomRules = new[]
            {
                "string",
            },
            IpGeos = new[]
            {
                "string",
            },
            MalwareProtections = new[]
            {
                "string",
            },
            Rates = new[]
            {
                "string",
            },
            SlowPosts = new[]
            {
                "string",
            },
            UrlProtections = new[]
            {
                "string",
            },
            Wafs = new[]
            {
                "string",
            },
        },
        SecurityPolicyIds = new[]
        {
            "string",
        },
    });
    
    example, err := akamai.NewAppSecSiemSettings(ctx, "appSecSiemSettingsResource", &akamai.AppSecSiemSettingsArgs{
    	ConfigId:             pulumi.Int(0),
    	EnableForAllPolicies: pulumi.Bool(false),
    	EnableSiem:           pulumi.Bool(false),
    	SiemId:               pulumi.Int(0),
    	EnableBotmanSiem:     pulumi.Bool(false),
    	Exceptions: &akamai.AppSecSiemSettingsExceptionsArgs{
    		ApiRequestConstraints: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		AprProtections: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		BotManagements: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ClientReps: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		CustomRules: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		IpGeos: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MalwareProtections: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Rates: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		SlowPosts: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		UrlProtections: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Wafs: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	SecurityPolicyIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var appSecSiemSettingsResource = new AppSecSiemSettings("appSecSiemSettingsResource", AppSecSiemSettingsArgs.builder()
        .configId(0)
        .enableForAllPolicies(false)
        .enableSiem(false)
        .siemId(0)
        .enableBotmanSiem(false)
        .exceptions(AppSecSiemSettingsExceptionsArgs.builder()
            .apiRequestConstraints("string")
            .aprProtections("string")
            .botManagements("string")
            .clientReps("string")
            .customRules("string")
            .ipGeos("string")
            .malwareProtections("string")
            .rates("string")
            .slowPosts("string")
            .urlProtections("string")
            .wafs("string")
            .build())
        .securityPolicyIds("string")
        .build());
    
    app_sec_siem_settings_resource = akamai.AppSecSiemSettings("appSecSiemSettingsResource",
        config_id=0,
        enable_for_all_policies=False,
        enable_siem=False,
        siem_id=0,
        enable_botman_siem=False,
        exceptions={
            "api_request_constraints": ["string"],
            "apr_protections": ["string"],
            "bot_managements": ["string"],
            "client_reps": ["string"],
            "custom_rules": ["string"],
            "ip_geos": ["string"],
            "malware_protections": ["string"],
            "rates": ["string"],
            "slow_posts": ["string"],
            "url_protections": ["string"],
            "wafs": ["string"],
        },
        security_policy_ids=["string"])
    
    const appSecSiemSettingsResource = new akamai.AppSecSiemSettings("appSecSiemSettingsResource", {
        configId: 0,
        enableForAllPolicies: false,
        enableSiem: false,
        siemId: 0,
        enableBotmanSiem: false,
        exceptions: {
            apiRequestConstraints: ["string"],
            aprProtections: ["string"],
            botManagements: ["string"],
            clientReps: ["string"],
            customRules: ["string"],
            ipGeos: ["string"],
            malwareProtections: ["string"],
            rates: ["string"],
            slowPosts: ["string"],
            urlProtections: ["string"],
            wafs: ["string"],
        },
        securityPolicyIds: ["string"],
    });
    
    type: akamai:AppSecSiemSettings
    properties:
        configId: 0
        enableBotmanSiem: false
        enableForAllPolicies: false
        enableSiem: false
        exceptions:
            apiRequestConstraints:
                - string
            aprProtections:
                - string
            botManagements:
                - string
            clientReps:
                - string
            customRules:
                - string
            ipGeos:
                - string
            malwareProtections:
                - string
            rates:
                - string
            slowPosts:
                - string
            urlProtections:
                - string
            wafs:
                - string
        securityPolicyIds:
            - string
        siemId: 0
    

    AppSecSiemSettings 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 AppSecSiemSettings resource accepts the following input properties:

    ConfigId int
    Unique identifier of the security configuration
    EnableForAllPolicies bool
    Whether to enable SIEM on all security policies in the security configuration
    EnableSiem bool
    Whether to enable SIEM
    SiemId int
    Unique identifier of the SIEM settings being modified
    EnableBotmanSiem bool
    Whether Bot Manager events should be included in SIEM events
    Exceptions AppSecSiemSettingsExceptions
    Describes all the protections and actions to be excluded from SIEM events
    SecurityPolicyIds List<string>
    List of IDs of security policy for which SIEM integration is to be enabled
    ConfigId int
    Unique identifier of the security configuration
    EnableForAllPolicies bool
    Whether to enable SIEM on all security policies in the security configuration
    EnableSiem bool
    Whether to enable SIEM
    SiemId int
    Unique identifier of the SIEM settings being modified
    EnableBotmanSiem bool
    Whether Bot Manager events should be included in SIEM events
    Exceptions AppSecSiemSettingsExceptionsArgs
    Describes all the protections and actions to be excluded from SIEM events
    SecurityPolicyIds []string
    List of IDs of security policy for which SIEM integration is to be enabled
    configId Integer
    Unique identifier of the security configuration
    enableForAllPolicies Boolean
    Whether to enable SIEM on all security policies in the security configuration
    enableSiem Boolean
    Whether to enable SIEM
    siemId Integer
    Unique identifier of the SIEM settings being modified
    enableBotmanSiem Boolean
    Whether Bot Manager events should be included in SIEM events
    exceptions AppSecSiemSettingsExceptions
    Describes all the protections and actions to be excluded from SIEM events
    securityPolicyIds List<String>
    List of IDs of security policy for which SIEM integration is to be enabled
    configId number
    Unique identifier of the security configuration
    enableForAllPolicies boolean
    Whether to enable SIEM on all security policies in the security configuration
    enableSiem boolean
    Whether to enable SIEM
    siemId number
    Unique identifier of the SIEM settings being modified
    enableBotmanSiem boolean
    Whether Bot Manager events should be included in SIEM events
    exceptions AppSecSiemSettingsExceptions
    Describes all the protections and actions to be excluded from SIEM events
    securityPolicyIds string[]
    List of IDs of security policy for which SIEM integration is to be enabled
    config_id int
    Unique identifier of the security configuration
    enable_for_all_policies bool
    Whether to enable SIEM on all security policies in the security configuration
    enable_siem bool
    Whether to enable SIEM
    siem_id int
    Unique identifier of the SIEM settings being modified
    enable_botman_siem bool
    Whether Bot Manager events should be included in SIEM events
    exceptions AppSecSiemSettingsExceptionsArgs
    Describes all the protections and actions to be excluded from SIEM events
    security_policy_ids Sequence[str]
    List of IDs of security policy for which SIEM integration is to be enabled
    configId Number
    Unique identifier of the security configuration
    enableForAllPolicies Boolean
    Whether to enable SIEM on all security policies in the security configuration
    enableSiem Boolean
    Whether to enable SIEM
    siemId Number
    Unique identifier of the SIEM settings being modified
    enableBotmanSiem Boolean
    Whether Bot Manager events should be included in SIEM events
    exceptions Property Map
    Describes all the protections and actions to be excluded from SIEM events
    securityPolicyIds List<String>
    List of IDs of security policy for which SIEM integration is to be enabled

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AppSecSiemSettings 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 AppSecSiemSettings Resource

    Get an existing AppSecSiemSettings 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?: AppSecSiemSettingsState, opts?: CustomResourceOptions): AppSecSiemSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config_id: Optional[int] = None,
            enable_botman_siem: Optional[bool] = None,
            enable_for_all_policies: Optional[bool] = None,
            enable_siem: Optional[bool] = None,
            exceptions: Optional[AppSecSiemSettingsExceptionsArgs] = None,
            security_policy_ids: Optional[Sequence[str]] = None,
            siem_id: Optional[int] = None) -> AppSecSiemSettings
    func GetAppSecSiemSettings(ctx *Context, name string, id IDInput, state *AppSecSiemSettingsState, opts ...ResourceOption) (*AppSecSiemSettings, error)
    public static AppSecSiemSettings Get(string name, Input<string> id, AppSecSiemSettingsState? state, CustomResourceOptions? opts = null)
    public static AppSecSiemSettings get(String name, Output<String> id, AppSecSiemSettingsState state, CustomResourceOptions options)
    resources:  _:    type: akamai:AppSecSiemSettings    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.
    The following state arguments are supported:
    ConfigId int
    Unique identifier of the security configuration
    EnableBotmanSiem bool
    Whether Bot Manager events should be included in SIEM events
    EnableForAllPolicies bool
    Whether to enable SIEM on all security policies in the security configuration
    EnableSiem bool
    Whether to enable SIEM
    Exceptions AppSecSiemSettingsExceptions
    Describes all the protections and actions to be excluded from SIEM events
    SecurityPolicyIds List<string>
    List of IDs of security policy for which SIEM integration is to be enabled
    SiemId int
    Unique identifier of the SIEM settings being modified
    ConfigId int
    Unique identifier of the security configuration
    EnableBotmanSiem bool
    Whether Bot Manager events should be included in SIEM events
    EnableForAllPolicies bool
    Whether to enable SIEM on all security policies in the security configuration
    EnableSiem bool
    Whether to enable SIEM
    Exceptions AppSecSiemSettingsExceptionsArgs
    Describes all the protections and actions to be excluded from SIEM events
    SecurityPolicyIds []string
    List of IDs of security policy for which SIEM integration is to be enabled
    SiemId int
    Unique identifier of the SIEM settings being modified
    configId Integer
    Unique identifier of the security configuration
    enableBotmanSiem Boolean
    Whether Bot Manager events should be included in SIEM events
    enableForAllPolicies Boolean
    Whether to enable SIEM on all security policies in the security configuration
    enableSiem Boolean
    Whether to enable SIEM
    exceptions AppSecSiemSettingsExceptions
    Describes all the protections and actions to be excluded from SIEM events
    securityPolicyIds List<String>
    List of IDs of security policy for which SIEM integration is to be enabled
    siemId Integer
    Unique identifier of the SIEM settings being modified
    configId number
    Unique identifier of the security configuration
    enableBotmanSiem boolean
    Whether Bot Manager events should be included in SIEM events
    enableForAllPolicies boolean
    Whether to enable SIEM on all security policies in the security configuration
    enableSiem boolean
    Whether to enable SIEM
    exceptions AppSecSiemSettingsExceptions
    Describes all the protections and actions to be excluded from SIEM events
    securityPolicyIds string[]
    List of IDs of security policy for which SIEM integration is to be enabled
    siemId number
    Unique identifier of the SIEM settings being modified
    config_id int
    Unique identifier of the security configuration
    enable_botman_siem bool
    Whether Bot Manager events should be included in SIEM events
    enable_for_all_policies bool
    Whether to enable SIEM on all security policies in the security configuration
    enable_siem bool
    Whether to enable SIEM
    exceptions AppSecSiemSettingsExceptionsArgs
    Describes all the protections and actions to be excluded from SIEM events
    security_policy_ids Sequence[str]
    List of IDs of security policy for which SIEM integration is to be enabled
    siem_id int
    Unique identifier of the SIEM settings being modified
    configId Number
    Unique identifier of the security configuration
    enableBotmanSiem Boolean
    Whether Bot Manager events should be included in SIEM events
    enableForAllPolicies Boolean
    Whether to enable SIEM on all security policies in the security configuration
    enableSiem Boolean
    Whether to enable SIEM
    exceptions Property Map
    Describes all the protections and actions to be excluded from SIEM events
    securityPolicyIds List<String>
    List of IDs of security policy for which SIEM integration is to be enabled
    siemId Number
    Unique identifier of the SIEM settings being modified

    Supporting Types

    AppSecSiemSettingsExceptions, AppSecSiemSettingsExceptionsArgs

    ApiRequestConstraints List<string>
    Whether there should be an exception to include api request constraints events in SIEM
    AprProtections List<string>
    Whether there should be an exception to include apr protection events in SIEM
    BotManagements List<string>
    Whether there should be an exception to include bot management events in SIEM
    ClientReps List<string>
    Whether there should be an exception to include client reputation events in SIEM
    CustomRules List<string>
    Whether there should be an exception to include custom rules events in SIEM
    IpGeos List<string>
    Whether there should be an exception to include ip geo events in SIEM
    MalwareProtections List<string>
    Whether there should be an exception to include malware protection events in SIEM
    Rates List<string>
    Whether there should be an exception to include rate events in SIEM
    SlowPosts List<string>
    Whether there should be an exception to include slow post events in SIEM
    UrlProtections List<string>
    Whether there should be an exception to include url protection events in SIEM
    Wafs List<string>
    Whether there should be an exception to include waf events in SIEM
    ApiRequestConstraints []string
    Whether there should be an exception to include api request constraints events in SIEM
    AprProtections []string
    Whether there should be an exception to include apr protection events in SIEM
    BotManagements []string
    Whether there should be an exception to include bot management events in SIEM
    ClientReps []string
    Whether there should be an exception to include client reputation events in SIEM
    CustomRules []string
    Whether there should be an exception to include custom rules events in SIEM
    IpGeos []string
    Whether there should be an exception to include ip geo events in SIEM
    MalwareProtections []string
    Whether there should be an exception to include malware protection events in SIEM
    Rates []string
    Whether there should be an exception to include rate events in SIEM
    SlowPosts []string
    Whether there should be an exception to include slow post events in SIEM
    UrlProtections []string
    Whether there should be an exception to include url protection events in SIEM
    Wafs []string
    Whether there should be an exception to include waf events in SIEM
    apiRequestConstraints List<String>
    Whether there should be an exception to include api request constraints events in SIEM
    aprProtections List<String>
    Whether there should be an exception to include apr protection events in SIEM
    botManagements List<String>
    Whether there should be an exception to include bot management events in SIEM
    clientReps List<String>
    Whether there should be an exception to include client reputation events in SIEM
    customRules List<String>
    Whether there should be an exception to include custom rules events in SIEM
    ipGeos List<String>
    Whether there should be an exception to include ip geo events in SIEM
    malwareProtections List<String>
    Whether there should be an exception to include malware protection events in SIEM
    rates List<String>
    Whether there should be an exception to include rate events in SIEM
    slowPosts List<String>
    Whether there should be an exception to include slow post events in SIEM
    urlProtections List<String>
    Whether there should be an exception to include url protection events in SIEM
    wafs List<String>
    Whether there should be an exception to include waf events in SIEM
    apiRequestConstraints string[]
    Whether there should be an exception to include api request constraints events in SIEM
    aprProtections string[]
    Whether there should be an exception to include apr protection events in SIEM
    botManagements string[]
    Whether there should be an exception to include bot management events in SIEM
    clientReps string[]
    Whether there should be an exception to include client reputation events in SIEM
    customRules string[]
    Whether there should be an exception to include custom rules events in SIEM
    ipGeos string[]
    Whether there should be an exception to include ip geo events in SIEM
    malwareProtections string[]
    Whether there should be an exception to include malware protection events in SIEM
    rates string[]
    Whether there should be an exception to include rate events in SIEM
    slowPosts string[]
    Whether there should be an exception to include slow post events in SIEM
    urlProtections string[]
    Whether there should be an exception to include url protection events in SIEM
    wafs string[]
    Whether there should be an exception to include waf events in SIEM
    api_request_constraints Sequence[str]
    Whether there should be an exception to include api request constraints events in SIEM
    apr_protections Sequence[str]
    Whether there should be an exception to include apr protection events in SIEM
    bot_managements Sequence[str]
    Whether there should be an exception to include bot management events in SIEM
    client_reps Sequence[str]
    Whether there should be an exception to include client reputation events in SIEM
    custom_rules Sequence[str]
    Whether there should be an exception to include custom rules events in SIEM
    ip_geos Sequence[str]
    Whether there should be an exception to include ip geo events in SIEM
    malware_protections Sequence[str]
    Whether there should be an exception to include malware protection events in SIEM
    rates Sequence[str]
    Whether there should be an exception to include rate events in SIEM
    slow_posts Sequence[str]
    Whether there should be an exception to include slow post events in SIEM
    url_protections Sequence[str]
    Whether there should be an exception to include url protection events in SIEM
    wafs Sequence[str]
    Whether there should be an exception to include waf events in SIEM
    apiRequestConstraints List<String>
    Whether there should be an exception to include api request constraints events in SIEM
    aprProtections List<String>
    Whether there should be an exception to include apr protection events in SIEM
    botManagements List<String>
    Whether there should be an exception to include bot management events in SIEM
    clientReps List<String>
    Whether there should be an exception to include client reputation events in SIEM
    customRules List<String>
    Whether there should be an exception to include custom rules events in SIEM
    ipGeos List<String>
    Whether there should be an exception to include ip geo events in SIEM
    malwareProtections List<String>
    Whether there should be an exception to include malware protection events in SIEM
    rates List<String>
    Whether there should be an exception to include rate events in SIEM
    slowPosts List<String>
    Whether there should be an exception to include slow post events in SIEM
    urlProtections List<String>
    Whether there should be an exception to include url protection events in SIEM
    wafs List<String>
    Whether there should be an exception to include waf events in SIEM

    Package Details

    Repository
    Akamai pulumi/pulumi-akamai
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the akamai Terraform Provider.
    akamai logo
    Akamai v8.0.0 published on Saturday, Mar 1, 2025 by Pulumi