Class AsymmetricSignResponse.Builder (2.14.0)

public static final class AsymmetricSignResponse.Builder extends GeneratedMessageV3.Builder<AsymmetricSignResponse.Builder> implements AsymmetricSignResponseOrBuilder

Response message for KeyManagementService.AsymmetricSign.

Protobuf type google.cloud.kms.v1.AsymmetricSignResponse

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

Methods

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public AsymmetricSignResponse.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

build()

public AsymmetricSignResponse build()
Returns
TypeDescription
AsymmetricSignResponse

buildPartial()

public AsymmetricSignResponse buildPartial()
Returns
TypeDescription
AsymmetricSignResponse

clear()

public AsymmetricSignResponse.Builder clear()
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

clearField(Descriptors.FieldDescriptor field)

public AsymmetricSignResponse.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
NameDescription
fieldFieldDescriptor
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

clearName()

public AsymmetricSignResponse.Builder clearName()

The resource name of the CryptoKeyVersion used for signing. Check this field to verify that the intended resource was used for signing.

string name = 4;

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

clearOneof(Descriptors.OneofDescriptor oneof)

public AsymmetricSignResponse.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
NameDescription
oneofOneofDescriptor
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

clearProtectionLevel()

public AsymmetricSignResponse.Builder clearProtectionLevel()

The ProtectionLevel of the CryptoKeyVersion used for signing.

.google.cloud.kms.v1.ProtectionLevel protection_level = 6;

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

clearSignature()

public AsymmetricSignResponse.Builder clearSignature()

The created signature.

bytes signature = 1;

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

clearSignatureCrc32C()

public AsymmetricSignResponse.Builder clearSignatureCrc32C()

Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

.google.protobuf.Int64Value signature_crc32c = 2;

Returns
TypeDescription
AsymmetricSignResponse.Builder

clearVerifiedDataCrc32C()

public AsymmetricSignResponse.Builder clearVerifiedDataCrc32C()

Integrity verification field. A flag indicating whether AsymmetricSignRequest.data_crc32c was received by KeyManagementService and used for the integrity verification of the data. A false value of this field indicates either that AsymmetricSignRequest.data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricSignRequest.data_crc32c but this field is still false, discard the response and perform a limited number of retries.

bool verified_data_crc32c = 5;

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

clearVerifiedDigestCrc32C()

public AsymmetricSignResponse.Builder clearVerifiedDigestCrc32C()

Integrity verification field. A flag indicating whether AsymmetricSignRequest.digest_crc32c was received by KeyManagementService and used for the integrity verification of the digest. A false value of this field indicates either that AsymmetricSignRequest.digest_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricSignRequest.digest_crc32c but this field is still false, discard the response and perform a limited number of retries.

bool verified_digest_crc32c = 3;

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

clone()

public AsymmetricSignResponse.Builder clone()
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

getDefaultInstanceForType()

public AsymmetricSignResponse getDefaultInstanceForType()
Returns
TypeDescription
AsymmetricSignResponse

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
TypeDescription
Descriptor
Overrides

getName()

public String getName()

The resource name of the CryptoKeyVersion used for signing. Check this field to verify that the intended resource was used for signing.

string name = 4;

Returns
TypeDescription
String

The name.

getNameBytes()

public ByteString getNameBytes()

The resource name of the CryptoKeyVersion used for signing. Check this field to verify that the intended resource was used for signing.

string name = 4;

Returns
TypeDescription
ByteString

The bytes for name.

getProtectionLevel()

public ProtectionLevel getProtectionLevel()

The ProtectionLevel of the CryptoKeyVersion used for signing.

.google.cloud.kms.v1.ProtectionLevel protection_level = 6;

Returns
TypeDescription
ProtectionLevel

The protectionLevel.

getProtectionLevelValue()

public int getProtectionLevelValue()

The ProtectionLevel of the CryptoKeyVersion used for signing.

.google.cloud.kms.v1.ProtectionLevel protection_level = 6;

Returns
TypeDescription
int

The enum numeric value on the wire for protectionLevel.

getSignature()

public ByteString getSignature()

The created signature.

bytes signature = 1;

Returns
TypeDescription
ByteString

The signature.

getSignatureCrc32C()

public Int64Value getSignatureCrc32C()

Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

.google.protobuf.Int64Value signature_crc32c = 2;

Returns
TypeDescription
Int64Value

The signatureCrc32c.

getSignatureCrc32CBuilder()

public Int64Value.Builder getSignatureCrc32CBuilder()

Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

.google.protobuf.Int64Value signature_crc32c = 2;

Returns
TypeDescription
Builder

getSignatureCrc32COrBuilder()

public Int64ValueOrBuilder getSignatureCrc32COrBuilder()

Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

.google.protobuf.Int64Value signature_crc32c = 2;

Returns
TypeDescription
Int64ValueOrBuilder

getVerifiedDataCrc32C()

public boolean getVerifiedDataCrc32C()

Integrity verification field. A flag indicating whether AsymmetricSignRequest.data_crc32c was received by KeyManagementService and used for the integrity verification of the data. A false value of this field indicates either that AsymmetricSignRequest.data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricSignRequest.data_crc32c but this field is still false, discard the response and perform a limited number of retries.

bool verified_data_crc32c = 5;

Returns
TypeDescription
boolean

The verifiedDataCrc32c.

getVerifiedDigestCrc32C()

public boolean getVerifiedDigestCrc32C()

