Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Artifacts.getContainerRepositories
Explore with Pulumi AI
This data source provides the list of Container Repositories in Oracle Cloud Infrastructure Artifacts service.
List container repositories in a compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testContainerRepositories = oci.Artifacts.getContainerRepositories({
    compartmentId: compartmentId,
    compartmentIdInSubtree: containerRepositoryCompartmentIdInSubtree,
    displayName: containerRepositoryDisplayName,
    isPublic: containerRepositoryIsPublic,
    repositoryId: testRepository.id,
    state: containerRepositoryState,
});
import pulumi
import pulumi_oci as oci
test_container_repositories = oci.Artifacts.get_container_repositories(compartment_id=compartment_id,
    compartment_id_in_subtree=container_repository_compartment_id_in_subtree,
    display_name=container_repository_display_name,
    is_public=container_repository_is_public,
    repository_id=test_repository["id"],
    state=container_repository_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/artifacts"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := artifacts.GetContainerRepositories(ctx, &artifacts.GetContainerRepositoriesArgs{
			CompartmentId:          compartmentId,
			CompartmentIdInSubtree: pulumi.BoolRef(containerRepositoryCompartmentIdInSubtree),
			DisplayName:            pulumi.StringRef(containerRepositoryDisplayName),
			IsPublic:               pulumi.BoolRef(containerRepositoryIsPublic),
			RepositoryId:           pulumi.StringRef(testRepository.Id),
			State:                  pulumi.StringRef(containerRepositoryState),
		}, 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 testContainerRepositories = Oci.Artifacts.GetContainerRepositories.Invoke(new()
    {
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = containerRepositoryCompartmentIdInSubtree,
        DisplayName = containerRepositoryDisplayName,
        IsPublic = containerRepositoryIsPublic,
        RepositoryId = testRepository.Id,
        State = containerRepositoryState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Artifacts.ArtifactsFunctions;
import com.pulumi.oci.Artifacts.inputs.GetContainerRepositoriesArgs;
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 testContainerRepositories = ArtifactsFunctions.getContainerRepositories(GetContainerRepositoriesArgs.builder()
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(containerRepositoryCompartmentIdInSubtree)
            .displayName(containerRepositoryDisplayName)
            .isPublic(containerRepositoryIsPublic)
            .repositoryId(testRepository.id())
            .state(containerRepositoryState)
            .build());
    }
}
variables:
  testContainerRepositories:
    fn::invoke:
      function: oci:Artifacts:getContainerRepositories
      arguments:
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${containerRepositoryCompartmentIdInSubtree}
        displayName: ${containerRepositoryDisplayName}
        isPublic: ${containerRepositoryIsPublic}
        repositoryId: ${testRepository.id}
        state: ${containerRepositoryState}
Using getContainerRepositories
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 getContainerRepositories(args: GetContainerRepositoriesArgs, opts?: InvokeOptions): Promise<GetContainerRepositoriesResult>
function getContainerRepositoriesOutput(args: GetContainerRepositoriesOutputArgs, opts?: InvokeOptions): Output<GetContainerRepositoriesResult>def get_container_repositories(compartment_id: Optional[str] = None,
                               compartment_id_in_subtree: Optional[bool] = None,
                               display_name: Optional[str] = None,
                               filters: Optional[Sequence[GetContainerRepositoriesFilter]] = None,
                               is_public: Optional[bool] = None,
                               repository_id: Optional[str] = None,
                               state: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetContainerRepositoriesResult
def get_container_repositories_output(compartment_id: Optional[pulumi.Input[str]] = None,
                               compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                               display_name: Optional[pulumi.Input[str]] = None,
                               filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerRepositoriesFilterArgs]]]] = None,
                               is_public: Optional[pulumi.Input[bool]] = None,
                               repository_id: Optional[pulumi.Input[str]] = None,
                               state: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetContainerRepositoriesResult]func GetContainerRepositories(ctx *Context, args *GetContainerRepositoriesArgs, opts ...InvokeOption) (*GetContainerRepositoriesResult, error)
