import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Byol Allocation resource in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Gets the specified BYOL Allocation's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testByolAllocation = oci.ocvp.getByolAllocation({ * byolAllocationId: testByolAllocationOciOcvpByolAllocation.id, * }); * ``` */ export declare function getByolAllocation(args: GetByolAllocationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getByolAllocation. */ export interface GetByolAllocationArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the BYOL Allocation. */ byolAllocationId: string; } /** * A collection of values returned by getByolAllocation. */ export interface GetByolAllocationResult { /** * The quantity of licensed units that allocated to this region. */ readonly allocatedUnits: number; /** * The quantity of licensed units that not yet consumed by resources. */ readonly availableUnits: number; readonly byolAllocationId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the BYOL resource from which this BYOL Allocation is derived. */ readonly byolId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the BYOL Allocation. */ 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 descriptive name for the BYOL Allocation. */ 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 Allocation. */ 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 Allocation. */ 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 Allocation 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 Allocation 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 Allocation 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 Allocation was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeUpdated: string; } /** * This data source provides details about a specific Byol Allocation resource in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Gets the specified BYOL Allocation's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testByolAllocation = oci.ocvp.getByolAllocation({ * byolAllocationId: testByolAllocationOciOcvpByolAllocation.id, * }); * ``` */ export declare function getByolAllocationOutput(args: GetByolAllocationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getByolAllocation. */ export interface GetByolAllocationOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the BYOL Allocation. */ byolAllocationId: pulumi.Input; } //# sourceMappingURL=getByolAllocation.d.ts.map