published on Thursday, Apr 30, 2026 by Pulumi
published on Thursday, Apr 30, 2026 by Pulumi
This resource provides the Byol resource in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/vmware/latest/Byol
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/ocvp
Creates an Oracle Cloud VMware Solution Bring-You-Own-License (BYOL).
Use the WorkRequest operations to track the creation of the BYOL.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testByol = new oci.ocvp.Byol("test_byol", {
compartmentId: compartmentId,
displayName: byolDisplayName,
entitlementKey: byolEntitlementKey,
softwareType: byolSoftwareType,
timeTermEnd: byolTimeTermEnd,
timeTermStart: byolTimeTermStart,
totalUnits: byolTotalUnits,
definedTags: {
"Operations.CostCenter": "42",
},
description: byolDescription,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_byol = oci.ocvp.Byol("test_byol",
compartment_id=compartment_id,
display_name=byol_display_name,
entitlement_key=byol_entitlement_key,
software_type=byol_software_type,
time_term_end=byol_time_term_end,
time_term_start=byol_time_term_start,
total_units=byol_total_units,
defined_tags={
"Operations.CostCenter": "42",
},
description=byol_description,
freeform_tags={
"Department": "Finance",
})
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.NewByol(ctx, "test_byol", &ocvp.ByolArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(byolDisplayName),
EntitlementKey: pulumi.Any(byolEntitlementKey),
SoftwareType: pulumi.Any(byolSoftwareType),
TimeTermEnd: pulumi.Any(byolTimeTermEnd),
TimeTermStart: pulumi.Any(byolTimeTermStart),
TotalUnits: pulumi.Any(byolTotalUnits),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
Description: pulumi.Any(byolDescription),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
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 testByol = new Oci.Ocvp.Byol("test_byol", new()
{
CompartmentId = compartmentId,
DisplayName = byolDisplayName,
EntitlementKey = byolEntitlementKey,
SoftwareType = byolSoftwareType,
TimeTermEnd = byolTimeTermEnd,
TimeTermStart = byolTimeTermStart,
TotalUnits = byolTotalUnits,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = byolDescription,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Ocvp.Byol;
import com.pulumi.oci.Ocvp.ByolArgs;
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) {
var testByol = new Byol("testByol", ByolArgs.builder()
.compartmentId(compartmentId)
.displayName(byolDisplayName)
.entitlementKey(byolEntitlementKey)
.softwareType(byolSoftwareType)
.timeTermEnd(byolTimeTermEnd)
.timeTermStart(byolTimeTermStart)
.totalUnits(byolTotalUnits)
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(byolDescription)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testByol:
type: oci:Ocvp:Byol
name: test_byol
properties:
compartmentId: ${compartmentId}
displayName: ${byolDisplayName}
entitlementKey: ${byolEntitlementKey}
softwareType: ${byolSoftwareType}
timeTermEnd: ${byolTimeTermEnd}
timeTermStart: ${byolTimeTermStart}
totalUnits: ${byolTotalUnits}
definedTags:
Operations.CostCenter: '42'
description: ${byolDescription}
freeformTags:
Department: Finance
Create Byol Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Byol(name: string, args: ByolArgs, opts?: CustomResourceOptions);@overload
def Byol(resource_name: str,
args: ByolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Byol(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
entitlement_key: Optional[str] = None,
software_type: Optional[str] = None,
time_term_end: Optional[str] = None,
time_term_start: Optional[str] = None,
total_units: Optional[int] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None)func NewByol(ctx *Context, name string, args ByolArgs, opts ...ResourceOption) (*Byol, error)public Byol(string name, ByolArgs args, CustomResourceOptions? opts = null)type: oci:Ocvp:Byol
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ByolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ByolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ByolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ByolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ByolArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Byol Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Byol resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the BYOL.
- Display
Name string - (Updatable) A descriptive name for the BYOL.
- Entitlement
Key string - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- Software
Type string - (Updatable) 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)
- Time
Term stringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- Time
Term stringStart - (Updatable) The date and time when the BYOL becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - Total
Units int (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) A description of the BYOL.
- Dictionary<string, string>
- (Updatable) 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"}
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the BYOL.
- Display
Name string - (Updatable) A descriptive name for the BYOL.
- Entitlement
Key string - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- Software
Type string - (Updatable) 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)
- Time
Term stringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- Time
Term stringStart - (Updatable) The date and time when the BYOL becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - Total
Units int (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) A description of the BYOL.
- map[string]string
- (Updatable) 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"}
- compartment
Id String - (Updatable) The OCID of the compartment that contains the BYOL.
- display
Name String - (Updatable) A descriptive name for the BYOL.
- entitlement
Key String - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- software
Type String - (Updatable) 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)
- time
Term StringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- time
Term StringStart - (Updatable) The date and time when the BYOL becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - total
Units Integer (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) A description of the BYOL.
- Map<String,String>
- (Updatable) 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"}
- compartment
Id string - (Updatable) The OCID of the compartment that contains the BYOL.
- display
Name string - (Updatable) A descriptive name for the BYOL.
- entitlement
Key string - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- software
Type string - (Updatable) 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)
- time
Term stringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- time
Term stringStart - (Updatable) The date and time when the BYOL becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - total
Units number (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description string
- (Updatable) A description of the BYOL.
- {[key: string]: string}
- (Updatable) 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"}
- compartment_
id str - (Updatable) The OCID of the compartment that contains the BYOL.
- display_
name str - (Updatable) A descriptive name for the BYOL.
- entitlement_
key str - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- software_
type str - (Updatable) 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)
- time_
term_ strend - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- time_
term_ strstart - (Updatable) The date and time when the BYOL becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - total_
units int (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description str
- (Updatable) A description of the BYOL.
- Mapping[str, str]
- (Updatable) 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"}
- compartment
Id String - (Updatable) The OCID of the compartment that contains the BYOL.
- display
Name String - (Updatable) A descriptive name for the BYOL.
- entitlement
Key String - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- software
Type String - (Updatable) 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)
- time
Term StringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- time
Term StringStart - (Updatable) The date and time when the BYOL becomes active. VMware software functionality cannot begin before this time. In the format defined byRFC3339. Example:
2016-08-25T21:10:29.600Z - total
Units Number (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) A description of the BYOL.
- Map<String>
- (Updatable) 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"}
Outputs
All input properties are implicitly available as output properties. Additionally, the Byol resource produces the following output properties:
- Available
Units int - The quantity of licensed units that not yet allocated to specific region.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the BYOL.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the BYOL was updated, in the format defined by RFC3339.
- Available
Units int - The quantity of licensed units that not yet allocated to specific region.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the BYOL.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the BYOL was updated, in the format defined by RFC3339.
- available
Units Integer - The quantity of licensed units that not yet allocated to specific region.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the BYOL.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the BYOL was updated, in the format defined by RFC3339.
- available
Units number - The quantity of licensed units that not yet allocated to specific region.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the BYOL.
- {[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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the BYOL was updated, in the format defined by RFC3339.
- available_
units int - The quantity of licensed units that not yet allocated to specific region.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the BYOL.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time the BYOL was updated, in the format defined by RFC3339.
- available
Units Number - The quantity of licensed units that not yet allocated to specific region.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the BYOL.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the BYOL was updated, in the format defined by RFC3339.
Look up Existing Byol Resource
Get an existing Byol resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ByolState, opts?: CustomResourceOptions): Byol@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
available_units: Optional[int] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
entitlement_key: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
software_type: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_term_end: Optional[str] = None,
time_term_start: Optional[str] = None,
time_updated: Optional[str] = None,
total_units: Optional[int] = None) -> Byolfunc GetByol(ctx *Context, name string, id IDInput, state *ByolState, opts ...ResourceOption) (*Byol, error)public static Byol Get(string name, Input<string> id, ByolState? state, CustomResourceOptions? opts = null)public static Byol get(String name, Output<String> id, ByolState state, CustomResourceOptions options)resources: _: type: oci:Ocvp:Byol get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Available
Units int - The quantity of licensed units that not yet allocated to specific region.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the BYOL.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) A description of the BYOL.
- Display
Name string - (Updatable) A descriptive name for the BYOL.
- Entitlement
Key string - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- Dictionary<string, string>
- (Updatable) 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"} - Software
Type string - (Updatable) 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.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - Time
Term stringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- Time
Term stringStart - (Updatable) The date and time when the BYOL 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 was updated, in the format defined by RFC3339.
- Total
Units int (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Available
Units int - The quantity of licensed units that not yet allocated to specific region.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the BYOL.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) A description of the BYOL.
- Display
Name string - (Updatable) A descriptive name for the BYOL.
- Entitlement
Key string - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- map[string]string
- (Updatable) 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"} - Software
Type string - (Updatable) 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.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - Time
Term stringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- Time
Term stringStart - (Updatable) The date and time when the BYOL 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 was updated, in the format defined by RFC3339.
- Total
Units int (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- available
Units Integer - The quantity of licensed units that not yet allocated to specific region.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the BYOL.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) A description of the BYOL.
- display
Name String - (Updatable) A descriptive name for the BYOL.
- entitlement
Key String - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- Map<String,String>
- (Updatable) 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"} - software
Type String - (Updatable) 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.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Term StringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- time
Term StringStart - (Updatable) The date and time when the BYOL 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 was updated, in the format defined by RFC3339.
- total
Units Integer (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- available
Units number - The quantity of licensed units that not yet allocated to specific region.
- compartment
Id string - (Updatable) The OCID of the compartment that contains the BYOL.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description string
- (Updatable) A description of the BYOL.
- display
Name string - (Updatable) A descriptive name for the BYOL.
- entitlement
Key string - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- {[key: string]: string}
- (Updatable) 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"} - software
Type string - (Updatable) 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.
- {[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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Term stringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- time
Term stringStart - (Updatable) The date and time when the BYOL 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 was updated, in the format defined by RFC3339.
- total
Units number (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- available_
units int - The quantity of licensed units that not yet allocated to specific region.
- compartment_
id str - (Updatable) The OCID of the compartment that contains the BYOL.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description str
- (Updatable) A description of the BYOL.
- display_
name str - (Updatable) A descriptive name for the BYOL.
- entitlement_
key str - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- Mapping[str, str]
- (Updatable) 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"} - software_
type str - (Updatable) 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.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time_
term_ strend - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- time_
term_ strstart - (Updatable) The date and time when the BYOL 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 was updated, in the format defined by RFC3339.
- total_
units int (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- available
Units Number - The quantity of licensed units that not yet allocated to specific region.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the BYOL.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) A description of the BYOL.
- display
Name String - (Updatable) A descriptive name for the BYOL.
- entitlement
Key String - (Updatable) The Broadcom-supplied identifier of a BYOL license.
- Map<String>
- (Updatable) 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"} - software
Type String - (Updatable) 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.
- 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 was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z - time
Term StringEnd - (Updatable) The date and time when the BYOL expires and becomes inactive. In the format defined byRFC3339.
- time
Term StringStart - (Updatable) The date and time when the BYOL 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 was updated, in the format defined by RFC3339.
- total
Units Number (Updatable) 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
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Import
Byols can be imported using the id, e.g.
$ pulumi import oci:Ocvp/byol:Byol test_byol "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
published on Thursday, Apr 30, 2026 by Pulumi
