1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. chronicle
  6. BigQueryExport
Viewing docs for Google Cloud v9.33.0
published on Wednesday, Aug 5, 2026 by Pulumi
gcp logo
Viewing docs for Google Cloud v9.33.0
published on Wednesday, Aug 5, 2026 by Pulumi

    BigQueryExport resource represents the BigQuery export configuration for a Chronicle instance.

    To get more information about BigQueryExport, see:

    Example Usage

    Chronicle Bigquery Export Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const example = new gcp.chronicle.BigQueryExport("example", {
        location: "us",
        instance: "00000000-0000-0000-0000-000000000000",
        udmEventsSettings: {
            enabled: true,
            retentionDays: 7,
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    example = gcp.chronicle.BigQueryExport("example",
        location="us",
        instance="00000000-0000-0000-0000-000000000000",
        udm_events_settings={
            "enabled": True,
            "retention_days": 7,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/chronicle"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := chronicle.NewBigQueryExport(ctx, "example", &chronicle.BigQueryExportArgs{
    			Location: pulumi.String("us"),
    			Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
    			UdmEventsSettings: &chronicle.BigQueryExportUdmEventsSettingsArgs{
    				Enabled:       pulumi.Bool(true),
    				RetentionDays: pulumi.Int(7),
    			},
    		})
    		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.BigQueryExport("example", new()
        {
            Location = "us",
            Instance = "00000000-0000-0000-0000-000000000000",
            UdmEventsSettings = new Gcp.Chronicle.Inputs.BigQueryExportUdmEventsSettingsArgs
            {
                Enabled = true,
                RetentionDays = 7,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.chronicle.BigQueryExport;
    import com.pulumi.gcp.chronicle.BigQueryExportArgs;
    import com.pulumi.gcp.chronicle.inputs.BigQueryExportUdmEventsSettingsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 BigQueryExport("example", BigQueryExportArgs.builder()
                .location("us")
                .instance("00000000-0000-0000-0000-000000000000")
                .udmEventsSettings(BigQueryExportUdmEventsSettingsArgs.builder()
                    .enabled(true)
                    .retentionDays(7)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: gcp:chronicle:BigQueryExport
        properties:
          location: us
          instance: 00000000-0000-0000-0000-000000000000
          udmEventsSettings:
            enabled: true
            retentionDays: 7
    
    pulumi {
      required_providers {
        gcp = {
          source = "pulumi/gcp"
        }
      }
    }
    
    resource "gcp_chronicle_bigqueryexport" "example" {
      location = "us"
      instance = "00000000-0000-0000-0000-000000000000"
      udm_events_settings = {
        enabled        = true
        retention_days = 7
      }
    }
    

    Chronicle Bigquery Export Full

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const example = new gcp.chronicle.BigQueryExport("example", {
        location: "us",
        instance: "00000000-0000-0000-0000-000000000000",
        bigQueryExportPackage: "BIG_QUERY_EXPORT_PACKAGE_BYOBQ",
        udmEventsSettings: {
            enabled: true,
            retentionDays: 7,
        },
        entityGraphSettings: {
            enabled: true,
            retentionDays: 7,
        },
        iocMatchesSettings: {
            enabled: true,
            retentionDays: 7,
        },
        ruleDetectionsSettings: {
            enabled: true,
            retentionDays: 7,
        },
        udmEventsAggregatesSettings: {
            enabled: true,
            retentionDays: 7,
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    example = gcp.chronicle.BigQueryExport("example",
        location="us",
        instance="00000000-0000-0000-0000-000000000000",
        big_query_export_package="BIG_QUERY_EXPORT_PACKAGE_BYOBQ",
        udm_events_settings={
            "enabled": True,
            "retention_days": 7,
        },
        entity_graph_settings={
            "enabled": True,
            "retention_days": 7,
        },
        ioc_matches_settings={
            "enabled": True,
            "retention_days": 7,
        },
        rule_detections_settings={
            "enabled": True,
            "retention_days": 7,
        },
        udm_events_aggregates_settings={
            "enabled": True,
            "retention_days": 7,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/chronicle"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := chronicle.NewBigQueryExport(ctx, "example", &chronicle.BigQueryExportArgs{
    			Location:              pulumi.String("us"),
    			Instance:              pulumi.String("00000000-0000-0000-0000-000000000000"),
    			BigQueryExportPackage: pulumi.String("BIG_QUERY_EXPORT_PACKAGE_BYOBQ"),
    			UdmEventsSettings: &chronicle.BigQueryExportUdmEventsSettingsArgs{
    				Enabled:       pulumi.Bool(true),
    				RetentionDays: pulumi.Int(7),
    			},
    			EntityGraphSettings: &chronicle.BigQueryExportEntityGraphSettingsArgs{
    				Enabled:       pulumi.Bool(true),
    				RetentionDays: pulumi.Int(7),
    			},
    			IocMatchesSettings: &chronicle.BigQueryExportIocMatchesSettingsArgs{
    				Enabled:       pulumi.Bool(true),
    				RetentionDays: pulumi.Int(7),
    			},
    			RuleDetectionsSettings: &chronicle.BigQueryExportRuleDetectionsSettingsArgs{
    				Enabled:       pulumi.Bool(true),
    				RetentionDays: pulumi.Int(7),
    			},
    			UdmEventsAggregatesSettings: &chronicle.BigQueryExportUdmEventsAggregatesSettingsArgs{
    				Enabled:       pulumi.Bool(true),
    				RetentionDays: pulumi.Int(7),
    			},
    		})
    		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.BigQueryExport("example", new()
        {
            Location = "us",
            Instance = "00000000-0000-0000-0000-000000000000",
            BigQueryExportPackage = "BIG_QUERY_EXPORT_PACKAGE_BYOBQ",
            UdmEventsSettings = new Gcp.Chronicle.Inputs.BigQueryExportUdmEventsSettingsArgs
            {
                Enabled = true,
                RetentionDays = 7,
            },
            EntityGraphSettings = new Gcp.Chronicle.Inputs.BigQueryExportEntityGraphSettingsArgs
            {
                Enabled = true,
                RetentionDays = 7,
            },
            IocMatchesSettings = new Gcp.Chronicle.Inputs.BigQueryExportIocMatchesSettingsArgs
            {
                Enabled = true,
                RetentionDays = 7,
            },
            RuleDetectionsSettings = new Gcp.Chronicle.Inputs.BigQueryExportRuleDetectionsSettingsArgs
            {
                Enabled = true,
                RetentionDays = 7,
            },
            UdmEventsAggregatesSettings = new Gcp.Chronicle.Inputs.BigQueryExportUdmEventsAggregatesSettingsArgs
            {
                Enabled = true,
                RetentionDays = 7,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.chronicle.BigQueryExport;
    import com.pulumi.gcp.chronicle.BigQueryExportArgs;
    import com.pulumi.gcp.chronicle.inputs.BigQueryExportUdmEventsSettingsArgs;
    import com.pulumi.gcp.chronicle.inputs.BigQueryExportEntityGraphSettingsArgs;
    import com.pulumi.gcp.chronicle.inputs.BigQueryExportIocMatchesSettingsArgs;
    import com.pulumi.gcp.chronicle.inputs.BigQueryExportRuleDetectionsSettingsArgs;
    import com.pulumi.gcp.chronicle.inputs.BigQueryExportUdmEventsAggregatesSettingsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 BigQueryExport("example", BigQueryExportArgs.builder()
                .location("us")
                .instance("00000000-0000-0000-0000-000000000000")
                .bigQueryExportPackage("BIG_QUERY_EXPORT_PACKAGE_BYOBQ")
                .udmEventsSettings(BigQueryExportUdmEventsSettingsArgs.builder()
                    .enabled(true)
                    .retentionDays(7)
                    .build())
                .entityGraphSettings(BigQueryExportEntityGraphSettingsArgs.builder()
                    .enabled(true)
                    .retentionDays(7)
                    .build())
                .iocMatchesSettings(BigQueryExportIocMatchesSettingsArgs.builder()
                    .enabled(true)
                    .retentionDays(7)
                    .build())
                .ruleDetectionsSettings(BigQueryExportRuleDetectionsSettingsArgs.builder()
                    .enabled(true)
                    .retentionDays(7)
                    .build())
                .udmEventsAggregatesSettings(BigQueryExportUdmEventsAggregatesSettingsArgs.builder()
                    .enabled(true)
                    .retentionDays(7)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: gcp:chronicle:BigQueryExport
        properties:
          location: us
          instance: 00000000-0000-0000-0000-000000000000
          bigQueryExportPackage: BIG_QUERY_EXPORT_PACKAGE_BYOBQ
          udmEventsSettings:
            enabled: true
            retentionDays: 7
          entityGraphSettings:
            enabled: true
            retentionDays: 7
          iocMatchesSettings:
            enabled: true
            retentionDays: 7
          ruleDetectionsSettings:
            enabled: true
            retentionDays: 7
          udmEventsAggregatesSettings:
            enabled: true
            retentionDays: 7
    
    pulumi {
      required_providers {
        gcp = {
          source = "pulumi/gcp"
        }
      }
    }
    
    resource "gcp_chronicle_bigqueryexport" "example" {
      location                 = "us"
      instance                 = "00000000-0000-0000-0000-000000000000"
      big_query_export_package = "BIG_QUERY_EXPORT_PACKAGE_BYOBQ"
      udm_events_settings = {
        enabled        = true
        retention_days = 7
      }
      entity_graph_settings = {
        enabled        = true
        retention_days = 7
      }
      ioc_matches_settings = {
        enabled        = true
        retention_days = 7
      }
      rule_detections_settings = {
        enabled        = true
        retention_days = 7
      }
      udm_events_aggregates_settings = {
        enabled        = true
        retention_days = 7
      }
    }
    

    Create BigQueryExport Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BigQueryExport(name: string, args: BigQueryExportArgs, opts?: CustomResourceOptions);
    @overload
    def BigQueryExport(resource_name: str,
                       args: BigQueryExportArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def BigQueryExport(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       instance: Optional[str] = None,
                       location: Optional[str] = None,
                       big_query_export_package: Optional[str] = None,
                       entity_graph_settings: Optional[BigQueryExportEntityGraphSettingsArgs] = None,
                       ioc_matches_settings: Optional[BigQueryExportIocMatchesSettingsArgs] = None,
                       project: Optional[str] = None,
                       rule_detections_settings: Optional[BigQueryExportRuleDetectionsSettingsArgs] = None,
                       udm_events_aggregates_settings: Optional[BigQueryExportUdmEventsAggregatesSettingsArgs] = None,
                       udm_events_settings: Optional[BigQueryExportUdmEventsSettingsArgs] = None)
    func NewBigQueryExport(ctx *Context, name string, args BigQueryExportArgs, opts ...ResourceOption) (*BigQueryExport, error)
    public BigQueryExport(string name, BigQueryExportArgs args, CustomResourceOptions? opts = null)
    public BigQueryExport(String name, BigQueryExportArgs args)
    public BigQueryExport(String name, BigQueryExportArgs args, CustomResourceOptions options)
    
    type: gcp:chronicle:BigQueryExport
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "gcp_chronicle_big_query_export" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args BigQueryExportArgs
    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 BigQueryExportArgs
    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 BigQueryExportArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BigQueryExportArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BigQueryExportArgs
    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 bigQueryExportResource = new Gcp.Chronicle.BigQueryExport("bigQueryExportResource", new()
    {
        Instance = "string",
        Location = "string",
        BigQueryExportPackage = "string",
        EntityGraphSettings = new Gcp.Chronicle.Inputs.BigQueryExportEntityGraphSettingsArgs
        {
            Enabled = false,
            RetentionDays = 0,
            DataFreshnessTime = "string",
            DataVolume = "string",
            LatestExportJobState = "string",
        },
        IocMatchesSettings = new Gcp.Chronicle.Inputs.BigQueryExportIocMatchesSettingsArgs
        {
            Enabled = false,
            RetentionDays = 0,
            DataFreshnessTime = "string",
            DataVolume = "string",
            LatestExportJobState = "string",
        },
        Project = "string",
        RuleDetectionsSettings = new Gcp.Chronicle.Inputs.BigQueryExportRuleDetectionsSettingsArgs
        {
            Enabled = false,
            RetentionDays = 0,
            DataFreshnessTime = "string",
            DataVolume = "string",
            LatestExportJobState = "string",
        },
        UdmEventsAggregatesSettings = new Gcp.Chronicle.Inputs.BigQueryExportUdmEventsAggregatesSettingsArgs
        {
            Enabled = false,
            RetentionDays = 0,
            DataFreshnessTime = "string",
            DataVolume = "string",
            LatestExportJobState = "string",
        },
        UdmEventsSettings = new Gcp.Chronicle.Inputs.BigQueryExportUdmEventsSettingsArgs
        {
            Enabled = false,
            RetentionDays = 0,
            DataFreshnessTime = "string",
            DataVolume = "string",
            LatestExportJobState = "string",
        },
    });
    
    example, err := chronicle.NewBigQueryExport(ctx, "bigQueryExportResource", &chronicle.BigQueryExportArgs{
    	Instance:              pulumi.String("string"),
    	Location:              pulumi.String("string"),
    	BigQueryExportPackage: pulumi.String("string"),
    	EntityGraphSettings: &chronicle.BigQueryExportEntityGraphSettingsArgs{
    		Enabled:              pulumi.Bool(false),
    		RetentionDays:        pulumi.Int(0),
    		DataFreshnessTime:    pulumi.String("string"),
    		DataVolume:           pulumi.String("string"),
    		LatestExportJobState: pulumi.String("string"),
    	},
    	IocMatchesSettings: &chronicle.BigQueryExportIocMatchesSettingsArgs{
    		Enabled:              pulumi.Bool(false),
    		RetentionDays:        pulumi.Int(0),
    		DataFreshnessTime:    pulumi.String("string"),
    		DataVolume:           pulumi.String("string"),
    		LatestExportJobState: pulumi.String("string"),
    	},
    	Project: pulumi.String("string"),
    	RuleDetectionsSettings: &chronicle.BigQueryExportRuleDetectionsSettingsArgs{
    		Enabled:              pulumi.Bool(false),
    		RetentionDays:        pulumi.Int(0),
    		DataFreshnessTime:    pulumi.String("string"),
    		DataVolume:           pulumi.String("string"),
    		LatestExportJobState: pulumi.String("string"),
    	},
    	UdmEventsAggregatesSettings: &chronicle.BigQueryExportUdmEventsAggregatesSettingsArgs{
    		Enabled:              pulumi.Bool(false),
    		RetentionDays:        pulumi.Int(0),
    		DataFreshnessTime:    pulumi.String("string"),
    		DataVolume:           pulumi.String("string"),
    		LatestExportJobState: pulumi.String("string"),
    	},
    	UdmEventsSettings: &chronicle.BigQueryExportUdmEventsSettingsArgs{
    		Enabled:              pulumi.Bool(false),
    		RetentionDays:        pulumi.Int(0),
    		DataFreshnessTime:    pulumi.String("string"),
    		DataVolume:           pulumi.String("string"),
    		LatestExportJobState: pulumi.String("string"),
    	},
    })
    
    resource "gcp_chronicle_big_query_export" "bigQueryExportResource" {
      lifecycle {
        create_before_destroy = true
      }
      instance                 = "string"
      location                 = "string"
      big_query_export_package = "string"
      entity_graph_settings = {
        enabled                 = false
        retention_days          = 0
        data_freshness_time     = "string"
        data_volume             = "string"
        latest_export_job_state = "string"
      }
      ioc_matches_settings = {
        enabled                 = false
        retention_days          = 0
        data_freshness_time     = "string"
        data_volume             = "string"
        latest_export_job_state = "string"
      }
      project = "string"
      rule_detections_settings = {
        enabled                 = false
        retention_days          = 0
        data_freshness_time     = "string"
        data_volume             = "string"
        latest_export_job_state = "string"
      }
      udm_events_aggregates_settings = {
        enabled                 = false
        retention_days          = 0
        data_freshness_time     = "string"
        data_volume             = "string"
        latest_export_job_state = "string"
      }
      udm_events_settings = {
        enabled                 = false
        retention_days          = 0
        data_freshness_time     = "string"
        data_volume             = "string"
        latest_export_job_state = "string"
      }
    }
    
    var bigQueryExportResource = new BigQueryExport("bigQueryExportResource", BigQueryExportArgs.builder()
        .instance("string")
        .location("string")
        .bigQueryExportPackage("string")
        .entityGraphSettings(BigQueryExportEntityGraphSettingsArgs.builder()
            .enabled(false)
            .retentionDays(0)
            .dataFreshnessTime("string")
            .dataVolume("string")
            .latestExportJobState("string")
            .build())
        .iocMatchesSettings(BigQueryExportIocMatchesSettingsArgs.builder()
            .enabled(false)
            .retentionDays(0)
            .dataFreshnessTime("string")
            .dataVolume("string")
            .latestExportJobState("string")
            .build())
        .project("string")
        .ruleDetectionsSettings(BigQueryExportRuleDetectionsSettingsArgs.builder()
            .enabled(false)
            .retentionDays(0)
            .dataFreshnessTime("string")
            .dataVolume("string")
            .latestExportJobState("string")
            .build())
        .udmEventsAggregatesSettings(BigQueryExportUdmEventsAggregatesSettingsArgs.builder()
            .enabled(false)
            .retentionDays(0)
            .dataFreshnessTime("string")
            .dataVolume("string")
            .latestExportJobState("string")
            .build())
        .udmEventsSettings(BigQueryExportUdmEventsSettingsArgs.builder()
            .enabled(false)
            .retentionDays(0)
            .dataFreshnessTime("string")
            .dataVolume("string")
            .latestExportJobState("string")
            .build())
        .build());
    
    big_query_export_resource = gcp.chronicle.BigQueryExport("bigQueryExportResource",
        instance="string",
        location="string",
        big_query_export_package="string",
        entity_graph_settings={
            "enabled": False,
            "retention_days": 0,
            "data_freshness_time": "string",
            "data_volume": "string",
            "latest_export_job_state": "string",
        },
        ioc_matches_settings={
            "enabled": False,
            "retention_days": 0,
            "data_freshness_time": "string",
            "data_volume": "string",
            "latest_export_job_state": "string",
        },
        project="string",
        rule_detections_settings={
            "enabled": False,
            "retention_days": 0,
            "data_freshness_time": "string",
            "data_volume": "string",
            "latest_export_job_state": "string",
        },
        udm_events_aggregates_settings={
            "enabled": False,
            "retention_days": 0,
            "data_freshness_time": "string",
            "data_volume": "string",
            "latest_export_job_state": "string",
        },
        udm_events_settings={
            "enabled": False,
            "retention_days": 0,
            "data_freshness_time": "string",
            "data_volume": "string",
            "latest_export_job_state": "string",
        })
    
    const bigQueryExportResource = new gcp.chronicle.BigQueryExport("bigQueryExportResource", {
        instance: "string",
        location: "string",
        bigQueryExportPackage: "string",
        entityGraphSettings: {
            enabled: false,
            retentionDays: 0,
            dataFreshnessTime: "string",
            dataVolume: "string",
            latestExportJobState: "string",
        },
        iocMatchesSettings: {
            enabled: false,
            retentionDays: 0,
            dataFreshnessTime: "string",
            dataVolume: "string",
            latestExportJobState: "string",
        },
        project: "string",
        ruleDetectionsSettings: {
            enabled: false,
            retentionDays: 0,
            dataFreshnessTime: "string",
            dataVolume: "string",
            latestExportJobState: "string",
        },
        udmEventsAggregatesSettings: {
            enabled: false,
            retentionDays: 0,
            dataFreshnessTime: "string",
            dataVolume: "string",
            latestExportJobState: "string",
        },
        udmEventsSettings: {
            enabled: false,
            retentionDays: 0,
            dataFreshnessTime: "string",
            dataVolume: "string",
            latestExportJobState: "string",
        },
    });
    
    type: gcp:chronicle:BigQueryExport
    properties:
        bigQueryExportPackage: string
        entityGraphSettings:
            dataFreshnessTime: string
            dataVolume: string
            enabled: false
            latestExportJobState: string
            retentionDays: 0
        instance: string
        iocMatchesSettings:
            dataFreshnessTime: string
            dataVolume: string
            enabled: false
            latestExportJobState: string
            retentionDays: 0
        location: string
        project: string
        ruleDetectionsSettings:
            dataFreshnessTime: string
            dataVolume: string
            enabled: false
            latestExportJobState: string
            retentionDays: 0
        udmEventsAggregatesSettings:
            dataFreshnessTime: string
            dataVolume: string
            enabled: false
            latestExportJobState: string
            retentionDays: 0
        udmEventsSettings:
            dataFreshnessTime: string
            dataVolume: string
            enabled: false
            latestExportJobState: string
            retentionDays: 0
    

    BigQueryExport 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 BigQueryExport resource accepts the following input properties:

    Instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    BigQueryExportPackage string
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    EntityGraphSettings BigQueryExportEntityGraphSettings
    The export settings for a data source. Structure is documented below.
    IocMatchesSettings BigQueryExportIocMatchesSettings
    The export settings for a data source. Structure is documented below.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    RuleDetectionsSettings BigQueryExportRuleDetectionsSettings
    The export settings for a data source. Structure is documented below.
    UdmEventsAggregatesSettings BigQueryExportUdmEventsAggregatesSettings
    The export settings for a data source. Structure is documented below.
    UdmEventsSettings BigQueryExportUdmEventsSettings
    The export settings for a data source. Structure is documented below.
    Instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    BigQueryExportPackage string
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    EntityGraphSettings BigQueryExportEntityGraphSettingsArgs
    The export settings for a data source. Structure is documented below.
    IocMatchesSettings BigQueryExportIocMatchesSettingsArgs
    The export settings for a data source. Structure is documented below.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    RuleDetectionsSettings BigQueryExportRuleDetectionsSettingsArgs
    The export settings for a data source. Structure is documented below.
    UdmEventsAggregatesSettings BigQueryExportUdmEventsAggregatesSettingsArgs
    The export settings for a data source. Structure is documented below.
    UdmEventsSettings BigQueryExportUdmEventsSettingsArgs
    The export settings for a data source. Structure is documented below.
    instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    big_query_export_package string
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entity_graph_settings object
    The export settings for a data source. Structure is documented below.
    ioc_matches_settings object
    The export settings for a data source. Structure is documented below.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    rule_detections_settings object
    The export settings for a data source. Structure is documented below.
    udm_events_aggregates_settings object
    The export settings for a data source. Structure is documented below.
    udm_events_settings object
    The export settings for a data source. Structure is documented below.
    instance String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    bigQueryExportPackage String
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entityGraphSettings BigQueryExportEntityGraphSettings
    The export settings for a data source. Structure is documented below.
    iocMatchesSettings BigQueryExportIocMatchesSettings
    The export settings for a data source. Structure is documented below.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    ruleDetectionsSettings BigQueryExportRuleDetectionsSettings
    The export settings for a data source. Structure is documented below.
    udmEventsAggregatesSettings BigQueryExportUdmEventsAggregatesSettings
    The export settings for a data source. Structure is documented below.
    udmEventsSettings BigQueryExportUdmEventsSettings
    The export settings for a data source. Structure is documented below.
    instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    bigQueryExportPackage string
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entityGraphSettings BigQueryExportEntityGraphSettings
    The export settings for a data source. Structure is documented below.
    iocMatchesSettings BigQueryExportIocMatchesSettings
    The export settings for a data source. Structure is documented below.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    ruleDetectionsSettings BigQueryExportRuleDetectionsSettings
    The export settings for a data source. Structure is documented below.
    udmEventsAggregatesSettings BigQueryExportUdmEventsAggregatesSettings
    The export settings for a data source. Structure is documented below.
    udmEventsSettings BigQueryExportUdmEventsSettings
    The export settings for a data source. Structure is documented below.
    instance str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    big_query_export_package str
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entity_graph_settings BigQueryExportEntityGraphSettingsArgs
    The export settings for a data source. Structure is documented below.
    ioc_matches_settings BigQueryExportIocMatchesSettingsArgs
    The export settings for a data source. Structure is documented below.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    rule_detections_settings BigQueryExportRuleDetectionsSettingsArgs
    The export settings for a data source. Structure is documented below.
    udm_events_aggregates_settings BigQueryExportUdmEventsAggregatesSettingsArgs
    The export settings for a data source. Structure is documented below.
    udm_events_settings BigQueryExportUdmEventsSettingsArgs
    The export settings for a data source. Structure is documented below.
    instance String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    bigQueryExportPackage String
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entityGraphSettings Property Map
    The export settings for a data source. Structure is documented below.
    iocMatchesSettings Property Map
    The export settings for a data source. Structure is documented below.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    ruleDetectionsSettings Property Map
    The export settings for a data source. Structure is documented below.
    udmEventsAggregatesSettings Property Map
    The export settings for a data source. Structure is documented below.
    udmEventsSettings Property Map
    The export settings for a data source. Structure is documented below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BigQueryExport resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    Provisioned bool
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    Provisioned bool
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    provisioned bool
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    provisioned Boolean
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    provisioned boolean
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    provisioned bool
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    provisioned Boolean
    Whether the BigQueryExport has been provisioned for the Chronicle instance.

    Look up Existing BigQueryExport Resource

    Get an existing BigQueryExport 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?: BigQueryExportState, opts?: CustomResourceOptions): BigQueryExport
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            big_query_export_package: Optional[str] = None,
            entity_graph_settings: Optional[BigQueryExportEntityGraphSettingsArgs] = None,
            instance: Optional[str] = None,
            ioc_matches_settings: Optional[BigQueryExportIocMatchesSettingsArgs] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            provisioned: Optional[bool] = None,
            rule_detections_settings: Optional[BigQueryExportRuleDetectionsSettingsArgs] = None,
            udm_events_aggregates_settings: Optional[BigQueryExportUdmEventsAggregatesSettingsArgs] = None,
            udm_events_settings: Optional[BigQueryExportUdmEventsSettingsArgs] = None) -> BigQueryExport
    func GetBigQueryExport(ctx *Context, name string, id IDInput, state *BigQueryExportState, opts ...ResourceOption) (*BigQueryExport, error)
    public static BigQueryExport Get(string name, Input<string> id, BigQueryExportState? state, CustomResourceOptions? opts = null)
    public static BigQueryExport get(String name, Output<String> id, BigQueryExportState state, CustomResourceOptions options)
    resources:  _:    type: gcp:chronicle:BigQueryExport    get:      id: ${id}
    import {
      to = gcp_chronicle_big_query_export.example
      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.
    The following state arguments are supported:
    BigQueryExportPackage string
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    EntityGraphSettings BigQueryExportEntityGraphSettings
    The export settings for a data source. Structure is documented below.
    Instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    IocMatchesSettings BigQueryExportIocMatchesSettings
    The export settings for a data source. Structure is documented below.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Name string
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Provisioned bool
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    RuleDetectionsSettings BigQueryExportRuleDetectionsSettings
    The export settings for a data source. Structure is documented below.
    UdmEventsAggregatesSettings BigQueryExportUdmEventsAggregatesSettings
    The export settings for a data source. Structure is documented below.
    UdmEventsSettings BigQueryExportUdmEventsSettings
    The export settings for a data source. Structure is documented below.
    BigQueryExportPackage string
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    EntityGraphSettings BigQueryExportEntityGraphSettingsArgs
    The export settings for a data source. Structure is documented below.
    Instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    IocMatchesSettings BigQueryExportIocMatchesSettingsArgs
    The export settings for a data source. Structure is documented below.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Name string
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Provisioned bool
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    RuleDetectionsSettings BigQueryExportRuleDetectionsSettingsArgs
    The export settings for a data source. Structure is documented below.
    UdmEventsAggregatesSettings BigQueryExportUdmEventsAggregatesSettingsArgs
    The export settings for a data source. Structure is documented below.
    UdmEventsSettings BigQueryExportUdmEventsSettingsArgs
    The export settings for a data source. Structure is documented below.
    big_query_export_package string
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entity_graph_settings object
    The export settings for a data source. Structure is documented below.
    instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    ioc_matches_settings object
    The export settings for a data source. Structure is documented below.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name string
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    provisioned bool
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    rule_detections_settings object
    The export settings for a data source. Structure is documented below.
    udm_events_aggregates_settings object
    The export settings for a data source. Structure is documented below.
    udm_events_settings object
    The export settings for a data source. Structure is documented below.
    bigQueryExportPackage String
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entityGraphSettings BigQueryExportEntityGraphSettings
    The export settings for a data source. Structure is documented below.
    instance String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    iocMatchesSettings BigQueryExportIocMatchesSettings
    The export settings for a data source. Structure is documented below.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name String
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    provisioned Boolean
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    ruleDetectionsSettings BigQueryExportRuleDetectionsSettings
    The export settings for a data source. Structure is documented below.
    udmEventsAggregatesSettings BigQueryExportUdmEventsAggregatesSettings
    The export settings for a data source. Structure is documented below.
    udmEventsSettings BigQueryExportUdmEventsSettings
    The export settings for a data source. Structure is documented below.
    bigQueryExportPackage string
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entityGraphSettings BigQueryExportEntityGraphSettings
    The export settings for a data source. Structure is documented below.
    instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    iocMatchesSettings BigQueryExportIocMatchesSettings
    The export settings for a data source. Structure is documented below.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name string
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    provisioned boolean
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    ruleDetectionsSettings BigQueryExportRuleDetectionsSettings
    The export settings for a data source. Structure is documented below.
    udmEventsAggregatesSettings BigQueryExportUdmEventsAggregatesSettings
    The export settings for a data source. Structure is documented below.
    udmEventsSettings BigQueryExportUdmEventsSettings
    The export settings for a data source. Structure is documented below.
    big_query_export_package str
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entity_graph_settings BigQueryExportEntityGraphSettingsArgs
    The export settings for a data source. Structure is documented below.
    instance str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    ioc_matches_settings BigQueryExportIocMatchesSettingsArgs
    The export settings for a data source. Structure is documented below.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name str
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    provisioned bool
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    rule_detections_settings BigQueryExportRuleDetectionsSettingsArgs
    The export settings for a data source. Structure is documented below.
    udm_events_aggregates_settings BigQueryExportUdmEventsAggregatesSettingsArgs
    The export settings for a data source. Structure is documented below.
    udm_events_settings BigQueryExportUdmEventsSettingsArgs
    The export settings for a data source. Structure is documented below.
    bigQueryExportPackage String
    The BigQueryExportPackage entitled for the Chronicle instance. Possible values are: BIG_QUERY_EXPORT_PACKAGE_BYOBQ, BIG_QUERY_EXPORT_PACKAGE_ADVANCED.
    entityGraphSettings Property Map
    The export settings for a data source. Structure is documented below.
    instance String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    iocMatchesSettings Property Map
    The export settings for a data source. Structure is documented below.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name String
    Identifier. The resource name of the BigQueryExport. Format: projects/{project}/locations/{location}/instances/{instance}/bigQueryExport
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    provisioned Boolean
    Whether the BigQueryExport has been provisioned for the Chronicle instance.
    ruleDetectionsSettings Property Map
    The export settings for a data source. Structure is documented below.
    udmEventsAggregatesSettings Property Map
    The export settings for a data source. Structure is documented below.
    udmEventsSettings Property Map
    The export settings for a data source. Structure is documented below.

    Supporting Types

    BigQueryExportEntityGraphSettings, BigQueryExportEntityGraphSettingsArgs

    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days number
    The retention period for the data source in days.
    data_freshness_time string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume string
    (Output) The stored data volume of all the exports.
    latest_export_job_state string
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Integer
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.
    enabled boolean
    Whether the data source is enabled for export.
    retentionDays number
    The retention period for the data source in days.
    dataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume string
    (Output) The stored data volume of all the exports.
    latestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days int
    The retention period for the data source in days.
    data_freshness_time str
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume str
    (Output) The stored data volume of all the exports.
    latest_export_job_state str
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Number
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.

    BigQueryExportIocMatchesSettings, BigQueryExportIocMatchesSettingsArgs

    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days number
    The retention period for the data source in days.
    data_freshness_time string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume string
    (Output) The stored data volume of all the exports.
    latest_export_job_state string
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Integer
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.
    enabled boolean
    Whether the data source is enabled for export.
    retentionDays number
    The retention period for the data source in days.
    dataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume string
    (Output) The stored data volume of all the exports.
    latestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days int
    The retention period for the data source in days.
    data_freshness_time str
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume str
    (Output) The stored data volume of all the exports.
    latest_export_job_state str
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Number
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.

    BigQueryExportRuleDetectionsSettings, BigQueryExportRuleDetectionsSettingsArgs

    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days number
    The retention period for the data source in days.
    data_freshness_time string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume string
    (Output) The stored data volume of all the exports.
    latest_export_job_state string
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Integer
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.
    enabled boolean
    Whether the data source is enabled for export.
    retentionDays number
    The retention period for the data source in days.
    dataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume string
    (Output) The stored data volume of all the exports.
    latestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days int
    The retention period for the data source in days.
    data_freshness_time str
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume str
    (Output) The stored data volume of all the exports.
    latest_export_job_state str
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Number
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.

    BigQueryExportUdmEventsAggregatesSettings, BigQueryExportUdmEventsAggregatesSettingsArgs

    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days number
    The retention period for the data source in days.
    data_freshness_time string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume string
    (Output) The stored data volume of all the exports.
    latest_export_job_state string
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Integer
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.
    enabled boolean
    Whether the data source is enabled for export.
    retentionDays number
    The retention period for the data source in days.
    dataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume string
    (Output) The stored data volume of all the exports.
    latestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days int
    The retention period for the data source in days.
    data_freshness_time str
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume str
    (Output) The stored data volume of all the exports.
    latest_export_job_state str
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Number
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.

    BigQueryExportUdmEventsSettings, BigQueryExportUdmEventsSettingsArgs

    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    Enabled bool
    Whether the data source is enabled for export.
    RetentionDays int
    The retention period for the data source in days.
    DataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    DataVolume string
    (Output) The stored data volume of all the exports.
    LatestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days number
    The retention period for the data source in days.
    data_freshness_time string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume string
    (Output) The stored data volume of all the exports.
    latest_export_job_state string
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Integer
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.
    enabled boolean
    Whether the data source is enabled for export.
    retentionDays number
    The retention period for the data source in days.
    dataFreshnessTime string
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume string
    (Output) The stored data volume of all the exports.
    latestExportJobState string
    (Output) The latest export job state.
    enabled bool
    Whether the data source is enabled for export.
    retention_days int
    The retention period for the data source in days.
    data_freshness_time str
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    data_volume str
    (Output) The stored data volume of all the exports.
    latest_export_job_state str
    (Output) The latest export job state.
    enabled Boolean
    Whether the data source is enabled for export.
    retentionDays Number
    The retention period for the data source in days.
    dataFreshnessTime String
    (Output) The data freshness of the given export which represents the time bucket at which the latest event was exported.
    dataVolume String
    (Output) The stored data volume of all the exports.
    latestExportJobState String
    (Output) The latest export job state.

    Import

    BigQueryExport can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/instances/{{instance}}/bigQueryExport
    • {{project}}/{{location}}/{{instance}}
    • {{location}}/{{instance}}

    When using the pulumi import command, BigQueryExport can be imported using one of the formats above. For example:

    $ pulumi import gcp:chronicle/bigQueryExport:BigQueryExport default projects/{{project}}/locations/{{location}}/instances/{{instance}}/bigQueryExport
    $ pulumi import gcp:chronicle/bigQueryExport:BigQueryExport default {{project}}/{{location}}/{{instance}}
    $ pulumi import gcp:chronicle/bigQueryExport:BigQueryExport default {{location}}/{{instance}}
    

    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.
    gcp logo
    Viewing docs for Google Cloud v9.33.0
    published on Wednesday, Aug 5, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial