oci.Core.getDedicatedVmHosts
Explore with Pulumi AI
This data source provides the list of Dedicated Vm Hosts in Oracle Cloud Infrastructure Core service.
Returns the list of dedicated virtual machine hosts that match the specified criteria in the specified compartment.
You can limit the list by specifying a dedicated virtual machine host display name. The list will include all the identically-named dedicated virtual machine hosts in the compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDedicatedVmHosts = oci.Core.getDedicatedVmHosts({
compartmentId: compartmentId,
availabilityDomain: dedicatedVmHostAvailabilityDomain,
displayName: dedicatedVmHostDisplayName,
instanceShapeName: dedicatedVmHostInstanceShapeName,
remainingMemoryInGbsGreaterThanOrEqualTo: dedicatedVmHostRemainingMemoryInGbsGreaterThanOrEqualTo,
remainingOcpusGreaterThanOrEqualTo: dedicatedVmHostRemainingOcpusGreaterThanOrEqualTo,
state: dedicatedVmHostState,
});
import pulumi
import pulumi_oci as oci
test_dedicated_vm_hosts = oci.Core.get_dedicated_vm_hosts(compartment_id=compartment_id,
availability_domain=dedicated_vm_host_availability_domain,
display_name=dedicated_vm_host_display_name,
instance_shape_name=dedicated_vm_host_instance_shape_name,
remaining_memory_in_gbs_greater_than_or_equal_to=dedicated_vm_host_remaining_memory_in_gbs_greater_than_or_equal_to,
remaining_ocpus_greater_than_or_equal_to=dedicated_vm_host_remaining_ocpus_greater_than_or_equal_to,
state=dedicated_vm_host_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Core.GetDedicatedVmHosts(ctx, &core.GetDedicatedVmHostsArgs{
CompartmentId: compartmentId,
AvailabilityDomain: pulumi.StringRef(dedicatedVmHostAvailabilityDomain),
DisplayName: pulumi.StringRef(dedicatedVmHostDisplayName),
InstanceShapeName: pulumi.StringRef(dedicatedVmHostInstanceShapeName),
RemainingMemoryInGbsGreaterThanOrEqualTo: pulumi.Float64Ref(dedicatedVmHostRemainingMemoryInGbsGreaterThanOrEqualTo),
RemainingOcpusGreaterThanOrEqualTo: pulumi.Float64Ref(dedicatedVmHostRemainingOcpusGreaterThanOrEqualTo),
State: pulumi.StringRef(dedicatedVmHostState),
}, 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 testDedicatedVmHosts = Oci.Core.GetDedicatedVmHosts.Invoke(new()
{
CompartmentId = compartmentId,
AvailabilityDomain = dedicatedVmHostAvailabilityDomain,
DisplayName = dedicatedVmHostDisplayName,
InstanceShapeName = dedicatedVmHostInstanceShapeName,
RemainingMemoryInGbsGreaterThanOrEqualTo = dedicatedVmHostRemainingMemoryInGbsGreaterThanOrEqualTo,
RemainingOcpusGreaterThanOrEqualTo = dedicatedVmHostRemainingOcpusGreaterThanOrEqualTo,
State = dedicatedVmHostState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.CoreFunctions;
import com.pulumi.oci.Core.inputs.GetDedicatedVmHostsArgs;
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 testDedicatedVmHosts = CoreFunctions.getDedicatedVmHosts(GetDedicatedVmHostsArgs.builder()
.compartmentId(compartmentId)
.availabilityDomain(dedicatedVmHostAvailabilityDomain)
.displayName(dedicatedVmHostDisplayName)
.instanceShapeName(dedicatedVmHostInstanceShapeName)
.remainingMemoryInGbsGreaterThanOrEqualTo(dedicatedVmHostRemainingMemoryInGbsGreaterThanOrEqualTo)
.remainingOcpusGreaterThanOrEqualTo(dedicatedVmHostRemainingOcpusGreaterThanOrEqualTo)
.state(dedicatedVmHostState)
.build());
}
}
variables:
testDedicatedVmHosts:
fn::invoke:
Function: oci:Core:getDedicatedVmHosts
Arguments:
compartmentId: ${compartmentId}
availabilityDomain: ${dedicatedVmHostAvailabilityDomain}
displayName: ${dedicatedVmHostDisplayName}
instanceShapeName: ${dedicatedVmHostInstanceShapeName}
remainingMemoryInGbsGreaterThanOrEqualTo: ${dedicatedVmHostRemainingMemoryInGbsGreaterThanOrEqualTo}
remainingOcpusGreaterThanOrEqualTo: ${dedicatedVmHostRemainingOcpusGreaterThanOrEqualTo}
state: ${dedicatedVmHostState}
Using getDedicatedVmHosts
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 getDedicatedVmHosts(args: GetDedicatedVmHostsArgs, opts?: InvokeOptions): Promise<GetDedicatedVmHostsResult>
function getDedicatedVmHostsOutput(args: GetDedicatedVmHostsOutputArgs, opts?: InvokeOptions): Output<GetDedicatedVmHostsResult>
def get_dedicated_vm_hosts(availability_domain: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_core.GetDedicatedVmHostsFilter]] = None,
instance_shape_name: Optional[str] = None,
remaining_memory_in_gbs_greater_than_or_equal_to: Optional[float] = None,
remaining_ocpus_greater_than_or_equal_to: Optional[float] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDedicatedVmHostsResult
def get_dedicated_vm_hosts_output(availability_domain: 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[_core.GetDedicatedVmHostsFilterArgs]]]] = None,
instance_shape_name: Optional[pulumi.Input[str]] = None,
remaining_memory_in_gbs_greater_than_or_equal_to: Optional[pulumi.Input[float]] = None,
remaining_ocpus_greater_than_or_equal_to: Optional[pulumi.Input[float]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDedicatedVmHostsResult]
func GetDedicatedVmHosts(ctx *Context, args *GetDedicatedVmHostsArgs, opts ...InvokeOption) (*GetDedicatedVmHostsResult, error)
func GetDedicatedVmHostsOutput(ctx *Context, args *GetDedicatedVmHostsOutputArgs, opts ...InvokeOption) GetDedicatedVmHostsResultOutput
> Note: This function is named GetDedicatedVmHosts
in the Go SDK.
public static class GetDedicatedVmHosts
{
public static Task<GetDedicatedVmHostsResult> InvokeAsync(GetDedicatedVmHostsArgs args, InvokeOptions? opts = null)
public static Output<GetDedicatedVmHostsResult> Invoke(GetDedicatedVmHostsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDedicatedVmHostsResult> getDedicatedVmHosts(GetDedicatedVmHostsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Core/getDedicatedVmHosts:getDedicatedVmHosts
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The OCID of the compartment.
- Availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
List<Get
Dedicated Vm Hosts Filter> - Instance
Shape stringName - The name for the instance's shape.
- Remaining
Memory doubleIn Gbs Greater Than Or Equal To - The remaining memory of the dedicated VM host, in GBs.
- Remaining
Ocpus doubleGreater Than Or Equal To - The available OCPUs of the dedicated VM host.
- State string
- A filter to only return resources that match the given lifecycle state.
- Compartment
Id string - The OCID of the compartment.
- Availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
[]Get
Dedicated Vm Hosts Filter - Instance
Shape stringName - The name for the instance's shape.
- Remaining
Memory float64In Gbs Greater Than Or Equal To - The remaining memory of the dedicated VM host, in GBs.
- Remaining
Ocpus float64Greater Than Or Equal To - The available OCPUs of the dedicated VM host.
- State string
- A filter to only return resources that match the given lifecycle state.
- compartment
Id String - The OCID of the compartment.
- availability
Domain String - The name of the availability domain. Example:
Uocm:PHX-AD-1
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters
List<Get
Dedicated Vm Hosts Filter> - instance
Shape StringName - The name for the instance's shape.
- remaining
Memory DoubleIn Gbs Greater Than Or Equal To - The remaining memory of the dedicated VM host, in GBs.
- remaining
Ocpus DoubleGreater Than Or Equal To - The available OCPUs of the dedicated VM host.
- state String
- A filter to only return resources that match the given lifecycle state.
- compartment
Id string - The OCID of the compartment.
- availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- display
Name string - A filter to return only resources that match the given display name exactly.
- filters
Get
Dedicated Vm Hosts Filter[] - instance
Shape stringName - The name for the instance's shape.
- remaining
Memory numberIn Gbs Greater Than Or Equal To - The remaining memory of the dedicated VM host, in GBs.
- remaining
Ocpus numberGreater Than Or Equal To - The available OCPUs of the dedicated VM host.
- state string
- A filter to only return resources that match the given lifecycle state.
- compartment_
id str - The OCID of the compartment.
- availability_
domain str - The name of the availability domain. Example:
Uocm:PHX-AD-1
- display_
name str - A filter to return only resources that match the given display name exactly.
- filters
Sequence[core.
Get Dedicated Vm Hosts Filter] - instance_
shape_ strname - The name for the instance's shape.
- remaining_
memory_ floatin_ gbs_ greater_ than_ or_ equal_ to - The remaining memory of the dedicated VM host, in GBs.
- remaining_
ocpus_ floatgreater_ than_ or_ equal_ to - The available OCPUs of the dedicated VM host.
- state str
- A filter to only return resources that match the given lifecycle state.
- compartment
Id String - The OCID of the compartment.
- availability
Domain String - The name of the availability domain. Example:
Uocm:PHX-AD-1
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
- instance
Shape StringName - The name for the instance's shape.
- remaining
Memory NumberIn Gbs Greater Than Or Equal To - The remaining memory of the dedicated VM host, in GBs.
- remaining
Ocpus NumberGreater Than Or Equal To - The available OCPUs of the dedicated VM host.
- state String
- A filter to only return resources that match the given lifecycle state.
getDedicatedVmHosts Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment that contains the dedicated virtual machine host.
- Dedicated
Vm List<GetHosts Dedicated Vm Hosts Dedicated Vm Host> - The list of dedicated_vm_hosts.
- Id string
- The provider-assigned unique ID for this managed resource.
- Availability
Domain string - The availability domain the dedicated virtual machine host is running in. Example:
Uocm:PHX-AD-1
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Dedicated Vm Hosts Filter> - Instance
Shape stringName - Remaining
Memory doubleIn Gbs Greater Than Or Equal To - Remaining
Ocpus doubleGreater Than Or Equal To - State string
- The current state of the dedicated VM host.
- Compartment
Id string - The OCID of the compartment that contains the dedicated virtual machine host.
- Dedicated
Vm []GetHosts Dedicated Vm Hosts Dedicated Vm Host - The list of dedicated_vm_hosts.
- Id string
- The provider-assigned unique ID for this managed resource.
- Availability
Domain string - The availability domain the dedicated virtual machine host is running in. Example:
Uocm:PHX-AD-1
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Dedicated Vm Hosts Filter - Instance
Shape stringName - Remaining
Memory float64In Gbs Greater Than Or Equal To - Remaining
Ocpus float64Greater Than Or Equal To - State string
- The current state of the dedicated VM host.
- compartment
Id String - The OCID of the compartment that contains the dedicated virtual machine host.
- dedicated
Vm List<GetHosts Dedicated Vm Hosts Dedicated Vm Host> - The list of dedicated_vm_hosts.
- id String
- The provider-assigned unique ID for this managed resource.
- availability
Domain String - The availability domain the dedicated virtual machine host is running in. Example:
Uocm:PHX-AD-1
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Dedicated Vm Hosts Filter> - instance
Shape StringName - remaining
Memory DoubleIn Gbs Greater Than Or Equal To - remaining
Ocpus DoubleGreater Than Or Equal To - state String
- The current state of the dedicated VM host.
- compartment
Id string - The OCID of the compartment that contains the dedicated virtual machine host.
- dedicated
Vm GetHosts Dedicated Vm Hosts Dedicated Vm Host[] - The list of dedicated_vm_hosts.
- id string
- The provider-assigned unique ID for this managed resource.
- availability
Domain string - The availability domain the dedicated virtual machine host is running in. Example:
Uocm:PHX-AD-1
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Dedicated Vm Hosts Filter[] - instance
Shape stringName - remaining
Memory numberIn Gbs Greater Than Or Equal To - remaining
Ocpus numberGreater Than Or Equal To - state string
- The current state of the dedicated VM host.
- compartment_
id str - The OCID of the compartment that contains the dedicated virtual machine host.
- dedicated_
vm_ Sequence[core.hosts Get Dedicated Vm Hosts Dedicated Vm Host] - The list of dedicated_vm_hosts.
- id str
- The provider-assigned unique ID for this managed resource.
- availability_
domain str - The availability domain the dedicated virtual machine host is running in. Example:
Uocm:PHX-AD-1
- display_
name str - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[core.
Get Dedicated Vm Hosts Filter] - instance_
shape_ strname - remaining_
memory_ floatin_ gbs_ greater_ than_ or_ equal_ to - remaining_
ocpus_ floatgreater_ than_ or_ equal_ to - state str
- The current state of the dedicated VM host.
- compartment
Id String - The OCID of the compartment that contains the dedicated virtual machine host.
- dedicated
Vm List<Property Map>Hosts - The list of dedicated_vm_hosts.
- id String
- The provider-assigned unique ID for this managed resource.
- availability
Domain String - The availability domain the dedicated virtual machine host is running in. Example:
Uocm:PHX-AD-1
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
- instance
Shape StringName - remaining
Memory NumberIn Gbs Greater Than Or Equal To - remaining
Ocpus NumberGreater Than Or Equal To - state String
- The current state of the dedicated VM host.
Supporting Types
GetDedicatedVmHostsDedicatedVmHost
- Availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- Compartment
Id string - The OCID of the compartment.
- Dedicated
Vm stringHost Shape - The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VMs.
- 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.
- Fault
Domain string - The fault domain for the dedicated virtual machine host's assigned instances. For more information, see Fault Domains.
- 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 dedicated VM host.
- Remaining
Memory doubleIn Gbs - The current available memory of the dedicated VM host, in GBs.
- Remaining
Ocpus double - The current available OCPUs of the dedicated VM host.
- State string
- A filter to only return resources that match the given lifecycle state.
- Time
Created string - The date and time the dedicated VM host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Total
Memory doubleIn Gbs - The current total memory of the dedicated VM host, in GBs.
- Total
Ocpus double - The current total OCPUs of the dedicated VM host.
- Availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- Compartment
Id string - The OCID of the compartment.
- Dedicated
Vm stringHost Shape - The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VMs.
- 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.
- Fault
Domain string - The fault domain for the dedicated virtual machine host's assigned instances. For more information, see Fault Domains.
- 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 dedicated VM host.
- Remaining
Memory float64In Gbs - The current available memory of the dedicated VM host, in GBs.
- Remaining
Ocpus float64 - The current available OCPUs of the dedicated VM host.
- State string
- A filter to only return resources that match the given lifecycle state.
- Time
Created string - The date and time the dedicated VM host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Total
Memory float64In Gbs - The current total memory of the dedicated VM host, in GBs.
- Total
Ocpus float64 - The current total OCPUs of the dedicated VM host.
- availability
Domain String - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compartment
Id String - The OCID of the compartment.
- dedicated
Vm StringHost Shape - The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VMs.
- 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.
- fault
Domain String - The fault domain for the dedicated virtual machine host's assigned instances. For more information, see Fault Domains.
- 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 dedicated VM host.
- remaining
Memory DoubleIn Gbs - The current available memory of the dedicated VM host, in GBs.
- remaining
Ocpus Double - The current available OCPUs of the dedicated VM host.
- state String
- A filter to only return resources that match the given lifecycle state.
- time
Created String - The date and time the dedicated VM host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- total
Memory DoubleIn Gbs - The current total memory of the dedicated VM host, in GBs.
- total
Ocpus Double - The current total OCPUs of the dedicated VM host.
- availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compartment
Id string - The OCID of the compartment.
- dedicated
Vm stringHost Shape - The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VMs.
- {[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.
- fault
Domain string - The fault domain for the dedicated virtual machine host's assigned instances. For more information, see Fault Domains.
- {[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 dedicated VM host.
- remaining
Memory numberIn Gbs - The current available memory of the dedicated VM host, in GBs.
- remaining
Ocpus number - The current available OCPUs of the dedicated VM host.
- state string
- A filter to only return resources that match the given lifecycle state.
- time
Created string - The date and time the dedicated VM host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- total
Memory numberIn Gbs - The current total memory of the dedicated VM host, in GBs.
- total
Ocpus number - The current total OCPUs of the dedicated VM host.
- availability_
domain str - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compartment_
id str - The OCID of the compartment.
- dedicated_
vm_ strhost_ shape - The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VMs.
- 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.
- fault_
domain str - The fault domain for the dedicated virtual machine host's assigned instances. For more information, see Fault Domains.
- 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 dedicated VM host.
- remaining_
memory_ floatin_ gbs - The current available memory of the dedicated VM host, in GBs.
- remaining_
ocpus float - The current available OCPUs of the dedicated VM host.
- state str
- A filter to only return resources that match the given lifecycle state.
- time_
created str - The date and time the dedicated VM host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- total_
memory_ floatin_ gbs - The current total memory of the dedicated VM host, in GBs.
- total_
ocpus float - The current total OCPUs of the dedicated VM host.
- availability
Domain String - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compartment
Id String - The OCID of the compartment.
- dedicated
Vm StringHost Shape - The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VMs.
- 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.
- fault
Domain String - The fault domain for the dedicated virtual machine host's assigned instances. For more information, see Fault Domains.
- 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 dedicated VM host.
- remaining
Memory NumberIn Gbs - The current available memory of the dedicated VM host, in GBs.
- remaining
Ocpus Number - The current available OCPUs of the dedicated VM host.
- state String
- A filter to only return resources that match the given lifecycle state.
- time
Created String - The date and time the dedicated VM host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- total
Memory NumberIn Gbs - The current total memory of the dedicated VM host, in GBs.
- total
Ocpus Number - The current total OCPUs of the dedicated VM host.
GetDedicatedVmHostsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.