Interface CertificateAuthority.AccessUrlsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CertificateAuthority.AccessUrls
,CertificateAuthority.AccessUrls.Builder
- Enclosing class:
- CertificateAuthority
public static interface CertificateAuthority.AccessUrlsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCaCertificateAccessUrl()
The URL where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CA certificate is published.com.google.protobuf.ByteString
getCaCertificateAccessUrlBytes()
The URL where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CA certificate is published.String
getCrlAccessUrls(int index)
The URLs where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CRLs are published.com.google.protobuf.ByteString
getCrlAccessUrlsBytes(int index)
The URLs where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CRLs are published.int
getCrlAccessUrlsCount()
The URLs where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CRLs are published.List<String>
getCrlAccessUrlsList()
The URLs where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CRLs are published.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCaCertificateAccessUrl
String getCaCertificateAccessUrl()
The URL where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CA certificate is published. This will only be set for CAs that have been activated.
string ca_certificate_access_url = 1;
- Returns:
- The caCertificateAccessUrl.
-
getCaCertificateAccessUrlBytes
com.google.protobuf.ByteString getCaCertificateAccessUrlBytes()
The URL where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CA certificate is published. This will only be set for CAs that have been activated.
string ca_certificate_access_url = 1;
- Returns:
- The bytes for caCertificateAccessUrl.
-
getCrlAccessUrlsList
List<String> getCrlAccessUrlsList()
The URLs where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CRLs are published. This will only be set for CAs that have been activated.
repeated string crl_access_urls = 2;
- Returns:
- A list containing the crlAccessUrls.
-
getCrlAccessUrlsCount
int getCrlAccessUrlsCount()
The URLs where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CRLs are published. This will only be set for CAs that have been activated.
repeated string crl_access_urls = 2;
- Returns:
- The count of crlAccessUrls.
-
getCrlAccessUrls
String getCrlAccessUrls(int index)
The URLs where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CRLs are published. This will only be set for CAs that have been activated.
repeated string crl_access_urls = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The crlAccessUrls at the given index.
-
getCrlAccessUrlsBytes
com.google.protobuf.ByteString getCrlAccessUrlsBytes(int index)
The URLs where this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]'s CRLs are published. This will only be set for CAs that have been activated.
repeated string crl_access_urls = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the crlAccessUrls at the given index.
-
-