UNPKG

@pulumiverse/dynatrace

Version:

A Pulumi package for creating and managing Dynatrace cloud resources.

32 lines 1.47 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getAzureCredentialsOutput = exports.getAzureCredentials = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * The `dynatrace.AzureCredentials` data source allows the Azure credential ID to be retrieved by its label. * * - `label` (String) - The label/name of the Azure credential */ function getAzureCredentials(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("dynatrace:index/getAzureCredentials:getAzureCredentials", { "label": args.label, }, opts); } exports.getAzureCredentials = getAzureCredentials; /** * The `dynatrace.AzureCredentials` data source allows the Azure credential ID to be retrieved by its label. * * - `label` (String) - The label/name of the Azure credential */ function getAzureCredentialsOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("dynatrace:index/getAzureCredentials:getAzureCredentials", { "label": args.label, }, opts); } exports.getAzureCredentialsOutput = getAzureCredentialsOutput; //# sourceMappingURL=getAzureCredentials.js.map