Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Artifacts.getContainerSignatures
Explore with Pulumi AI
This data source provides the list of Container Image Signatures in Oracle Cloud Infrastructure Artifacts service.
List container image signatures in an image.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testContainerImageSignatures = oci.Artifacts.getContainerSignatures({
    compartmentId: compartmentId,
    compartmentIdInSubtree: containerImageSignatureCompartmentIdInSubtree,
    displayName: containerImageSignatureDisplayName,
    imageDigest: containerImageSignatureImageDigest,
    imageId: testImage.id,
    kmsKeyId: testKey.id,
    kmsKeyVersionId: testKeyVersion.id,
    repositoryId: testRepository.id,
    repositoryName: testRepository.name,
    signingAlgorithm: containerImageSignatureSigningAlgorithm,
});
import pulumi
import pulumi_oci as oci
test_container_image_signatures = oci.Artifacts.get_container_signatures(compartment_id=compartment_id,
    compartment_id_in_subtree=container_image_signature_compartment_id_in_subtree,
    display_name=container_image_signature_display_name,
    image_digest=container_image_signature_image_digest,
    image_id=test_image["id"],
    kms_key_id=test_key["id"],
    kms_key_version_id=test_key_version["id"],
    repository_id=test_repository["id"],
    repository_name=test_repository["name"],
    signing_algorithm=container_image_signature_signing_algorithm)
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.GetContainerSignatures(ctx, &artifacts.GetContainerSignaturesArgs{
			CompartmentId:          compartmentId,
			CompartmentIdInSubtree: pulumi.BoolRef(containerImageSignatureCompartmentIdInSubtree),
			DisplayName:            pulumi.StringRef(containerImageSignatureDisplayName),
			ImageDigest:            pulumi.StringRef(containerImageSignatureImageDigest),
			ImageId:                pulumi.StringRef(testImage.Id),
			KmsKeyId:               pulumi.StringRef(testKey.Id),
			KmsKeyVersionId:        pulumi.StringRef(testKeyVersion.Id),
			RepositoryId:           pulumi.StringRef(testRepository.Id),
			RepositoryName:         pulumi.StringRef(testRepository.Name),
			SigningAlgorithm:       pulumi.StringRef(containerImageSignatureSigningAlgorithm),
		}, 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 testContainerImageSignatures = Oci.Artifacts.GetContainerSignatures.Invoke(new()
    {
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = containerImageSignatureCompartmentIdInSubtree,
        DisplayName = containerImageSignatureDisplayName,
        ImageDigest = containerImageSignatureImageDigest,
        ImageId = testImage.Id,
        KmsKeyId = testKey.Id,
        KmsKeyVersionId = testKeyVersion.Id,
        RepositoryId = testRepository.Id,
        RepositoryName = testRepository.Name,
        SigningAlgorithm = containerImageSignatureSigningAlgorithm,
    });
});
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.GetContainerSignaturesArgs;
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 testContainerImageSignatures = ArtifactsFunctions.getContainerSignatures(GetContainerSignaturesArgs.builder()
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(containerImageSignatureCompartmentIdInSubtree)
            .displayName(containerImageSignatureDisplayName)
            .imageDigest(containerImageSignatureImageDigest)
            .imageId(testImage.id())
            .kmsKeyId(testKey.id())
            .kmsKeyVersionId(testKeyVersion.id())
            .repositoryId(testRepository.id())
            .repositoryName(testRepository.name())
            .signingAlgorithm(containerImageSignatureSigningAlgorithm)
            .build());
    }
}
variables:
  testContainerImageSignatures:
    fn::invoke:
      function: oci:Artifacts:getContainerSignatures
      arguments:
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${containerImageSignatureCompartmentIdInSubtree}
        displayName: ${containerImageSignatureDisplayName}
        imageDigest: ${containerImageSignatureImageDigest}
        imageId: ${testImage.id}
        kmsKeyId: ${testKey.id}
        kmsKeyVersionId: ${testKeyVersion.id}
        repositoryId: ${testRepository.id}
        repositoryName: ${testRepository.name}
        signingAlgorithm: ${containerImageSignatureSigningAlgorithm}
Using getContainerSignatures
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 getContainerSignatures(args: GetContainerSignaturesArgs, opts?: InvokeOptions): Promise<GetContainerSignaturesResult>
function getContainerSignaturesOutput(args: GetContainerSignaturesOutputArgs, opts?: InvokeOptions): Output<GetContainerSignaturesResult>def get_container_signatures(compartment_id: Optional[str] = None,
                             compartment_id_in_subtree: Optional[bool] = None,
                             display_name: Optional[str] = None,
                             filters: Optional[Sequence[GetContainerSignaturesFilter]] = None,
                             image_digest: Optional[str] = None,
                             image_id: Optional[str] = None,
                             kms_key_id: Optional[str] = None,
                             kms_key_version_id: Optional[str] = None,
                             repository_id: Optional[str] = None,
                             repository_name: Optional[str] = None,
                             signing_algorithm: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetContainerSignaturesResult
def get_container_signatures_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[GetContainerSignaturesFilterArgs]]]] = None,
                             image_digest: Optional[pulumi.Input[str]] = None,
                             image_id: Optional[pulumi.Input[str]] = None,
                             kms_key_id: Optional[pulumi.Input[str]] = None,
                             kms_key_version_id: Optional[pulumi.Input[str]] = None,
                             repository_id: Optional[pulumi.Input[str]] = None,
                             repository_name: Optional[pulumi.Input[str]] = None,
                             signing_algorithm: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetContainerSignaturesResult]func GetContainerSignatures(ctx *Context, args *GetContainerSignaturesArgs, opts ...InvokeOption) (*GetContainerSignaturesResult, error)
