Struct google_cloudkms1::CryptoKeyVersion[][src]

pub struct CryptoKeyVersion {
    pub state: Option<String>,
    pub create_time: Option<String>,
    pub name: Option<String>,
    pub destroy_time: Option<String>,
    pub destroy_event_time: Option<String>,
}

A CryptoKeyVersion represents an individual cryptographic key, and the associated key material.

It can be used for cryptographic operations either directly, or via its parent CryptoKey, in which case the server will choose the appropriate version for the operation.

For security reasons, the raw cryptographic key material represented by a CryptoKeyVersion can never be viewed or exported. It can only be used to encrypt or decrypt data when an authorized user or application invokes Cloud KMS.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The current state of the CryptoKeyVersion.

Output only. The time at which this CryptoKeyVersion was created.

Output only. The resource name for this CryptoKeyVersion in the format projects/*/locations/*/keyRings/*/cryptoKeys/*/cryptoKeyVersions/*.

Output only. The time this CryptoKeyVersion's key material is scheduled for destruction. Only present if state is DESTROY_SCHEDULED.

Output only. The time this CryptoKeyVersion's key material was destroyed. Only present if state is DESTROYED.

Trait Implementations

impl Default for CryptoKeyVersion
[src]

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

impl Clone for CryptoKeyVersion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CryptoKeyVersion
[src]

Formats the value using the given formatter. Read more

impl RequestValue for CryptoKeyVersion
[src]

impl ResponseResult for CryptoKeyVersion
[src]

Auto Trait Implementations