func GetContainerRepositoriesOutput(ctx *Context, args *GetContainerRepositoriesOutputArgs, opts ...InvokeOption) GetContainerRepositoriesResultOutput> Note: This function is named GetContainerRepositories in the Go SDK.
public static class GetContainerRepositories 
{
    public static Task<GetContainerRepositoriesResult> InvokeAsync(GetContainerRepositoriesArgs args, InvokeOptions? opts = null)
    public static Output<GetContainerRepositoriesResult> Invoke(GetContainerRepositoriesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetContainerRepositoriesResult> getContainerRepositories(GetContainerRepositoriesArgs args, InvokeOptions options)
public static Output<GetContainerRepositoriesResult> getContainerRepositories(GetContainerRepositoriesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Artifacts/getContainerRepositories:getContainerRepositories
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment.
- CompartmentId boolIn Subtree 
- When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are inspected depending on the the setting of accessLevel. Default is false. Can only be set to true when calling the API on the tenancy (root compartment).
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Filters
List<GetContainer Repositories Filter> 
- IsPublic bool
- A filter to return resources that match the isPublic value.
- RepositoryId string
- A filter to return container images only for the specified container repository OCID.
- State string
- A filter to return only resources that match the given lifecycle state name exactly.
- CompartmentId string
- The OCID of the compartment.
- CompartmentId boolIn Subtree 
- When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are inspected depending on the the setting of accessLevel. Default is false. Can only be set to true when calling the API on the tenancy (root compartment).
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Filters
[]GetContainer Repositories Filter 
- IsPublic bool
- A filter to return resources that match the isPublic value.
- RepositoryId string
- A filter to return container images only for the specified container repository OCID.
- State string
- A filter to return only resources that match the given lifecycle state name exactly.
- compartmentId String
- The OCID of the compartment.
- compartmentId BooleanIn Subtree 
- When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are inspected depending on the the setting of accessLevel. Default is false. Can only be set to true when calling the API on the tenancy (root compartment).
- displayName String
- A filter to return only resources that match the given display name exactly.
- filters
List<GetContainer Repositories Filter> 
- isPublic Boolean
- A filter to return resources that match the isPublic value.
- repositoryId String
- A filter to return container images only for the specified container repository OCID.
- state String
- A filter to return only resources that match the given lifecycle state name exactly.
- compartmentId string
- The OCID of the compartment.
- compartmentId booleanIn Subtree 
- When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are inspected depending on the the setting of accessLevel. Default is false. Can only be set to true when calling the API on the tenancy (root compartment).
- displayName string
- A filter to return only resources that match the given display name exactly.
- filters
GetContainer Repositories Filter[] 
- isPublic boolean
- A filter to return resources that match the isPublic value.
- repositoryId string
- A filter to return container images only for the specified container repository OCID.
- state string
- A filter to return only resources that match the given lifecycle state name exactly.
- compartment_id str
- The OCID of the compartment.
- compartment_id_ boolin_ subtree 
- When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are inspected depending on the the setting of accessLevel. Default is false. Can only be set to true when calling the API on the tenancy (root compartment).
- display_name str
- A filter to return only resources that match the given display name exactly.
- filters
Sequence[GetContainer Repositories Filter] 
- is_public bool
- A filter to return resources that match the isPublic value.
- repository_id str
- A filter to return container images only for the specified container repository OCID.
- state str
- A filter to return only resources that match the given lifecycle state name exactly.
- compartmentId String
- The OCID of the compartment.
- compartmentId BooleanIn Subtree 
- When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are inspected depending on the the setting of accessLevel. Default is false. Can only be set to true when calling the API on the tenancy (root compartment).
- displayName String
- A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
- isPublic Boolean
- A filter to return resources that match the isPublic value.
- repositoryId String
- A filter to return container images only for the specified container repository OCID.
- state String
- A filter to return only resources that match the given lifecycle state name exactly.
getContainerRepositories Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment in which the container repository exists.
- ContainerRepository List<GetCollections Container Repositories Container Repository Collection> 
- The list of container_repository_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- CompartmentId boolIn Subtree 
- DisplayName string
- The container repository name.
- Filters
List<GetContainer Repositories Filter> 
- IsPublic bool
- Whether the repository is public. A public repository allows unauthenticated access.
- RepositoryId string
- State string
- The current state of the container repository.
- CompartmentId string
- The OCID of the compartment in which the container repository exists.
- ContainerRepository []GetCollections Container Repositories Container Repository Collection 
- The list of container_repository_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- CompartmentId boolIn Subtree 
- DisplayName string
- The container repository name.
- Filters
[]GetContainer Repositories Filter 
- IsPublic bool
- Whether the repository is public. A public repository allows unauthenticated access.
- RepositoryId string
- State string
- The current state of the container repository.
- compartmentId String
- The OCID of the compartment in which the container repository exists.
- containerRepository List<GetCollections Container Repositories Container Repository Collection> 
- The list of container_repository_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- compartmentId BooleanIn Subtree 
- displayName String
- The container repository name.
- filters
List<GetContainer Repositories Filter> 
- isPublic Boolean
- Whether the repository is public. A public repository allows unauthenticated access.
- repositoryId String
- state String
- The current state of the container repository.
- compartmentId string
- The OCID of the compartment in which the container repository exists.
- containerRepository GetCollections Container Repositories Container Repository Collection[] 
- The list of container_repository_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- compartmentId booleanIn Subtree 
- displayName string
- The container repository name.
- filters
GetContainer Repositories Filter[] 
- isPublic boolean
- Whether the repository is public. A public repository allows unauthenticated access.
- repositoryId string
- state string
- The current state of the container repository.
- compartment_id str
- The OCID of the compartment in which the container repository exists.
- container_repository_ Sequence[Getcollections Container Repositories Container Repository Collection] 
- The list of container_repository_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- compartment_id_ boolin_ subtree 
- display_name str
- The container repository name.
- filters
Sequence[GetContainer Repositories Filter] 
- is_public bool
- Whether the repository is public. A public repository allows unauthenticated access.
- repository_id str
- state str
- The current state of the container repository.
- compartmentId String
- The OCID of the compartment in which the container repository exists.
- containerRepository List<Property Map>Collections 
- The list of container_repository_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- compartmentId BooleanIn Subtree 
- displayName String
- The container repository name.
- filters List<Property Map>
- isPublic Boolean
- Whether the repository is public. A public repository allows unauthenticated access.
- repositoryId String
- state String
- The current state of the container repository.
Supporting Types
GetContainerRepositoriesContainerRepositoryCollection     
- ImageCount int
- Total number of images.
- Items
List<GetContainer Repositories Container Repository Collection Item> 
- LayerCount int
- Total number of layers.
- LayersSize stringIn Bytes 
- Total storage in bytes consumed by layers.
- RemainingItems intCount 
- RepositoryCount int
- ImageCount int
- Total number of images.
- Items
[]GetContainer Repositories Container Repository Collection Item 
- LayerCount int
- Total number of layers.
- LayersSize stringIn Bytes 
- Total storage in bytes consumed by layers.
- RemainingItems intCount 
- RepositoryCount int
- imageCount Integer
- Total number of images.
- items
List<GetContainer Repositories Container Repository Collection Item> 
- layerCount Integer
- Total number of layers.
- layersSize StringIn Bytes 
- Total storage in bytes consumed by layers.
- remainingItems IntegerCount 
- repositoryCount Integer
- imageCount number
- Total number of images.
- items
GetContainer Repositories Container Repository Collection Item[] 
- layerCount number
- Total number of layers.
- layersSize stringIn Bytes 
- Total storage in bytes consumed by layers.
- remainingItems numberCount 
- repositoryCount number
- image_count int
- Total number of images.
- items
Sequence[GetContainer Repositories Container Repository Collection Item] 
- layer_count int
- Total number of layers.
- layers_size_ strin_ bytes 
- Total storage in bytes consumed by layers.
- remaining_items_ intcount 
- repository_count int
- imageCount Number
- Total number of images.
- items List<Property Map>
- layerCount Number
- Total number of layers.
- layersSize StringIn Bytes 
- Total storage in bytes consumed by layers.
- remainingItems NumberCount 
- repositoryCount Number
GetContainerRepositoriesContainerRepositoryCollectionItem      
- BillableSize stringIn Gbs 
- Total storage size in GBs that will be charged.
- CompartmentId string
- The OCID of the compartment.
- CreatedBy string
- The id of the user or principal that created the resource.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- The OCID of the container repository. Example: ocid1.containerrepo.oc1..exampleuniqueID
- ImageCount int
- Total number of images.
- IsImmutable bool
- Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
- IsPublic bool
- A filter to return resources that match the isPublic value.
- LayerCount int
- Total number of layers.
- LayersSize stringIn Bytes 
- Total storage in bytes consumed by layers.
- Namespace string
- The tenancy namespace used in the container repository path.
- Readmes
List<GetContainer Repositories Container Repository Collection Item Readme> 
- Container repository readme.
- State string
- A filter to return only resources that match the given lifecycle state name exactly.
- Dictionary<string, string>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- An RFC 3339 timestamp indicating when the repository was created.
- TimeLast stringPushed 
- An RFC 3339 timestamp indicating when an image was last pushed to the repository.
- BillableSize stringIn Gbs 
- Total storage size in GBs that will be charged.
- CompartmentId string
- The OCID of the compartment.
- CreatedBy string
- The id of the user or principal that created the resource.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- The OCID of the container repository. Example: ocid1.containerrepo.oc1..exampleuniqueID
- ImageCount int
- Total number of images.
- IsImmutable bool
- Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
- IsPublic bool
- A filter to return resources that match the isPublic value.
- LayerCount int
- Total number of layers.
- LayersSize stringIn Bytes 
- Total storage in bytes consumed by layers.
- Namespace string
- The tenancy namespace used in the container repository path.
- Readmes
[]GetContainer Repositories Container Repository Collection Item Readme 
- Container repository readme.
- State string
- A filter to return only resources that match the given lifecycle state name exactly.
- map[string]string
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- An RFC 3339 timestamp indicating when the repository was created.
- TimeLast stringPushed 
- An RFC 3339 timestamp indicating when an image was last pushed to the repository.
- billableSize StringIn Gbs 
- Total storage size in GBs that will be charged.
- compartmentId String
- The OCID of the compartment.
- createdBy String
- The id of the user or principal that created the resource.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return only resources that match the given display name exactly.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- The OCID of the container repository. Example: ocid1.containerrepo.oc1..exampleuniqueID
- imageCount Integer
- Total number of images.
- isImmutable Boolean
- Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
- isPublic Boolean
- A filter to return resources that match the isPublic value.
- layerCount Integer
- Total number of layers.
- layersSize StringIn Bytes 
- Total storage in bytes consumed by layers.
- namespace String
- The tenancy namespace used in the container repository path.
- readmes
List<GetContainer Repositories Container Repository Collection Item Readme> 
- Container repository readme.
- state String
- A filter to return only resources that match the given lifecycle state name exactly.
- Map<String,String>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- An RFC 3339 timestamp indicating when the repository was created.
- timeLast StringPushed 
- An RFC 3339 timestamp indicating when an image was last pushed to the repository.
- billableSize stringIn Gbs 
- Total storage size in GBs that will be charged.
- compartmentId string
- The OCID of the compartment.
- createdBy string
- The id of the user or principal that created the resource.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- A filter to return only resources that match the given display name exactly.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id string
- The OCID of the container repository. Example: ocid1.containerrepo.oc1..exampleuniqueID
- imageCount number
- Total number of images.
- isImmutable boolean
- Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
- isPublic boolean
- A filter to return resources that match the isPublic value.
- layerCount number
- Total number of layers.
- layersSize stringIn Bytes 
- Total storage in bytes consumed by layers.
- namespace string
- The tenancy namespace used in the container repository path.
- readmes
GetContainer Repositories Container Repository Collection Item Readme[] 
- Container repository readme.
- state string
- A filter to return only resources that match the given lifecycle state name exactly.
- {[key: string]: string}
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- An RFC 3339 timestamp indicating when the repository was created.
- timeLast stringPushed 
- An RFC 3339 timestamp indicating when an image was last pushed to the repository.
- billable_size_ strin_ gbs 
- Total storage size in GBs that will be charged.
- compartment_id str
- The OCID of the compartment.
- created_by str
- The id of the user or principal that created the resource.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- A filter to return only resources that match the given display name exactly.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id str
- The OCID of the container repository. Example: ocid1.containerrepo.oc1..exampleuniqueID
- image_count int
- Total number of images.
- is_immutable bool
- Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
- is_public bool
- A filter to return resources that match the isPublic value.
- layer_count int
- Total number of layers.
- layers_size_ strin_ bytes 
- Total storage in bytes consumed by layers.
- namespace str
- The tenancy namespace used in the container repository path.
- readmes
Sequence[GetContainer Repositories Container Repository Collection Item Readme] 
- Container repository readme.
- state str
- A filter to return only resources that match the given lifecycle state name exactly.
- Mapping[str, str]
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- An RFC 3339 timestamp indicating when the repository was created.
- time_last_ strpushed 
- An RFC 3339 timestamp indicating when an image was last pushed to the repository.
- billableSize StringIn Gbs 
- Total storage size in GBs that will be charged.
- compartmentId String
- The OCID of the compartment.
- createdBy String
- The id of the user or principal that created the resource.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return only resources that match the given display name exactly.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- The OCID of the container repository. Example: ocid1.containerrepo.oc1..exampleuniqueID
- imageCount Number
- Total number of images.
- isImmutable Boolean
- Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
- isPublic Boolean
- A filter to return resources that match the isPublic value.
- layerCount Number
- Total number of layers.
- layersSize StringIn Bytes 
- Total storage in bytes consumed by layers.
- namespace String
- The tenancy namespace used in the container repository path.
- readmes List<Property Map>
- Container repository readme.
- state String
- A filter to return only resources that match the given lifecycle state name exactly.
- Map<String>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- An RFC 3339 timestamp indicating when the repository was created.
- timeLast StringPushed 
- An RFC 3339 timestamp indicating when an image was last pushed to the repository.
GetContainerRepositoriesContainerRepositoryCollectionItemReadme       
GetContainerRepositoriesFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.