Represents a Certificate.
Package
@google-cloud/security-private-ca!Constructors
(constructor)(properties)
constructor(properties?: google.cloud.security.privateca.v1.ICertificate);
Constructs a new Certificate.
Name | Description |
properties |
ICertificate
Properties to set |
Properties
certificateConfig
public certificateConfig?: ("pemCsr"|"config");
Certificate certificateConfig.
Type | Description |
("pemCsr"|"config") |
certificateDescription
public certificateDescription?: (google.cloud.security.privateca.v1.ICertificateDescription|null);
Certificate certificateDescription.
Type | Description |
(google.cloud.security.privateca.v1.ICertificateDescription|null) |
certificateTemplate
public certificateTemplate: string;
Certificate certificateTemplate.
Type | Description |
string |
config
public config?: (google.cloud.security.privateca.v1.ICertificateConfig|null);
Certificate config.
Type | Description |
(google.cloud.security.privateca.v1.ICertificateConfig|null) |
createTime
public createTime?: (google.protobuf.ITimestamp|null);
Certificate createTime.
Type | Description |
(google.protobuf.ITimestamp|null) |
issuerCertificateAuthority
public issuerCertificateAuthority: string;
Certificate issuerCertificateAuthority.
Type | Description |
string |
labels
public labels: { [k: string]: string };
Certificate labels.
Type | Description |
{ [k: string]: string } |
lifetime
public lifetime?: (google.protobuf.IDuration|null);
Certificate lifetime.
Type | Description |
(google.protobuf.IDuration|null) |
name
public name: string;
Certificate name.
Type | Description |
string |
pemCertificate
public pemCertificate: string;
Certificate pemCertificate.
Type | Description |
string |
pemCertificateChain
public pemCertificateChain: string[];
Certificate pemCertificateChain.
Type | Description |
string[] |
pemCsr
public pemCsr?: (string|null);
Certificate pemCsr.
Type | Description |
(string|null) |
revocationDetails
public revocationDetails?: (google.cloud.security.privateca.v1.Certificate.IRevocationDetails|null);
Certificate revocationDetails.
Type | Description |
(google.cloud.security.privateca.v1.Certificate.IRevocationDetails|null) |
subjectMode
public subjectMode: (google.cloud.security.privateca.v1.SubjectRequestMode|keyof typeof google.cloud.security.privateca.v1.SubjectRequestMode);
Certificate subjectMode.
Type | Description |
(google.cloud.security.privateca.v1.SubjectRequestMode|keyof typeof google.cloud.security.privateca.v1.SubjectRequestMode) |
updateTime
public updateTime?: (google.protobuf.ITimestamp|null);
Certificate updateTime.
Type | Description |
(google.protobuf.ITimestamp|null) |
Methods
create(properties)
public static create(properties?: google.cloud.security.privateca.v1.ICertificate): google.cloud.security.privateca.v1.Certificate;
Creates a new Certificate instance using the specified properties.
Name | Description |
properties |
ICertificate
Properties to set |
Type | Description |
google.cloud.security.privateca.v1.Certificate | Certificate instance |
decode(reader, length)
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.security.privateca.v1.Certificate;
Decodes a Certificate message from the specified reader or buffer.
Name | Description |
reader |
($protobuf.Reader|Uint8Array)
Reader or buffer to decode from |
length |
number
Message length if known beforehand |
Type | Description |
google.cloud.security.privateca.v1.Certificate | Certificate |
decodeDelimited(reader)
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.security.privateca.v1.Certificate;
Decodes a Certificate message from the specified reader or buffer, length delimited.
Name | Description |
reader |
($protobuf.Reader|Uint8Array)
Reader or buffer to decode from |
Type | Description |
google.cloud.security.privateca.v1.Certificate | Certificate |
encode(message, writer)
public static encode(message: google.cloud.security.privateca.v1.ICertificate, writer?: $protobuf.Writer): $protobuf.Writer;
Encodes the specified Certificate message. Does not implicitly messages.
Name | Description |
message |
ICertificate
Certificate message or plain object to encode |
writer |
$protobuf.Writer
Writer to encode to |
Type | Description |
$protobuf.Writer | Writer |
encodeDelimited(message, writer)
public static encodeDelimited(message: google.cloud.security.privateca.v1.ICertificate, writer?: $protobuf.Writer): $protobuf.Writer;
Encodes the specified Certificate message, length delimited. Does not implicitly messages.
Name | Description |
message |
ICertificate
Certificate message or plain object to encode |
writer |
$protobuf.Writer
Writer to encode to |
Type | Description |
$protobuf.Writer | Writer |
fromObject(object)
public static fromObject(object: { [k: string]: any }): google.cloud.security.privateca.v1.Certificate;
Creates a Certificate message from a plain object. Also converts values to their respective internal types.
Name | Description |
object |
{ [k: string]: any }
Plain object |
Type | Description |
google.cloud.security.privateca.v1.Certificate | Certificate |
toJSON()
public toJSON(): { [k: string]: any };
Converts this Certificate to JSON.
Type | Description |
{ [k: string]: any } | JSON object |
toObject(message, options)
public static toObject(message: google.cloud.security.privateca.v1.Certificate, options?: $protobuf.IConversionOptions): { [k: string]: any };
Creates a plain object from a Certificate message. Also converts values to other types if specified.
Name | Description |
message |
google.cloud.security.privateca.v1.Certificate
Certificate |
options |
$protobuf.IConversionOptions
Conversion options |
Type | Description |
{ [k: string]: any } | Plain object |
verify(message)
public static verify(message: { [k: string]: any }): (string|null);
Verifies a Certificate message.
Name | Description |
message |
{ [k: string]: any }
Plain object to verify |
Type | Description |
(string|null) |
|