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 Byols in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists the BYOLs in the specified compartment. The list can be * filtered by display name or availability domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testByols = oci.ocvp.getByols({ * compartmentId: compartmentId, * availableUnitsGreaterThanOrEqualTo: byolAvailableUnitsGreaterThanOrEqualTo, * byolId: testByol.id, * displayName: byolDisplayName, * softwareType: byolSoftwareType, * state: byolState, * }); * ``` */ export declare function getByols(args: GetByolsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getByols. */ export interface GetByolsArgs { /** * A filter to return only resources whose availableUnits greater than or equal to the given value. */ availableUnitsGreaterThanOrEqualTo?: number; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the BYOL. */ byolId?: string; /** * 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.GetByolsFilter[]; /** * A filter to return only resources whose softwareType matches the given value. */ softwareType?: string; /** * A filter to return only resources whose lifecycle state matches the given value. */ state?: string; } /** * A collection of values returned by getByols. */ export interface GetByolsResult { readonly availableUnitsGreaterThanOrEqualTo?: number; /** * The list of byol_collection. */ readonly byolCollections: outputs.Ocvp.GetByolsByolCollection[]; readonly byolId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the BYOL. */ readonly compartmentId: string; /** * A descriptive name for the BYOL. */ readonly displayName?: string; readonly filters?: outputs.Ocvp.GetByolsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The type of VMware software the BYOL applies to. Supported values: * * VCF (VMware Cloud Foundation) * * VSAN (VMware vSAN) * * VDEFEND (VMware vDefend Firewall) * * AVI_LOAD_BALANCER (VMware Avi Load Balancer) */ readonly softwareType?: string; /** * The current state of the BYOL. */ readonly state?: string; } /** * This data source provides the list of Byols in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists the BYOLs in the specified compartment. The list can be * filtered by display name or availability domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testByols = oci.ocvp.getByols({ * compartmentId: compartmentId, * availableUnitsGreaterThanOrEqualTo: byolAvailableUnitsGreaterThanOrEqualTo, * byolId: testByol.id, * displayName: byolDisplayName, * softwareType: byolSoftwareType, * state: byolState, * }); * ``` */ export declare function getByolsOutput(args: GetByolsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getByols. */ export interface GetByolsOutputArgs { /** * A filter to return only resources whose availableUnits greater than or equal to the given value. */ availableUnitsGreaterThanOrEqualTo?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the BYOL. */ byolId?: pulumi.Input; /** * 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>; /** * A filter to return only resources whose softwareType matches the given value. */ softwareType?: pulumi.Input; /** * A filter to return only resources whose lifecycle state matches the given value. */ state?: pulumi.Input; } //# sourceMappingURL=getByols.d.ts.map