com.google.cloud.compute.v1.SourceDiskEncryptionKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-compute-v1 Show documentation
Show all versions of proto-google-cloud-compute-v1 Show documentation
Proto library for google-cloud-compute
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/compute/v1/compute.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.compute.v1;
/**
*
*
*
*
*
* Protobuf type {@code google.cloud.compute.v1.SourceDiskEncryptionKey}
*/
public final class SourceDiskEncryptionKey extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.compute.v1.SourceDiskEncryptionKey)
SourceDiskEncryptionKeyOrBuilder {
private static final long serialVersionUID = 0L;
// Use SourceDiskEncryptionKey.newBuilder() to construct.
private SourceDiskEncryptionKey(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SourceDiskEncryptionKey() {
sourceDisk_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new SourceDiskEncryptionKey();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.compute.v1.Compute
.internal_static_google_cloud_compute_v1_SourceDiskEncryptionKey_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.compute.v1.Compute
.internal_static_google_cloud_compute_v1_SourceDiskEncryptionKey_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.compute.v1.SourceDiskEncryptionKey.class,
com.google.cloud.compute.v1.SourceDiskEncryptionKey.Builder.class);
}
private int bitField0_;
public static final int DISK_ENCRYPTION_KEY_FIELD_NUMBER = 271660677;
private com.google.cloud.compute.v1.CustomerEncryptionKey diskEncryptionKey_;
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*
* @return Whether the diskEncryptionKey field is set.
*/
@java.lang.Override
public boolean hasDiskEncryptionKey() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*
* @return The diskEncryptionKey.
*/
@java.lang.Override
public com.google.cloud.compute.v1.CustomerEncryptionKey getDiskEncryptionKey() {
return diskEncryptionKey_ == null
? com.google.cloud.compute.v1.CustomerEncryptionKey.getDefaultInstance()
: diskEncryptionKey_;
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*/
@java.lang.Override
public com.google.cloud.compute.v1.CustomerEncryptionKeyOrBuilder
getDiskEncryptionKeyOrBuilder() {
return diskEncryptionKey_ == null
? com.google.cloud.compute.v1.CustomerEncryptionKey.getDefaultInstance()
: diskEncryptionKey_;
}
public static final int SOURCE_DISK_FIELD_NUMBER = 451753793;
@SuppressWarnings("serial")
private volatile java.lang.Object sourceDisk_ = "";
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @return Whether the sourceDisk field is set.
*/
@java.lang.Override
public boolean hasSourceDisk() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @return The sourceDisk.
*/
@java.lang.Override
public java.lang.String getSourceDisk() {
java.lang.Object ref = sourceDisk_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sourceDisk_ = s;
return s;
}
}
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @return The bytes for sourceDisk.
*/
@java.lang.Override
public com.google.protobuf.ByteString getSourceDiskBytes() {
java.lang.Object ref = sourceDisk_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
sourceDisk_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(271660677, getDiskEncryptionKey());
}
if (((bitField0_ & 0x00000002) != 0)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 451753793, sourceDisk_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
271660677, getDiskEncryptionKey());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(451753793, sourceDisk_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.compute.v1.SourceDiskEncryptionKey)) {
return super.equals(obj);
}
com.google.cloud.compute.v1.SourceDiskEncryptionKey other =
(com.google.cloud.compute.v1.SourceDiskEncryptionKey) obj;
if (hasDiskEncryptionKey() != other.hasDiskEncryptionKey()) return false;
if (hasDiskEncryptionKey()) {
if (!getDiskEncryptionKey().equals(other.getDiskEncryptionKey())) return false;
}
if (hasSourceDisk() != other.hasSourceDisk()) return false;
if (hasSourceDisk()) {
if (!getSourceDisk().equals(other.getSourceDisk())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasDiskEncryptionKey()) {
hash = (37 * hash) + DISK_ENCRYPTION_KEY_FIELD_NUMBER;
hash = (53 * hash) + getDiskEncryptionKey().hashCode();
}
if (hasSourceDisk()) {
hash = (37 * hash) + SOURCE_DISK_FIELD_NUMBER;
hash = (53 * hash) + getSourceDisk().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.cloud.compute.v1.SourceDiskEncryptionKey prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
*
*
* Protobuf type {@code google.cloud.compute.v1.SourceDiskEncryptionKey}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.compute.v1.SourceDiskEncryptionKey)
com.google.cloud.compute.v1.SourceDiskEncryptionKeyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.compute.v1.Compute
.internal_static_google_cloud_compute_v1_SourceDiskEncryptionKey_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.compute.v1.Compute
.internal_static_google_cloud_compute_v1_SourceDiskEncryptionKey_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.compute.v1.SourceDiskEncryptionKey.class,
com.google.cloud.compute.v1.SourceDiskEncryptionKey.Builder.class);
}
// Construct using com.google.cloud.compute.v1.SourceDiskEncryptionKey.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getDiskEncryptionKeyFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
diskEncryptionKey_ = null;
if (diskEncryptionKeyBuilder_ != null) {
diskEncryptionKeyBuilder_.dispose();
diskEncryptionKeyBuilder_ = null;
}
sourceDisk_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.compute.v1.Compute
.internal_static_google_cloud_compute_v1_SourceDiskEncryptionKey_descriptor;
}
@java.lang.Override
public com.google.cloud.compute.v1.SourceDiskEncryptionKey getDefaultInstanceForType() {
return com.google.cloud.compute.v1.SourceDiskEncryptionKey.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.compute.v1.SourceDiskEncryptionKey build() {
com.google.cloud.compute.v1.SourceDiskEncryptionKey result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.compute.v1.SourceDiskEncryptionKey buildPartial() {
com.google.cloud.compute.v1.SourceDiskEncryptionKey result =
new com.google.cloud.compute.v1.SourceDiskEncryptionKey(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.compute.v1.SourceDiskEncryptionKey result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.diskEncryptionKey_ =
diskEncryptionKeyBuilder_ == null
? diskEncryptionKey_
: diskEncryptionKeyBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.sourceDisk_ = sourceDisk_;
to_bitField0_ |= 0x00000002;
}
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.compute.v1.SourceDiskEncryptionKey) {
return mergeFrom((com.google.cloud.compute.v1.SourceDiskEncryptionKey) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.compute.v1.SourceDiskEncryptionKey other) {
if (other == com.google.cloud.compute.v1.SourceDiskEncryptionKey.getDefaultInstance())
return this;
if (other.hasDiskEncryptionKey()) {
mergeDiskEncryptionKey(other.getDiskEncryptionKey());
}
if (other.hasSourceDisk()) {
sourceDisk_ = other.sourceDisk_;
bitField0_ |= 0x00000002;
onChanged();
}
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 -2121681878:
{
input.readMessage(
getDiskEncryptionKeyFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case -2121681878
case -680936950:
{
sourceDisk_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case -680936950
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 com.google.cloud.compute.v1.CustomerEncryptionKey diskEncryptionKey_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.compute.v1.CustomerEncryptionKey,
com.google.cloud.compute.v1.CustomerEncryptionKey.Builder,
com.google.cloud.compute.v1.CustomerEncryptionKeyOrBuilder>
diskEncryptionKeyBuilder_;
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*
* @return Whether the diskEncryptionKey field is set.
*/
public boolean hasDiskEncryptionKey() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*
* @return The diskEncryptionKey.
*/
public com.google.cloud.compute.v1.CustomerEncryptionKey getDiskEncryptionKey() {
if (diskEncryptionKeyBuilder_ == null) {
return diskEncryptionKey_ == null
? com.google.cloud.compute.v1.CustomerEncryptionKey.getDefaultInstance()
: diskEncryptionKey_;
} else {
return diskEncryptionKeyBuilder_.getMessage();
}
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*/
public Builder setDiskEncryptionKey(com.google.cloud.compute.v1.CustomerEncryptionKey value) {
if (diskEncryptionKeyBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
diskEncryptionKey_ = value;
} else {
diskEncryptionKeyBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*/
public Builder setDiskEncryptionKey(
com.google.cloud.compute.v1.CustomerEncryptionKey.Builder builderForValue) {
if (diskEncryptionKeyBuilder_ == null) {
diskEncryptionKey_ = builderForValue.build();
} else {
diskEncryptionKeyBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*/
public Builder mergeDiskEncryptionKey(com.google.cloud.compute.v1.CustomerEncryptionKey value) {
if (diskEncryptionKeyBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)
&& diskEncryptionKey_ != null
&& diskEncryptionKey_
!= com.google.cloud.compute.v1.CustomerEncryptionKey.getDefaultInstance()) {
getDiskEncryptionKeyBuilder().mergeFrom(value);
} else {
diskEncryptionKey_ = value;
}
} else {
diskEncryptionKeyBuilder_.mergeFrom(value);
}
if (diskEncryptionKey_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*/
public Builder clearDiskEncryptionKey() {
bitField0_ = (bitField0_ & ~0x00000001);
diskEncryptionKey_ = null;
if (diskEncryptionKeyBuilder_ != null) {
diskEncryptionKeyBuilder_.dispose();
diskEncryptionKeyBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*/
public com.google.cloud.compute.v1.CustomerEncryptionKey.Builder getDiskEncryptionKeyBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getDiskEncryptionKeyFieldBuilder().getBuilder();
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*/
public com.google.cloud.compute.v1.CustomerEncryptionKeyOrBuilder
getDiskEncryptionKeyOrBuilder() {
if (diskEncryptionKeyBuilder_ != null) {
return diskEncryptionKeyBuilder_.getMessageOrBuilder();
} else {
return diskEncryptionKey_ == null
? com.google.cloud.compute.v1.CustomerEncryptionKey.getDefaultInstance()
: diskEncryptionKey_;
}
}
/**
*
*
*
* The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
*
*
*
* optional .google.cloud.compute.v1.CustomerEncryptionKey disk_encryption_key = 271660677;
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.compute.v1.CustomerEncryptionKey,
com.google.cloud.compute.v1.CustomerEncryptionKey.Builder,
com.google.cloud.compute.v1.CustomerEncryptionKeyOrBuilder>
getDiskEncryptionKeyFieldBuilder() {
if (diskEncryptionKeyBuilder_ == null) {
diskEncryptionKeyBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.compute.v1.CustomerEncryptionKey,
com.google.cloud.compute.v1.CustomerEncryptionKey.Builder,
com.google.cloud.compute.v1.CustomerEncryptionKeyOrBuilder>(
getDiskEncryptionKey(), getParentForChildren(), isClean());
diskEncryptionKey_ = null;
}
return diskEncryptionKeyBuilder_;
}
private java.lang.Object sourceDisk_ = "";
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @return Whether the sourceDisk field is set.
*/
public boolean hasSourceDisk() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @return The sourceDisk.
*/
public java.lang.String getSourceDisk() {
java.lang.Object ref = sourceDisk_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sourceDisk_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @return The bytes for sourceDisk.
*/
public com.google.protobuf.ByteString getSourceDiskBytes() {
java.lang.Object ref = sourceDisk_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
sourceDisk_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @param value The sourceDisk to set.
* @return This builder for chaining.
*/
public Builder setSourceDisk(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
sourceDisk_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @return This builder for chaining.
*/
public Builder clearSourceDisk() {
sourceDisk_ = getDefaultInstance().getSourceDisk();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
*
*
* optional string source_disk = 451753793;
*
* @param value The bytes for sourceDisk to set.
* @return This builder for chaining.
*/
public Builder setSourceDiskBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
sourceDisk_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
@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.compute.v1.SourceDiskEncryptionKey)
}
// @@protoc_insertion_point(class_scope:google.cloud.compute.v1.SourceDiskEncryptionKey)
private static final com.google.cloud.compute.v1.SourceDiskEncryptionKey DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.compute.v1.SourceDiskEncryptionKey();
}
public static com.google.cloud.compute.v1.SourceDiskEncryptionKey getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SourceDiskEncryptionKey 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.compute.v1.SourceDiskEncryptionKey getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy