Show / Hide Table of Contents

Class ListReusableConfigsResponse

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

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

Constructors

ListReusableConfigsResponse()

Declaration
public ListReusableConfigsResponse()

ListReusableConfigsResponse(ListReusableConfigsResponse)

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

Properties

NextPageToken

A token to retrieve next page of results. Pass this value in [ListReusableConfigsRequest.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

ReusableConfigs

The list of [ReusableConfigs][google.cloud.security.privateca.v1beta1.ReusableConfig].

Declaration
public RepeatedField<ReusableConfig> ReusableConfigs { get; }
Property Value
Type Description
RepeatedField<ReusableConfig>

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<ReusableConfig> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<ReusableConfig>
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