1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CapacityManagement
  5. getOccHandoverResourceBlocks
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

oci.CapacityManagement.getOccHandoverResourceBlocks

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

    This data source provides the list of Occ Handover Resource Blocks in Oracle Cloud Infrastructure Capacity Management service.

    List Occ Handover Resource blocks.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOccHandoverResourceBlocks = oci.CapacityManagement.getOccHandoverResourceBlocks({
        compartmentId: compartmentId,
        handoverDateGreaterThanOrEqualTo: occHandoverResourceBlockHandoverDateGreaterThanOrEqualTo,
        handoverDateLessThanOrEqualTo: occHandoverResourceBlockHandoverDateLessThanOrEqualTo,
        handoverResourceName: testResource.name,
        namespace: occHandoverResourceBlockNamespace,
        occHandoverResourceBlockId: testOccHandoverResourceBlock.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_occ_handover_resource_blocks = oci.CapacityManagement.get_occ_handover_resource_blocks(compartment_id=compartment_id,
        handover_date_greater_than_or_equal_to=occ_handover_resource_block_handover_date_greater_than_or_equal_to,
        handover_date_less_than_or_equal_to=occ_handover_resource_block_handover_date_less_than_or_equal_to,
        handover_resource_name=test_resource["name"],
        namespace=occ_handover_resource_block_namespace,
        occ_handover_resource_block_id=test_occ_handover_resource_block["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/CapacityManagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := CapacityManagement.GetOccHandoverResourceBlocks(ctx, &capacitymanagement.GetOccHandoverResourceBlocksArgs{
    			CompartmentId:                    pulumi.StringRef(compartmentId),
    			HandoverDateGreaterThanOrEqualTo: pulumi.StringRef(occHandoverResourceBlockHandoverDateGreaterThanOrEqualTo),
    			HandoverDateLessThanOrEqualTo:    pulumi.StringRef(occHandoverResourceBlockHandoverDateLessThanOrEqualTo),
    			HandoverResourceName:             pulumi.StringRef(testResource.Name),
    			Namespace:                        pulumi.StringRef(occHandoverResourceBlockNamespace),
    			OccHandoverResourceBlockId:       pulumi.StringRef(testOccHandoverResourceBlock.Id),
    		}, 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 testOccHandoverResourceBlocks = Oci.CapacityManagement.GetOccHandoverResourceBlocks.Invoke(new()
        {
            CompartmentId = compartmentId,
            HandoverDateGreaterThanOrEqualTo = occHandoverResourceBlockHandoverDateGreaterThanOrEqualTo,
            HandoverDateLessThanOrEqualTo = occHandoverResourceBlockHandoverDateLessThanOrEqualTo,
            HandoverResourceName = testResource.Name,
            Namespace = occHandoverResourceBlockNamespace,
            OccHandoverResourceBlockId = testOccHandoverResourceBlock.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CapacityManagement.CapacityManagementFunctions;
    import com.pulumi.oci.CapacityManagement.inputs.GetOccHandoverResourceBlocksArgs;
    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 testOccHandoverResourceBlocks = CapacityManagementFunctions.getOccHandoverResourceBlocks(GetOccHandoverResourceBlocksArgs.builder()
                .compartmentId(compartmentId)
                .handoverDateGreaterThanOrEqualTo(occHandoverResourceBlockHandoverDateGreaterThanOrEqualTo)
                .handoverDateLessThanOrEqualTo(occHandoverResourceBlockHandoverDateLessThanOrEqualTo)
                .handoverResourceName(testResource.name())
                .namespace(occHandoverResourceBlockNamespace)
                .occHandoverResourceBlockId(testOccHandoverResourceBlock.id())
                .build());
    
        }
    }
    
    variables:
      testOccHandoverResourceBlocks:
        fn::invoke:
          Function: oci:CapacityManagement:getOccHandoverResourceBlocks
          Arguments:
            compartmentId: ${compartmentId}
            handoverDateGreaterThanOrEqualTo: ${occHandoverResourceBlockHandoverDateGreaterThanOrEqualTo}
            handoverDateLessThanOrEqualTo: ${occHandoverResourceBlockHandoverDateLessThanOrEqualTo}
            handoverResourceName: ${testResource.name}
            namespace: ${occHandoverResourceBlockNamespace}
            occHandoverResourceBlockId: ${testOccHandoverResourceBlock.id}
    

    Using getOccHandoverResourceBlocks

    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 getOccHandoverResourceBlocks(args: GetOccHandoverResourceBlocksArgs, opts?: InvokeOptions): Promise<GetOccHandoverResourceBlocksResult>
    function getOccHandoverResourceBlocksOutput(args: GetOccHandoverResourceBlocksOutputArgs, opts?: InvokeOptions): Output<GetOccHandoverResourceBlocksResult>
    def get_occ_handover_resource_blocks(compartment_id: Optional[str] = None,
                                         filters: Optional[Sequence[_capacitymanagement.GetOccHandoverResourceBlocksFilter]] = None,
                                         handover_date_greater_than_or_equal_to: Optional[str] = None,
                                         handover_date_less_than_or_equal_to: Optional[str] = None,
                                         handover_resource_name: Optional[str] = None,
                                         namespace: Optional[str] = None,
                                         occ_handover_resource_block_id: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetOccHandoverResourceBlocksResult
    def get_occ_handover_resource_blocks_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_capacitymanagement.GetOccHandoverResourceBlocksFilterArgs]]]] = None,
                                         handover_date_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                         handover_date_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                         handover_resource_name: Optional[pulumi.Input[str]] = None,
                                         namespace: Optional[pulumi.Input[str]] = None,
                                         occ_handover_resource_block_id: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetOccHandoverResourceBlocksResult]
    func GetOccHandoverResourceBlocks(ctx *Context, args *GetOccHandoverResourceBlocksArgs, opts ...InvokeOption) (*GetOccHandoverResourceBlocksResult, error)
    func GetOccHandoverResourceBlocksOutput(ctx *Context, args *GetOccHandoverResourceBlocksOutputArgs, opts ...InvokeOption) GetOccHandoverResourceBlocksResultOutput

    > Note: This function is named GetOccHandoverResourceBlocks in the Go SDK.

    public static class GetOccHandoverResourceBlocks 
    {
        public static Task<GetOccHandoverResourceBlocksResult> InvokeAsync(GetOccHandoverResourceBlocksArgs args, InvokeOptions? opts = null)
        public static Output<GetOccHandoverResourceBlocksResult> Invoke(GetOccHandoverResourceBlocksInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOccHandoverResourceBlocksResult> getOccHandoverResourceBlocks(GetOccHandoverResourceBlocksArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:CapacityManagement/getOccHandoverResourceBlocks:getOccHandoverResourceBlocks
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment or tenancy in which resources are to be listed.
    Filters List<GetOccHandoverResourceBlocksFilter>
    HandoverDateGreaterThanOrEqualTo string
    This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
    HandoverDateLessThanOrEqualTo string
    This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
    HandoverResourceName string
    A filter to return only the list of resources that match the name provided in this filter.
    Namespace string
    The namespace by which we would filter the list.
    OccHandoverResourceBlockId string
    This filter helps in fetching the handed over resource for which the occHandoverResourceId is equal to the one provided here.
    CompartmentId string
    The OCID of the compartment or tenancy in which resources are to be listed.
    Filters []GetOccHandoverResourceBlocksFilter
    HandoverDateGreaterThanOrEqualTo string
    This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
    HandoverDateLessThanOrEqualTo string
    This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
    HandoverResourceName string
    A filter to return only the list of resources that match the name provided in this filter.
    Namespace string
    The namespace by which we would filter the list.
    OccHandoverResourceBlockId string
    This filter helps in fetching the handed over resource for which the occHandoverResourceId is equal to the one provided here.
    compartmentId String
    The OCID of the compartment or tenancy in which resources are to be listed.
    filters List<GetOccHandoverResourceBlocksFilter>
    handoverDateGreaterThanOrEqualTo String
    This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
    handoverDateLessThanOrEqualTo String
    This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
    handoverResourceName String
    A filter to return only the list of resources that match the name provided in this filter.
    namespace String
    The namespace by which we would filter the list.
    occHandoverResourceBlockId String
    This filter helps in fetching the handed over resource for which the occHandoverResourceId is equal to the one provided here.
    compartmentId string
    The OCID of the compartment or tenancy in which resources are to be listed.
    filters GetOccHandoverResourceBlocksFilter[]
    handoverDateGreaterThanOrEqualTo string
    This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
    handoverDateLessThanOrEqualTo string
    This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
    handoverResourceName string
    A filter to return only the list of resources that match the name provided in this filter.
    namespace string
    The namespace by which we would filter the list.
    occHandoverResourceBlockId string
    This filter helps in fetching the handed over resource for which the occHandoverResourceId is equal to the one provided here.
    compartment_id str
    The OCID of the compartment or tenancy in which resources are to be listed.
    filters Sequence[capacitymanagement.GetOccHandoverResourceBlocksFilter]
    handover_date_greater_than_or_equal_to str
    This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
    handover_date_less_than_or_equal_to str
    This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
    handover_resource_name str
    A filter to return only the list of resources that match the name provided in this filter.
    namespace str
    The namespace by which we would filter the list.
    occ_handover_resource_block_id str
    This filter helps in fetching the handed over resource for which the occHandoverResourceId is equal to the one provided here.
    compartmentId String
    The OCID of the compartment or tenancy in which resources are to be listed.
    filters List<Property Map>
    handoverDateGreaterThanOrEqualTo String
    This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
    handoverDateLessThanOrEqualTo String
    This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
    handoverResourceName String
    A filter to return only the list of resources that match the name provided in this filter.
    namespace String
    The namespace by which we would filter the list.
    occHandoverResourceBlockId String
    This filter helps in fetching the handed over resource for which the occHandoverResourceId is equal to the one provided here.

    getOccHandoverResourceBlocks Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    OccHandoverResourceBlockCollections List<GetOccHandoverResourceBlocksOccHandoverResourceBlockCollection>
    The list of occ_handover_resource_block_collection.
    CompartmentId string
    The OCID of the compartment where the resource block's are placed.
    Filters List<GetOccHandoverResourceBlocksFilter>
    HandoverDateGreaterThanOrEqualTo string
    HandoverDateLessThanOrEqualTo string
    HandoverResourceName string
    The name of the resource handed over by oracle. For instance for compute namespace this will be the name of the bare metal hardware resource.
    Namespace string
    The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
    OccHandoverResourceBlockId string
    Id string
    The provider-assigned unique ID for this managed resource.
    OccHandoverResourceBlockCollections []GetOccHandoverResourceBlocksOccHandoverResourceBlockCollection
    The list of occ_handover_resource_block_collection.
    CompartmentId string
    The OCID of the compartment where the resource block's are placed.
    Filters []GetOccHandoverResourceBlocksFilter
    HandoverDateGreaterThanOrEqualTo string
    HandoverDateLessThanOrEqualTo string
    HandoverResourceName string
    The name of the resource handed over by oracle. For instance for compute namespace this will be the name of the bare metal hardware resource.
    Namespace string
    The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
    OccHandoverResourceBlockId string
    id String
    The provider-assigned unique ID for this managed resource.
    occHandoverResourceBlockCollections List<GetOccHandoverResourceBlocksOccHandoverResourceBlockCollection>
    The list of occ_handover_resource_block_collection.
    compartmentId String
    The OCID of the compartment where the resource block's are placed.
    filters List<GetOccHandoverResourceBlocksFilter>
    handoverDateGreaterThanOrEqualTo String
    handoverDateLessThanOrEqualTo String
    handoverResourceName String
    The name of the resource handed over by oracle. For instance for compute namespace this will be the name of the bare metal hardware resource.
    namespace String
    The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
    occHandoverResourceBlockId String
    id string
    The provider-assigned unique ID for this managed resource.
    occHandoverResourceBlockCollections GetOccHandoverResourceBlocksOccHandoverResourceBlockCollection[]
    The list of occ_handover_resource_block_collection.
    compartmentId string
    The OCID of the compartment where the resource block's are placed.
    filters GetOccHandoverResourceBlocksFilter[]
    handoverDateGreaterThanOrEqualTo string
    handoverDateLessThanOrEqualTo string
    handoverResourceName string
    The name of the resource handed over by oracle. For instance for compute namespace this will be the name of the bare metal hardware resource.
    namespace string
    The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
    occHandoverResourceBlockId string
    id str
    The provider-assigned unique ID for this managed resource.
    occ_handover_resource_block_collections Sequence[capacitymanagement.GetOccHandoverResourceBlocksOccHandoverResourceBlockCollection]
    The list of occ_handover_resource_block_collection.
    compartment_id str
    The OCID of the compartment where the resource block's are placed.
    filters Sequence[capacitymanagement.GetOccHandoverResourceBlocksFilter]
    handover_date_greater_than_or_equal_to str
    handover_date_less_than_or_equal_to str
    handover_resource_name str
    The name of the resource handed over by oracle. For instance for compute namespace this will be the name of the bare metal hardware resource.
    namespace str
    The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
    occ_handover_resource_block_id str
    id String
    The provider-assigned unique ID for this managed resource.
    occHandoverResourceBlockCollections List<Property Map>
    The list of occ_handover_resource_block_collection.
    compartmentId String
    The OCID of the compartment where the resource block's are placed.
    filters List<Property Map>
    handoverDateGreaterThanOrEqualTo String
    handoverDateLessThanOrEqualTo String
    handoverResourceName String
    The name of the resource handed over by oracle. For instance for compute namespace this will be the name of the bare metal hardware resource.
    namespace String
    The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
    occHandoverResourceBlockId String

    Supporting Types

    GetOccHandoverResourceBlocksFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetOccHandoverResourceBlocksOccHandoverResourceBlockCollection

    items List<Property Map>
    An array of occ handover resource blocks.

    GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItem

    AssociatedCapacityRequests List<GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemAssociatedCapacityRequest>
    A list containing details about the capacity requests against which the resources were provisioned by oracle.
    CompartmentId string
    The OCID of the compartment or tenancy in which resources are to be listed.
    HandoverDate string
    The date on which the resource was handed over to the customer.
    HandoverResourceName string
    A filter to return only the list of resources that match the name provided in this filter.
    Id string
    The OCID of the resource block.
    Namespace string
    The namespace by which we would filter the list.
    OccCustomerGroupId string
    The OCID of the customer group for which the resources were provisioned.
    PlacementDetails List<GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemPlacementDetail>
    Details like building, room and block where the resource was placed after provisioning in the datacenter.
    TotalHandoverQuantity string
    The total quantity of the resource that was made available to the customer by Oracle.
    AssociatedCapacityRequests []GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemAssociatedCapacityRequest
    A list containing details about the capacity requests against which the resources were provisioned by oracle.
    CompartmentId string
    The OCID of the compartment or tenancy in which resources are to be listed.
    HandoverDate string
    The date on which the resource was handed over to the customer.
    HandoverResourceName string
    A filter to return only the list of resources that match the name provided in this filter.
    Id string
    The OCID of the resource block.
    Namespace string
    The namespace by which we would filter the list.
    OccCustomerGroupId string
    The OCID of the customer group for which the resources were provisioned.
    PlacementDetails []GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemPlacementDetail
    Details like building, room and block where the resource was placed after provisioning in the datacenter.
    TotalHandoverQuantity string
    The total quantity of the resource that was made available to the customer by Oracle.
    associatedCapacityRequests List<GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemAssociatedCapacityRequest>
    A list containing details about the capacity requests against which the resources were provisioned by oracle.
    compartmentId String
    The OCID of the compartment or tenancy in which resources are to be listed.
    handoverDate String
    The date on which the resource was handed over to the customer.
    handoverResourceName String
    A filter to return only the list of resources that match the name provided in this filter.
    id String
    The OCID of the resource block.
    namespace String
    The namespace by which we would filter the list.
    occCustomerGroupId String
    The OCID of the customer group for which the resources were provisioned.
    placementDetails List<GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemPlacementDetail>
    Details like building, room and block where the resource was placed after provisioning in the datacenter.
    totalHandoverQuantity String
    The total quantity of the resource that was made available to the customer by Oracle.
    associatedCapacityRequests GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemAssociatedCapacityRequest[]
    A list containing details about the capacity requests against which the resources were provisioned by oracle.
    compartmentId string
    The OCID of the compartment or tenancy in which resources are to be listed.
    handoverDate string
    The date on which the resource was handed over to the customer.
    handoverResourceName string
    A filter to return only the list of resources that match the name provided in this filter.
    id string
    The OCID of the resource block.
    namespace string
    The namespace by which we would filter the list.
    occCustomerGroupId string
    The OCID of the customer group for which the resources were provisioned.
    placementDetails GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemPlacementDetail[]
    Details like building, room and block where the resource was placed after provisioning in the datacenter.
    totalHandoverQuantity string
    The total quantity of the resource that was made available to the customer by Oracle.
    associated_capacity_requests Sequence[capacitymanagement.GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemAssociatedCapacityRequest]
    A list containing details about the capacity requests against which the resources were provisioned by oracle.
    compartment_id str
    The OCID of the compartment or tenancy in which resources are to be listed.
    handover_date str
    The date on which the resource was handed over to the customer.
    handover_resource_name str
    A filter to return only the list of resources that match the name provided in this filter.
    id str
    The OCID of the resource block.
    namespace str
    The namespace by which we would filter the list.
    occ_customer_group_id str
    The OCID of the customer group for which the resources were provisioned.
    placement_details Sequence[capacitymanagement.GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemPlacementDetail]
    Details like building, room and block where the resource was placed after provisioning in the datacenter.
    total_handover_quantity str
    The total quantity of the resource that was made available to the customer by Oracle.
    associatedCapacityRequests List<Property Map>
    A list containing details about the capacity requests against which the resources were provisioned by oracle.
    compartmentId String
    The OCID of the compartment or tenancy in which resources are to be listed.
    handoverDate String
    The date on which the resource was handed over to the customer.
    handoverResourceName String
    A filter to return only the list of resources that match the name provided in this filter.
    id String
    The OCID of the resource block.
    namespace String
    The namespace by which we would filter the list.
    occCustomerGroupId String
    The OCID of the customer group for which the resources were provisioned.
    placementDetails List<Property Map>
    Details like building, room and block where the resource was placed after provisioning in the datacenter.
    totalHandoverQuantity String
    The total quantity of the resource that was made available to the customer by Oracle.

    GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemAssociatedCapacityRequest

    HandoverQuantity string
    The total quantity of the bare metal hardware that was made available corresponding to the capacity request ocid.
    OccCapacityRequestId string
    The OCID of the capacity request against which the resources were provisioned.
    HandoverQuantity string
    The total quantity of the bare metal hardware that was made available corresponding to the capacity request ocid.
    OccCapacityRequestId string
    The OCID of the capacity request against which the resources were provisioned.
    handoverQuantity String
    The total quantity of the bare metal hardware that was made available corresponding to the capacity request ocid.
    occCapacityRequestId String
    The OCID of the capacity request against which the resources were provisioned.
    handoverQuantity string
    The total quantity of the bare metal hardware that was made available corresponding to the capacity request ocid.
    occCapacityRequestId string
    The OCID of the capacity request against which the resources were provisioned.
    handover_quantity str
    The total quantity of the bare metal hardware that was made available corresponding to the capacity request ocid.
    occ_capacity_request_id str
    The OCID of the capacity request against which the resources were provisioned.
    handoverQuantity String
    The total quantity of the bare metal hardware that was made available corresponding to the capacity request ocid.
    occCapacityRequestId String
    The OCID of the capacity request against which the resources were provisioned.

    GetOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemPlacementDetail

    AvailabilityDomain string
    The availability domain (AD) for which the resources were provisioned.
    Block string
    The block in the datacenter room where the resource was placed.
    Building string
    The datacenter building where the resource was placed.
    Region string
    The name of the region for which the resources were provisioned.
    Room string
    The name of the room in the dataacenter building where the resource was placed.
    WorkloadType string
    The type of workload to which these resources were provisioned.
    AvailabilityDomain string
    The availability domain (AD) for which the resources were provisioned.
    Block string
    The block in the datacenter room where the resource was placed.
    Building string
    The datacenter building where the resource was placed.
    Region string
    The name of the region for which the resources were provisioned.
    Room string
    The name of the room in the dataacenter building where the resource was placed.
    WorkloadType string
    The type of workload to which these resources were provisioned.
    availabilityDomain String
    The availability domain (AD) for which the resources were provisioned.
    block String
    The block in the datacenter room where the resource was placed.
    building String
    The datacenter building where the resource was placed.
    region String
    The name of the region for which the resources were provisioned.
    room String
    The name of the room in the dataacenter building where the resource was placed.
    workloadType String
    The type of workload to which these resources were provisioned.
    availabilityDomain string
    The availability domain (AD) for which the resources were provisioned.
    block string
    The block in the datacenter room where the resource was placed.
    building string
    The datacenter building where the resource was placed.
    region string
    The name of the region for which the resources were provisioned.
    room string
    The name of the room in the dataacenter building where the resource was placed.
    workloadType string
    The type of workload to which these resources were provisioned.
    availability_domain str
    The availability domain (AD) for which the resources were provisioned.
    block str
    The block in the datacenter room where the resource was placed.
    building str
    The datacenter building where the resource was placed.
    region str
    The name of the region for which the resources were provisioned.
    room str
    The name of the room in the dataacenter building where the resource was placed.
    workload_type str
    The type of workload to which these resources were provisioned.
    availabilityDomain String
    The availability domain (AD) for which the resources were provisioned.
    block String
    The block in the datacenter room where the resource was placed.
    building String
    The datacenter building where the resource was placed.
    region String
    The name of the region for which the resources were provisioned.
    room String
    The name of the room in the dataacenter building where the resource was placed.
    workloadType String
    The type of workload to which these resources were provisioned.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi