import * as pulumi from "@pulumi/pulumi"; /** * The data source `dynatrace.getTenant` evalutes the configured Environment URL (either the environment variable `DYNATRACE_ENV_URL` or the configuration attribute `dtEnvUrl`) and extracts out the name/id of the environment this provider addresses. * Main purpose is for migrating settings from one environment to another, but it can be used to in general to avoid hard coding the environment ID like in the example below. */ export declare function getTenant(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getTenant. */ export interface GetTenantResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; } /** * The data source `dynatrace.getTenant` evalutes the configured Environment URL (either the environment variable `DYNATRACE_ENV_URL` or the configuration attribute `dtEnvUrl`) and extracts out the name/id of the environment this provider addresses. * Main purpose is for migrating settings from one environment to another, but it can be used to in general to avoid hard coding the environment ID like in the example below. */ export declare function getTenantOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;