Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi
oci.CapacityManagement.getInternalOccHandoverResourceBlocks
Explore with Pulumi AI
This data source provides the list of Internal 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 testInternalOccHandoverResourceBlocks = oci.CapacityManagement.getInternalOccHandoverResourceBlocks({
    compartmentId: compartmentId,
    namespace: internalOccHandoverResourceBlockNamespace,
    occCustomerGroupId: testOccCustomerGroup.id,
    handoverDateGreaterThanOrEqualTo: internalOccHandoverResourceBlockHandoverDateGreaterThanOrEqualTo,
    handoverDateLessThanOrEqualTo: internalOccHandoverResourceBlockHandoverDateLessThanOrEqualTo,
    handoverResourceName: testResource.name,
    occHandoverResourceBlockId: testOccHandoverResourceBlock.id,
});
import pulumi
import pulumi_oci as oci
test_internal_occ_handover_resource_blocks = oci.CapacityManagement.get_internal_occ_handover_resource_blocks(compartment_id=compartment_id,
    namespace=internal_occ_handover_resource_block_namespace,
    occ_customer_group_id=test_occ_customer_group["id"],
    handover_date_greater_than_or_equal_to=internal_occ_handover_resource_block_handover_date_greater_than_or_equal_to,
    handover_date_less_than_or_equal_to=internal_occ_handover_resource_block_handover_date_less_than_or_equal_to,
    handover_resource_name=test_resource["name"],
    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.GetInternalOccHandoverResourceBlocks(ctx, &capacitymanagement.GetInternalOccHandoverResourceBlocksArgs{
			CompartmentId:                    compartmentId,
			Namespace:                        internalOccHandoverResourceBlockNamespace,
			OccCustomerGroupId:               testOccCustomerGroup.Id,
			HandoverDateGreaterThanOrEqualTo: pulumi.StringRef(internalOccHandoverResourceBlockHandoverDateGreaterThanOrEqualTo),
			HandoverDateLessThanOrEqualTo:    pulumi.StringRef(internalOccHandoverResourceBlockHandoverDateLessThanOrEqualTo),
			HandoverResourceName:             pulumi.StringRef(testResource.Name),
			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 testInternalOccHandoverResourceBlocks = Oci.CapacityManagement.GetInternalOccHandoverResourceBlocks.Invoke(new()
    {
        CompartmentId = compartmentId,
        Namespace = internalOccHandoverResourceBlockNamespace,
        OccCustomerGroupId = testOccCustomerGroup.Id,
        HandoverDateGreaterThanOrEqualTo = internalOccHandoverResourceBlockHandoverDateGreaterThanOrEqualTo,
        HandoverDateLessThanOrEqualTo = internalOccHandoverResourceBlockHandoverDateLessThanOrEqualTo,
        HandoverResourceName = testResource.Name,
        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.GetInternalOccHandoverResourceBlocksArgs;
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 testInternalOccHandoverResourceBlocks = CapacityManagementFunctions.getInternalOccHandoverResourceBlocks(GetInternalOccHandoverResourceBlocksArgs.builder()
            .compartmentId(compartmentId)
            .namespace(internalOccHandoverResourceBlockNamespace)
            .occCustomerGroupId(testOccCustomerGroup.id())
            .handoverDateGreaterThanOrEqualTo(internalOccHandoverResourceBlockHandoverDateGreaterThanOrEqualTo)
            .handoverDateLessThanOrEqualTo(internalOccHandoverResourceBlockHandoverDateLessThanOrEqualTo)
            .handoverResourceName(testResource.name())
            .occHandoverResourceBlockId(testOccHandoverResourceBlock.id())
            .build());
    }
}
variables:
  testInternalOccHandoverResourceBlocks:
    fn::invoke:
      function: oci:CapacityManagement:getInternalOccHandoverResourceBlocks
      arguments:
        compartmentId: ${compartmentId}
        namespace: ${internalOccHandoverResourceBlockNamespace}
        occCustomerGroupId: ${testOccCustomerGroup.id}
        handoverDateGreaterThanOrEqualTo: ${internalOccHandoverResourceBlockHandoverDateGreaterThanOrEqualTo}
        handoverDateLessThanOrEqualTo: ${internalOccHandoverResourceBlockHandoverDateLessThanOrEqualTo}
        handoverResourceName: ${testResource.name}
        occHandoverResourceBlockId: ${testOccHandoverResourceBlock.id}
Using getInternalOccHandoverResourceBlocks
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 getInternalOccHandoverResourceBlocks(args: GetInternalOccHandoverResourceBlocksArgs, opts?: InvokeOptions): Promise<GetInternalOccHandoverResourceBlocksResult>
function getInternalOccHandoverResourceBlocksOutput(args: GetInternalOccHandoverResourceBlocksOutputArgs, opts?: InvokeOptions): Output<GetInternalOccHandoverResourceBlocksResult>def get_internal_occ_handover_resource_blocks(compartment_id: Optional[str] = None,
                                              filters: Optional[Sequence[_capacitymanagement.GetInternalOccHandoverResourceBlocksFilter]] = 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_customer_group_id: Optional[str] = None,
                                              occ_handover_resource_block_id: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetInternalOccHandoverResourceBlocksResult
def get_internal_occ_handover_resource_blocks_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[_capacitymanagement.GetInternalOccHandoverResourceBlocksFilterArgs]]]] = 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_customer_group_id: Optional[pulumi.Input[str]] = None,
                                              occ_handover_resource_block_id: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetInternalOccHandoverResourceBlocksResult]func GetInternalOccHandoverResourceBlocks(ctx *Context, args *GetInternalOccHandoverResourceBlocksArgs, opts ...InvokeOption) (*GetInternalOccHandoverResourceBlocksResult, error)
