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 Images in Oracle Cloud Infrastructure Management Agent service. * * Get supported agent image information * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAgentImages = oci.managementagent.getManagementAgentImages({ * compartmentId: compartmentId, * installType: managementAgentImageInstallType, * name: managementAgentImageName, * state: managementAgentImageState, * }); * ``` */ export declare function getManagementAgentImages(args: GetManagementAgentImagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagementAgentImages. */ export interface GetManagementAgentImagesArgs { /** * The OCID of the compartment to which a request will be scoped. */ compartmentId: string; filters?: inputs.ManagementAgent.GetManagementAgentImagesFilter[]; /** * A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned. */ installType?: string; /** * A filter to return only resources that match the entire platform name given. */ name?: string; /** * Filter to return only Management Agents in the particular lifecycle state. */ state?: string; } /** * A collection of values returned by getManagementAgentImages. */ export interface GetManagementAgentImagesResult { readonly compartmentId: string; readonly filters?: outputs.ManagementAgent.GetManagementAgentImagesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly installType?: string; /** * The list of management_agent_images. */ readonly managementAgentImages: outputs.ManagementAgent.GetManagementAgentImagesManagementAgentImage[]; readonly name?: string; /** * The current state of Management Agent Image */ readonly state?: string; } /** * This data source provides the list of Management Agent Images in Oracle Cloud Infrastructure Management Agent service. * * Get supported agent image information * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAgentImages = oci.managementagent.getManagementAgentImages({ * compartmentId: compartmentId, * installType: managementAgentImageInstallType, * name: managementAgentImageName, * state: managementAgentImageState, * }); * ``` */ export declare function getManagementAgentImagesOutput(args: GetManagementAgentImagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagementAgentImages. */ export interface GetManagementAgentImagesOutputArgs { /** * The OCID of the compartment to which a request will be scoped. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned. */ installType?: pulumi.Input; /** * A filter to return only resources that match the entire platform name given. */ name?: pulumi.Input; /** * Filter to return only Management Agents in the particular lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getManagementAgentImages.d.ts.map