Package-level declarations

Types

Link copied to clipboard
data class AttestorPublicKeyArgs(val asciiArmoredPgpPublicKey: Output<String>? = null, val comment: Output<String>? = null, val id: Output<String>? = null, val pkixPublicKey: Output<PkixPublicKeyArgs>? = null) : ConvertibleToJava<AttestorPublicKeyArgs>

An attestor public key that will be used to verify attestations signed by this attestor.

Link copied to clipboard
data class BindingArgs(val condition: Output<ExprArgs>? = null, val members: Output<List<String>>? = null, val role: Output<String>? = null) : ConvertibleToJava<BindingArgs>

Associates members, or principals, with a role.

Link copied to clipboard
Link copied to clipboard
data class ExprArgs(val description: Output<String>? = null, val expression: Output<String>? = null, val location: Output<String>? = null, val title: Output<String>? = null) : ConvertibleToJava<ExprArgs>

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

Link copied to clipboard

Builder for ExprArgs.

Link copied to clipboard
data class GetAttestorIamPolicyPlainArgs(val attestorId: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetAttestorIamPolicyPlainArgs>
Link copied to clipboard
data class GetAttestorPlainArgs(val attestorId: String, val project: String? = null) : ConvertibleToJava<GetAttestorPlainArgs>
Link copied to clipboard
data class GetPolicyIamPolicyPlainArgs(val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetPolicyIamPolicyPlainArgs>
Link copied to clipboard
data class PkixPublicKeyArgs(val publicKeyPem: Output<String>? = null, val signatureAlgorithm: Output<PkixPublicKeySignatureAlgorithm>? = null) : ConvertibleToJava<PkixPublicKeyArgs>

A public key in the PkixPublicKey format (see https://tools.ietf.org/html/rfc5280#section-4.1.2.7 for details). Public keys of this type are typically textually encoded using the PEM format.

Link copied to clipboard
Link copied to clipboard
data class UserOwnedDrydockNoteArgs(val noteReference: Output<String>, val publicKeys: Output<List<AttestorPublicKeyArgs>>? = null) : ConvertibleToJava<UserOwnedDrydockNoteArgs>

An user owned drydock note references a Drydock ATTESTATION_AUTHORITY Note created by the user.