func GetInternalOccHandoverResourceBlocksOutput(ctx *Context, args *GetInternalOccHandoverResourceBlocksOutputArgs, opts ...InvokeOption) GetInternalOccHandoverResourceBlocksResultOutput> Note: This function is named GetInternalOccHandoverResourceBlocks in the Go SDK.
public static class GetInternalOccHandoverResourceBlocks 
{
    public static Task<GetInternalOccHandoverResourceBlocksResult> InvokeAsync(GetInternalOccHandoverResourceBlocksArgs args, InvokeOptions? opts = null)
    public static Output<GetInternalOccHandoverResourceBlocksResult> Invoke(GetInternalOccHandoverResourceBlocksInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetInternalOccHandoverResourceBlocksResult> getInternalOccHandoverResourceBlocks(GetInternalOccHandoverResourceBlocksArgs args, InvokeOptions options)
public static Output<GetInternalOccHandoverResourceBlocksResult> getInternalOccHandoverResourceBlocks(GetInternalOccHandoverResourceBlocksArgs args, InvokeOptions options)
fn::invoke:
  function: oci:CapacityManagement/getInternalOccHandoverResourceBlocks:getInternalOccHandoverResourceBlocks
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Namespace string
- The namespace enum value that needs to be passed as a required query parameter.
- OccCustomer stringGroup Id 
- The customer group ocid by which we would filter the list.
- Filters
List<GetInternal Occ Handover Resource Blocks Filter> 
- HandoverDate stringGreater Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
- HandoverDate stringLess Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
- HandoverResource stringName 
- A filter to return only the list of resources that match the name provided in this filter.
- OccHandover stringResource Block Id 
- 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. This will also be used for authorization purposes.
- Namespace string
- The namespace enum value that needs to be passed as a required query parameter.
- OccCustomer stringGroup Id 
- The customer group ocid by which we would filter the list.
- Filters
[]GetInternal Occ Handover Resource Blocks Filter 
- HandoverDate stringGreater Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
- HandoverDate stringLess Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
- HandoverResource stringName 
- A filter to return only the list of resources that match the name provided in this filter.
- OccHandover stringResource Block Id 
- 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. This will also be used for authorization purposes.
- namespace String
- The namespace enum value that needs to be passed as a required query parameter.
- occCustomer StringGroup Id 
- The customer group ocid by which we would filter the list.
- filters
List<GetInternal Occ Handover Resource Blocks Filter> 
- handoverDate StringGreater Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
- handoverDate StringLess Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
- handoverResource StringName 
- A filter to return only the list of resources that match the name provided in this filter.
- occHandover StringResource Block Id 
- 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. This will also be used for authorization purposes.
- namespace string
- The namespace enum value that needs to be passed as a required query parameter.
- occCustomer stringGroup Id 
- The customer group ocid by which we would filter the list.
- filters
GetInternal Occ Handover Resource Blocks Filter[] 
- handoverDate stringGreater Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
- handoverDate stringLess Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
- handoverResource stringName 
- A filter to return only the list of resources that match the name provided in this filter.
- occHandover stringResource Block Id 
- 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. This will also be used for authorization purposes.
- namespace str
- The namespace enum value that needs to be passed as a required query parameter.
- occ_customer_ strgroup_ id 
- The customer group ocid by which we would filter the list.
- filters
Sequence[capacitymanagement.Get Internal Occ Handover Resource Blocks Filter] 
- handover_date_ strgreater_ than_ or_ equal_ to 
- This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
- handover_date_ strless_ than_ or_ equal_ to 
- This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
- handover_resource_ strname 
- A filter to return only the list of resources that match the name provided in this filter.
- occ_handover_ strresource_ block_ id 
- 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. This will also be used for authorization purposes.
- namespace String
- The namespace enum value that needs to be passed as a required query parameter.
- occCustomer StringGroup Id 
- The customer group ocid by which we would filter the list.
- filters List<Property Map>
- handoverDate StringGreater Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is greater than or equal to the startDate.
- handoverDate StringLess Than Or Equal To 
- This filter helps in fetching all handed over resources for which the recordDate is less than or equal to the endDate.
- handoverResource StringName 
- A filter to return only the list of resources that match the name provided in this filter.
- occHandover StringResource Block Id 
- This filter helps in fetching the handed over resource for which the occHandoverResourceId is equal to the one provided here.
getInternalOccHandoverResourceBlocks Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment where the resource block's are placed.
- Id string
- The provider-assigned unique ID for this managed resource.
- Namespace string
- The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
- OccCustomer stringGroup Id 
- The OCID of the customer group for which the resources were provisioned.
- OccHandover List<GetResource Block Collections Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection> 
- The list of occ_handover_resource_block_collection.
- Filters
List<GetInternal Occ Handover Resource Blocks Filter> 
- HandoverDate stringGreater Than Or Equal To 
- HandoverDate stringLess Than Or Equal To 
- HandoverResource stringName 
- 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.
- OccHandover stringResource Block Id 
- CompartmentId string
- The OCID of the compartment where the resource block's are placed.
- Id string
- The provider-assigned unique ID for this managed resource.
- Namespace string
- The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
- OccCustomer stringGroup Id 
- The OCID of the customer group for which the resources were provisioned.
- OccHandover []GetResource Block Collections Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection 
- The list of occ_handover_resource_block_collection.
- Filters
[]GetInternal Occ Handover Resource Blocks Filter 
- HandoverDate stringGreater Than Or Equal To 
- HandoverDate stringLess Than Or Equal To 
- HandoverResource stringName 
- 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.
- OccHandover stringResource Block Id 
- compartmentId String
- The OCID of the compartment where the resource block's are placed.
- id String
- The provider-assigned unique ID for this managed resource.
- namespace String
- The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
- occCustomer StringGroup Id 
- The OCID of the customer group for which the resources were provisioned.
- occHandover List<GetResource Block Collections Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection> 
- The list of occ_handover_resource_block_collection.
- filters
List<GetInternal Occ Handover Resource Blocks Filter> 
- handoverDate StringGreater Than Or Equal To 
- handoverDate StringLess Than Or Equal To 
- handoverResource StringName 
- 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.
- occHandover StringResource Block Id 
- compartmentId string
- The OCID of the compartment where the resource block's are placed.
- id string
- The provider-assigned unique ID for this managed resource.
- namespace string
- The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
- occCustomer stringGroup Id 
- The OCID of the customer group for which the resources were provisioned.
- occHandover GetResource Block Collections Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection[] 
- The list of occ_handover_resource_block_collection.
- filters
GetInternal Occ Handover Resource Blocks Filter[] 
- handoverDate stringGreater Than Or Equal To 
- handoverDate stringLess Than Or Equal To 
- handoverResource stringName 
- 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.
- occHandover stringResource Block Id 
- compartment_id str
- The OCID of the compartment where the resource block's are placed.
- id str
- The provider-assigned unique ID for this managed resource.
- namespace str
- The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
- occ_customer_ strgroup_ id 
- The OCID of the customer group for which the resources were provisioned.
- occ_handover_ Sequence[capacitymanagement.resource_ block_ collections Get Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection] 
- The list of occ_handover_resource_block_collection.
- filters
Sequence[capacitymanagement.Get Internal Occ Handover Resource Blocks Filter] 
- handover_date_ strgreater_ than_ or_ equal_ to 
- handover_date_ strless_ than_ or_ equal_ to 
- handover_resource_ strname 
- 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.
- occ_handover_ strresource_ block_ id 
- compartmentId String
- The OCID of the compartment where the resource block's are placed.
- id String
- The provider-assigned unique ID for this managed resource.
- namespace String
- The name of the Oracle Cloud Infrastructure service in consideration. For example Compute, Exadata and so on.
- occCustomer StringGroup Id 
- The OCID of the customer group for which the resources were provisioned.
- occHandover List<Property Map>Resource Block Collections 
- The list of occ_handover_resource_block_collection.
- filters List<Property Map>
- handoverDate StringGreater Than Or Equal To 
- handoverDate StringLess Than Or Equal To 
- handoverResource StringName 
- 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.
- occHandover StringResource Block Id 
Supporting Types
GetInternalOccHandoverResourceBlocksFilter      
GetInternalOccHandoverResourceBlocksOccHandoverResourceBlockCollection          
- Items
List<GetInternal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item> 
- An array of occ handover resource blocks.
- Items
[]GetInternal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item 
- An array of occ handover resource blocks.
- items
List<GetInternal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item> 
- An array of occ handover resource blocks.
- items
GetInternal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item[] 
- An array of occ handover resource blocks.
- items
Sequence[capacitymanagement.Get Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item] 
- An array of occ handover resource blocks.
- items List<Property Map>
- An array of occ handover resource blocks.
GetInternalOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItem           
- AssociatedCapacity List<GetRequests Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Associated Capacity Request> 
- 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. This will also be used for authorization purposes.
- HandoverDate string
- The date on which the resource was handed over to the customer.
- HandoverResource stringName 
- 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 enum value that needs to be passed as a required query parameter.
- OccCustomer stringGroup Id 
- The customer group ocid by which we would filter the list.
- PlacementDetails List<GetInternal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Placement Detail> 
- Details like building, room and block where the resource was placed after provisioning in the datacenter.
- TotalHandover stringQuantity 
- The total quantity of the resource that was made available to the customer by Oracle.
- AssociatedCapacity []GetRequests Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Associated Capacity Request 
- 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. This will also be used for authorization purposes.
- HandoverDate string
- The date on which the resource was handed over to the customer.
- HandoverResource stringName 
- 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 enum value that needs to be passed as a required query parameter.
- OccCustomer stringGroup Id 
- The customer group ocid by which we would filter the list.
- PlacementDetails []GetInternal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Placement Detail 
- Details like building, room and block where the resource was placed after provisioning in the datacenter.
- TotalHandover stringQuantity 
- The total quantity of the resource that was made available to the customer by Oracle.
- associatedCapacity List<GetRequests Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Associated Capacity Request> 
- 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. This will also be used for authorization purposes.
- handoverDate String
- The date on which the resource was handed over to the customer.
- handoverResource StringName 
- 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 enum value that needs to be passed as a required query parameter.
- occCustomer StringGroup Id 
- The customer group ocid by which we would filter the list.
- placementDetails List<GetInternal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Placement Detail> 
- Details like building, room and block where the resource was placed after provisioning in the datacenter.
- totalHandover StringQuantity 
- The total quantity of the resource that was made available to the customer by Oracle.
- associatedCapacity GetRequests Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Associated Capacity Request[] 
- 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. This will also be used for authorization purposes.
- handoverDate string
- The date on which the resource was handed over to the customer.
- handoverResource stringName 
- 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 enum value that needs to be passed as a required query parameter.
- occCustomer stringGroup Id 
- The customer group ocid by which we would filter the list.
- placementDetails GetInternal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Placement Detail[] 
- Details like building, room and block where the resource was placed after provisioning in the datacenter.
- totalHandover stringQuantity 
- The total quantity of the resource that was made available to the customer by Oracle.
- associated_capacity_ Sequence[capacitymanagement.requests Get Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Associated Capacity Request] 
- 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. This will also be used for authorization purposes.
- handover_date str
- The date on which the resource was handed over to the customer.
- handover_resource_ strname 
- 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 enum value that needs to be passed as a required query parameter.
- occ_customer_ strgroup_ id 
- The customer group ocid by which we would filter the list.
- placement_details Sequence[capacitymanagement.Get Internal Occ Handover Resource Blocks Occ Handover Resource Block Collection Item Placement Detail] 
- Details like building, room and block where the resource was placed after provisioning in the datacenter.
- total_handover_ strquantity 
- The total quantity of the resource that was made available to the customer by Oracle.
- associatedCapacity List<Property Map>Requests 
- 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. This will also be used for authorization purposes.
- handoverDate String
- The date on which the resource was handed over to the customer.
- handoverResource StringName 
- 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 enum value that needs to be passed as a required query parameter.
- occCustomer StringGroup Id 
- The customer group ocid by which we would filter the list.
- placementDetails List<Property Map>
- Details like building, room and block where the resource was placed after provisioning in the datacenter.
- totalHandover StringQuantity 
- The total quantity of the resource that was made available to the customer by Oracle.
GetInternalOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemAssociatedCapacityRequest              
- HandoverQuantity string
- The total quantity of the bare metal hardware that was made available corresponding to the capacity request ocid.
- OccCapacity stringRequest Id 
- 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.
- OccCapacity stringRequest Id 
- 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.
- occCapacity StringRequest Id 
- 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.
- occCapacity stringRequest Id 
- 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_ strrequest_ id 
- 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.
- occCapacity StringRequest Id 
- The OCID of the capacity request against which the resources were provisioned.
GetInternalOccHandoverResourceBlocksOccHandoverResourceBlockCollectionItemPlacementDetail             
- 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 ociTerraform Provider.