Show / Hide Table of Contents

Class ListCertificateAuthoritiesResponse

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

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

Constructors

ListCertificateAuthoritiesResponse()

Declaration
public ListCertificateAuthoritiesResponse()

ListCertificateAuthoritiesResponse(ListCertificateAuthoritiesResponse)

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

Properties

CertificateAuthorities

The list of [CertificateAuthorities][google.cloud.security.privateca.v1beta1.CertificateAuthority].

Declaration
public RepeatedField<CertificateAuthority> CertificateAuthorities { get; }
Property Value
Type Description
RepeatedField<CertificateAuthority>

NextPageToken

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