import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class AzureCredentials extends pulumi.CustomResource { /** * Get an existing AzureCredentials 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?: AzureCredentialsState, opts?: pulumi.CustomResourceOptions): AzureCredentials; /** * Returns true if the given object is an instance of AzureCredentials. 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 AzureCredentials; /** * The monitoring is enabled (`true`) or disabled (`false`). If not set on creation, the `true` value is used. If the field is omitted during an update, the old value remains unaffected */ readonly active: pulumi.Output; /** * The Application ID (also referred to as Client ID) The combination of Application ID and Directory ID must be unique */ readonly appId: pulumi.Output; /** * The automatic capture of Azure tags is on (`true`) or off (`false`) */ readonly autoTagging: pulumi.Output; /** * The Directory ID (also referred to as Tenant ID) The combination of Application ID and Directory ID must be unique */ readonly directoryId: pulumi.Output; /** * The secret key associated with the Application ID. For security reasons, GET requests return this field as `null`. Submit your key on creation or update of the configuration. If the field is omitted during an update, the old value remains unaffected. */ readonly key: pulumi.Output; /** * The unique name of the Azure credentials configuration. Allowed characters are letters, numbers, and spaces. Also the special characters `.+-_` are allowed */ readonly label: pulumi.Output; /** * A list of Azure tags to be excluded from monitoring. You can specify up to 20 tags. A resource tagged with *any* of the specified tags is monitored. Only applicable when the **monitorOnlyTaggedEntities** parameter is set to `true`. */ readonly monitorOnlyExcludingTagPairs: pulumi.Output; /** * A list of Azure tags to be monitored. You can specify up to 20 tags. A resource tagged with *any* of the specified tags is monitored. Only applicable when the **monitorOnlyTaggedEntities** parameter is set to `true` */ readonly monitorOnlyTagPairs: pulumi.Output; /** * Monitor only resources that have specified Azure tags (`true`) or all resources (`false`). */ readonly monitorOnlyTaggedEntities: pulumi.Output; /** * Instructs the provider to remove the supporting services Dynatrace applies by default to newly created Azure Credentials. Supporting Services applied by via `dynatrace.AzureService` subsequently won't get touched. */ readonly removeDefaults: pulumi.Output; /** * A list of Azure supporting services to be monitored. For each service there's a sublist of its metrics and the metrics' dimensions that should be monitored. All of these elements (services, metrics, dimensions) must have corresponding static definitions on the server. * * @deprecated Assigning supported services directly when creating Azure Credentials is deprecated. Use the resource `dynatrace.AzureService` instead. */ readonly supportingServices: pulumi.Output; /** * @deprecated This attribute is deprecated and has no effect any more. It always defaults to `true`. */ readonly supportingServicesManagedInDynatrace: pulumi.Output; /** * Any attributes that aren't yet supported by this provider */ readonly unknowns: pulumi.Output; /** * Create a AzureCredentials 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: AzureCredentialsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AzureCredentials resources. */ export interface AzureCredentialsState { /** * The monitoring is enabled (`true`) or disabled (`false`). If not set on creation, the `true` value is used. If the field is omitted during an update, the old value remains unaffected */ active?: pulumi.Input; /** * The Application ID (also referred to as Client ID) The combination of Application ID and Directory ID must be unique */ appId?: pulumi.Input; /** * The automatic capture of Azure tags is on (`true`) or off (`false`) */ autoTagging?: pulumi.Input; /** * The Directory ID (also referred to as Tenant ID) The combination of Application ID and Directory ID must be unique */ directoryId?: pulumi.Input; /** * The secret key associated with the Application ID. For security reasons, GET requests return this field as `null`. Submit your key on creation or update of the configuration. If the field is omitted during an update, the old value remains unaffected. */ key?: pulumi.Input; /** * The unique name of the Azure credentials configuration. Allowed characters are letters, numbers, and spaces. Also the special characters `.+-_` are allowed */ label?: pulumi.Input; /** * A list of Azure tags to be excluded from monitoring. You can specify up to 20 tags. A resource tagged with *any* of the specified tags is monitored. Only applicable when the **monitorOnlyTaggedEntities** parameter is set to `true`. */ monitorOnlyExcludingTagPairs?: pulumi.Input[]>; /** * A list of Azure tags to be monitored. You can specify up to 20 tags. A resource tagged with *any* of the specified tags is monitored. Only applicable when the **monitorOnlyTaggedEntities** parameter is set to `true` */ monitorOnlyTagPairs?: pulumi.Input[]>; /** * Monitor only resources that have specified Azure tags (`true`) or all resources (`false`). */ monitorOnlyTaggedEntities?: pulumi.Input; /** * Instructs the provider to remove the supporting services Dynatrace applies by default to newly created Azure Credentials. Supporting Services applied by via `dynatrace.AzureService` subsequently won't get touched. */ removeDefaults?: pulumi.Input; /** * A list of Azure supporting services to be monitored. For each service there's a sublist of its metrics and the metrics' dimensions that should be monitored. All of these elements (services, metrics, dimensions) must have corresponding static definitions on the server. * * @deprecated Assigning supported services directly when creating Azure Credentials is deprecated. Use the resource `dynatrace.AzureService` instead. */ supportingServices?: pulumi.Input[]>; /** * @deprecated This attribute is deprecated and has no effect any more. It always defaults to `true`. */ supportingServicesManagedInDynatrace?: pulumi.Input; /** * Any attributes that aren't yet supported by this provider */ unknowns?: pulumi.Input; } /** * The set of arguments for constructing a AzureCredentials resource. */ export interface AzureCredentialsArgs { /** * The monitoring is enabled (`true`) or disabled (`false`). If not set on creation, the `true` value is used. If the field is omitted during an update, the old value remains unaffected */ active: pulumi.Input; /** * The Application ID (also referred to as Client ID) The combination of Application ID and Directory ID must be unique */ appId?: pulumi.Input; /** * The automatic capture of Azure tags is on (`true`) or off (`false`) */ autoTagging?: pulumi.Input; /** * The Directory ID (also referred to as Tenant ID) The combination of Application ID and Directory ID must be unique */ directoryId?: pulumi.Input; /** * The secret key associated with the Application ID. For security reasons, GET requests return this field as `null`. Submit your key on creation or update of the configuration. If the field is omitted during an update, the old value remains unaffected. */ key?: pulumi.Input; /** * The unique name of the Azure credentials configuration. Allowed characters are letters, numbers, and spaces. Also the special characters `.+-_` are allowed */ label: pulumi.Input; /** * A list of Azure tags to be excluded from monitoring. You can specify up to 20 tags. A resource tagged with *any* of the specified tags is monitored. Only applicable when the **monitorOnlyTaggedEntities** parameter is set to `true`. */ monitorOnlyExcludingTagPairs?: pulumi.Input[]>; /** * A list of Azure tags to be monitored. You can specify up to 20 tags. A resource tagged with *any* of the specified tags is monitored. Only applicable when the **monitorOnlyTaggedEntities** parameter is set to `true` */ monitorOnlyTagPairs?: pulumi.Input[]>; /** * Monitor only resources that have specified Azure tags (`true`) or all resources (`false`). */ monitorOnlyTaggedEntities: pulumi.Input; /** * Instructs the provider to remove the supporting services Dynatrace applies by default to newly created Azure Credentials. Supporting Services applied by via `dynatrace.AzureService` subsequently won't get touched. */ removeDefaults?: pulumi.Input; /** * A list of Azure supporting services to be monitored. For each service there's a sublist of its metrics and the metrics' dimensions that should be monitored. All of these elements (services, metrics, dimensions) must have corresponding static definitions on the server. * * @deprecated Assigning supported services directly when creating Azure Credentials is deprecated. Use the resource `dynatrace.AzureService` instead. */ supportingServices?: pulumi.Input[]>; /** * @deprecated This attribute is deprecated and has no effect any more. It always defaults to `true`. */ supportingServicesManagedInDynatrace?: pulumi.Input; /** * Any attributes that aren't yet supported by this provider */ unknowns?: pulumi.Input; }