Show / Hide Table of Contents

Class ListCertificateAuthoritiesRequest

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

Inheritance
System.Object
ListCertificateAuthoritiesRequest
Implements
IPageRequest
IMessage<ListCertificateAuthoritiesRequest>
System.IEquatable<ListCertificateAuthoritiesRequest>
IDeepCloneable<ListCertificateAuthoritiesRequest>
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 ListCertificateAuthoritiesRequest : IPageRequest, IMessage<ListCertificateAuthoritiesRequest>, IEquatable<ListCertificateAuthoritiesRequest>, IDeepCloneable<ListCertificateAuthoritiesRequest>, IBufferMessage, IMessage

Constructors

ListCertificateAuthoritiesRequest()

Declaration
public ListCertificateAuthoritiesRequest()

ListCertificateAuthoritiesRequest(ListCertificateAuthoritiesRequest)

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

Properties

Filter

Optional. Only include resources that match the filter in the response.

Declaration
public string Filter { get; set; }
Property Value
Type Description
System.String

OrderBy

Optional. Specify how the results should be sorted.

Declaration
public string OrderBy { get; set; }
Property Value
Type Description
System.String

PageSize

Optional. Limit on the number of [CertificateAuthorities][google.cloud.security.privateca.v1beta1.CertificateAuthority] to include in the response. Further [CertificateAuthorities][google.cloud.security.privateca.v1beta1.CertificateAuthority] can subsequently be obtained by including the [ListCertificateAuthoritiesResponse.next_page_token][google.cloud.security.privateca.v1beta1.ListCertificateAuthoritiesResponse.next_page_token] in a subsequent request. If unspecified, the server will pick an appropriate default.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
IPageRequest.PageSize

PageToken

Optional. Pagination token, returned earlier via [ListCertificateAuthoritiesResponse.next_page_token][google.cloud.security.privateca.v1beta1.ListCertificateAuthoritiesResponse.next_page_token].

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String
Implements
IPageRequest.PageToken

Parent

Required. The resource name of the location associated with the [CertificateAuthorities][google.cloud.security.privateca.v1beta1.CertificateAuthority], in the format projects/*/locations/*.

Declaration
public string Parent { get; set; }
Property Value
Type Description
System.String

ParentAsLocationName

LocationName-typed view over the Parent resource name property.

Declaration
public LocationName ParentAsLocationName { get; set; }
Property Value
Type Description
LocationName
Back to top