Googly.CloudStorage.Model.HmacKey (googly_cloud_storage v0.1.0)

Copy Markdown View Source

JSON template to produce a JSON-style HMAC Key resource for Create responses.

Attributes

  • kind (type: String.t()) - The kind of item this is. For HMAC keys, this is always storage#hmacKey.
  • metadata (type: Googly.CloudStorage.Model.HmacKeyMetadata.t()) - Key metadata.
  • secret (type: String.t()) - HMAC secret key material.

Summary

Types

t()

@type t() :: %Googly.CloudStorage.Model.HmacKey{
  kind: String.t() | nil,
  metadata: Googly.CloudStorage.Model.HmacKeyMetadata.t() | nil,
  secret: String.t() | nil
}