Integrity verification field. A flag indicating whether AsymmetricSignRequest.digest_crc32c was received by KeyManagementService and used for the integrity verification of the digest. A false value of this field indicates either that AsymmetricSignRequest.digest_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricSignRequest.digest_crc32c but this field is still false, discard the response and perform a limited number of retries.

bool verified_digest_crc32c = 3;

Returns
TypeDescription
boolean

The verifiedDigestCrc32c.

hasSignatureCrc32C()

public boolean hasSignatureCrc32C()

Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

.google.protobuf.Int64Value signature_crc32c = 2;

Returns
TypeDescription
boolean

Whether the signatureCrc32c field is set.

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

mergeFrom(AsymmetricSignResponse other)

public AsymmetricSignResponse.Builder mergeFrom(AsymmetricSignResponse other)
Parameter
NameDescription
otherAsymmetricSignResponse
Returns
TypeDescription
AsymmetricSignResponse.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public AsymmetricSignResponse.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides Exceptions
TypeDescription
IOException

mergeFrom(Message other)

public AsymmetricSignResponse.Builder mergeFrom(Message other)
Parameter
NameDescription
otherMessage
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

mergeSignatureCrc32C(Int64Value value)

public AsymmetricSignResponse.Builder mergeSignatureCrc32C(Int64Value value)

Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

.google.protobuf.Int64Value signature_crc32c = 2;

Parameter
NameDescription
valueInt64Value
Returns
TypeDescription
AsymmetricSignResponse.Builder

mergeUnknownFields(UnknownFieldSet unknownFields)

public final AsymmetricSignResponse.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

setField(Descriptors.FieldDescriptor field, Object value)

public AsymmetricSignResponse.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

setName(String value)

public AsymmetricSignResponse.Builder setName(String value)

The resource name of the CryptoKeyVersion used for signing. Check this field to verify that the intended resource was used for signing.

string name = 4;

Parameter
NameDescription
valueString

The name to set.

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

setNameBytes(ByteString value)

public AsymmetricSignResponse.Builder setNameBytes(ByteString value)

The resource name of the CryptoKeyVersion used for signing. Check this field to verify that the intended resource was used for signing.

string name = 4;

Parameter
NameDescription
valueByteString

The bytes for name to set.

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

setProtectionLevel(ProtectionLevel value)

public AsymmetricSignResponse.Builder setProtectionLevel(ProtectionLevel value)

The ProtectionLevel of the CryptoKeyVersion used for signing.

.google.cloud.kms.v1.ProtectionLevel protection_level = 6;

Parameter
NameDescription
valueProtectionLevel

The protectionLevel to set.

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

setProtectionLevelValue(int value)

public AsymmetricSignResponse.Builder setProtectionLevelValue(int value)

The ProtectionLevel of the CryptoKeyVersion used for signing.

.google.cloud.kms.v1.ProtectionLevel protection_level = 6;

Parameter
NameDescription
valueint

The enum numeric value on the wire for protectionLevel to set.

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)

public AsymmetricSignResponse.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters
NameDescription
fieldFieldDescriptor
indexint
valueObject
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

setSignature(ByteString value)

public AsymmetricSignResponse.Builder setSignature(ByteString value)

The created signature.

bytes signature = 1;

Parameter
NameDescription
valueByteString

The signature to set.

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

setSignatureCrc32C(Int64Value value)

public AsymmetricSignResponse.Builder setSignatureCrc32C(Int64Value value)

Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

.google.protobuf.Int64Value signature_crc32c = 2;

Parameter
NameDescription
valueInt64Value
Returns
TypeDescription
AsymmetricSignResponse.Builder

setSignatureCrc32C(Int64Value.Builder builderForValue)

public AsymmetricSignResponse.Builder setSignatureCrc32C(Int64Value.Builder builderForValue)

Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

.google.protobuf.Int64Value signature_crc32c = 2;

Parameter
NameDescription
builderForValueBuilder
Returns
TypeDescription
AsymmetricSignResponse.Builder

setUnknownFields(UnknownFieldSet unknownFields)

public final AsymmetricSignResponse.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
AsymmetricSignResponse.Builder
Overrides

setVerifiedDataCrc32C(boolean value)

public AsymmetricSignResponse.Builder setVerifiedDataCrc32C(boolean value)

Integrity verification field. A flag indicating whether AsymmetricSignRequest.data_crc32c was received by KeyManagementService and used for the integrity verification of the data. A false value of this field indicates either that AsymmetricSignRequest.data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricSignRequest.data_crc32c but this field is still false, discard the response and perform a limited number of retries.

bool verified_data_crc32c = 5;

Parameter
NameDescription
valueboolean

The verifiedDataCrc32c to set.

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.

setVerifiedDigestCrc32C(boolean value)

public AsymmetricSignResponse.Builder setVerifiedDigestCrc32C(boolean value)

Integrity verification field. A flag indicating whether AsymmetricSignRequest.digest_crc32c was received by KeyManagementService and used for the integrity verification of the digest. A false value of this field indicates either that AsymmetricSignRequest.digest_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricSignRequest.digest_crc32c but this field is still false, discard the response and perform a limited number of retries.

bool verified_digest_crc32c = 3;

Parameter
NameDescription
valueboolean

The verifiedDigestCrc32c to set.

Returns
TypeDescription
AsymmetricSignResponse.Builder

This builder for chaining.