Show / Hide Table of Contents

Class ListCertificateRevocationListsRequest

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

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

Constructors

ListCertificateRevocationListsRequest()

Declaration
public ListCertificateRevocationListsRequest()

ListCertificateRevocationListsRequest(ListCertificateRevocationListsRequest)

Declaration
public ListCertificateRevocationListsRequest(ListCertificateRevocationListsRequest other)
Parameters
Type Name Description
ListCertificateRevocationListsRequest 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 [CertificateRevocationLists][google.cloud.security.privateca.v1beta1.CertificateRevocationList] to include in the response. Further [CertificateRevocationLists][google.cloud.security.privateca.v1beta1.CertificateRevocationList] can subsequently be obtained by including the [ListCertificateRevocationListsResponse.next_page_token][google.cloud.security.privateca.v1beta1.ListCertificateRevocationListsResponse.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 [ListCertificateRevocationListsResponse.next_page_token][google.cloud.security.privateca.v1beta1.ListCertificateRevocationListsResponse.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 [CertificateRevocationLists][google.cloud.security.privateca.v1beta1.CertificateRevocationList], in the format projects/*/locations/*/certificateauthorities/*.

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

ParentAsCertificateAuthorityName

CertificateAuthorityName-typed view over the Parent resource name property.

Declaration
public CertificateAuthorityName ParentAsCertificateAuthorityName { get; set; }
Property Value
Type Description
CertificateAuthorityName
Back to top