1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CapacityManagement
  5. getInternalNamespaceOccOverviews
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.CapacityManagement.getInternalNamespaceOccOverviews

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Internal Namespace Occ Overviews in Oracle Cloud Infrastructure Capacity Management service.

Lists an overview of all resources in that namespace in a given time interval.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testInternalNamespaceOccOverviews = oci.CapacityManagement.getInternalNamespaceOccOverviews({
    compartmentId: compartmentId,
    namespace: internalNamespaceOccOverviewNamespace,
    occCustomerGroupId: testOccCustomerGroup.id,
    from: internalNamespaceOccOverviewFrom,
    to: internalNamespaceOccOverviewTo,
    workloadType: internalNamespaceOccOverviewWorkloadType,
});
Copy
import pulumi
import pulumi_oci as oci

test_internal_namespace_occ_overviews = oci.CapacityManagement.get_internal_namespace_occ_overviews(compartment_id=compartment_id,
    namespace=internal_namespace_occ_overview_namespace,
    occ_customer_group_id=test_occ_customer_group["id"],
    from_=internal_namespace_occ_overview_from,
    to=internal_namespace_occ_overview_to,
    workload_type=internal_namespace_occ_overview_workload_type)
Copy
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.GetInternalNamespaceOccOverviews(ctx, &capacitymanagement.GetInternalNamespaceOccOverviewsArgs{
			CompartmentId:      compartmentId,
			Namespace:          internalNamespaceOccOverviewNamespace,
			OccCustomerGroupId: testOccCustomerGroup.Id,
			From:               pulumi.StringRef(internalNamespaceOccOverviewFrom),
			To:                 pulumi.StringRef(internalNamespaceOccOverviewTo),
			WorkloadType:       pulumi.StringRef(internalNamespaceOccOverviewWorkloadType),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testInternalNamespaceOccOverviews = Oci.CapacityManagement.GetInternalNamespaceOccOverviews.Invoke(new()
    {
        CompartmentId = compartmentId,
        Namespace = internalNamespaceOccOverviewNamespace,
        OccCustomerGroupId = testOccCustomerGroup.Id,
        From = internalNamespaceOccOverviewFrom,
        To = internalNamespaceOccOverviewTo,
        WorkloadType = internalNamespaceOccOverviewWorkloadType,
    });

});
Copy
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.GetInternalNamespaceOccOverviewsArgs;
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 testInternalNamespaceOccOverviews = CapacityManagementFunctions.getInternalNamespaceOccOverviews(GetInternalNamespaceOccOverviewsArgs.builder()
            .compartmentId(compartmentId)
            .namespace(internalNamespaceOccOverviewNamespace)
            .occCustomerGroupId(testOccCustomerGroup.id())
            .from(internalNamespaceOccOverviewFrom)
            .to(internalNamespaceOccOverviewTo)
            .workloadType(internalNamespaceOccOverviewWorkloadType)
            .build());

    }
}
Copy
variables:
  testInternalNamespaceOccOverviews:
    fn::invoke:
      function: oci:CapacityManagement:getInternalNamespaceOccOverviews
      arguments:
        compartmentId: ${compartmentId}
        namespace: ${internalNamespaceOccOverviewNamespace}
        occCustomerGroupId: ${testOccCustomerGroup.id}
        from: ${internalNamespaceOccOverviewFrom}
        to: ${internalNamespaceOccOverviewTo}
        workloadType: ${internalNamespaceOccOverviewWorkloadType}
Copy

Using getInternalNamespaceOccOverviews

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 getInternalNamespaceOccOverviews(args: GetInternalNamespaceOccOverviewsArgs, opts?: InvokeOptions): Promise<GetInternalNamespaceOccOverviewsResult>
function getInternalNamespaceOccOverviewsOutput(args: GetInternalNamespaceOccOverviewsOutputArgs, opts?: InvokeOptions): Output<GetInternalNamespaceOccOverviewsResult>
Copy
def get_internal_namespace_occ_overviews(compartment_id: Optional[str] = None,
                                         filters: Optional[Sequence[_capacitymanagement.GetInternalNamespaceOccOverviewsFilter]] = None,
                                         from_: Optional[str] = None,
                                         namespace: Optional[str] = None,
                                         occ_customer_group_id: Optional[str] = None,
                                         to: Optional[str] = None,
                                         workload_type: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetInternalNamespaceOccOverviewsResult
def get_internal_namespace_occ_overviews_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_capacitymanagement.GetInternalNamespaceOccOverviewsFilterArgs]]]] = None,
                                         from_: Optional[pulumi.Input[str]] = None,
                                         namespace: Optional[pulumi.Input[str]] = None,
                                         occ_customer_group_id: Optional[pulumi.Input[str]] = None,
                                         to: Optional[pulumi.Input[str]] = None,
                                         workload_type: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetInternalNamespaceOccOverviewsResult]
