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 Plugins in Oracle Cloud Infrastructure Management Agent service. * * Returns a list of managementAgentPlugins. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAgentPlugins = oci.managementagent.getManagementAgentPlugins({ * compartmentId: compartmentId, * agentId: managementAgentId, * displayName: managementAgentPluginDisplayName, * platformTypes: managementAgentPluginPlatformType, * state: managementAgentPluginState, * }); * ``` */ export declare function getManagementAgentPlugins(args: GetManagementAgentPluginsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagementAgentPlugins. */ export interface GetManagementAgentPluginsArgs { /** * The ManagementAgentID of the agent from which the Management Agents to be filtered. */ agentId?: string; /** * The OCID of the compartment to which a request will be scoped. */ compartmentId: string; /** * Filter to return only Management Agent Plugins having the particular display name. */ displayName?: string; filters?: inputs.ManagementAgent.GetManagementAgentPluginsFilter[]; /** * Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"] */ platformTypes?: string[]; /** * Filter to return only Management Agents in the particular lifecycle state. */ state?: string; } /** * A collection of values returned by getManagementAgentPlugins. */ export interface GetManagementAgentPluginsResult { readonly agentId?: string; readonly compartmentId: string; /** * Management Agent Plugin Display Name */ readonly displayName?: string; readonly filters?: outputs.ManagementAgent.GetManagementAgentPluginsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of management_agent_plugins. */ readonly managementAgentPlugins: outputs.ManagementAgent.GetManagementAgentPluginsManagementAgentPlugin[]; readonly platformTypes?: string[]; /** * The current state of Management Agent Plugin */ readonly state?: string; } /** * This data source provides the list of Management Agent Plugins in Oracle Cloud Infrastructure Management Agent service. * * Returns a list of managementAgentPlugins. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAgentPlugins = oci.managementagent.getManagementAgentPlugins({ * compartmentId: compartmentId, * agentId: managementAgentId, * displayName: managementAgentPluginDisplayName, * platformTypes: managementAgentPluginPlatformType, * state: managementAgentPluginState, * }); * ``` */ export declare function getManagementAgentPluginsOutput(args: GetManagementAgentPluginsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagementAgentPlugins. */ export interface GetManagementAgentPluginsOutputArgs { /** * The ManagementAgentID of the agent from which the Management Agents to be filtered. */ agentId?: pulumi.Input; /** * The OCID of the compartment to which a request will be scoped. */ compartmentId: pulumi.Input; /** * Filter to return only Management Agent Plugins having the particular display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"] */ platformTypes?: pulumi.Input[] | undefined>; /** * Filter to return only Management Agents in the particular lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getManagementAgentPlugins.d.ts.map