Package com.google.appengine.v1
Interface UpdateAuthorizedCertificateRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateAuthorizedCertificateRequest
,UpdateAuthorizedCertificateRequest.Builder
public interface UpdateAuthorizedCertificateRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthorizedCertificate
getCertificate()
An `AuthorizedCertificate` containing the updated resource.AuthorizedCertificateOrBuilder
getCertificateOrBuilder()
An `AuthorizedCertificate` containing the updated resource.String
getName()
Name of the resource to update.com.google.protobuf.ByteString
getNameBytes()
Name of the resource to update.com.google.protobuf.FieldMask
getUpdateMask()
Standard field mask for the set of fields to be updated.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Standard field mask for the set of fields to be updated.boolean
hasCertificate()
An `AuthorizedCertificate` containing the updated resource.boolean
hasUpdateMask()
Standard field mask for the set of fields to be updated.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the resource to update. Example: `apps/myapp/authorizedCertificates/12345`.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the resource to update. Example: `apps/myapp/authorizedCertificates/12345`.
string name = 1;
- Returns:
- The bytes for name.
-
hasCertificate
boolean hasCertificate()
An `AuthorizedCertificate` containing the updated resource. Only fields set in the field mask will be updated.
.google.appengine.v1.AuthorizedCertificate certificate = 2;
- Returns:
- Whether the certificate field is set.
-
getCertificate
AuthorizedCertificate getCertificate()
An `AuthorizedCertificate` containing the updated resource. Only fields set in the field mask will be updated.
.google.appengine.v1.AuthorizedCertificate certificate = 2;
- Returns:
- The certificate.
-
getCertificateOrBuilder
AuthorizedCertificateOrBuilder getCertificateOrBuilder()
An `AuthorizedCertificate` containing the updated resource. Only fields set in the field mask will be updated.
.google.appengine.v1.AuthorizedCertificate certificate = 2;
-
hasUpdateMask
boolean hasUpdateMask()
Standard field mask for the set of fields to be updated. Updates are only supported on the `certificate_raw_data` and `display_name` fields.
.google.protobuf.FieldMask update_mask = 3;
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
Standard field mask for the set of fields to be updated. Updates are only supported on the `certificate_raw_data` and `display_name` fields.
.google.protobuf.FieldMask update_mask = 3;
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
Standard field mask for the set of fields to be updated. Updates are only supported on the `certificate_raw_data` and `display_name` fields.
.google.protobuf.FieldMask update_mask = 3;
-
-