Show / Hide Table of Contents

Class ListCertificatesResponse

Response message for [CertificateAuthorityService.ListCertificates][google.cloud.security.privateca.v1beta1.CertificateAuthorityService.ListCertificates].

Inheritance
System.Object
ListCertificatesResponse
Implements
IPageResponse<Certificate>
System.Collections.Generic.IEnumerable<Certificate>
System.Collections.IEnumerable
IMessage<ListCertificatesResponse>
System.IEquatable<ListCertificatesResponse>
IDeepCloneable<ListCertificatesResponse>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.Security.PrivateCA.V1Beta1
Assembly: Google.Cloud.Security.PrivateCA.V1Beta1.dll
Syntax
public sealed class ListCertificatesResponse : IPageResponse<Certificate>, IEnumerable<Certificate>, IEnumerable, IMessage<ListCertificatesResponse>, IEquatable<ListCertificatesResponse>, IDeepCloneable<ListCertificatesResponse>, IBufferMessage, IMessage

Constructors

ListCertificatesResponse()

Declaration
public ListCertificatesResponse()

ListCertificatesResponse(ListCertificatesResponse)

Declaration
public ListCertificatesResponse(ListCertificatesResponse other)
Parameters
Type Name Description
ListCertificatesResponse other

Properties

Certificates

The list of [Certificates][google.cloud.security.privateca.v1beta1.Certificate].

Declaration
public RepeatedField<Certificate> Certificates { get; }
Property Value
Type Description
RepeatedField<Certificate>

NextPageToken

A token to retrieve next page of results. Pass this value in [ListCertificatesRequest.next_page_token][] to retrieve the next page of results.

Declaration
public string NextPageToken { get; set; }
Property Value
Type Description
System.String
Implements
IPageResponse<TResource>.NextPageToken

Unreachable

A list of locations (e.g. "us-west1") that could not be reached.

Declaration
public RepeatedField<string> Unreachable { get; }
Property Value
Type Description
RepeatedField<System.String>

Methods

GetEnumerator()

Returns an enumerator that iterates through the resources in this response.

Declaration
public IEnumerator<Certificate> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<Certificate>
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator
Implements
System.Collections.IEnumerable.GetEnumerator()
Back to top