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 Appliances in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists management appliances in compartment specified. List can be filtered by management appliance, compartment, name and lifecycle state. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAppliances = oci.ocvp.getManagementAppliances({ * compartmentId: compartmentId, * displayName: managementApplianceDisplayName, * managementApplianceId: testManagementAppliance.id, * sddcId: testSddc.id, * state: managementApplianceState, * }); * ``` */ export declare function getManagementAppliances(args: GetManagementAppliancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagementAppliances. */ export interface GetManagementAppliancesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Ocvp.GetManagementAppliancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management appliance. */ managementApplianceId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC. */ sddcId?: string; /** * The lifecycle state of the management appliance. */ state?: string; } /** * A collection of values returned by getManagementAppliances. */ export interface GetManagementAppliancesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of compartment in OCI, that this appliance is going to be created in. */ readonly compartmentId: string; /** * A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Ocvp.GetManagementAppliancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of management_appliance_collection. */ readonly managementApplianceCollections: outputs.Ocvp.GetManagementAppliancesManagementApplianceCollection[]; readonly managementApplianceId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of SDDC in OCI, that this appliance is going to be registered in. */ readonly sddcId?: string; /** * Current state of the management appliance. */ readonly state?: string; } /** * This data source provides the list of Management Appliances in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists management appliances in compartment specified. List can be filtered by management appliance, compartment, name and lifecycle state. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAppliances = oci.ocvp.getManagementAppliances({ * compartmentId: compartmentId, * displayName: managementApplianceDisplayName, * managementApplianceId: testManagementAppliance.id, * sddcId: testSddc.id, * state: managementApplianceState, * }); * ``` */ export declare function getManagementAppliancesOutput(args: GetManagementAppliancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagementAppliances. */ export interface GetManagementAppliancesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management appliance. */ managementApplianceId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC. */ sddcId?: pulumi.Input; /** * The lifecycle state of the management appliance. */ state?: pulumi.Input; } //# sourceMappingURL=getManagementAppliances.d.ts.map