implements
// @@protoc_insertion_point(builder_implements:google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest)
com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.binaryauthorization.v1beta1.BinaryAuthorizationServiceProto
.internal_static_google_cloud_binaryauthorization_v1beta1_CreateAttestorRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.binaryauthorization.v1beta1.BinaryAuthorizationServiceProto
.internal_static_google_cloud_binaryauthorization_v1beta1_CreateAttestorRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest.class,
com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest.Builder.class);
}
// Construct using
// com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getAttestorFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
parent_ = "";
attestorId_ = "";
attestor_ = null;
if (attestorBuilder_ != null) {
attestorBuilder_.dispose();
attestorBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.binaryauthorization.v1beta1.BinaryAuthorizationServiceProto
.internal_static_google_cloud_binaryauthorization_v1beta1_CreateAttestorRequest_descriptor;
}
@java.lang.Override
public com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest
getDefaultInstanceForType() {
return com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest
.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest build() {
com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest buildPartial() {
com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest result =
new com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.parent_ = parent_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.attestorId_ = attestorId_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000004) != 0)) {
result.attestor_ = attestorBuilder_ == null ? attestor_ : attestorBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest) {
return mergeFrom(
(com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest other) {
if (other
== com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest
.getDefaultInstance()) return this;
if (!other.getParent().isEmpty()) {
parent_ = other.parent_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getAttestorId().isEmpty()) {
attestorId_ = other.attestorId_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.hasAttestor()) {
mergeAttestor(other.getAttestor());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
parent_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
attestorId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
input.readMessage(getAttestorFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object parent_ = "";
/**
*
*
*
* Required. The parent of this [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
*
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The parent.
*/
public java.lang.String getParent() {
java.lang.Object ref = parent_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
parent_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The parent of this [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
*
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for parent.
*/
public com.google.protobuf.ByteString getParentBytes() {
java.lang.Object ref = parent_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
parent_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The parent of this [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
*
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @param value The parent to set.
* @return This builder for chaining.
*/
public Builder setParent(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
parent_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Required. The parent of this [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
*
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return This builder for chaining.
*/
public Builder clearParent() {
parent_ = getDefaultInstance().getParent();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Required. The parent of this [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
*
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @param value The bytes for parent to set.
* @return This builder for chaining.
*/
public Builder setParentBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
parent_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object attestorId_ = "";
/**
*
*
*
* Required. The [attestors][google.cloud.binaryauthorization.v1beta1.Attestor] ID.
*
*
* string attestor_id = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The attestorId.
*/
public java.lang.String getAttestorId() {
java.lang.Object ref = attestorId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
attestorId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The [attestors][google.cloud.binaryauthorization.v1beta1.Attestor] ID.
*
*
* string attestor_id = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for attestorId.
*/
public com.google.protobuf.ByteString getAttestorIdBytes() {
java.lang.Object ref = attestorId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
attestorId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The [attestors][google.cloud.binaryauthorization.v1beta1.Attestor] ID.
*
*
* string attestor_id = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The attestorId to set.
* @return This builder for chaining.
*/
public Builder setAttestorId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
attestorId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Required. The [attestors][google.cloud.binaryauthorization.v1beta1.Attestor] ID.
*
*
* string attestor_id = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearAttestorId() {
attestorId_ = getDefaultInstance().getAttestorId();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* Required. The [attestors][google.cloud.binaryauthorization.v1beta1.Attestor] ID.
*
*
* string attestor_id = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for attestorId to set.
* @return This builder for chaining.
*/
public Builder setAttestorIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
attestorId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private com.google.cloud.binaryauthorization.v1beta1.Attestor attestor_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.binaryauthorization.v1beta1.Attestor,
com.google.cloud.binaryauthorization.v1beta1.Attestor.Builder,
com.google.cloud.binaryauthorization.v1beta1.AttestorOrBuilder>
attestorBuilder_;
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the attestor field is set.
*/
public boolean hasAttestor() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The attestor.
*/
public com.google.cloud.binaryauthorization.v1beta1.Attestor getAttestor() {
if (attestorBuilder_ == null) {
return attestor_ == null
? com.google.cloud.binaryauthorization.v1beta1.Attestor.getDefaultInstance()
: attestor_;
} else {
return attestorBuilder_.getMessage();
}
}
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder setAttestor(com.google.cloud.binaryauthorization.v1beta1.Attestor value) {
if (attestorBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
attestor_ = value;
} else {
attestorBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder setAttestor(
com.google.cloud.binaryauthorization.v1beta1.Attestor.Builder builderForValue) {
if (attestorBuilder_ == null) {
attestor_ = builderForValue.build();
} else {
attestorBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder mergeAttestor(com.google.cloud.binaryauthorization.v1beta1.Attestor value) {
if (attestorBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& attestor_ != null
&& attestor_
!= com.google.cloud.binaryauthorization.v1beta1.Attestor.getDefaultInstance()) {
getAttestorBuilder().mergeFrom(value);
} else {
attestor_ = value;
}
} else {
attestorBuilder_.mergeFrom(value);
}
if (attestor_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder clearAttestor() {
bitField0_ = (bitField0_ & ~0x00000004);
attestor_ = null;
if (attestorBuilder_ != null) {
attestorBuilder_.dispose();
attestorBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
public com.google.cloud.binaryauthorization.v1beta1.Attestor.Builder getAttestorBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getAttestorFieldBuilder().getBuilder();
}
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
public com.google.cloud.binaryauthorization.v1beta1.AttestorOrBuilder getAttestorOrBuilder() {
if (attestorBuilder_ != null) {
return attestorBuilder_.getMessageOrBuilder();
} else {
return attestor_ == null
? com.google.cloud.binaryauthorization.v1beta1.Attestor.getDefaultInstance()
: attestor_;
}
}
/**
*
*
*
* Required. The initial [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] value. The service will
* overwrite the [attestor name][google.cloud.binaryauthorization.v1beta1.Attestor.name] field with the resource name,
* in the format `projects/*/attestors/*`.
*
*
*
* .google.cloud.binaryauthorization.v1beta1.Attestor attestor = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.binaryauthorization.v1beta1.Attestor,
com.google.cloud.binaryauthorization.v1beta1.Attestor.Builder,
com.google.cloud.binaryauthorization.v1beta1.AttestorOrBuilder>
getAttestorFieldBuilder() {
if (attestorBuilder_ == null) {
attestorBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.binaryauthorization.v1beta1.Attestor,
com.google.cloud.binaryauthorization.v1beta1.Attestor.Builder,
com.google.cloud.binaryauthorization.v1beta1.AttestorOrBuilder>(
getAttestor(), getParentForChildren(), isClean());
attestor_ = null;
}
return attestorBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest)
}
// @@protoc_insertion_point(class_scope:google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest)
private static final com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest();
}
public static com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public CreateAttestorRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.binaryauthorization.v1beta1.CreateAttestorRequest
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}