RetrohuntArgs

data class RetrohuntArgs(val RetrohuntId: Output<String>? = null, val instance: Output<String>? = null, val location: Output<String>? = null, val processInterval: Output<RetrohuntProcessIntervalArgs>? = null, val project: Output<String>? = null, val rule: Output<String>? = null) : ConvertibleToJava<RetrohuntArgs>

Retrohunt is an execution of a Rule over a time range in the past. To get more information about Retrohunt, see:

Example Usage

Import

Retrohunt can be imported using any of these accepted formats:

  • projects/{{project}}/locations/{{location}}/instances/{{instance}}/rules/{{rule}}/retrohunts/{{retrohunt}}

  • {{project}}/{{location}}/{{instance}}/{{rule}}/{{retrohunt}}

  • {{location}}/{{instance}}/{{rule}}/{{retrohunt}} When using the pulumi import command, Retrohunt can be imported using one of the formats above. For example:

$ pulumi import gcp:chronicle/retrohunt:Retrohunt default projects/{{project}}/locations/{{location}}/instances/{{instance}}/rules/{{rule}}/retrohunts/{{retrohunt}}
$ pulumi import gcp:chronicle/retrohunt:Retrohunt default {{project}}/{{location}}/{{instance}}/{{rule}}/{{retrohunt}}
$ pulumi import gcp:chronicle/retrohunt:Retrohunt default {{location}}/{{instance}}/{{rule}}/{{retrohunt}}

Constructors

Link copied to clipboard
constructor(RetrohuntId: Output<String>? = null, instance: Output<String>? = null, location: Output<String>? = null, processInterval: Output<RetrohuntProcessIntervalArgs>? = null, project: Output<String>? = null, rule: Output<String>? = null)

Properties

Link copied to clipboard
val instance: Output<String>? = null

The unique identifier for the Chronicle instance, which is the same as the customer ID.

Link copied to clipboard
val location: Output<String>? = null

The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".

Link copied to clipboard

Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. Structure is documented below.

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val RetrohuntId: Output<String>? = null

The retrohunt ID of the Retrohunt. A retrohunt is an execution of a Rule over a time range in the past.

Link copied to clipboard
val rule: Output<String>? = null

The Rule ID of the rule.

Functions

Link copied to clipboard
open override fun toJava(): RetrohuntArgs