1. Packages
  2. Dynatrace
  3. API Docs
  4. DavisCopilot
Dynatrace v0.21.0 published on Sunday, Nov 17, 2024 by Pulumiverse

dynatrace.DavisCopilot

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.21.0 published on Sunday, Nov 17, 2024 by Pulumiverse

    Create DavisCopilot Resource

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

    Constructor syntax

    new DavisCopilot(name: string, args: DavisCopilotArgs, opts?: CustomResourceOptions);
    @overload
    def DavisCopilot(resource_name: str,
                     args: DavisCopilotArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def DavisCopilot(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     enable_copilot: Optional[bool] = None,
                     blocklist_entries: Optional[DavisCopilotBlocklistEntriesArgs] = None,
                     enable_tenant_aware_data_mining: Optional[bool] = None)
    func NewDavisCopilot(ctx *Context, name string, args DavisCopilotArgs, opts ...ResourceOption) (*DavisCopilot, error)
    public DavisCopilot(string name, DavisCopilotArgs args, CustomResourceOptions? opts = null)
    public DavisCopilot(String name, DavisCopilotArgs args)
    public DavisCopilot(String name, DavisCopilotArgs args, CustomResourceOptions options)
    
    type: dynatrace:DavisCopilot
    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 DavisCopilotArgs
    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 DavisCopilotArgs
    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 DavisCopilotArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DavisCopilotArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DavisCopilotArgs
    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 davisCopilotResource = new Dynatrace.DavisCopilot("davisCopilotResource", new()
    {
        EnableCopilot = false,
        BlocklistEntries = new Dynatrace.Inputs.DavisCopilotBlocklistEntriesArgs
        {
            BlocklistEntries = new[]
            {
                new Dynatrace.Inputs.DavisCopilotBlocklistEntriesBlocklistEntryArgs
                {
                    Name = "string",
                    Type = "string",
                },
            },
        },
        EnableTenantAwareDataMining = false,
    });
    
    example, err := dynatrace.NewDavisCopilot(ctx, "davisCopilotResource", &dynatrace.DavisCopilotArgs{
    	EnableCopilot: pulumi.Bool(false),
    	BlocklistEntries: &dynatrace.DavisCopilotBlocklistEntriesArgs{
    		BlocklistEntries: dynatrace.DavisCopilotBlocklistEntriesBlocklistEntryArray{
    			&dynatrace.DavisCopilotBlocklistEntriesBlocklistEntryArgs{
    				Name: pulumi.String("string"),
    				Type: pulumi.String("string"),
    			},
    		},
    	},
    	EnableTenantAwareDataMining: pulumi.Bool(false),
    })
    
    var davisCopilotResource = new DavisCopilot("davisCopilotResource", DavisCopilotArgs.builder()
        .enableCopilot(false)
        .blocklistEntries(DavisCopilotBlocklistEntriesArgs.builder()
            .blocklistEntries(DavisCopilotBlocklistEntriesBlocklistEntryArgs.builder()
                .name("string")
                .type("string")
                .build())
            .build())
        .enableTenantAwareDataMining(false)
        .build());
    
    davis_copilot_resource = dynatrace.DavisCopilot("davisCopilotResource",
        enable_copilot=False,
        blocklist_entries={
            "blocklist_entries": [{
                "name": "string",
                "type": "string",
            }],
        },
        enable_tenant_aware_data_mining=False)
    
    const davisCopilotResource = new dynatrace.DavisCopilot("davisCopilotResource", {
        enableCopilot: false,
        blocklistEntries: {
            blocklistEntries: [{
                name: "string",
                type: "string",
            }],
        },
        enableTenantAwareDataMining: false,
    });
    
    type: dynatrace:DavisCopilot
    properties:
        blocklistEntries:
            blocklistEntries:
                - name: string
                  type: string
        enableCopilot: false
        enableTenantAwareDataMining: false
    

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

    EnableCopilot bool
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    BlocklistEntries Pulumiverse.Dynatrace.Inputs.DavisCopilotBlocklistEntries
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    EnableTenantAwareDataMining bool
    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.
    EnableCopilot bool
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    BlocklistEntries DavisCopilotBlocklistEntriesArgs
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    EnableTenantAwareDataMining bool
    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.
    enableCopilot Boolean
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    blocklistEntries DavisCopilotBlocklistEntries
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    enableTenantAwareDataMining Boolean
    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.
    enableCopilot boolean
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    blocklistEntries DavisCopilotBlocklistEntries
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    enableTenantAwareDataMining boolean
    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.
    enable_copilot bool
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    blocklist_entries DavisCopilotBlocklistEntriesArgs
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    enable_tenant_aware_data_mining bool
    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.
    enableCopilot Boolean
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    blocklistEntries Property Map
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    enableTenantAwareDataMining Boolean
    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.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DavisCopilot Resource

    Get an existing DavisCopilot 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?: DavisCopilotState, opts?: CustomResourceOptions): DavisCopilot
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            blocklist_entries: Optional[DavisCopilotBlocklistEntriesArgs] = None,
            enable_copilot: Optional[bool] = None,
            enable_tenant_aware_data_mining: Optional[bool] = None) -> DavisCopilot
    func GetDavisCopilot(ctx *Context, name string, id IDInput, state *DavisCopilotState, opts ...ResourceOption) (*DavisCopilot, error)
    public static DavisCopilot Get(string name, Input<string> id, DavisCopilotState? state, CustomResourceOptions? opts = null)
    public static DavisCopilot get(String name, Output<String> id, DavisCopilotState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    BlocklistEntries Pulumiverse.Dynatrace.Inputs.DavisCopilotBlocklistEntries
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    EnableCopilot bool
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    EnableTenantAwareDataMining bool
    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.
    BlocklistEntries DavisCopilotBlocklistEntriesArgs
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    EnableCopilot bool
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    EnableTenantAwareDataMining bool
    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.
    blocklistEntries DavisCopilotBlocklistEntries
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    enableCopilot Boolean
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    enableTenantAwareDataMining Boolean
    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.
    blocklistEntries DavisCopilotBlocklistEntries
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    enableCopilot boolean
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    enableTenantAwareDataMining boolean
    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.
    blocklist_entries DavisCopilotBlocklistEntriesArgs
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    enable_copilot bool
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    enable_tenant_aware_data_mining bool
    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.
    blocklistEntries Property Map
    You can exclude specific data buckets and tables from the Davis CoPilot semantic index. Learn more about configuring data access.
    enableCopilot Boolean
    Please note that once enabled, you still need to assign permissions to the relevant user groups.
    enableTenantAwareDataMining Boolean
    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.

    Supporting Types

    DavisCopilotBlocklistEntries, DavisCopilotBlocklistEntriesArgs

    DavisCopilotBlocklistEntriesBlocklistEntry, DavisCopilotBlocklistEntriesBlocklistEntryArgs

    Name string
    no documentation available
    Type string
    Possible Values: BUCKET, TABLE
    Name string
    no documentation available
    Type string
    Possible Values: BUCKET, TABLE
    name String
    no documentation available
    type String
    Possible Values: BUCKET, TABLE
    name string
    no documentation available
    type string
    Possible Values: BUCKET, TABLE
    name str
    no documentation available
    type str
    Possible Values: BUCKET, TABLE
    name String
    no documentation available
    type String
    Possible Values: BUCKET, TABLE

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.21.0 published on Sunday, Nov 17, 2024 by Pulumiverse