Package-level declarations

Types

Link copied to clipboard
data class GetAuthorizationTokenResult(val authorizationToken: String, val expiresAt: String, val id: String, val password: String, val proxyEndpoint: String, val registryId: String? = null, val userName: String)

A collection of values returned by getAuthorizationToken.

Link copied to clipboard
data class GetCredentialsResult(val authorizationToken: String, val expiresAt: String, val id: String, val proxyEndpoint: String, val registryId: String)

A collection of values returned by getCredentials.

Link copied to clipboard
data class GetImageResult(val id: String, val imageDigest: String, val imagePushedAt: Int, val imageSizeInBytes: Int, val imageTag: String? = null, val imageTags: List<String>, val mostRecent: Boolean? = null, val registryId: String, val repositoryName: String)

A collection of values returned by getImage.

Link copied to clipboard
data class GetRepositoryEncryptionConfiguration(val encryptionType: String, val kmsKey: String)
Link copied to clipboard
Link copied to clipboard
data class GetRepositoryResult(val arn: String, val encryptionConfigurations: List<GetRepositoryEncryptionConfiguration>, val id: String, val imageScanningConfigurations: List<GetRepositoryImageScanningConfiguration>, val imageTagMutability: String, val mostRecentImageTags: List<String>, val name: String, val registryId: String, val repositoryUrl: String, val tags: Map<String, String>)

A collection of values returned by getRepository.

Link copied to clipboard
Link copied to clipboard
data class RepositoryEncryptionConfiguration(val encryptionType: String? = null, val kmsKey: String? = null)
Link copied to clipboard
data class RepositoryImageScanningConfiguration(val scanOnPush: Boolean)