Show / Hide Table of Contents

Class ListCertificateRevocationListsResponse

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

Inheritance
System.Object
ListCertificateRevocationListsResponse
Implements
IPageResponse<CertificateRevocationList>
System.Collections.Generic.IEnumerable<CertificateRevocationList>
System.Collections.IEnumerable
IMessage<ListCertificateRevocationListsResponse>
System.IEquatable<ListCertificateRevocationListsResponse>
IDeepCloneable<ListCertificateRevocationListsResponse>
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 ListCertificateRevocationListsResponse : IPageResponse<CertificateRevocationList>, IEnumerable<CertificateRevocationList>, IEnumerable, IMessage<ListCertificateRevocationListsResponse>, IEquatable<ListCertificateRevocationListsResponse>, IDeepCloneable<ListCertificateRevocationListsResponse>, IBufferMessage, IMessage

Constructors

ListCertificateRevocationListsResponse()

Declaration
public ListCertificateRevocationListsResponse()

ListCertificateRevocationListsResponse(ListCertificateRevocationListsResponse)

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

Properties

CertificateRevocationLists

The list of [CertificateRevocationLists][google.cloud.security.privateca.v1beta1.CertificateRevocationList].

Declaration
public RepeatedField<CertificateRevocationList> CertificateRevocationLists { get; }
Property Value
Type Description
RepeatedField<CertificateRevocationList>

NextPageToken

A token to retrieve next page of results. Pass this value in [ListCertificateRevocationListsRequest.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<CertificateRevocationList> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<CertificateRevocationList>
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