Viewing docs for Oracle Cloud Infrastructure v4.9.0
published on Thursday, Apr 30, 2026 by Pulumi
published on Thursday, Apr 30, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.9.0
published on Thursday, Apr 30, 2026 by Pulumi
published on Thursday, Apr 30, 2026 by Pulumi
This data source provides the list of Byol Allocations in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service.
Lists the BYOL Allocations in the specified compartment. The list can be filtered by display name or availability domain.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testByolAllocations = oci.Ocvp.getByolAllocations({
compartmentId: compartmentId,
availableUnitsGreaterThanOrEqualTo: byolAllocationAvailableUnitsGreaterThanOrEqualTo,
byolAllocationId: testByolAllocation.id,
byolId: testByol.id,
displayName: byolAllocationDisplayName,
softwareType: byolAllocationSoftwareType,
state: byolAllocationState,
});
import pulumi
import pulumi_oci as oci
test_byol_allocations = oci.Ocvp.get_byol_allocations(compartment_id=compartment_id,
available_units_greater_than_or_equal_to=byol_allocation_available_units_greater_than_or_equal_to,
byol_allocation_id=test_byol_allocation["id"],
byol_id=test_byol["id"],
display_name=byol_allocation_display_name,
software_type=byol_allocation_software_type,
state=byol_allocation_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/ocvp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ocvp.GetByolAllocations(ctx, &ocvp.GetByolAllocationsArgs{
CompartmentId: compartmentId,
AvailableUnitsGreaterThanOrEqualTo: pulumi.Float64Ref(byolAllocationAvailableUnitsGreaterThanOrEqualTo),
ByolAllocationId: pulumi.StringRef(testByolAllocation.Id),
ByolId: pulumi.StringRef(testByol.Id),
DisplayName: pulumi.StringRef(byolAllocationDisplayName),
SoftwareType: pulumi.StringRef(byolAllocationSoftwareType),
State: pulumi.StringRef(byolAllocationState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testByolAllocations = Oci.Ocvp.GetByolAllocations.Invoke(new()
{
CompartmentId = compartmentId,
AvailableUnitsGreaterThanOrEqualTo = byolAllocationAvailableUnitsGreaterThanOrEqualTo,
ByolAllocationId = testByolAllocation.Id,
ByolId = testByol.Id,
DisplayName = byolAllocationDisplayName,
SoftwareType = byolAllocationSoftwareType,
State = byolAllocationState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Ocvp.OcvpFunctions;
import com.pulumi.oci.Ocvp.inputs.GetByolAllocationsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testByolAllocations = OcvpFunctions.getByolAllocations(GetByolAllocationsArgs.builder()
.compartmentId(compartmentId)
.availableUnitsGreaterThanOrEqualTo(byolAllocationAvailableUnitsGreaterThanOrEqualTo)
.byolAllocationId(testByolAllocation.id())
.byolId(testByol.id())
.displayName(byolAllocationDisplayName)
.softwareType(byolAllocationSoftwareType)
.state(byolAllocationState)
.build());
}
}
variables:
testByolAllocations:
fn::invoke:
function: oci:Ocvp:getByolAllocations
arguments:
compartmentId: ${compartmentId}
availableUnitsGreaterThanOrEqualTo: ${byolAllocationAvailableUnitsGreaterThanOrEqualTo}
byolAllocationId: ${testByolAllocation.id}
byolId: ${testByol.id}
displayName: ${byolAllocationDisplayName}
softwareType: ${byolAllocationSoftwareType}
state: ${byolAllocationState}
Using getByolAllocations
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getByolAllocations(args: GetByolAllocationsArgs, opts?: InvokeOptions): Promise<GetByolAllocationsResult>
function getByolAllocationsOutput(args: GetByolAllocationsOutputArgs, opts?: InvokeOptions): Output<GetByolAllocationsResult>def get_byol_allocations(available_units_greater_than_or_equal_to: Optional[float] = None,
byol_allocation_id: Optional[str] = None,
byol_id: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetByolAllocationsFilter]] = None,
software_type: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetByolAllocationsResult
def get_byol_allocations_output(available_units_greater_than_or_equal_to: Optional[pulumi.Input[float]] = None,
byol_allocation_id: Optional[pulumi.Input[str]] = None,
byol_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetByolAllocationsFilterArgs]]]] = None,
software_type: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetByolAllocationsResult]func GetByolAllocations(ctx *Context, args *GetByolAllocationsArgs, opts ...InvokeOption) (*GetByolAllocationsResult, error)
func GetByolAllocationsOutput(ctx *Context, args *GetByolAllocationsOutputArgs, opts ...InvokeOption) GetByolAllocationsResultOutput> Note: This function is named GetByolAllocations in the Go SDK.
public static class GetByolAllocations
{
public static Task<GetByolAllocationsResult> InvokeAsync(GetByolAllocationsArgs args, InvokeOptions? opts = null)
public static Output<GetByolAllocationsResult> Invoke(GetByolAllocationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetByolAllocationsResult> getByolAllocations(GetByolAllocationsArgs args, InvokeOptions options)
public static Output<GetByolAllocationsResult> getByolAllocations(GetByolAllocationsArgs args, InvokeOptions options)
fn::invoke:
function: oci:Ocvp/getByolAllocations:getByolAllocations
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The OCID of the compartment.
- Available
Units doubleGreater Than Or Equal To - A filter to return only resources whose availableUnits greater than or equal to the given value.
- Byol
Allocation stringId - The OCID of the BYOL Allocation.
- Byol
Id string - The OCID of the BYOL.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
List<Get
Byol Allocations Filter> - Software
Type string - A filter to return only resources whose softwareType matches the given value.
- State string
- A filter to return only resources whose lifecycle state matches the given value.
- Compartment
Id string - The OCID of the compartment.
- Available
Units float64Greater Than Or Equal To - A filter to return only resources whose availableUnits greater than or equal to the given value.
- Byol
Allocation stringId - The OCID of the BYOL Allocation.
- Byol
Id string - The OCID of the BYOL.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
[]Get
Byol Allocations Filter - Software
Type string - A filter to return only resources whose softwareType matches the given value.
- State string
- A filter to return only resources whose lifecycle state matches the given value.
- compartment
Id String - The OCID of the compartment.
- available
Units DoubleGreater Than Or Equal To - A filter to return only resources whose availableUnits greater than or equal to the given value.
- byol
Allocation StringId - The OCID of the BYOL Allocation.
- byol
Id String - The OCID of the BYOL.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters
List<Get
Byol Allocations Filter> - software
Type String - A filter to return only resources whose softwareType matches the given value.
- state String
- A filter to return only resources whose lifecycle state matches the given value.
- compartment
Id string - The OCID of the compartment.
- available
Units numberGreater Than Or Equal To - A filter to return only resources whose availableUnits greater than or equal to the given value.
- byol
Allocation stringId - The OCID of the BYOL Allocation.
- byol
Id string - The OCID of the BYOL.
- display
Name string - A filter to return only resources that match the given display name exactly.
- filters
Get
Byol Allocations Filter[] - software
Type string - A filter to return only resources whose softwareType matches the given value.
- state string
- A filter to return only resources whose lifecycle state matches the given value.
- compartment_
id str - The OCID of the compartment.
- available_
units_ floatgreater_ than_ or_ equal_ to - A filter to return only resources whose availableUnits greater than or equal to the given value.
- byol_
allocation_ strid - The OCID of the BYOL Allocation.
- byol_
id str - The OCID of the BYOL.
- display_
name str - A filter to return only resources that match the given display name exactly.
- filters
Sequence[Get
Byol Allocations Filter] - software_
type str - A filter to return only resources whose softwareType matches the given value.
- state str
- A filter to return only resources whose lifecycle state matches the given value.
- compartment
Id String - The OCID of the compartment.
- available
Units NumberGreater Than Or Equal To - A filter to return only resources whose availableUnits greater than or equal to the given value.
- byol
Allocation StringId - The OCID of the BYOL Allocation.
- byol
Id String - The OCID of the BYOL.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
- software
Type String - A filter to return only resources whose softwareType matches the given value.
- state String
- A filter to return only resources whose lifecycle state matches the given value.
getByolAllocations Result
The following output properties are available:
- Byol
Allocation List<GetCollections Byol Allocations Byol Allocation Collection> - The list of byol_allocation_collection.
- Compartment
Id string - The OCID of the compartment that contains the BYOL Allocation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Available
Units doubleGreater Than Or Equal To - Byol
Allocation stringId - Byol
Id string - The OCID of the BYOL resource from which this BYOL Allocation is derived.
- Display
Name string - A descriptive name for the BYOL Allocation.
- Filters
List<Get
Byol Allocations Filter> - Software
Type 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)
- State string
- The current state of the BYOL Allocation.
- Byol
Allocation []GetCollections Byol Allocations Byol Allocation Collection - The list of byol_allocation_collection.
- Compartment
Id string - The OCID of the compartment that contains the BYOL Allocation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Available
Units float64Greater Than Or Equal To - Byol
Allocation stringId - Byol
Id string - The OCID of the BYOL resource from which this BYOL Allocation is derived.
- Display
Name string - A descriptive name for the BYOL Allocation.
- Filters
[]Get
Byol Allocations Filter - Software
Type 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)
- State string
- The current state of the BYOL Allocation.
- byol
Allocation List<GetCollections Byol Allocations Byol Allocation Collection> - The list of byol_allocation_collection.
- compartment
Id String - The OCID of the compartment that contains the BYOL Allocation.
- id String
- The provider-assigned unique ID for this managed resource.
- available
Units DoubleGreater Than Or Equal To - byol
Allocation StringId - byol
Id String - The OCID of the BYOL resource from which this BYOL Allocation is derived.
- display
Name String - A descriptive name for the BYOL Allocation.
- filters
List<Get
Byol Allocations Filter> - software
Type 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)
- state String
- The current state of the BYOL Allocation.
- byol
Allocation GetCollections Byol Allocations Byol Allocation Collection[] - The list of byol_allocation_collection.
- compartment
Id string - The OCID of the compartment that contains the BYOL Allocation.
- id string
- The provider-assigned unique ID for this managed resource.
- available
Units numberGreater Than Or Equal To - byol
Allocation stringId - byol
Id string - The OCID of the BYOL resource from which this BYOL Allocation is derived.
- display
Name string - A descriptive name for the BYOL Allocation.
- filters
Get
Byol Allocations Filter[] - software
Type 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)
- state string
- The current state of the BYOL Allocation.
- byol_
allocation_ Sequence[Getcollections Byol Allocations Byol Allocation Collection] - The list of byol_allocation_collection.
- compartment_
id str - The OCID of the compartment that contains the BYOL Allocation.
- id str
- The provider-assigned unique ID for this managed resource.
- available_
units_ floatgreater_ than_ or_ equal_ to - byol_
allocation_ strid - byol_
id str - The OCID of the BYOL resource from which this BYOL Allocation is derived.
- display_
name str - A descriptive name for the BYOL Allocation.
- filters
Sequence[Get
Byol Allocations Filter] - software_
type str - 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)
- state str
- The current state of the BYOL Allocation.
- byol
Allocation List<Property Map>Collections - The list of byol_allocation_collection.
- compartment
Id String - The OCID of the compartment that contains the BYOL Allocation.
- id String
- The provider-assigned unique ID for this managed resource.
- available
Units NumberGreater Than Or Equal To - byol
Allocation StringId - byol
Id String - The OCID of the BYOL resource from which this BYOL Allocation is derived.
- display
Name String - A descriptive name for the BYOL Allocation.
- filters List<Property Map>
- software
Type 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)
- state String
- The current state of the BYOL Allocation.
Supporting Types
GetByolAllocationsByolAllocationCollection
GetByolAllocationsByolAllocationCollectionItem
- Allocated
Units int - The quantity of licensed units that allocated to this region.
- Available
Units int - The quantity of licensed units that not yet consumed by resources.
- Byol
Id string - The OCID of the BYOL.
- Compartment
Id string - The OCID of the compartment.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return only resources that match the given display name exactly.
- Entitlement
Key string - The Broadcom-supplied identifier of a BYOL license.
- Dictionary<string, 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. Example:
{"Department": "Finance"} - Id string
- The OCID of the BYOL Allocation.
- Software
Type string - A filter to return only resources whose softwareType matches the given value.
- State string
- A filter to return only resources whose lifecycle state matches the given value.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{orcl-cloud: {free-tier-retain: true}} - Time
Created string - The date and time the BYOL Allocation was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - Time
Term stringEnd - The date and time when the BYOL Allocation expires and becomes inactive. In the format defined byRFC3339.
- Time
Term stringStart - The date and time when the BYOL Allocation becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the BYOL Allocation was updated, in the format defined by RFC3339.
- Allocated
Units int - The quantity of licensed units that allocated to this region.
- Available
Units int - The quantity of licensed units that not yet consumed by resources.
- Byol
Id string - The OCID of the BYOL.
- Compartment
Id string - The OCID of the compartment.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return only resources that match the given display name exactly.
- Entitlement
Key string - The Broadcom-supplied identifier of a BYOL license.
- map[string]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. Example:
{"Department": "Finance"} - Id string
- The OCID of the BYOL Allocation.
- Software
Type string - A filter to return only resources whose softwareType matches the given value.
- State string
- A filter to return only resources whose lifecycle state matches the given value.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{orcl-cloud: {free-tier-retain: true}} - Time
Created string - The date and time the BYOL Allocation was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - Time
Term stringEnd - The date and time when the BYOL Allocation expires and becomes inactive. In the format defined byRFC3339.
- Time
Term stringStart - The date and time when the BYOL Allocation becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the BYOL Allocation was updated, in the format defined by RFC3339.
- allocated
Units Integer - The quantity of licensed units that allocated to this region.
- available
Units Integer - The quantity of licensed units that not yet consumed by resources.
- byol
Id String - The OCID of the BYOL.
- compartment
Id String - The OCID of the compartment.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return only resources that match the given display name exactly.
- entitlement
Key String - The Broadcom-supplied identifier of a BYOL license.
- Map<String,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. Example:
{"Department": "Finance"} - id String
- The OCID of the BYOL Allocation.
- software
Type String - A filter to return only resources whose softwareType matches the given value.
- state String
- A filter to return only resources whose lifecycle state matches the given value.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{orcl-cloud: {free-tier-retain: true}} - time
Created String - The date and time the BYOL Allocation was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Term StringEnd - The date and time when the BYOL Allocation expires and becomes inactive. In the format defined byRFC3339.
- time
Term StringStart - The date and time when the BYOL Allocation becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the BYOL Allocation was updated, in the format defined by RFC3339.
- allocated
Units number - The quantity of licensed units that allocated to this region.
- available
Units number - The quantity of licensed units that not yet consumed by resources.
- byol
Id string - The OCID of the BYOL.
- compartment
Id string - The OCID of the compartment.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name string - A filter to return only resources that match the given display name exactly.
- entitlement
Key string - The Broadcom-supplied identifier of a BYOL license.
- {[key: string]: 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. Example:
{"Department": "Finance"} - id string
- The OCID of the BYOL Allocation.
- software
Type string - A filter to return only resources whose softwareType matches the given value.
- state string
- A filter to return only resources whose lifecycle state matches the given value.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{orcl-cloud: {free-tier-retain: true}} - time
Created string - The date and time the BYOL Allocation was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Term stringEnd - The date and time when the BYOL Allocation expires and becomes inactive. In the format defined byRFC3339.
- time
Term stringStart - The date and time when the BYOL Allocation becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the BYOL Allocation was updated, in the format defined by RFC3339.
- allocated_
units int - The quantity of licensed units that allocated to this region.
- available_
units int - The quantity of licensed units that not yet consumed by resources.
- byol_
id str - The OCID of the BYOL.
- compartment_
id str - The OCID of the compartment.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name str - A filter to return only resources that match the given display name exactly.
- entitlement_
key str - The Broadcom-supplied identifier of a BYOL license.
- Mapping[str, str]
- 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. Example:
{"Department": "Finance"} - id str
- The OCID of the BYOL Allocation.
- software_
type str - A filter to return only resources whose softwareType matches the given value.
- state str
- A filter to return only resources whose lifecycle state matches the given value.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{orcl-cloud: {free-tier-retain: true}} - time_
created str - The date and time the BYOL Allocation was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time_
term_ strend - The date and time when the BYOL Allocation expires and becomes inactive. In the format defined byRFC3339.
- time_
term_ strstart - The date and time when the BYOL Allocation becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time the BYOL Allocation was updated, in the format defined by RFC3339.
- allocated
Units Number - The quantity of licensed units that allocated to this region.
- available
Units Number - The quantity of licensed units that not yet consumed by resources.
- byol
Id String - The OCID of the BYOL.
- compartment
Id String - The OCID of the compartment.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return only resources that match the given display name exactly.
- entitlement
Key String - The Broadcom-supplied identifier of a BYOL license.
- Map<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. Example:
{"Department": "Finance"} - id String
- The OCID of the BYOL Allocation.
- software
Type String - A filter to return only resources whose softwareType matches the given value.
- state String
- A filter to return only resources whose lifecycle state matches the given value.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{orcl-cloud: {free-tier-retain: true}} - time
Created String - The date and time the BYOL Allocation was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Term StringEnd - The date and time when the BYOL Allocation expires and becomes inactive. In the format defined byRFC3339.
- time
Term StringStart - The date and time when the BYOL Allocation becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the BYOL Allocation was updated, in the format defined by RFC3339.
GetByolAllocationsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.9.0
published on Thursday, Apr 30, 2026 by Pulumi
published on Thursday, Apr 30, 2026 by Pulumi
