com.pulumi.azurenative.securityinsights.enums.AutomationRulePropertyConditionSupportedProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.securityinsights.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* The property to evaluate in an automation rule property condition.
*
*/
@EnumType
public enum AutomationRulePropertyConditionSupportedProperty {
/**
* The title of the incident
*
*/
IncidentTitle("IncidentTitle"),
/**
* The description of the incident
*
*/
IncidentDescription("IncidentDescription"),
/**
* The severity of the incident
*
*/
IncidentSeverity("IncidentSeverity"),
/**
* The status of the incident
*
*/
IncidentStatus("IncidentStatus"),
/**
* The related Analytic rule ids of the incident
*
*/
IncidentRelatedAnalyticRuleIds("IncidentRelatedAnalyticRuleIds"),
/**
* The tactics of the incident
*
*/
IncidentTactics("IncidentTactics"),
/**
* The labels of the incident
*
*/
IncidentLabel("IncidentLabel"),
/**
* The provider name of the incident
*
*/
IncidentProviderName("IncidentProviderName"),
/**
* The update source of the incident
*
*/
IncidentUpdatedBySource("IncidentUpdatedBySource"),
/**
* The account Azure Active Directory tenant id
*
*/
AccountAadTenantId("AccountAadTenantId"),
/**
* The account Azure Active Directory user id
*
*/
AccountAadUserId("AccountAadUserId"),
/**
* The account name
*
*/
AccountName("AccountName"),
/**
* The account NetBIOS domain name
*
*/
AccountNTDomain("AccountNTDomain"),
/**
* The account Azure Active Directory Passport User ID
*
*/
AccountPUID("AccountPUID"),
/**
* The account security identifier
*
*/
AccountSid("AccountSid"),
/**
* The account unique identifier
*
*/
AccountObjectGuid("AccountObjectGuid"),
/**
* The account user principal name suffix
*
*/
AccountUPNSuffix("AccountUPNSuffix"),
/**
* The name of the product of the alert
*
*/
AlertProductNames("AlertProductNames"),
/**
* The analytic rule ids of the alert
*
*/
AlertAnalyticRuleIds("AlertAnalyticRuleIds"),
/**
* The Azure resource id
*
*/
AzureResourceResourceId("AzureResourceResourceId"),
/**
* The Azure resource subscription id
*
*/
AzureResourceSubscriptionId("AzureResourceSubscriptionId"),
/**
* The cloud application identifier
*
*/
CloudApplicationAppId("CloudApplicationAppId"),
/**
* The cloud application name
*
*/
CloudApplicationAppName("CloudApplicationAppName"),
/**
* The dns record domain name
*
*/
DNSDomainName("DNSDomainName"),
/**
* The file directory full path
*
*/
FileDirectory("FileDirectory"),
/**
* The file name without path
*
*/
FileName("FileName"),
/**
* The file hash value
*
*/
FileHashValue("FileHashValue"),
/**
* The host Azure resource id
*
*/
HostAzureID("HostAzureID"),
/**
* The host name without domain
*
*/
HostName("HostName"),
/**
* The host NetBIOS name
*
*/
HostNetBiosName("HostNetBiosName"),
/**
* The host NT domain
*
*/
HostNTDomain("HostNTDomain"),
/**
* The host operating system
*
*/
HostOSVersion("HostOSVersion"),
/**
* "The IoT device id
*
*/
IoTDeviceId("IoTDeviceId"),
/**
* The IoT device name
*
*/
IoTDeviceName("IoTDeviceName"),
/**
* The IoT device type
*
*/
IoTDeviceType("IoTDeviceType"),
/**
* The IoT device vendor
*
*/
IoTDeviceVendor("IoTDeviceVendor"),
/**
* The IoT device model
*
*/
IoTDeviceModel("IoTDeviceModel"),
/**
* The IoT device operating system
*
*/
IoTDeviceOperatingSystem("IoTDeviceOperatingSystem"),
/**
* The IP address
*
*/
IPAddress("IPAddress"),
/**
* The mailbox display name
*
*/
MailboxDisplayName("MailboxDisplayName"),
/**
* The mailbox primary address
*
*/
MailboxPrimaryAddress("MailboxPrimaryAddress"),
/**
* The mailbox user principal name
*
*/
MailboxUPN("MailboxUPN"),
/**
* The mail message delivery action
*
*/
MailMessageDeliveryAction("MailMessageDeliveryAction"),
/**
* The mail message delivery location
*
*/
MailMessageDeliveryLocation("MailMessageDeliveryLocation"),
/**
* The mail message recipient
*
*/
MailMessageRecipient("MailMessageRecipient"),
/**
* The mail message sender IP address
*
*/
MailMessageSenderIP("MailMessageSenderIP"),
/**
* The mail message subject
*
*/
MailMessageSubject("MailMessageSubject"),
/**
* The mail message P1 sender
*
*/
MailMessageP1Sender("MailMessageP1Sender"),
/**
* The mail message P2 sender
*
*/
MailMessageP2Sender("MailMessageP2Sender"),
/**
* The malware category
*
*/
MalwareCategory("MalwareCategory"),
/**
* The malware name
*
*/
MalwareName("MalwareName"),
/**
* The process execution command line
*
*/
ProcessCommandLine("ProcessCommandLine"),
/**
* The process id
*
*/
ProcessId("ProcessId"),
/**
* The registry key path
*
*/
RegistryKey("RegistryKey"),
/**
* The registry key value in string formatted representation
*
*/
RegistryValueData("RegistryValueData"),
/**
* The url
*
*/
Url("Url");
private final String value;
AutomationRulePropertyConditionSupportedProperty(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "AutomationRulePropertyConditionSupportedProperty[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy