import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class DavisCopilot extends pulumi.CustomResource { /** * Get an existing DavisCopilot resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DavisCopilotState, opts?: pulumi.CustomResourceOptions): DavisCopilot; /** * Returns true if the given object is an instance of DavisCopilot. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DavisCopilot; /** * You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about [configuring data access](https://dt-url.net/lc62i1q). */ readonly blocklistEntries: pulumi.Output; /** * Please note that once enabled, you still need to [assign permissions](https://dt-url.net/rh22idn) to the relevant user groups. */ readonly enableCopilot: pulumi.Output; /** * You can enrich Davis CoPilot with your environment data. This lets you generate more accurate queries that identify and reference relevant entities, events, spans, logs, and metrics from your environment. Once enabled, Davis CoPilot periodically scans your Grail data to create its own semantic index. Please note, it can take up to 24 hours to reflect changes. Learn more about [environment-aware queries](https://dt-url.net/4g42iu7). */ readonly enableTenantAwareDataMining: pulumi.Output; /** * Create a DavisCopilot resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DavisCopilotArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DavisCopilot resources. */ export interface DavisCopilotState { /** * You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about [configuring data access](https://dt-url.net/lc62i1q). */ blocklistEntries?: pulumi.Input; /** * Please note that once enabled, you still need to [assign permissions](https://dt-url.net/rh22idn) to the relevant user groups. */ enableCopilot?: pulumi.Input; /** * You can enrich Davis CoPilot with your environment data. This lets you generate more accurate queries that identify and reference relevant entities, events, spans, logs, and metrics from your environment. Once enabled, Davis CoPilot periodically scans your Grail data to create its own semantic index. Please note, it can take up to 24 hours to reflect changes. Learn more about [environment-aware queries](https://dt-url.net/4g42iu7). */ enableTenantAwareDataMining?: pulumi.Input; } /** * The set of arguments for constructing a DavisCopilot resource. */ export interface DavisCopilotArgs { /** * You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about [configuring data access](https://dt-url.net/lc62i1q). */ blocklistEntries?: pulumi.Input; /** * Please note that once enabled, you still need to [assign permissions](https://dt-url.net/rh22idn) to the relevant user groups. */ enableCopilot: pulumi.Input; /** * You can enrich Davis CoPilot with your environment data. This lets you generate more accurate queries that identify and reference relevant entities, events, spans, logs, and metrics from your environment. Once enabled, Davis CoPilot periodically scans your Grail data to create its own semantic index. Please note, it can take up to 24 hours to reflect changes. Learn more about [environment-aware queries](https://dt-url.net/4g42iu7). */ enableTenantAwareDataMining?: pulumi.Input; }