gcp.chronicle.Rule
Explore with Pulumi AI
Example Usage
Chronicle Rule Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.chronicle.Rule("example", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
deletionPolicy: "DEFAULT",
text: "rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n",
});
import pulumi
import pulumi_gcp as gcp
example = gcp.chronicle.Rule("example",
location="us",
instance="00000000-0000-0000-0000-000000000000",
deletion_policy="DEFAULT",
text="rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n")
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/chronicle"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := chronicle.NewRule(ctx, "example", &chronicle.RuleArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
DeletionPolicy: pulumi.String("DEFAULT"),
Text: pulumi.String("rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.Chronicle.Rule("example", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
DeletionPolicy = "DEFAULT",
Text = @"rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.chronicle.Rule;
import com.pulumi.gcp.chronicle.RuleArgs;
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) {
var example = new Rule("example", RuleArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.deletionPolicy("DEFAULT")
.text("""
rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
""")
.build());
}
}
resources:
example:
type: gcp:chronicle:Rule
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
deletionPolicy: DEFAULT
text: |
rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
Chronicle Rule With Force Deletion
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.chronicle.Rule("example", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
deletionPolicy: "FORCE",
text: "rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n",
});
import pulumi
import pulumi_gcp as gcp
example = gcp.chronicle.Rule("example",
location="us",
instance="00000000-0000-0000-0000-000000000000",
deletion_policy="FORCE",
text="rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n")
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/chronicle"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := chronicle.NewRule(ctx, "example", &chronicle.RuleArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
DeletionPolicy: pulumi.String("FORCE"),
Text: pulumi.String("rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.Chronicle.Rule("example", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
DeletionPolicy = "FORCE",
Text = @"rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.chronicle.Rule;
import com.pulumi.gcp.chronicle.RuleArgs;
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) {
var example = new Rule("example", RuleArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.deletionPolicy("FORCE")
.text("""
rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
""")
.build());
}
}
resources:
example:
type: gcp:chronicle:Rule
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
deletionPolicy: FORCE
text: |
rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
Chronicle Rule With Data Access Scope
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const dataAccessScopeTest = new gcp.chronicle.DataAccessScope("data_access_scope_test", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
dataAccessScopeId: "scope-name",
description: "scope-description",
allowedDataAccessLabels: [{
logType: "GCP_CLOUDAUDIT",
}],
});
const example = new gcp.chronicle.Rule("example", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
scope: googleChronicleDataAccessScope.dataAccessScopeTest.name,
text: "rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n",
});
import pulumi
import pulumi_gcp as gcp
data_access_scope_test = gcp.chronicle.DataAccessScope("data_access_scope_test",
location="us",
instance="00000000-0000-0000-0000-000000000000",
data_access_scope_id="scope-name",
description="scope-description",
allowed_data_access_labels=[{
"log_type": "GCP_CLOUDAUDIT",
}])
example = gcp.chronicle.Rule("example",
location="us",
instance="00000000-0000-0000-0000-000000000000",
scope=google_chronicle_data_access_scope["dataAccessScopeTest"]["name"],
text="rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n")
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/chronicle"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := chronicle.NewDataAccessScope(ctx, "data_access_scope_test", &chronicle.DataAccessScopeArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
DataAccessScopeId: pulumi.String("scope-name"),
Description: pulumi.String("scope-description"),
AllowedDataAccessLabels: chronicle.DataAccessScopeAllowedDataAccessLabelArray{
&chronicle.DataAccessScopeAllowedDataAccessLabelArgs{
LogType: pulumi.String("GCP_CLOUDAUDIT"),
},
},
})
if err != nil {
return err
}
_, err = chronicle.NewRule(ctx, "example", &chronicle.RuleArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
Scope: pulumi.Any(googleChronicleDataAccessScope.DataAccessScopeTest.Name),
Text: pulumi.String("rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }\n"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var dataAccessScopeTest = new Gcp.Chronicle.DataAccessScope("data_access_scope_test", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
DataAccessScopeId = "scope-name",
Description = "scope-description",
AllowedDataAccessLabels = new[]
{
new Gcp.Chronicle.Inputs.DataAccessScopeAllowedDataAccessLabelArgs
{
LogType = "GCP_CLOUDAUDIT",
},
},
});
var example = new Gcp.Chronicle.Rule("example", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
Scope = googleChronicleDataAccessScope.DataAccessScopeTest.Name,
Text = @"rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.chronicle.DataAccessScope;
import com.pulumi.gcp.chronicle.DataAccessScopeArgs;
import com.pulumi.gcp.chronicle.inputs.DataAccessScopeAllowedDataAccessLabelArgs;
import com.pulumi.gcp.chronicle.Rule;
import com.pulumi.gcp.chronicle.RuleArgs;
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) {
var dataAccessScopeTest = new DataAccessScope("dataAccessScopeTest", DataAccessScopeArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.dataAccessScopeId("scope-name")
.description("scope-description")
.allowedDataAccessLabels(DataAccessScopeAllowedDataAccessLabelArgs.builder()
.logType("GCP_CLOUDAUDIT")
.build())
.build());
var example = new Rule("example", RuleArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.scope(googleChronicleDataAccessScope.dataAccessScopeTest().name())
.text("""
rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
""")
.build());
}
}
resources:
dataAccessScopeTest:
type: gcp:chronicle:DataAccessScope
name: data_access_scope_test
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
dataAccessScopeId: scope-name
description: scope-description
allowedDataAccessLabels:
- logType: GCP_CLOUDAUDIT
example:
type: gcp:chronicle:Rule
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
scope: ${googleChronicleDataAccessScope.dataAccessScopeTest.name}
text: |
rule test_rule { meta: events: $userid = $e.principal.user.userid match: $userid over 10m condition: $e }
Create Rule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Rule(name: string, args: RuleArgs, opts?: CustomResourceOptions);
@overload
def Rule(resource_name: str,
args: RuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Rule(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance: Optional[str] = None,
location: Optional[str] = None,
deletion_policy: Optional[str] = None,
etag: Optional[str] = None,
project: Optional[str] = None,
rule_id: Optional[str] = None,
scope: Optional[str] = None,
text: Optional[str] = None)
func NewRule(ctx *Context, name string, args RuleArgs, opts ...ResourceOption) (*Rule, error)
public Rule(string name, RuleArgs args, CustomResourceOptions? opts = null)
type: gcp:chronicle:Rule
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 RuleArgs
- 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 RuleArgs
- 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 RuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RuleArgs
- 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 ruleResource = new Gcp.Chronicle.Rule("ruleResource", new()
{
Instance = "string",
Location = "string",
DeletionPolicy = "string",
Etag = "string",
Project = "string",
RuleId = "string",
Scope = "string",
Text = "string",
});
example, err := chronicle.NewRule(ctx, "ruleResource", &chronicle.RuleArgs{
Instance: pulumi.String("string"),
Location: pulumi.String("string"),
DeletionPolicy: pulumi.String("string"),
Etag: pulumi.String("string"),
Project: pulumi.String("string"),
RuleId: pulumi.String("string"),
Scope: pulumi.String("string"),
Text: pulumi.String("string"),
})
var ruleResource = new Rule("ruleResource", RuleArgs.builder()
.instance("string")
.location("string")
.deletionPolicy("string")
.etag("string")
.project("string")
.ruleId("string")
.scope("string")
.text("string")
.build());
rule_resource = gcp.chronicle.Rule("ruleResource",
instance="string",
location="string",
deletion_policy="string",
etag="string",
project="string",
rule_id="string",
scope="string",
text="string")
const ruleResource = new gcp.chronicle.Rule("ruleResource", {
instance: "string",
location: "string",
deletionPolicy: "string",
etag: "string",
project: "string",
ruleId: "string",
scope: "string",
text: "string",
});
type: gcp:chronicle:Rule
properties:
deletionPolicy: string
etag: string
instance: string
location: string
project: string
ruleId: string
scope: string
text: string
Rule 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 Rule resource accepts the following input properties:
- Instance string
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- Location string
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- Deletion
Policy string - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- Etag string
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Rule
Id string - Rule Id is the ID of the Rule.
- Scope string
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- Text string
- The YARA-L content of the rule. Populated in FULL view.
- Instance string
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- Location string
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- Deletion
Policy string - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- Etag string
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Rule
Id string - Rule Id is the ID of the Rule.
- Scope string
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- Text string
- The YARA-L content of the rule. Populated in FULL view.
- instance String
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- location String
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- deletion
Policy String - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- etag String
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- rule
Id String - Rule Id is the ID of the Rule.
- scope String
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- text String
- The YARA-L content of the rule. Populated in FULL view.
- instance string
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- location string
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- deletion
Policy string - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- etag string
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- rule
Id string - Rule Id is the ID of the Rule.
- scope string
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- text string
- The YARA-L content of the rule. Populated in FULL view.
- instance str
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- location str
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- deletion_
policy str - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- etag str
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- rule_
id str - Rule Id is the ID of the Rule.
- scope str
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- text str
- The YARA-L content of the rule. Populated in FULL view.
- instance String
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- location String
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- deletion
Policy String - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- etag String
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- rule
Id String - Rule Id is the ID of the Rule.
- scope String
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- text String
- The YARA-L content of the rule. Populated in FULL view.
Outputs
All input properties are implicitly available as output properties. Additionally, the Rule resource produces the following output properties:
- Allowed
Run List<string>Frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- string
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- Compilation
Diagnostics List<RuleCompilation Diagnostic> - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- Compilation
State string - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- Create
Time string - Output only. The timestamp of when the rule was created. Populated in FULL view.
- Data
Tables List<string> - Output only. Resource names of the data tables used in this rule.
- Display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata Dictionary<string, string>
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- Name string
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- Near
Real boolTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- Reference
Lists List<string> - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- Revision
Create stringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- Revision
Id string - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- Severities
List<Rule
Severity> - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- Type string
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- Allowed
Run []stringFrequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- string
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- Compilation
Diagnostics []RuleCompilation Diagnostic - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- Compilation
State string - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- Create
Time string - Output only. The timestamp of when the rule was created. Populated in FULL view.
- Data
Tables []string - Output only. Resource names of the data tables used in this rule.
- Display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata map[string]string
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- Name string
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- Near
Real boolTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- Reference
Lists []string - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- Revision
Create stringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- Revision
Id string - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- Severities
[]Rule
Severity - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- Type string
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- allowed
Run List<String>Frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- String
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- compilation
Diagnostics List<RuleCompilation Diagnostic> - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- compilation
State String - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- create
Time String - Output only. The timestamp of when the rule was created. Populated in FULL view.
- data
Tables List<String> - Output only. Resource names of the data tables used in this rule.
- display
Name String - The display name of the severity level. Extracted from the meta section of the rule text.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata Map<String,String>
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- name String
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- near
Real BooleanTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- reference
Lists List<String> - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- revision
Create StringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- revision
Id String - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- severities
List<Rule
Severity> - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- type String
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- allowed
Run string[]Frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- string
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- compilation
Diagnostics RuleCompilation Diagnostic[] - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- compilation
State string - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- create
Time string - Output only. The timestamp of when the rule was created. Populated in FULL view.
- data
Tables string[] - Output only. Resource names of the data tables used in this rule.
- display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- id string
- The provider-assigned unique ID for this managed resource.
- metadata {[key: string]: string}
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- name string
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- near
Real booleanTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- reference
Lists string[] - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- revision
Create stringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- revision
Id string - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- severities
Rule
Severity[] - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- type string
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- allowed_
run_ Sequence[str]frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- str
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- compilation_
diagnostics Sequence[RuleCompilation Diagnostic] - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- compilation_
state str - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- create_
time str - Output only. The timestamp of when the rule was created. Populated in FULL view.
- data_
tables Sequence[str] - Output only. Resource names of the data tables used in this rule.
- display_
name str - The display name of the severity level. Extracted from the meta section of the rule text.
- id str
- The provider-assigned unique ID for this managed resource.
- metadata Mapping[str, str]
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- name str
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- near_
real_ booltime_ live_ rule_ eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- reference_
lists Sequence[str] - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- revision_
create_ strtime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- revision_
id str - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- severities
Sequence[Rule
Severity] - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- type str
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- allowed
Run List<String>Frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- String
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- compilation
Diagnostics List<Property Map> - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- compilation
State String - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- create
Time String - Output only. The timestamp of when the rule was created. Populated in FULL view.
- data
Tables List<String> - Output only. Resource names of the data tables used in this rule.
- display
Name String - The display name of the severity level. Extracted from the meta section of the rule text.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata Map<String>
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- name String
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- near
Real BooleanTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- reference
Lists List<String> - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- revision
Create StringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- revision
Id String - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- severities List<Property Map>
- (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- type String
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
Look up Existing Rule Resource
Get an existing Rule 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?: RuleState, opts?: CustomResourceOptions): Rule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allowed_run_frequencies: Optional[Sequence[str]] = None,
author: Optional[str] = None,
compilation_diagnostics: Optional[Sequence[RuleCompilationDiagnosticArgs]] = None,
compilation_state: Optional[str] = None,
create_time: Optional[str] = None,
data_tables: Optional[Sequence[str]] = None,
deletion_policy: Optional[str] = None,
display_name: Optional[str] = None,
etag: Optional[str] = None,
instance: Optional[str] = None,
location: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
near_real_time_live_rule_eligible: Optional[bool] = None,
project: Optional[str] = None,
reference_lists: Optional[Sequence[str]] = None,
revision_create_time: Optional[str] = None,
revision_id: Optional[str] = None,
rule_id: Optional[str] = None,
scope: Optional[str] = None,
severities: Optional[Sequence[RuleSeverityArgs]] = None,
text: Optional[str] = None,
type: Optional[str] = None) -> Rule
func GetRule(ctx *Context, name string, id IDInput, state *RuleState, opts ...ResourceOption) (*Rule, error)
public static Rule Get(string name, Input<string> id, RuleState? state, CustomResourceOptions? opts = null)
public static Rule get(String name, Output<String> id, RuleState state, CustomResourceOptions options)
resources: _: type: gcp:chronicle:Rule 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.
- Allowed
Run List<string>Frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- string
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- Compilation
Diagnostics List<RuleCompilation Diagnostic> - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- Compilation
State string - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- Create
Time string - Output only. The timestamp of when the rule was created. Populated in FULL view.
- Data
Tables List<string> - Output only. Resource names of the data tables used in this rule.
- Deletion
Policy string - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- Display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- Etag string
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- Instance string
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- Location string
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- Metadata Dictionary<string, string>
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- Name string
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- Near
Real boolTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Reference
Lists List<string> - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- Revision
Create stringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- Revision
Id string - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- Rule
Id string - Rule Id is the ID of the Rule.
- Scope string
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- Severities
List<Rule
Severity> - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- Text string
- The YARA-L content of the rule. Populated in FULL view.
- Type string
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- Allowed
Run []stringFrequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- string
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- Compilation
Diagnostics []RuleCompilation Diagnostic Args - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- Compilation
State string - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- Create
Time string - Output only. The timestamp of when the rule was created. Populated in FULL view.
- Data
Tables []string - Output only. Resource names of the data tables used in this rule.
- Deletion
Policy string - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- Display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- Etag string
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- Instance string
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- Location string
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- Metadata map[string]string
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- Name string
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- Near
Real boolTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Reference
Lists []string - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- Revision
Create stringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- Revision
Id string - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- Rule
Id string - Rule Id is the ID of the Rule.
- Scope string
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- Severities
[]Rule
Severity Args - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- Text string
- The YARA-L content of the rule. Populated in FULL view.
- Type string
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- allowed
Run List<String>Frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- String
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- compilation
Diagnostics List<RuleCompilation Diagnostic> - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- compilation
State String - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- create
Time String - Output only. The timestamp of when the rule was created. Populated in FULL view.
- data
Tables List<String> - Output only. Resource names of the data tables used in this rule.
- deletion
Policy String - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- display
Name String - The display name of the severity level. Extracted from the meta section of the rule text.
- etag String
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- instance String
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- location String
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- metadata Map<String,String>
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- name String
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- near
Real BooleanTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- reference
Lists List<String> - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- revision
Create StringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- revision
Id String - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- rule
Id String - Rule Id is the ID of the Rule.
- scope String
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- severities
List<Rule
Severity> - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- text String
- The YARA-L content of the rule. Populated in FULL view.
- type String
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- allowed
Run string[]Frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- string
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- compilation
Diagnostics RuleCompilation Diagnostic[] - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- compilation
State string - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- create
Time string - Output only. The timestamp of when the rule was created. Populated in FULL view.
- data
Tables string[] - Output only. Resource names of the data tables used in this rule.
- deletion
Policy string - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- etag string
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- instance string
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- location string
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- metadata {[key: string]: string}
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- name string
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- near
Real booleanTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- reference
Lists string[] - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- revision
Create stringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- revision
Id string - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- rule
Id string - Rule Id is the ID of the Rule.
- scope string
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- severities
Rule
Severity[] - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- text string
- The YARA-L content of the rule. Populated in FULL view.
- type string
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- allowed_
run_ Sequence[str]frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- str
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- compilation_
diagnostics Sequence[RuleCompilation Diagnostic Args] - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- compilation_
state str - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- create_
time str - Output only. The timestamp of when the rule was created. Populated in FULL view.
- data_
tables Sequence[str] - Output only. Resource names of the data tables used in this rule.
- deletion_
policy str - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- display_
name str - The display name of the severity level. Extracted from the meta section of the rule text.
- etag str
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- instance str
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- location str
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- metadata Mapping[str, str]
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- name str
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- near_
real_ booltime_ live_ rule_ eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- reference_
lists Sequence[str] - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- revision_
create_ strtime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- revision_
id str - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- rule_
id str - Rule Id is the ID of the Rule.
- scope str
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- severities
Sequence[Rule
Severity Args] - (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- text str
- The YARA-L content of the rule. Populated in FULL view.
- type str
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
- allowed
Run List<String>Frequencies - Output only. The run frequencies that are allowed for the rule. Populated in BASIC view and FULL view.
- String
- Output only. The author of the rule. Extracted from the meta section of text. Populated in BASIC view and FULL view.
- compilation
Diagnostics List<Property Map> - Output only. A list of a rule's corresponding compilation diagnostic messages such as compilation errors and compilation warnings. Populated in FULL view. Structure is documented below.
- compilation
State String - Output only. The current compilation state of the rule. Populated in FULL view. Possible values: COMPILATION_STATE_UNSPECIFIED SUCCEEDED FAILED
- create
Time String - Output only. The timestamp of when the rule was created. Populated in FULL view.
- data
Tables List<String> - Output only. Resource names of the data tables used in this rule.
- deletion
Policy String - Policy to determine if the rule should be deleted forcefully. If deletion_policy = "FORCE", any retrohunts and any detections associated with the rule will also be deleted. If deletion_policy = "DEFAULT", the call will only succeed if the rule has no associated retrohunts, including completed retrohunts, and no associated detections. Regardless of this field's value, the rule deployment associated with this rule will also be deleted. Possible values: DEFAULT, FORCE
- display
Name String - The display name of the severity level. Extracted from the meta section of the rule text.
- etag String
- The etag for this rule. If this is provided on update, the request will succeed if and only if it matches the server-computed value, and will fail with an ABORTED error otherwise. Populated in BASIC view and FULL view.
- instance String
- The unique identifier for the Chronicle instance, which is the same as the customer ID.
- location String
- The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
- metadata Map<String>
- Output only. Additional metadata specified in the meta section of text. Populated in FULL view.
- name String
- Full resource name for the rule. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}
- near
Real BooleanTime Live Rule Eligible - Output only. Indicate the rule can run in near real time live rule. If this is true, the rule uses the near real time live rule when the run frequency is set to LIVE.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- reference
Lists List<String> - Output only. Resource names of the reference lists used in this rule. Populated in FULL view.
- revision
Create StringTime - Output only. The timestamp of when the rule revision was created. Populated in FULL, REVISION_METADATA_ONLY views.
- revision
Id String - Output only. The revision ID of the rule. A new revision is created whenever the rule text is changed in any way. Format: v_{10 digits}_{9 digits} Populated in REVISION_METADATA_ONLY view and FULL view.
- rule
Id String - Rule Id is the ID of the Rule.
- scope String
- Resource name of the DataAccessScope bound to this rule. Populated in BASIC view and FULL view. If reference lists are used in the rule, validations will be performed against this scope to ensure that the reference lists are compatible with both the user's and the rule's scopes. The scope should be in the format: "projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope}".
- severities List<Property Map>
- (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- text String
- The YARA-L content of the rule. Populated in FULL view.
- type String
- Possible values: RULE_TYPE_UNSPECIFIED SINGLE_EVENT MULTI_EVENT
Supporting Types
RuleCompilationDiagnostic, RuleCompilationDiagnosticArgs
- Message string
- (Output) Output only. The diagnostic message.
- Position
Rule
Compilation Diagnostic Position - CompilationPosition represents the location of a compilation diagnostic in rule text. Structure is documented below.
- Severity string
- (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- Uri string
- (Output) Output only. Link to documentation that describes a diagnostic in more detail.
- Message string
- (Output) Output only. The diagnostic message.
- Position
Rule
Compilation Diagnostic Position - CompilationPosition represents the location of a compilation diagnostic in rule text. Structure is documented below.
- Severity string
- (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- Uri string
- (Output) Output only. Link to documentation that describes a diagnostic in more detail.
- message String
- (Output) Output only. The diagnostic message.
- position
Rule
Compilation Diagnostic Position - CompilationPosition represents the location of a compilation diagnostic in rule text. Structure is documented below.
- severity String
- (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- uri String
- (Output) Output only. Link to documentation that describes a diagnostic in more detail.
- message string
- (Output) Output only. The diagnostic message.
- position
Rule
Compilation Diagnostic Position - CompilationPosition represents the location of a compilation diagnostic in rule text. Structure is documented below.
- severity string
- (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- uri string
- (Output) Output only. Link to documentation that describes a diagnostic in more detail.
- message str
- (Output) Output only. The diagnostic message.
- position
Rule
Compilation Diagnostic Position - CompilationPosition represents the location of a compilation diagnostic in rule text. Structure is documented below.
- severity str
- (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- uri str
- (Output) Output only. Link to documentation that describes a diagnostic in more detail.
- message String
- (Output) Output only. The diagnostic message.
- position Property Map
- CompilationPosition represents the location of a compilation diagnostic in rule text. Structure is documented below.
- severity String
- (Output) Output only. The severity of a rule's compilation diagnostic. Possible values: SEVERITY_UNSPECIFIED WARNING ERROR
- uri String
- (Output) Output only. Link to documentation that describes a diagnostic in more detail.
RuleCompilationDiagnosticPosition, RuleCompilationDiagnosticPositionArgs
- End
Column int - (Output) Output only. End column number, beginning at 1.
- End
Line int - (Output) Output only. End line number, beginning at 1.
- Start
Column int - (Output) Output only. Start column number, beginning at 1.
- Start
Line int - (Output) Output only. Start line number, beginning at 1.
- End
Column int - (Output) Output only. End column number, beginning at 1.
- End
Line int - (Output) Output only. End line number, beginning at 1.
- Start
Column int - (Output) Output only. Start column number, beginning at 1.
- Start
Line int - (Output) Output only. Start line number, beginning at 1.
- end
Column Integer - (Output) Output only. End column number, beginning at 1.
- end
Line Integer - (Output) Output only. End line number, beginning at 1.
- start
Column Integer - (Output) Output only. Start column number, beginning at 1.
- start
Line Integer - (Output) Output only. Start line number, beginning at 1.
- end
Column number - (Output) Output only. End column number, beginning at 1.
- end
Line number - (Output) Output only. End line number, beginning at 1.
- start
Column number - (Output) Output only. Start column number, beginning at 1.
- start
Line number - (Output) Output only. Start line number, beginning at 1.
- end_
column int - (Output) Output only. End column number, beginning at 1.
- end_
line int - (Output) Output only. End line number, beginning at 1.
- start_
column int - (Output) Output only. Start column number, beginning at 1.
- start_
line int - (Output) Output only. Start line number, beginning at 1.
- end
Column Number - (Output) Output only. End column number, beginning at 1.
- end
Line Number - (Output) Output only. End line number, beginning at 1.
- start
Column Number - (Output) Output only. Start column number, beginning at 1.
- start
Line Number - (Output) Output only. Start line number, beginning at 1.
RuleSeverity, RuleSeverityArgs
- Display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- Display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- display
Name String - The display name of the severity level. Extracted from the meta section of the rule text.
- display
Name string - The display name of the severity level. Extracted from the meta section of the rule text.
- display_
name str - The display name of the severity level. Extracted from the meta section of the rule text.
- display
Name String - The display name of the severity level. Extracted from the meta section of the rule text.
Import
Rule can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/instances/{{instance}}/rules/{{rule_id}}
{{project}}/{{location}}/{{instance}}/{{rule_id}}
{{location}}/{{instance}}/{{rule_id}}
When using the pulumi import
command, Rule can be imported using one of the formats above. For example:
$ pulumi import gcp:chronicle/rule:Rule default projects/{{project}}/locations/{{location}}/instances/{{instance}}/rules/{{rule_id}}
$ pulumi import gcp:chronicle/rule:Rule default {{project}}/{{location}}/{{instance}}/{{rule_id}}
$ pulumi import gcp:chronicle/rule:Rule default {{location}}/{{instance}}/{{rule_id}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.