Class DeviceCredential (1.0.0)

public sealed class DeviceCredential : IMessage<DeviceCredential>, IEquatable<DeviceCredential>, IDeepCloneable<DeviceCredential>, IBufferMessage, IMessage

A server-stored device credential used for authentication.

Inheritance

System.Object > DeviceCredential

Implements

Google.Protobuf.IMessage<DeviceCredential>, System.IEquatable<DeviceCredential>, Google.Protobuf.IDeepCloneable<DeviceCredential>, Google.Protobuf.IBufferMessage, Google.Protobuf.IMessage

Namespace

Google.Cloud.Iot.V1

Assembly

Google.Cloud.Iot.V1.dll

Constructors

DeviceCredential()

public DeviceCredential()

DeviceCredential(DeviceCredential)

public DeviceCredential(DeviceCredential other)
Parameter
NameDescription
otherDeviceCredential

Properties

CredentialCase

public DeviceCredential.CredentialOneofCase CredentialCase { get; }
Property Value
TypeDescription
DeviceCredential.CredentialOneofCase

ExpirationTime

public Timestamp ExpirationTime { get; set; }

[Optional] The time at which this credential becomes invalid. This credential will be ignored for new client authentication requests after this timestamp; however, it will not be automatically deleted.

Property Value
TypeDescription
Google.Protobuf.WellKnownTypes.Timestamp

PublicKey

public PublicKeyCredential PublicKey { get; set; }

A public key used to verify the signature of JSON Web Tokens (JWTs). When adding a new device credential, either via device creation or via modifications, this public key credential may be required to be signed by one of the registry level certificates. More specifically, if the registry contains at least one certificate, any new device credential must be signed by one of the registry certificates. As a result, when the registry contains certificates, only X.509 certificates are accepted as device credentials. However, if the registry does not contain a certificate, self-signed certificates and public keys will be accepted. New device credentials must be different from every registry-level certificate.

Property Value
TypeDescription
PublicKeyCredential