Copy
func GetInternalNamespaceOccOverviews(ctx *Context, args *GetInternalNamespaceOccOverviewsArgs, opts ...InvokeOption) (*GetInternalNamespaceOccOverviewsResult, error)
func GetInternalNamespaceOccOverviewsOutput(ctx *Context, args *GetInternalNamespaceOccOverviewsOutputArgs, opts ...InvokeOption) GetInternalNamespaceOccOverviewsResultOutput
Copy

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

public static class GetInternalNamespaceOccOverviews 
{
    public static Task<GetInternalNamespaceOccOverviewsResult> InvokeAsync(GetInternalNamespaceOccOverviewsArgs args, InvokeOptions? opts = null)
    public static Output<GetInternalNamespaceOccOverviewsResult> Invoke(GetInternalNamespaceOccOverviewsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetInternalNamespaceOccOverviewsResult> getInternalNamespaceOccOverviews(GetInternalNamespaceOccOverviewsArgs args, InvokeOptions options)
public static Output<GetInternalNamespaceOccOverviewsResult> getInternalNamespaceOccOverviews(GetInternalNamespaceOccOverviewsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:CapacityManagement/getInternalNamespaceOccOverviews:getInternalNamespaceOccOverviews
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
Namespace This property is required. string
The namespace by which we would filter the list.
OccCustomerGroupId This property is required. string
The customer group ocid by which we would filter the list.
Filters Changes to this property will trigger replacement. List<GetInternalNamespaceOccOverviewsFilter>
From string
The month corresponding to this date would be considered as the starting point of the time period against which we would like to perform an aggregation.
To string
The month corresponding to this date would be considered as the ending point of the time period against which we would like to perform an aggregation.
WorkloadType string
Workload type using the resources in an availability catalog can be filtered.
CompartmentId This property is required. string
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
Namespace This property is required. string
The namespace by which we would filter the list.
OccCustomerGroupId This property is required. string
The customer group ocid by which we would filter the list.
Filters Changes to this property will trigger replacement. []GetInternalNamespaceOccOverviewsFilter
From string
The month corresponding to this date would be considered as the starting point of the time period against which we would like to perform an aggregation.
To string
The month corresponding to this date would be considered as the ending point of the time period against which we would like to perform an aggregation.
WorkloadType string
Workload type using the resources in an availability catalog can be filtered.
compartmentId This property is required. String
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
namespace This property is required. String
The namespace by which we would filter the list.
occCustomerGroupId This property is required. String
The customer group ocid by which we would filter the list.
filters Changes to this property will trigger replacement. List<GetInternalNamespaceOccOverviewsFilter>
from String
The month corresponding to this date would be considered as the starting point of the time period against which we would like to perform an aggregation.
to String
The month corresponding to this date would be considered as the ending point of the time period against which we would like to perform an aggregation.
workloadType String
Workload type using the resources in an availability catalog can be filtered.
compartmentId This property is required. string
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
namespace This property is required. string
The namespace by which we would filter the list.
occCustomerGroupId This property is required. string
The customer group ocid by which we would filter the list.
filters Changes to this property will trigger replacement. GetInternalNamespaceOccOverviewsFilter[]
from string
The month corresponding to this date would be considered as the starting point of the time period against which we would like to perform an aggregation.
to string
The month corresponding to this date would be considered as the ending point of the time period against which we would like to perform an aggregation.
workloadType string
Workload type using the resources in an availability catalog can be filtered.
compartment_id This property is required. str
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
namespace This property is required. str
The namespace by which we would filter the list.
occ_customer_group_id This property is required. str
The customer group ocid by which we would filter the list.
filters Changes to this property will trigger replacement. Sequence[capacitymanagement.GetInternalNamespaceOccOverviewsFilter]
from_ str
The month corresponding to this date would be considered as the starting point of the time period against which we would like to perform an aggregation.
to str
The month corresponding to this date would be considered as the ending point of the time period against which we would like to perform an aggregation.
workload_type str
Workload type using the resources in an availability catalog can be filtered.
compartmentId This property is required. String
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
namespace This property is required. String
The namespace by which we would filter the list.
occCustomerGroupId This property is required. String
The customer group ocid by which we would filter the list.
filters Changes to this property will trigger replacement. List<Property Map>
from String
The month corresponding to this date would be considered as the starting point of the time period against which we would like to perform an aggregation.
to String
The month corresponding to this date would be considered as the ending point of the time period against which we would like to perform an aggregation.
workloadType String
Workload type using the resources in an availability catalog can be filtered.

getInternalNamespaceOccOverviews Result

The following output properties are available:

CompartmentId string
The OCID of the compartment from which the api call is made. This will be used for authorizing the request.
Id string
The provider-assigned unique ID for this managed resource.
Namespace string
OccCustomerGroupId string
OccOverviewCollections List<GetInternalNamespaceOccOverviewsOccOverviewCollection>
The list of occ_overview_collection.
Filters List<GetInternalNamespaceOccOverviewsFilter>
From string
To string
WorkloadType string
CompartmentId string
The OCID of the compartment from which the api call is made. This will be used for authorizing the request.
Id string
The provider-assigned unique ID for this managed resource.
Namespace string
OccCustomerGroupId string
OccOverviewCollections []GetInternalNamespaceOccOverviewsOccOverviewCollection
The list of occ_overview_collection.
Filters []GetInternalNamespaceOccOverviewsFilter
From string
To string
WorkloadType string
compartmentId String
The OCID of the compartment from which the api call is made. This will be used for authorizing the request.
id String
The provider-assigned unique ID for this managed resource.
namespace String
occCustomerGroupId String
occOverviewCollections List<GetInternalNamespaceOccOverviewsOccOverviewCollection>
The list of occ_overview_collection.
filters List<GetInternalNamespaceOccOverviewsFilter>
from String
to String
workloadType String
compartmentId string
The OCID of the compartment from which the api call is made. This will be used for authorizing the request.
id string
The provider-assigned unique ID for this managed resource.
namespace string
occCustomerGroupId string
occOverviewCollections GetInternalNamespaceOccOverviewsOccOverviewCollection[]
The list of occ_overview_collection.
filters GetInternalNamespaceOccOverviewsFilter[]
from string
to string
workloadType string
compartment_id str
The OCID of the compartment from which the api call is made. This will be used for authorizing the request.
id str
The provider-assigned unique ID for this managed resource.
namespace str
occ_customer_group_id str
occ_overview_collections Sequence[capacitymanagement.GetInternalNamespaceOccOverviewsOccOverviewCollection]
The list of occ_overview_collection.
filters Sequence[capacitymanagement.GetInternalNamespaceOccOverviewsFilter]
from_ str
to str
workload_type str
compartmentId String
The OCID of the compartment from which the api call is made. This will be used for authorizing the request.
id String
The provider-assigned unique ID for this managed resource.
namespace String
occCustomerGroupId String
occOverviewCollections List<Property Map>
The list of occ_overview_collection.
filters List<Property Map>
from String
to String
workloadType String

Supporting Types

GetInternalNamespaceOccOverviewsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetInternalNamespaceOccOverviewsOccOverviewCollection

Items This property is required. List<GetInternalNamespaceOccOverviewsOccOverviewCollectionItem>
An array of overview summary.
Items This property is required. []GetInternalNamespaceOccOverviewsOccOverviewCollectionItem
An array of overview summary.
items This property is required. List<GetInternalNamespaceOccOverviewsOccOverviewCollectionItem>
An array of overview summary.
items This property is required. GetInternalNamespaceOccOverviewsOccOverviewCollectionItem[]
An array of overview summary.
items This property is required. List<Property Map>
An array of overview summary.

GetInternalNamespaceOccOverviewsOccOverviewCollectionItem

CapacityRequestsBlob This property is required. string
A raw json blob containing all the capacity requests corresponding to the resource name
CompartmentId This property is required. string
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
PeriodValue This property is required. string
The name of the month along with year for which this summary corresponds to.
ResourceName This property is required. string
The name of the resource for which we have aggregated the value.
TotalAvailable This property is required. string
The quantity of the resource which is available at the end of the period of aggregationDetails model in consideration.
TotalCancelled This property is required. string
The quantity of the resource which is cancelled by the customer. Once the capacity request was submitted, the customer can still cancel it. This field sums up those values.
TotalDemanded This property is required. string
The quantity of the resource which is demanded by customers via capacity requests against the resource name at the end of the time period in consideration for overview.
TotalRejected This property is required. string
The quantity of the resource which is rejected by Oracle.
TotalSupplied This property is required. string
The quantity of the resource which is supplied by Oracle to the customer against the resource name at the end of the time period in consideration.
TotalUnfulfilled This property is required. string
The quantity of the resource which Oracle was unable to supply. For a given capacity request, Oracle sometimes cannot supply the entire value demanded by the customer. In such cases a partial value is provided, thereby leaving behind a portion of unfulfilled values. This field sums that up.
Unit This property is required. string
The unit e.g SERVER in which the above values like totalAvailable, totalSupplied etc is measured.
WorkloadTypeBreakdownBlob This property is required. string
A raw json blob containing breakdown of totalAvailable, totalDemanded, totalSupplied, totalRejected, totalCancelled and totalUnfulfilled by workload types
CapacityRequestsBlob This property is required. string
A raw json blob containing all the capacity requests corresponding to the resource name
CompartmentId This property is required. string
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
PeriodValue This property is required. string
The name of the month along with year for which this summary corresponds to.
ResourceName This property is required. string
The name of the resource for which we have aggregated the value.
TotalAvailable This property is required. string
The quantity of the resource which is available at the end of the period of aggregationDetails model in consideration.
TotalCancelled This property is required. string
The quantity of the resource which is cancelled by the customer. Once the capacity request was submitted, the customer can still cancel it. This field sums up those values.
TotalDemanded This property is required. string
The quantity of the resource which is demanded by customers via capacity requests against the resource name at the end of the time period in consideration for overview.
TotalRejected This property is required. string
The quantity of the resource which is rejected by Oracle.
TotalSupplied This property is required. string
The quantity of the resource which is supplied by Oracle to the customer against the resource name at the end of the time period in consideration.
TotalUnfulfilled This property is required. string
The quantity of the resource which Oracle was unable to supply. For a given capacity request, Oracle sometimes cannot supply the entire value demanded by the customer. In such cases a partial value is provided, thereby leaving behind a portion of unfulfilled values. This field sums that up.
Unit This property is required. string
The unit e.g SERVER in which the above values like totalAvailable, totalSupplied etc is measured.
WorkloadTypeBreakdownBlob This property is required. string
A raw json blob containing breakdown of totalAvailable, totalDemanded, totalSupplied, totalRejected, totalCancelled and totalUnfulfilled by workload types
capacityRequestsBlob This property is required. String
A raw json blob containing all the capacity requests corresponding to the resource name
compartmentId This property is required. String
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
periodValue This property is required. String
The name of the month along with year for which this summary corresponds to.
resourceName This property is required. String
The name of the resource for which we have aggregated the value.
totalAvailable This property is required. String
The quantity of the resource which is available at the end of the period of aggregationDetails model in consideration.
totalCancelled This property is required. String
The quantity of the resource which is cancelled by the customer. Once the capacity request was submitted, the customer can still cancel it. This field sums up those values.
totalDemanded This property is required. String
The quantity of the resource which is demanded by customers via capacity requests against the resource name at the end of the time period in consideration for overview.
totalRejected This property is required. String
The quantity of the resource which is rejected by Oracle.
totalSupplied This property is required. String
The quantity of the resource which is supplied by Oracle to the customer against the resource name at the end of the time period in consideration.
totalUnfulfilled This property is required. String
The quantity of the resource which Oracle was unable to supply. For a given capacity request, Oracle sometimes cannot supply the entire value demanded by the customer. In such cases a partial value is provided, thereby leaving behind a portion of unfulfilled values. This field sums that up.
unit This property is required. String
The unit e.g SERVER in which the above values like totalAvailable, totalSupplied etc is measured.
workloadTypeBreakdownBlob This property is required. String
A raw json blob containing breakdown of totalAvailable, totalDemanded, totalSupplied, totalRejected, totalCancelled and totalUnfulfilled by workload types
capacityRequestsBlob This property is required. string
A raw json blob containing all the capacity requests corresponding to the resource name
compartmentId This property is required. string
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
periodValue This property is required. string
The name of the month along with year for which this summary corresponds to.
resourceName This property is required. string
The name of the resource for which we have aggregated the value.
totalAvailable This property is required. string
The quantity of the resource which is available at the end of the period of aggregationDetails model in consideration.
totalCancelled This property is required. string
The quantity of the resource which is cancelled by the customer. Once the capacity request was submitted, the customer can still cancel it. This field sums up those values.
totalDemanded This property is required. string
The quantity of the resource which is demanded by customers via capacity requests against the resource name at the end of the time period in consideration for overview.
totalRejected This property is required. string
The quantity of the resource which is rejected by Oracle.
totalSupplied This property is required. string
The quantity of the resource which is supplied by Oracle to the customer against the resource name at the end of the time period in consideration.
totalUnfulfilled This property is required. string
The quantity of the resource which Oracle was unable to supply. For a given capacity request, Oracle sometimes cannot supply the entire value demanded by the customer. In such cases a partial value is provided, thereby leaving behind a portion of unfulfilled values. This field sums that up.
unit This property is required. string
The unit e.g SERVER in which the above values like totalAvailable, totalSupplied etc is measured.
workloadTypeBreakdownBlob This property is required. string
A raw json blob containing breakdown of totalAvailable, totalDemanded, totalSupplied, totalRejected, totalCancelled and totalUnfulfilled by workload types
capacity_requests_blob This property is required. str
A raw json blob containing all the capacity requests corresponding to the resource name
compartment_id This property is required. str
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
period_value This property is required. str
The name of the month along with year for which this summary corresponds to.
resource_name This property is required. str
The name of the resource for which we have aggregated the value.
total_available This property is required. str
The quantity of the resource which is available at the end of the period of aggregationDetails model in consideration.
total_cancelled This property is required. str
The quantity of the resource which is cancelled by the customer. Once the capacity request was submitted, the customer can still cancel it. This field sums up those values.
total_demanded This property is required. str
The quantity of the resource which is demanded by customers via capacity requests against the resource name at the end of the time period in consideration for overview.
total_rejected This property is required. str
The quantity of the resource which is rejected by Oracle.
total_supplied This property is required. str
The quantity of the resource which is supplied by Oracle to the customer against the resource name at the end of the time period in consideration.
total_unfulfilled This property is required. str
The quantity of the resource which Oracle was unable to supply. For a given capacity request, Oracle sometimes cannot supply the entire value demanded by the customer. In such cases a partial value is provided, thereby leaving behind a portion of unfulfilled values. This field sums that up.
unit This property is required. str
The unit e.g SERVER in which the above values like totalAvailable, totalSupplied etc is measured.
workload_type_breakdown_blob This property is required. str
A raw json blob containing breakdown of totalAvailable, totalDemanded, totalSupplied, totalRejected, totalCancelled and totalUnfulfilled by workload types
capacityRequestsBlob This property is required. String
A raw json blob containing all the capacity requests corresponding to the resource name
compartmentId This property is required. String
The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
periodValue This property is required. String
The name of the month along with year for which this summary corresponds to.
resourceName This property is required. String
The name of the resource for which we have aggregated the value.
totalAvailable This property is required. String
The quantity of the resource which is available at the end of the period of aggregationDetails model in consideration.
totalCancelled This property is required. String
The quantity of the resource which is cancelled by the customer. Once the capacity request was submitted, the customer can still cancel it. This field sums up those values.
totalDemanded This property is required. String
The quantity of the resource which is demanded by customers via capacity requests against the resource name at the end of the time period in consideration for overview.
totalRejected This property is required. String
The quantity of the resource which is rejected by Oracle.
totalSupplied This property is required. String
The quantity of the resource which is supplied by Oracle to the customer against the resource name at the end of the time period in consideration.
totalUnfulfilled This property is required. String
The quantity of the resource which Oracle was unable to supply. For a given capacity request, Oracle sometimes cannot supply the entire value demanded by the customer. In such cases a partial value is provided, thereby leaving behind a portion of unfulfilled values. This field sums that up.
unit This property is required. String
The unit e.g SERVER in which the above values like totalAvailable, totalSupplied etc is measured.
workloadTypeBreakdownBlob This property is required. String
A raw json blob containing breakdown of totalAvailable, totalDemanded, totalSupplied, totalRejected, totalCancelled and totalUnfulfilled by workload types

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi