Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 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[_artifacts.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[_artifacts.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)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Artifacts/getContainerSignatures:getContainerSignatures
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - 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 string - A filter to return only resources that match the given display name exactly.
- Filters
List<Get
Container Signatures Filter> - Image
Digest string - The digest of the container image. Example:
sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- Image
Id string - A filter to return a container image summary only for the specified container image OCID.
- Kms
Key stringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Repository
Id string - A filter to return container images only for the specified container repository OCID.
- Repository
Name string - A filter to return container images or container image signatures that match the repository name. Example:
foo
orfoo*
- Signing
Algorithm string - The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- Compartment
Id string - 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 string - A filter to return only resources that match the given display name exactly.
- Filters
[]Get
Container Signatures Filter - Image
Digest string - The digest of the container image. Example:
sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- Image
Id string - A filter to return a container image summary only for the specified container image OCID.
- Kms
Key stringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Repository
Id string - A filter to return container images only for the specified container repository OCID.
- Repository
Name string - A filter to return container images or container image signatures that match the repository name. Example:
foo
orfoo*
- Signing
Algorithm string - The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartment
Id String - The OCID of the compartment.
- compartment
Id 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). - display
Name String - A filter to return only resources that match the given display name exactly.
- filters
List<Get
Container Signatures Filter> - image
Digest String - The digest of the container image. Example:
sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- image
Id String - A filter to return a container image summary only for the specified container image OCID.
- kms
Key StringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- kms
Key StringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- repository
Id String - A filter to return container images only for the specified container repository OCID.
- repository
Name String - A filter to return container images or container image signatures that match the repository name. Example:
foo
orfoo*
- signing
Algorithm String - The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartment
Id string - The OCID of the compartment.
- compartment
Id 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). - display
Name string - A filter to return only resources that match the given display name exactly.
- filters
Get
Container Signatures Filter[] - image
Digest string - The digest of the container image. Example:
sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- image
Id string - A filter to return a container image summary only for the specified container image OCID.
- kms
Key stringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- repository
Id string - A filter to return container images only for the specified container repository OCID.
- repository
Name string - A filter to return container images or container image signatures that match the repository name. Example:
foo
orfoo*
- signing
Algorithm 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[artifacts.
Get Container 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:
foo
orfoo*
- signing_
algorithm str - The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartment
Id String - The OCID of the compartment.
- compartment
Id 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). - display
Name String - A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
- image
Digest String - The digest of the container image. Example:
sha256:e7d38b3517548a1c71e41bffe9c8ae6d6d29546ce46bf62159837aad072c90aa
- image
Id String - A filter to return a container image summary only for the specified container image OCID.
- kms
Key StringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- kms
Key StringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- repository
Id String - A filter to return container images only for the specified container repository OCID.
- repository
Name String - A filter to return container images or container image signatures that match the repository name. Example:
foo
orfoo*
- signing
Algorithm 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:
- Compartment
Id string - The OCID of the compartment in which the container repository exists.
- Container
Image 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.
- Compartment
Id boolIn Subtree - Display
Name 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<Get
Container Signatures Filter> - Image
Digest string - Image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- Kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- Kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Repository
Id string - Repository
Name string - Signing
Algorithm string - The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- Compartment
Id string - The OCID of the compartment in which the container repository exists.
- Container
Image []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.
- Compartment
Id boolIn Subtree - Display
Name 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
[]Get
Container Signatures Filter - Image
Digest string - Image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- Kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- Kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Repository
Id string - Repository
Name string - Signing
Algorithm string - The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartment
Id String - The OCID of the compartment in which the container repository exists.
- container
Image 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.
- compartment
Id BooleanIn Subtree - display
Name 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<Get
Container Signatures Filter> - image
Digest String - image
Id String - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key StringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key StringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- repository
Id String - repository
Name String - signing
Algorithm String - The algorithm to be used for signing. These are the only supported signing algorithms for container images.
- compartment
Id string - The OCID of the compartment in which the container repository exists.
- container
Image 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.
- compartment
Id booleanIn Subtree - display
Name 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
Get
Container Signatures Filter[] - image
Digest string - image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- repository
Id string - repository
Name string - signing
Algorithm 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[artifacts.signature_ collections Get 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[artifacts.
Get Container 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.
- compartment
Id String - The OCID of the compartment in which the container repository exists.
- container
Image List<Property Map>Signature Collections - The list of container_image_signature_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- compartment
Id BooleanIn Subtree - display
Name 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>
- image
Digest String - image
Id String - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key StringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key StringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- repository
Id String - repository
Name String - signing
Algorithm String - The algorithm to be used for signing. These are the only supported signing algorithms for container images.
Supporting Types
GetContainerSignaturesContainerImageSignatureCollection
GetContainerSignaturesContainerImageSignatureCollectionItem
- Compartment
Id string - The OCID of the compartment.
- Created
By 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"}
- Display
Name 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
- Image
Id string - A filter to return a container image summary only for the specified container image OCID.
- Kms
Key stringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Kms
Key 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.
- Signing
Algorithm 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"}
- Time
Created string - An RFC 3339 timestamp indicating when the image was created.
- Compartment
Id string - The OCID of the compartment.
- Created
By 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"}
- Display
Name 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
- Image
Id string - A filter to return a container image summary only for the specified container image OCID.
- Kms
Key stringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Kms
Key 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.
- Signing
Algorithm 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"}
- Time
Created string - An RFC 3339 timestamp indicating when the image was created.
- compartment
Id String - The OCID of the compartment.
- created
By 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"}
- display
Name 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
- image
Id String - A filter to return a container image summary only for the specified container image OCID.
- kms
Key StringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- kms
Key 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.
- signing
Algorithm 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"}
- time
Created String - An RFC 3339 timestamp indicating when the image was created.
- compartment
Id string - The OCID of the compartment.
- created
By 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"}
- display
Name 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
- image
Id string - A filter to return a container image summary only for the specified container image OCID.
- kms
Key stringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- kms
Key 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.
- signing
Algorithm 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"}
- time
Created 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.
- compartment
Id String - The OCID of the compartment.
- created
By 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"}
- display
Name 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
- image
Id String - A filter to return a container image summary only for the specified container image OCID.
- kms
Key StringId - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- kms
Key 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.
- signing
Algorithm 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"}
- time
Created 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
oci
Terraform Provider.