UNPKG

@pulumiverse/dynatrace

Version:

A Pulumi package for creating and managing Dynatrace cloud resources.

36 lines (35 loc) 1.22 kB
import * as pulumi from "@pulumi/pulumi"; /** * The `dynatrace.AwsCredentials` data source allows the AWS credential ID to be retrieved by its label. * * - `label` (String) - The label/name of the AWS credential */ export declare function getAwsCredentials(args: GetAwsCredentialsArgs, opts?: pulumi.InvokeOptions): Promise<GetAwsCredentialsResult>; /** * A collection of arguments for invoking getAwsCredentials. */ export interface GetAwsCredentialsArgs { label: string; } /** * A collection of values returned by getAwsCredentials. */ export interface GetAwsCredentialsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly label: string; } /** * The `dynatrace.AwsCredentials` data source allows the AWS credential ID to be retrieved by its label. * * - `label` (String) - The label/name of the AWS credential */ export declare function getAwsCredentialsOutput(args: GetAwsCredentialsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAwsCredentialsResult>; /** * A collection of arguments for invoking getAwsCredentials. */ export interface GetAwsCredentialsOutputArgs { label: pulumi.Input<string>; }