DataAccessLabel

class DataAccessLabel : KotlinCustomResource

A DataAccessLabel is a label on events to define user access to data. To get more information about DataAccessLabel, see:

Example Usage

Chronicle Dataaccesslabel Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.chronicle.DataAccessLabel("example", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
dataAccessLabelId: "label-id",
udmQuery: "principal.hostname=\"google.com\"",
description: "label-description",
});
import pulumi
import pulumi_gcp as gcp
example = gcp.chronicle.DataAccessLabel("example",
location="us",
instance="00000000-0000-0000-0000-000000000000",
data_access_label_id="label-id",
udm_query="principal.hostname=\"google.com\"",
description="label-description")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.Chronicle.DataAccessLabel("example", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
DataAccessLabelId = "label-id",
UdmQuery = "principal.hostname=\"google.com\"",
Description = "label-description",
});
});
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.NewDataAccessLabel(ctx, "example", &chronicle.DataAccessLabelArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
DataAccessLabelId: pulumi.String("label-id"),
UdmQuery: pulumi.String("principal.hostname=\"google.com\""),
Description: pulumi.String("label-description"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.chronicle.DataAccessLabel;
import com.pulumi.gcp.chronicle.DataAccessLabelArgs;
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 DataAccessLabel("example", DataAccessLabelArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.dataAccessLabelId("label-id")
.udmQuery("principal.hostname=\"google.com\"")
.description("label-description")
.build());
}
}
resources:
example:
type: gcp:chronicle:DataAccessLabel
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
dataAccessLabelId: label-id
udmQuery: principal.hostname="google.com"
description: label-description

Import

DataAccessLabel can be imported using any of these accepted formats:

  • projects/{{project}}/locations/{{location}}/instances/{{instance}}/dataAccessLabels/{{data_access_label_id}}

  • {{project}}/{{location}}/{{instance}}/{{data_access_label_id}}

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

$ pulumi import gcp:chronicle/dataAccessLabel:DataAccessLabel default projects/{{project}}/locations/{{location}}/instances/{{instance}}/dataAccessLabels/{{data_access_label_id}}
$ pulumi import gcp:chronicle/dataAccessLabel:DataAccessLabel default {{project}}/{{location}}/{{instance}}/{{data_access_label_id}}
$ pulumi import gcp:chronicle/dataAccessLabel:DataAccessLabel default {{location}}/{{instance}}/{{data_access_label_id}}

Properties

Link copied to clipboard
val author: Output<String>

Output only. The user who created the data access label.

Link copied to clipboard
val createTime: Output<String>

Output only. The time at which the data access label was created.

Link copied to clipboard

Required. The ID to use for the data access label, which will become the label's display name and the final component of the label's resource name. The maximum number of characters should be 63. Regex pattern is as per AIP: https://google.aip.dev/122#resource-id-segments

Link copied to clipboard
val description: Output<String>?

Optional. A description of the data access label for a human reader.

Link copied to clipboard
val displayName: Output<String>

Output only. The short name displayed for the label as it appears on event data. This is same as data access label id.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val instance: Output<String>

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

Link copied to clipboard
val lastEditor: Output<String>

Output only. The user who last updated the data access label.

Link copied to clipboard
val location: Output<String>

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
val name: Output<String>

The unique resource name of the data access label. This unique identifier is generated using values provided for the URL parameters. Format: projects/{project}/locations/{location}/instances/{instance}/dataAccessLabels/{data_access_label_id}

Link copied to clipboard
val project: Output<String>

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val udmQuery: Output<String>

A UDM query over event data.

Link copied to clipboard
val updateTime: Output<String>

Output only. The time at which the data access label was last updated.

Link copied to clipboard
val urn: Output<String>