func GetContainerSignaturesOutput(ctx *Context, args *GetContainerSignaturesOutputArgs, opts ...InvokeOption) GetContainerSignaturesResultOutput> Note: This function is named GetContainerSignatures in the Go SDK.
public static class GetContainerSignatures 
{
    public static Task<GetContainerSignaturesResult> InvokeAsync(GetContainerSignaturesArgs args, InvokeOptions? opts = null)
    public static Output<GetContainerSignaturesResult> Invoke(GetContainerSignaturesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetContainerSignaturesResult> getContainerSignatures(GetContainerSignaturesArgs args, InvokeOptions options)
public static Output<GetContainerSignaturesResult> getContainerSignatures(GetContainerSignaturesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Artifacts/getContainerSignatures:getContainerSignatures
  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 Signatures Filter> 
- ImageDigest string
- The digest of the container image. Example: sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- ImageId string
- A filter to return a container image summary only for the specified container image OCID.
- KmsKey stringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- KmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- 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*
- SigningAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- 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 Signatures Filter 
- ImageDigest string
- The digest of the container image. Example: sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- ImageId string
- A filter to return a container image summary only for the specified container image OCID.
- KmsKey stringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- KmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- 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*
- SigningAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- 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 Signatures Filter> 
- imageDigest String
- The digest of the container image. Example: sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- imageId String
- A filter to return a container image summary only for the specified container image OCID.
- kmsKey StringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- kmsKey StringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- 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*
- signingAlgorithm String
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- 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 Signatures Filter[] 
- imageDigest string
- The digest of the container image. Example: sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- imageId string
- A filter to return a container image summary only for the specified container image OCID.
- kmsKey stringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- kmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- 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*
- signingAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- 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 Signatures Filter] 
- image_digest str
- The digest of the container image. Example: sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- image_id str
- A filter to return a container image summary only for the specified container image OCID.
- kms_key_ strid 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- kms_key_ strversion_ id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- 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*
- signing_algorithm str
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- 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>
- imageDigest String
- The digest of the container image. Example: sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- imageId String
- A filter to return a container image summary only for the specified container image OCID.
- kmsKey StringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- kmsKey StringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- 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*
- signingAlgorithm String
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
getContainerSignatures Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment in which the container repository exists.
- ContainerImage List<GetSignature Collections Container Signatures Container Image Signature Collection> 
- The list of container_image_signature_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- CompartmentId boolIn Subtree 
- DisplayName string
- The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- Filters
List<GetContainer Signatures Filter> 
- ImageDigest string
- ImageId string
- The OCID of the container image. Example: ocid1.containerimage.oc1..exampleuniqueID
- KmsKey stringId 
- The OCID of the kmsKeyId used to sign the container image. Example: ocid1.key.oc1..exampleuniqueID
- KmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- RepositoryId string
- RepositoryName string
- SigningAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- CompartmentId string
- The OCID of the compartment in which the container repository exists.
- ContainerImage []GetSignature Collections Container Signatures Container Image Signature Collection 
- The list of container_image_signature_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- CompartmentId boolIn Subtree 
- DisplayName string
- The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- Filters
[]GetContainer Signatures Filter 
- ImageDigest string
- ImageId string
- The OCID of the container image. Example: ocid1.containerimage.oc1..exampleuniqueID
- KmsKey stringId 
- The OCID of the kmsKeyId used to sign the container image. Example: ocid1.key.oc1..exampleuniqueID
- KmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- RepositoryId string
- RepositoryName string
- SigningAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartmentId String
- The OCID of the compartment in which the container repository exists.
- containerImage List<GetSignature Collections Container Signatures Container Image Signature Collection> 
- The list of container_image_signature_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- compartmentId BooleanIn Subtree 
- displayName String
- The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- filters
List<GetContainer Signatures Filter> 
- imageDigest String
- imageId String
- The OCID of the container image. Example: ocid1.containerimage.oc1..exampleuniqueID
- kmsKey StringId 
- The OCID of the kmsKeyId used to sign the container image. Example: ocid1.key.oc1..exampleuniqueID
- kmsKey StringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- repositoryId String
- repositoryName String
- signingAlgorithm String
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartmentId string
- The OCID of the compartment in which the container repository exists.
- containerImage GetSignature Collections Container Signatures Container Image Signature Collection[] 
- The list of container_image_signature_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- compartmentId booleanIn Subtree 
- displayName string
- The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- filters
GetContainer Signatures Filter[] 
- imageDigest string
- imageId string
- The OCID of the container image. Example: ocid1.containerimage.oc1..exampleuniqueID
- kmsKey stringId 
- The OCID of the kmsKeyId used to sign the container image. Example: ocid1.key.oc1..exampleuniqueID
- kmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- repositoryId string
- repositoryName string
- signingAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartment_id str
- The OCID of the compartment in which the container repository exists.
- container_image_ Sequence[Getsignature_ collections Container Signatures Container Image Signature Collection] 
- The list of container_image_signature_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- compartment_id_ boolin_ subtree 
- display_name str
- The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- filters
Sequence[GetContainer Signatures Filter] 
- image_digest str
- image_id str
- The OCID of the container image. Example: ocid1.containerimage.oc1..exampleuniqueID
- kms_key_ strid 
- The OCID of the kmsKeyId used to sign the container image. Example: ocid1.key.oc1..exampleuniqueID
- kms_key_ strversion_ id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- repository_id str
- repository_name str
- signing_algorithm str
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartmentId String
- The OCID of the compartment in which the container repository exists.
- containerImage List<Property Map>Signature Collections 
- The list of container_image_signature_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- compartmentId BooleanIn Subtree 
- displayName String
- The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- filters List<Property Map>
- imageDigest String
- imageId String
- The OCID of the container image. Example: ocid1.containerimage.oc1..exampleuniqueID
- kmsKey StringId 
- The OCID of the kmsKeyId used to sign the container image. Example: ocid1.key.oc1..exampleuniqueID
- kmsKey StringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- repositoryId String
- repositoryName String
- signingAlgorithm String
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
Supporting Types
GetContainerSignaturesContainerImageSignatureCollection      
GetContainerSignaturesContainerImageSignatureCollectionItem       
- 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 image signature. Example: ocid1.containerimagesignature.oc1..exampleuniqueID
- ImageId string
- A filter to return a container image summary only for the specified container image OCID.
- KmsKey stringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- KmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- Message string
- The base64 encoded signature payload that was signed.
- Signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- SigningAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- State string
- The current state of the container image signature.
- 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 image was created.
- 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 image signature. Example: ocid1.containerimagesignature.oc1..exampleuniqueID
- ImageId string
- A filter to return a container image summary only for the specified container image OCID.
- KmsKey stringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- KmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- Message string
- The base64 encoded signature payload that was signed.
- Signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- SigningAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- State string
- The current state of the container image signature.
- 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 image was created.
- 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 image signature. Example: ocid1.containerimagesignature.oc1..exampleuniqueID
- imageId String
- A filter to return a container image summary only for the specified container image OCID.
- kmsKey StringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- kmsKey StringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- message String
- The base64 encoded signature payload that was signed.
- signature String
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signingAlgorithm String
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- state String
- The current state of the container image signature.
- 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 image was created.
- 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 image signature. Example: ocid1.containerimagesignature.oc1..exampleuniqueID
- imageId string
- A filter to return a container image summary only for the specified container image OCID.
- kmsKey stringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- kmsKey stringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- message string
- The base64 encoded signature payload that was signed.
- signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signingAlgorithm string
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- state string
- The current state of the container image signature.
- {[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 image was created.
- 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 image signature. Example: ocid1.containerimagesignature.oc1..exampleuniqueID
- image_id str
- A filter to return a container image summary only for the specified container image OCID.
- kms_key_ strid 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- kms_key_ strversion_ id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- message str
- The base64 encoded signature payload that was signed.
- signature str
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing_algorithm str
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- state str
- The current state of the container image signature.
- 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 image was created.
- 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 image signature. Example: ocid1.containerimagesignature.oc1..exampleuniqueID
- imageId String
- A filter to return a container image summary only for the specified container image OCID.
- kmsKey StringId 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- kmsKey StringVersion Id 
- The OCID of the kmsKeyVersionId used to sign the container image. Example: ocid1.keyversion.oc1..exampleuniqueID
- message String
- The base64 encoded signature payload that was signed.
- signature String
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signingAlgorithm String
- The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- state String
- The current state of the container image signature.
- 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 image was created.
GetContainerSignaturesFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.