Show / Hide Table of Contents

Class PublicKeyCertificate

A public key certificate format and data.

Inheritance
System.Object
PublicKeyCertificate
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.CloudIot.v1.Data
Assembly: Google.Apis.CloudIot.v1.dll
Syntax
public class PublicKeyCertificate : IDirectResponseSchema

Properties

Certificate

The certificate data.

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

ETag

The ETag of the item.

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

Format

The certificate format.

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

X509Details

[Output only] The certificate details. Used only for X.509 certificates.

Declaration
[JsonProperty("x509Details")]
public virtual X509CertificateDetails X509Details { get; set; }
Property Value
Type Description
X509CertificateDetails

Implements

IDirectResponseSchema
In This Article
Back to top