Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Artifacts.getContainerImages
Explore with Pulumi AI
This data source provides the list of Container Images in Oracle Cloud Infrastructure Artifacts service.
List container images in a compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testContainerImages = oci.Artifacts.getContainerImages({
    compartmentId: compartmentId,
    compartmentIdInSubtree: containerImageCompartmentIdInSubtree,
    displayName: containerImageDisplayName,
    imageId: testImage.id,
    isVersioned: containerImageIsVersioned,
    repositoryId: testRepository.id,
    repositoryName: testRepository.name,
    state: containerImageState,
    version: containerImageVersion,
});
import pulumi
import pulumi_oci as oci
test_container_images = oci.Artifacts.get_container_images(compartment_id=compartment_id,
    compartment_id_in_subtree=container_image_compartment_id_in_subtree,
    display_name=container_image_display_name,
    image_id=test_image["id"],
    is_versioned=container_image_is_versioned,
    repository_id=test_repository["id"],
    repository_name=test_repository["name"],
    state=container_image_state,
    version=container_image_version)
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.GetContainerImages(ctx, &artifacts.GetContainerImagesArgs{
			CompartmentId:          compartmentId,
			CompartmentIdInSubtree: pulumi.BoolRef(containerImageCompartmentIdInSubtree),
			DisplayName:            pulumi.StringRef(containerImageDisplayName),
			ImageId:                pulumi.StringRef(testImage.Id),
			IsVersioned:            pulumi.BoolRef(containerImageIsVersioned),
			RepositoryId:           pulumi.StringRef(testRepository.Id),
			RepositoryName:         pulumi.StringRef(testRepository.Name),
			State:                  pulumi.StringRef(containerImageState),
			Version:                pulumi.StringRef(containerImageVersion),
		}, 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 testContainerImages = Oci.Artifacts.GetContainerImages.Invoke(new()
    {
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = containerImageCompartmentIdInSubtree,
        DisplayName = containerImageDisplayName,
        ImageId = testImage.Id,
        IsVersioned = containerImageIsVersioned,
        RepositoryId = testRepository.Id,
        RepositoryName = testRepository.Name,
        State = containerImageState,
        Version = containerImageVersion,
    });
});
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.GetContainerImagesArgs;
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 testContainerImages = ArtifactsFunctions.getContainerImages(GetContainerImagesArgs.builder()
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(containerImageCompartmentIdInSubtree)
            .displayName(containerImageDisplayName)
            .imageId(testImage.id())
            .isVersioned(containerImageIsVersioned)
            .repositoryId(testRepository.id())
            .repositoryName(testRepository.name())
            .state(containerImageState)
            .version(containerImageVersion)
            .build());
    }
}
variables:
  testContainerImages:
    fn::invoke:
      function: oci:Artifacts:getContainerImages
      arguments:
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${containerImageCompartmentIdInSubtree}
        displayName: ${containerImageDisplayName}
        imageId: ${testImage.id}
        isVersioned: ${containerImageIsVersioned}
        repositoryId: ${testRepository.id}
        repositoryName: ${testRepository.name}
        state: ${containerImageState}
        version: ${containerImageVersion}
Using getContainerImages
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 getContainerImages(args: GetContainerImagesArgs, opts?: InvokeOptions): Promise<GetContainerImagesResult>
function getContainerImagesOutput(args: GetContainerImagesOutputArgs, opts?: InvokeOptions): Output<GetContainerImagesResult>def get_container_images(compartment_id: Optional[str] = None,
                         compartment_id_in_subtree: Optional[bool] = None,
                         display_name: Optional[str] = None,
                         filters: Optional[Sequence[GetContainerImagesFilter]] = None,
                         image_id: Optional[str] = None,
                         is_versioned: Optional[bool] = None,
                         repository_id: Optional[str] = None,
                         repository_name: Optional[str] = None,
                         state: Optional[str] = None,
                         version: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetContainerImagesResult
def get_container_images_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[GetContainerImagesFilterArgs]]]] = None,
                         image_id: Optional[pulumi.Input[str]] = None,
                         is_versioned: Optional[pulumi.Input[bool]] = None,
                         repository_id: Optional[pulumi.Input[str]] = None,
                         repository_name: Optional[pulumi.Input[str]] = None,
                         state: Optional[pulumi.Input[str]] = None,
                         version: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetContainerImagesResult]func GetContainerImages(ctx *Context, args *GetContainerImagesArgs, opts ...InvokeOption) (*GetContainerImagesResult, error)
