Package-level declarations

Types

Link copied to clipboard
data class CertificateSigningRequestArgs(val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val spec: Output<CertificateSigningRequestSpecArgs>? = null, val status: Output<CertificateSigningRequestStatusArgs>? = null) : ConvertibleToJava<CertificateSigningRequestArgs>

Describes a certificate signing request

Link copied to clipboard
data class CertificateSigningRequestConditionArgs(val lastTransitionTime: Output<String>? = null, val lastUpdateTime: Output<String>? = null, val message: Output<String>? = null, val reason: Output<String>? = null, val status: Output<String>? = null, val type: Output<String>) : ConvertibleToJava<CertificateSigningRequestConditionArgs>
Link copied to clipboard
data class CertificateSigningRequestSpecArgs(val extra: Output<Map<String, List<String>>>? = null, val groups: Output<List<String>>? = null, val request: Output<String>, val signerName: Output<String>? = null, val uid: Output<String>? = null, val usages: Output<List<String>>? = null, val username: Output<String>? = null) : ConvertibleToJava<CertificateSigningRequestSpecArgs>

This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.

Link copied to clipboard
data class CertificateSigningRequestSpecPatchArgs(val extra: Output<Map<String, List<String>>>? = null, val groups: Output<List<String>>? = null, val request: Output<String>? = null, val signerName: Output<String>? = null, val uid: Output<String>? = null, val usages: Output<List<String>>? = null, val username: Output<String>? = null) : ConvertibleToJava<CertificateSigningRequestSpecPatchArgs>

This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.

Link copied to clipboard
data class CertificateSigningRequestStatusArgs(val certificate: Output<String>? = null, val conditions: Output<List<CertificateSigningRequestConditionArgs>>? = null) : ConvertibleToJava<CertificateSigningRequestStatusArgs>
Link copied to clipboard
data class ClusterTrustBundleArgs(val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val spec: Output<ClusterTrustBundleSpecArgs>) : ConvertibleToJava<ClusterTrustBundleArgs>

ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors (root certificates). ClusterTrustBundle objects are considered to be readable by any authenticated user in the cluster, because they can be mounted by pods using the clusterTrustBundle projection. All service accounts have read access to ClusterTrustBundles by default. Users who only have namespace-level access to a cluster can read ClusterTrustBundles by impersonating a serviceaccount that they have access to. It can be optionally associated with a particular assigner, in which case it contains one valid set of trust anchors for that signer. Signers may have multiple associated ClusterTrustBundles; each is an independent set of trust anchors for that signer. Admission control is used to enforce that only users with permissions on the signer can create or modify the corresponding bundle.

Link copied to clipboard
data class ClusterTrustBundleSpecArgs(val signerName: Output<String>? = null, val trustBundle: Output<String>) : ConvertibleToJava<ClusterTrustBundleSpecArgs>

ClusterTrustBundleSpec contains the signer and trust anchors.

Link copied to clipboard
data class ClusterTrustBundleSpecPatchArgs(val signerName: Output<String>? = null, val trustBundle: Output<String>? = null) : ConvertibleToJava<ClusterTrustBundleSpecPatchArgs>

ClusterTrustBundleSpec contains the signer and trust anchors.