@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
55 lines (54 loc) • 1.93 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* The AWS supported service data source queries for a full list of all supported services.
*
* ## Example Usage
*
* For an example of this data source, please refer to the Resource Example Usage of the dynatrace.AwsService resource.
*/
export declare function getAwsSupportedServices(args?: GetAwsSupportedServicesArgs, opts?: pulumi.InvokeOptions): Promise<GetAwsSupportedServicesResult>;
/**
* A collection of arguments for invoking getAwsSupportedServices.
*/
export interface GetAwsSupportedServicesArgs {
/**
* Services with the given names won't be included in the results
*/
excepts?: string[];
}
/**
* A collection of values returned by getAwsSupportedServices.
*/
export interface GetAwsSupportedServicesResult {
/**
* Services with the given names won't be included in the results
*/
readonly excepts?: string[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* The keys are the names of the supported services. The values provide information whether that service is built in or not.
*/
readonly services: {
[key: string]: boolean;
};
}
/**
* The AWS supported service data source queries for a full list of all supported services.
*
* ## Example Usage
*
* For an example of this data source, please refer to the Resource Example Usage of the dynatrace.AwsService resource.
*/
export declare function getAwsSupportedServicesOutput(args?: GetAwsSupportedServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAwsSupportedServicesResult>;
/**
* A collection of arguments for invoking getAwsSupportedServices.
*/
export interface GetAwsSupportedServicesOutputArgs {
/**
* Services with the given names won't be included in the results
*/
excepts?: pulumi.Input<pulumi.Input<string>[]>;
}