func GetContainerImagesOutput(ctx *Context, args *GetContainerImagesOutputArgs, opts ...InvokeOption) GetContainerImagesResultOutput> Note: This function is named GetContainerImages in the Go SDK.
public static class GetContainerImages 
{
    public static Task<GetContainerImagesResult> InvokeAsync(GetContainerImagesArgs args, InvokeOptions? opts = null)
    public static Output<GetContainerImagesResult> Invoke(GetContainerImagesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetContainerImagesResult> getContainerImages(GetContainerImagesArgs args, InvokeOptions options)
public static Output<GetContainerImagesResult> getContainerImages(GetContainerImagesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Artifacts/getContainerImages:getContainerImages
  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 Images Filter> 
- ImageId string
- A filter to return a container image summary only for the specified container image OCID.
- IsVersioned bool
- A filter to return container images based on whether there are any associated versions.
- RepositoryId string
- A filter to return container images only for the specified container repository OCID.
- RepositoryName string
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- State string
- A filter to return only resources that match the given lifecycle state name exactly.
- Version string
- A filter to return container images that match the version. Example: fooorfoo*
- 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 Images Filter 
- ImageId string
- A filter to return a container image summary only for the specified container image OCID.
- IsVersioned bool
- A filter to return container images based on whether there are any associated versions.
- RepositoryId string
- A filter to return container images only for the specified container repository OCID.
- RepositoryName string
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- State string
- A filter to return only resources that match the given lifecycle state name exactly.
- Version string
- A filter to return container images that match the version. Example: fooorfoo*
- 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 Images Filter> 
- imageId String
- A filter to return a container image summary only for the specified container image OCID.
- isVersioned Boolean
- A filter to return container images based on whether there are any associated versions.
- repositoryId String
- A filter to return container images only for the specified container repository OCID.
- repositoryName String
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- state String
- A filter to return only resources that match the given lifecycle state name exactly.
- version String
- A filter to return container images that match the version. Example: fooorfoo*
- 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 Images Filter[] 
- imageId string
- A filter to return a container image summary only for the specified container image OCID.
- isVersioned boolean
- A filter to return container images based on whether there are any associated versions.
- repositoryId string
- A filter to return container images only for the specified container repository OCID.
- repositoryName string
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- state string
- A filter to return only resources that match the given lifecycle state name exactly.
- version string
- A filter to return container images that match the version. Example: fooorfoo*
- 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 Images Filter] 
- image_id str
- A filter to return a container image summary only for the specified container image OCID.
- is_versioned bool
- A filter to return container images based on whether there are any associated versions.
- repository_id str
- A filter to return container images only for the specified container repository OCID.
- repository_name str
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- state str
- A filter to return only resources that match the given lifecycle state name exactly.
- version str
- A filter to return container images that match the version. Example: fooorfoo*
- 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>
- imageId String
- A filter to return a container image summary only for the specified container image OCID.
- isVersioned Boolean
- A filter to return container images based on whether there are any associated versions.
- repositoryId String
- A filter to return container images only for the specified container repository OCID.
- repositoryName String
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- state String
- A filter to return only resources that match the given lifecycle state name exactly.
- version String
- A filter to return container images that match the version. Example: fooorfoo*
getContainerImages Result
The following output properties are available:
- CompartmentId string
- The compartment OCID to which the container image belongs. Inferred from the container repository.
- ContainerImage List<GetCollections Container Images Container Image Collection> 
- The list of container_image_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- CompartmentId boolIn Subtree 
- DisplayName string
- The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: ubuntu:latestorubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2
- Filters
List<GetContainer Images Filter> 
- ImageId string
- IsVersioned bool
- RepositoryId string
- The OCID of the container repository.
- RepositoryName string
- The container repository name.
- State string
- The current state of the container image.
- Version string
- The version name.
- CompartmentId string
- The compartment OCID to which the container image belongs. Inferred from the container repository.
- ContainerImage []GetCollections Container Images Container Image Collection 
- The list of container_image_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- CompartmentId boolIn Subtree 
- DisplayName string
- The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: ubuntu:latestorubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2
- Filters
[]GetContainer Images Filter 
- ImageId string
- IsVersioned bool
- RepositoryId string
- The OCID of the container repository.
- RepositoryName string
- The container repository name.
- State string
- The current state of the container image.
- Version string
- The version name.
- compartmentId String
- The compartment OCID to which the container image belongs. Inferred from the container repository.
- containerImage List<GetCollections Container Images Container Image Collection> 
- The list of container_image_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- compartmentId BooleanIn Subtree 
- displayName String
- The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: ubuntu:latestorubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2
- filters
List<GetContainer Images Filter> 
- imageId String
- isVersioned Boolean
- repositoryId String
- The OCID of the container repository.
- repositoryName String
- The container repository name.
- state String
- The current state of the container image.
- version String
- The version name.
- compartmentId string
- The compartment OCID to which the container image belongs. Inferred from the container repository.
- containerImage GetCollections Container Images Container Image Collection[] 
- The list of container_image_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- compartmentId booleanIn Subtree 
- displayName string
- The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: ubuntu:latestorubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2
- filters
GetContainer Images Filter[] 
- imageId string
- isVersioned boolean
- repositoryId string
- The OCID of the container repository.
- repositoryName string
- The container repository name.
- state string
- The current state of the container image.
- version string
- The version name.
- compartment_id str
- The compartment OCID to which the container image belongs. Inferred from the container repository.
- container_image_ Sequence[Getcollections Container Images Container Image Collection] 
- The list of container_image_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- compartment_id_ boolin_ subtree 
- display_name str
- The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: ubuntu:latestorubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2
- filters
Sequence[GetContainer Images Filter] 
- image_id str
- is_versioned bool
- repository_id str
- The OCID of the container repository.
- repository_name str
- The container repository name.
- state str
- The current state of the container image.
- version str
- The version name.
- compartmentId String
- The compartment OCID to which the container image belongs. Inferred from the container repository.
- containerImage List<Property Map>Collections 
- The list of container_image_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- compartmentId BooleanIn Subtree 
- displayName String
- The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: ubuntu:latestorubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2
- filters List<Property Map>
- imageId String
- isVersioned Boolean
- repositoryId String
- The OCID of the container repository.
- repositoryName String
- The container repository name.
- state String
- The current state of the container image.
- version String
- The version name.
Supporting Types
GetContainerImagesContainerImageCollection     
GetContainerImagesContainerImageCollectionItem      
- CompartmentId string
- The OCID of the compartment.
- CreatedBy string
- The OCID of the user or principal that pushed the version.
- 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"}
- Digest string
- The sha256 digest of the image layer.
- 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 image. Example: ocid1.containerimage.oc1..exampleuniqueID
- Layers
List<GetContainer Images Container Image Collection Item Layer> 
- Layers of which the image is composed, ordered by the layer digest.
- LayersSize stringIn Bytes 
- The total size of the container image layers in bytes.
- ManifestSize intIn Bytes 
- The size of the container image manifest in bytes.
- PullCount string
- Total number of pulls.
- RepositoryId string
- A filter to return container images only for the specified container repository OCID.
- RepositoryName string
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- 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
- The creation time of the version.
- TimeLast stringPulled 
- An RFC 3339 timestamp indicating when the image was last pulled.
- Version string
- A filter to return container images that match the version. Example: fooorfoo*
- Versions
List<GetContainer Images Container Image Collection Item Version> 
- The versions associated with this image.
- CompartmentId string
- The OCID of the compartment.
- CreatedBy string
- The OCID of the user or principal that pushed the version.
- 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"}
- Digest string
- The sha256 digest of the image layer.
- 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 image. Example: ocid1.containerimage.oc1..exampleuniqueID
- Layers
[]GetContainer Images Container Image Collection Item Layer 
- Layers of which the image is composed, ordered by the layer digest.
- LayersSize stringIn Bytes 
- The total size of the container image layers in bytes.
- ManifestSize intIn Bytes 
- The size of the container image manifest in bytes.
- PullCount string
- Total number of pulls.
- RepositoryId string
- A filter to return container images only for the specified container repository OCID.
- RepositoryName string
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- 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
- The creation time of the version.
- TimeLast stringPulled 
- An RFC 3339 timestamp indicating when the image was last pulled.
- Version string
- A filter to return container images that match the version. Example: fooorfoo*
- Versions
[]GetContainer Images Container Image Collection Item Version 
- The versions associated with this image.
- compartmentId String
- The OCID of the compartment.
- createdBy String
- The OCID of the user or principal that pushed the version.
- 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"}
- digest String
- The sha256 digest of the image layer.
- 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 image. Example: ocid1.containerimage.oc1..exampleuniqueID
- layers
List<GetContainer Images Container Image Collection Item Layer> 
- Layers of which the image is composed, ordered by the layer digest.
- layersSize StringIn Bytes 
- The total size of the container image layers in bytes.
- manifestSize IntegerIn Bytes 
- The size of the container image manifest in bytes.
- pullCount String
- Total number of pulls.
- repositoryId String
- A filter to return container images only for the specified container repository OCID.
- repositoryName String
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- 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
- The creation time of the version.
- timeLast StringPulled 
- An RFC 3339 timestamp indicating when the image was last pulled.
- version String
- A filter to return container images that match the version. Example: fooorfoo*
- versions
List<GetContainer Images Container Image Collection Item Version> 
- The versions associated with this image.
- compartmentId string
- The OCID of the compartment.
- createdBy string
- The OCID of the user or principal that pushed the version.
- {[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"}
- digest string
- The sha256 digest of the image layer.
- 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 image. Example: ocid1.containerimage.oc1..exampleuniqueID
- layers
GetContainer Images Container Image Collection Item Layer[] 
- Layers of which the image is composed, ordered by the layer digest.
- layersSize stringIn Bytes 
- The total size of the container image layers in bytes.
- manifestSize numberIn Bytes 
- The size of the container image manifest in bytes.
- pullCount string
- Total number of pulls.
- repositoryId string
- A filter to return container images only for the specified container repository OCID.
- repositoryName string
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- 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
- The creation time of the version.
- timeLast stringPulled 
- An RFC 3339 timestamp indicating when the image was last pulled.
- version string
- A filter to return container images that match the version. Example: fooorfoo*
- versions
GetContainer Images Container Image Collection Item Version[] 
- The versions associated with this image.
- compartment_id str
- The OCID of the compartment.
- created_by str
- The OCID of the user or principal that pushed the version.
- 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"}
- digest str
- The sha256 digest of the image layer.
- 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 image. Example: ocid1.containerimage.oc1..exampleuniqueID
- layers
Sequence[GetContainer Images Container Image Collection Item Layer] 
- Layers of which the image is composed, ordered by the layer digest.
- layers_size_ strin_ bytes 
- The total size of the container image layers in bytes.
- manifest_size_ intin_ bytes 
- The size of the container image manifest in bytes.
- pull_count str
- Total number of pulls.
- repository_id str
- A filter to return container images only for the specified container repository OCID.
- repository_name str
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- 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
- The creation time of the version.
- time_last_ strpulled 
- An RFC 3339 timestamp indicating when the image was last pulled.
- version str
- A filter to return container images that match the version. Example: fooorfoo*
- versions
Sequence[GetContainer Images Container Image Collection Item Version] 
- The versions associated with this image.
- compartmentId String
- The OCID of the compartment.
- createdBy String
- The OCID of the user or principal that pushed the version.
- 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"}
- digest String
- The sha256 digest of the image layer.
- 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 image. Example: ocid1.containerimage.oc1..exampleuniqueID
- layers List<Property Map>
- Layers of which the image is composed, ordered by the layer digest.
- layersSize StringIn Bytes 
- The total size of the container image layers in bytes.
- manifestSize NumberIn Bytes 
- The size of the container image manifest in bytes.
- pullCount String
- Total number of pulls.
- repositoryId String
- A filter to return container images only for the specified container repository OCID.
- repositoryName String
- A filter to return container images or container image signatures that match the repository name. Example: fooorfoo*
- 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
- The creation time of the version.
- timeLast StringPulled 
- An RFC 3339 timestamp indicating when the image was last pulled.
- version String
- A filter to return container images that match the version. Example: fooorfoo*
- versions List<Property Map>
- The versions associated with this image.
GetContainerImagesContainerImageCollectionItemLayer       
- Digest string
- The sha256 digest of the image layer.
- SizeIn stringBytes 
- The size of the layer in bytes.
- TimeCreated string
- The creation time of the version.
- Digest string
- The sha256 digest of the image layer.
- SizeIn stringBytes 
- The size of the layer in bytes.
- TimeCreated string
- The creation time of the version.
- digest String
- The sha256 digest of the image layer.
- sizeIn StringBytes 
- The size of the layer in bytes.
- timeCreated String
- The creation time of the version.
- digest string
- The sha256 digest of the image layer.
- sizeIn stringBytes 
- The size of the layer in bytes.
- timeCreated string
- The creation time of the version.
- digest str
- The sha256 digest of the image layer.
- size_in_ strbytes 
- The size of the layer in bytes.
- time_created str
- The creation time of the version.
- digest String
- The sha256 digest of the image layer.
- sizeIn StringBytes 
- The size of the layer in bytes.
- timeCreated String
- The creation time of the version.
GetContainerImagesContainerImageCollectionItemVersion       
- CreatedBy string
- The OCID of the user or principal that pushed the version.
- TimeCreated string
- The creation time of the version.
- Version string
- A filter to return container images that match the version. Example: fooorfoo*
- CreatedBy string
- The OCID of the user or principal that pushed the version.
- TimeCreated string
- The creation time of the version.
- Version string
- A filter to return container images that match the version. Example: fooorfoo*
- createdBy String
- The OCID of the user or principal that pushed the version.
- timeCreated String
- The creation time of the version.
- version String
- A filter to return container images that match the version. Example: fooorfoo*
- createdBy string
- The OCID of the user or principal that pushed the version.
- timeCreated string
- The creation time of the version.
- version string
- A filter to return container images that match the version. Example: fooorfoo*
- created_by str
- The OCID of the user or principal that pushed the version.
- time_created str
- The creation time of the version.
- version str
- A filter to return container images that match the version. Example: fooorfoo*
- createdBy String
- The OCID of the user or principal that pushed the version.
- timeCreated String
- The creation time of the version.
- version String
- A filter to return container images that match the version. Example: fooorfoo*
GetContainerImagesFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.