Show / Hide Table of Contents

Class SigningKeyPossessorProto

Represents a principal who possesses a signing key corresponding to the verification key or keyset described here.

Inheritance
System.Object
SigningKeyPossessorProto
Implements
Google.Apis.Requests.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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class SigningKeyPossessorProto : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

KeymasterKeyType

This value must be from the KeyMetadata.Type enum in keymaster.proto.

Declaration
[JsonProperty("keymasterKeyType")]
public virtual int? KeymasterKeyType { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

SerializedVerificationKey

The actual verification key bytes corresponding to the above type.

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

SerializedVerificationKeyset

The binary serialized Keymaster SerializedReader of a public keyset. The keyset must contain exactly one key. N.B.: If this field is populated, serialized_verification_key should be set to the empty string and keymaster_key_type should be set to zero.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top