/*
 * Copyright 2020 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/gkemulticloud/v1/aws_resources.proto

package com.google.cloud.gkemulticloud.v1;

public interface AwsVolumeTemplateOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.gkemulticloud.v1.AwsVolumeTemplate)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Optional. The size of the volume, in GiBs.
   * When unspecified, a default value is provided. See the specific reference
   * in the parent resource.
   * </pre>
   *
   * <code>int32 size_gib = 1 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The sizeGib.
   */
  int getSizeGib();

  /**
   *
   *
   * <pre>
   * Optional. Type of the EBS volume.
   * When unspecified, it defaults to GP2 volume.
   * </pre>
   *
   * <code>
   * .google.cloud.gkemulticloud.v1.AwsVolumeTemplate.VolumeType volume_type = 2 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   *
   * @return The enum numeric value on the wire for volumeType.
   */
  int getVolumeTypeValue();
  /**
   *
   *
   * <pre>
   * Optional. Type of the EBS volume.
   * When unspecified, it defaults to GP2 volume.
   * </pre>
   *
   * <code>
   * .google.cloud.gkemulticloud.v1.AwsVolumeTemplate.VolumeType volume_type = 2 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   *
   * @return The volumeType.
   */
  com.google.cloud.gkemulticloud.v1.AwsVolumeTemplate.VolumeType getVolumeType();

  /**
   *
   *
   * <pre>
   * Optional. The number of I/O operations per second (IOPS) to provision for
   * GP3 volume.
   * </pre>
   *
   * <code>int32 iops = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The iops.
   */
  int getIops();

  /**
   *
   *
   * <pre>
   * Optional. The Amazon Resource Name (ARN) of the Customer Managed Key (CMK)
   * used to encrypt AWS EBS volumes.
   * If not specified, the default Amazon managed key associated to
   * the AWS region where this cluster runs will be used.
   * </pre>
   *
   * <code>string kms_key_arn = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The kmsKeyArn.
   */
  java.lang.String getKmsKeyArn();
  /**
   *
   *
   * <pre>
   * Optional. The Amazon Resource Name (ARN) of the Customer Managed Key (CMK)
   * used to encrypt AWS EBS volumes.
   * If not specified, the default Amazon managed key associated to
   * the AWS region where this cluster runs will be used.
   * </pre>
   *
   * <code>string kms_key_arn = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The bytes for kmsKeyArn.
   */
  com.google.protobuf.ByteString getKmsKeyArnBytes();
}
