import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Management Agent Data Sources in Oracle Cloud Infrastructure Management Agent service. * * A list of Management Agent Data Sources for the given Management Agent Id. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAgentDataSources = oci.managementagent.getManagementAgentDataSources({ * managementAgentId: testManagementAgent.id, * name: managementAgentDataSourceName, * }); * ``` */ export declare function getManagementAgentDataSources(args: GetManagementAgentDataSourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagementAgentDataSources. */ export interface GetManagementAgentDataSourcesArgs { filters?: inputs.ManagementAgent.GetManagementAgentDataSourcesFilter[]; /** * Unique Management Agent identifier */ managementAgentId: string; /** * Unique name of the dataSource. */ name?: string; } /** * A collection of values returned by getManagementAgentDataSources. */ export interface GetManagementAgentDataSourcesResult { /** * The list of data_sources. */ readonly dataSources: outputs.ManagementAgent.GetManagementAgentDataSourcesDataSource[]; readonly filters?: outputs.ManagementAgent.GetManagementAgentDataSourcesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly managementAgentId: string; /** * Unique name of the DataSource. */ readonly name?: string; } /** * This data source provides the list of Management Agent Data Sources in Oracle Cloud Infrastructure Management Agent service. * * A list of Management Agent Data Sources for the given Management Agent Id. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAgentDataSources = oci.managementagent.getManagementAgentDataSources({ * managementAgentId: testManagementAgent.id, * name: managementAgentDataSourceName, * }); * ``` */ export declare function getManagementAgentDataSourcesOutput(args: GetManagementAgentDataSourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagementAgentDataSources. */ export interface GetManagementAgentDataSourcesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * Unique Management Agent identifier */ managementAgentId: pulumi.Input; /** * Unique name of the dataSource. */ name?: pulumi.Input; } //# sourceMappingURL=getManagementAgentDataSources.d.ts.map