/*
* 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/netapp/v1/replication.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.netapp.v1;
public interface DestinationVolumeParametersOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.netapp.v1.DestinationVolumeParameters)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. Existing destination StoragePool name.
*
*
*
* string storage_pool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The storagePool.
*/
java.lang.String getStoragePool();
/**
*
*
*
* Required. Existing destination StoragePool name.
*
*
*
* string storage_pool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for storagePool.
*/
com.google.protobuf.ByteString getStoragePoolBytes();
/**
*
*
*
* Desired destination volume resource id. If not specified, source volume's
* resource id will be used.
* This value must start with a lowercase letter followed by up to 62
* lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
*
*
* string volume_id = 2;
*
* @return The volumeId.
*/
java.lang.String getVolumeId();
/**
*
*
*
* Desired destination volume resource id. If not specified, source volume's
* resource id will be used.
* This value must start with a lowercase letter followed by up to 62
* lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
*
*
* string volume_id = 2;
*
* @return The bytes for volumeId.
*/
com.google.protobuf.ByteString getVolumeIdBytes();
/**
*
*
*
* Destination volume's share name. If not specified, source volume's share
* name will be used.
*
*
* string share_name = 3;
*
* @return The shareName.
*/
java.lang.String getShareName();
/**
*
*
*
* Destination volume's share name. If not specified, source volume's share
* name will be used.
*
*
* string share_name = 3;
*
* @return The bytes for shareName.
*/
com.google.protobuf.ByteString getShareNameBytes();
/**
*
*
*
* Description for the destination volume.
*
*
* optional string description = 4;
*
* @return Whether the description field is set.
*/
boolean hasDescription();
/**
*
*
*
* Description for the destination volume.
*
*
* optional string description = 4;
*
* @return The description.
*/
java.lang.String getDescription();
/**
*
*
*
* Description for the destination volume.
*
*
* optional string description = 4;
*
* @return The bytes for description.
*/
com.google.protobuf.ByteString getDescriptionBytes();
}