import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Byol resource in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Gets the specified BYOL's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testByol = oci.ocvp.getByol({ * byolId: testByolOciOcvpByol.id, * }); * ``` */ export declare function getByol(args: GetByolArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getByol. */ export interface GetByolArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the BYOL. */ byolId: string; } /** * A collection of values returned by getByol. */ export interface GetByolResult { /** * The quantity of licensed units that not yet allocated to specific region. */ readonly availableUnits: number; 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; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A description of the BYOL. */ readonly description: string; /** * A descriptive name for the BYOL. */ readonly displayName: string; /** * The Broadcom-supplied identifier of a BYOL license. */ readonly entitlementKey: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the BYOL. */ readonly id: string; /** * The hyperscaler identifier in Broadcom systems. */ readonly siteId: 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; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{orcl-cloud: {free-tier-retain: true}}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the BYOL was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time when the BYOL expires and becomes inactive. In the format defined by[RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeTermEnd: string; /** * The date and time when the BYOL becomes active. VMware software functionality cannot begin before this time. In the format defined by[RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeTermStart: string; /** * The date and time the BYOL was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeUpdated: string; /** * Total quantity of licensed units for the specified `softwareType`: * * VCF, VDEFEND: number of OCPUs * * VSAN: storage capacity in TiB (tebibytes) * * AVI_LOAD_BALANCER: number of instances */ readonly totalUnits: number; } /** * This data source provides details about a specific Byol resource in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Gets the specified BYOL's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testByol = oci.ocvp.getByol({ * byolId: testByolOciOcvpByol.id, * }); * ``` */ export declare function getByolOutput(args: GetByolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getByol. */ export interface GetByolOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the BYOL. */ byolId: pulumi.Input; } //# sourceMappingURL=getByol.d.ts.map