akamai.AppSecSiemSettings
Explore with Pulumi AI
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:
- Config
Id int - Unique identifier of the security configuration
- Enable
For boolAll Policies - 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 boolSiem - Whether Bot Manager events should be included in SIEM events
- Exceptions
App
Sec Siem Settings Exceptions - Describes all the protections and actions to be excluded from SIEM events
- Security
Policy List<string>Ids - 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 boolAll Policies - 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 boolSiem - Whether Bot Manager events should be included in SIEM events
- Exceptions
App
Sec Siem Settings Exceptions Args - Describes all the protections and actions to be excluded from SIEM events
- Security
Policy []stringIds - List of IDs of security policy for which SIEM integration is to be enabled
- config
Id Integer - Unique identifier of the security configuration
- enable
For BooleanAll Policies - Whether to enable SIEM on all security policies in the security configuration
- enable
Siem Boolean - Whether to enable SIEM
- siem
Id Integer - Unique identifier of the SIEM settings being modified
- enable
Botman BooleanSiem - Whether Bot Manager events should be included in SIEM events
- exceptions
App
Sec Siem Settings Exceptions - Describes all the protections and actions to be excluded from SIEM events
- security
Policy List<String>Ids - List of IDs of security policy for which SIEM integration is to be enabled
- config
Id number - Unique identifier of the security configuration
- enable
For booleanAll Policies - Whether to enable SIEM on all security policies in the security configuration
- enable
Siem boolean - Whether to enable SIEM
- siem
Id number - Unique identifier of the SIEM settings being modified
- enable
Botman booleanSiem - Whether Bot Manager events should be included in SIEM events
- exceptions
App
Sec Siem Settings Exceptions - Describes all the protections and actions to be excluded from SIEM events
- security
Policy string[]Ids - 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_ boolall_ policies - 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_ boolsiem - Whether Bot Manager events should be included in SIEM events
- exceptions
App
Sec Siem Settings Exceptions Args - Describes all the protections and actions to be excluded from SIEM events
- security_
policy_ Sequence[str]ids - List of IDs of security policy for which SIEM integration is to be enabled
- config
Id Number - Unique identifier of the security configuration
- enable
For BooleanAll Policies - Whether to enable SIEM on all security policies in the security configuration
- enable
Siem Boolean - Whether to enable SIEM
- siem
Id Number - Unique identifier of the SIEM settings being modified
- enable
Botman BooleanSiem - 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
- security
Policy List<String>Ids - 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.
- Config
Id int - Unique identifier of the security configuration
- Enable
Botman boolSiem - Whether Bot Manager events should be included in SIEM events
- Enable
For boolAll Policies - Whether to enable SIEM on all security policies in the security configuration
- Enable
Siem bool - Whether to enable SIEM
- Exceptions
App
Sec Siem Settings Exceptions - Describes all the protections and actions to be excluded from SIEM events
- Security
Policy List<string>Ids - 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
- Config
Id int - Unique identifier of the security configuration
- Enable
Botman boolSiem - Whether Bot Manager events should be included in SIEM events
- Enable
For boolAll Policies - Whether to enable SIEM on all security policies in the security configuration
- Enable
Siem bool - Whether to enable SIEM
- Exceptions
App
Sec Siem Settings Exceptions Args - Describes all the protections and actions to be excluded from SIEM events
- Security
Policy []stringIds - 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
- config
Id Integer - Unique identifier of the security configuration
- enable
Botman BooleanSiem - Whether Bot Manager events should be included in SIEM events
- enable
For BooleanAll Policies - Whether to enable SIEM on all security policies in the security configuration
- enable
Siem Boolean - Whether to enable SIEM
- exceptions
App
Sec Siem Settings Exceptions - Describes all the protections and actions to be excluded from SIEM events
- security
Policy List<String>Ids - List of IDs of security policy for which SIEM integration is to be enabled
- siem
Id Integer - Unique identifier of the SIEM settings being modified
- config
Id number - Unique identifier of the security configuration
- enable
Botman booleanSiem - Whether Bot Manager events should be included in SIEM events
- enable
For booleanAll Policies - Whether to enable SIEM on all security policies in the security configuration
- enable
Siem boolean - Whether to enable SIEM
- exceptions
App
Sec Siem Settings Exceptions - Describes all the protections and actions to be excluded from SIEM events
- security
Policy string[]Ids - List of IDs of security policy for which SIEM integration is to be enabled
- siem
Id number - Unique identifier of the SIEM settings being modified
- config_
id int - Unique identifier of the security configuration
- enable_
botman_ boolsiem - Whether Bot Manager events should be included in SIEM events
- enable_
for_ boolall_ policies - Whether to enable SIEM on all security policies in the security configuration
- enable_
siem bool - Whether to enable SIEM
- exceptions
App
Sec Siem Settings Exceptions Args - Describes all the protections and actions to be excluded from SIEM events
- security_
policy_ Sequence[str]ids - 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
- config
Id Number - Unique identifier of the security configuration
- enable
Botman BooleanSiem - Whether Bot Manager events should be included in SIEM events
- enable
For BooleanAll Policies - Whether to enable SIEM on all security policies in the security configuration
- enable
Siem Boolean - Whether to enable SIEM
- exceptions Property Map
- Describes all the protections and actions to be excluded from SIEM events
- security
Policy List<String>Ids - List of IDs of security policy for which SIEM integration is to be enabled
- siem
Id Number - Unique identifier of the SIEM settings being modified
Supporting Types
AppSecSiemSettingsExceptions, AppSecSiemSettingsExceptionsArgs
- Api
Request List<string>Constraints - Whether there should be an exception to include api request constraints events in SIEM
- Apr
Protections List<string> - Whether there should be an exception to include apr protection events in SIEM
- Bot
Managements List<string> - Whether there should be an exception to include bot management events in SIEM
- Client
Reps List<string> - Whether there should be an exception to include client reputation events in SIEM
- Custom
Rules List<string> - Whether there should be an exception to include custom rules events in SIEM
- Ip
Geos List<string> - Whether there should be an exception to include ip geo events in SIEM
- Malware
Protections 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
- Slow
Posts List<string> - Whether there should be an exception to include slow post events in SIEM
- Url
Protections 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
- Api
Request []stringConstraints - Whether there should be an exception to include api request constraints events in SIEM
- Apr
Protections []string - Whether there should be an exception to include apr protection events in SIEM
- Bot
Managements []string - Whether there should be an exception to include bot management events in SIEM
- Client
Reps []string - Whether there should be an exception to include client reputation events in SIEM
- Custom
Rules []string - Whether there should be an exception to include custom rules events in SIEM
- Ip
Geos []string - Whether there should be an exception to include ip geo events in SIEM
- Malware
Protections []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
- Slow
Posts []string - Whether there should be an exception to include slow post events in SIEM
- Url
Protections []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 List<String>Constraints - Whether there should be an exception to include api request constraints events in SIEM
- apr
Protections List<String> - Whether there should be an exception to include apr protection events in SIEM
- bot
Managements List<String> - Whether there should be an exception to include bot management events in SIEM
- client
Reps List<String> - Whether there should be an exception to include client reputation events in SIEM
- custom
Rules List<String> - Whether there should be an exception to include custom rules events in SIEM
- ip
Geos List<String> - Whether there should be an exception to include ip geo events in SIEM
- malware
Protections 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
- slow
Posts List<String> - Whether there should be an exception to include slow post events in SIEM
- url
Protections 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
- api
Request string[]Constraints - Whether there should be an exception to include api request constraints events in SIEM
- apr
Protections string[] - Whether there should be an exception to include apr protection events in SIEM
- bot
Managements string[] - Whether there should be an exception to include bot management events in SIEM
- client
Reps string[] - Whether there should be an exception to include client reputation events in SIEM
- custom
Rules string[] - Whether there should be an exception to include custom rules events in SIEM
- ip
Geos string[] - Whether there should be an exception to include ip geo events in SIEM
- malware
Protections 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
- slow
Posts string[] - Whether there should be an exception to include slow post events in SIEM
- url
Protections 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_ Sequence[str]constraints - 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
- api
Request List<String>Constraints - Whether there should be an exception to include api request constraints events in SIEM
- apr
Protections List<String> - Whether there should be an exception to include apr protection events in SIEM
- bot
Managements List<String> - Whether there should be an exception to include bot management events in SIEM
- client
Reps List<String> - Whether there should be an exception to include client reputation events in SIEM
- custom
Rules List<String> - Whether there should be an exception to include custom rules events in SIEM
- ip
Geos List<String> - Whether there should be an exception to include ip geo events in SIEM
- malware
Protections 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
- slow
Posts List<String> - Whether there should be an exception to include slow post events in SIEM
- url
Protections 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.