Struct google_binaryauthorization1_beta1::AttestorPublicKey[][src]

pub struct AttestorPublicKey {
    pub comment: Option<String>,
    pub ascii_armored_pgp_public_key: Option<String>,
    pub id: Option<String>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

Optional. A descriptive comment. This field may be updated.

ASCII-armored representation of a PGP public key, as the entire output by the command gpg --export --armor foo@example.com (either LF or CRLF line endings).

Output only. This field will be overwritten with key ID information, for example, an identifier extracted from a PGP public key. This field may not be updated.

Trait Implementations

impl Default for AttestorPublicKey
[src]

Returns the "default value" for a type. Read more

impl Clone for AttestorPublicKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AttestorPublicKey
[src]

Formats the value using the given formatter. Read more

impl Part for AttestorPublicKey
[src]

Auto Trait Implementations