Show / Hide Table of Contents

Class HmacKey

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

Inheritance
System.Object
HmacKey
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Storage.v1.Data
Assembly: Google.Apis.Storage.v1.dll
Syntax
public class HmacKey : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Kind

The kind of item this is. For HMAC keys, this is always storage#hmacKey.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Metadata

Key metadata.

Declaration
[JsonProperty("metadata")]
public virtual HmacKeyMetadata Metadata { get; set; }
Property Value
Type Description
HmacKeyMetadata

Secret

HMAC secret key material.

Declaration
[JsonProperty("secret")]
public virtual string Secret { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top