/*
 * 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/compute/v1/compute.proto

package com.google.cloud.compute.v1;

public interface AllocationSpecificSKUReservationOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.AllocationSpecificSKUReservation)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * [Output Only] Indicates how many instances are actually usable currently.
   * </pre>
   *
   * <code>optional int64 assured_count = 281197645;</code>
   *
   * @return Whether the assuredCount field is set.
   */
  boolean hasAssuredCount();
  /**
   *
   *
   * <pre>
   * [Output Only] Indicates how many instances are actually usable currently.
   * </pre>
   *
   * <code>optional int64 assured_count = 281197645;</code>
   *
   * @return The assuredCount.
   */
  long getAssuredCount();

  /**
   *
   *
   * <pre>
   * Specifies the number of resources that are allocated.
   * </pre>
   *
   * <code>optional int64 count = 94851343;</code>
   *
   * @return Whether the count field is set.
   */
  boolean hasCount();
  /**
   *
   *
   * <pre>
   * Specifies the number of resources that are allocated.
   * </pre>
   *
   * <code>optional int64 count = 94851343;</code>
   *
   * @return The count.
   */
  long getCount();

  /**
   *
   *
   * <pre>
   * [Output Only] Indicates how many instances are in use.
   * </pre>
   *
   * <code>optional int64 in_use_count = 493458877;</code>
   *
   * @return Whether the inUseCount field is set.
   */
  boolean hasInUseCount();
  /**
   *
   *
   * <pre>
   * [Output Only] Indicates how many instances are in use.
   * </pre>
   *
   * <code>optional int64 in_use_count = 493458877;</code>
   *
   * @return The inUseCount.
   */
  long getInUseCount();

  /**
   *
   *
   * <pre>
   * The instance properties for the reservation.
   * </pre>
   *
   * <code>
   * optional .google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties instance_properties = 215355165;
   * </code>
   *
   * @return Whether the instanceProperties field is set.
   */
  boolean hasInstanceProperties();
  /**
   *
   *
   * <pre>
   * The instance properties for the reservation.
   * </pre>
   *
   * <code>
   * optional .google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties instance_properties = 215355165;
   * </code>
   *
   * @return The instanceProperties.
   */
  com.google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties
      getInstanceProperties();
  /**
   *
   *
   * <pre>
   * The instance properties for the reservation.
   * </pre>
   *
   * <code>
   * optional .google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties instance_properties = 215355165;
   * </code>
   */
  com.google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstancePropertiesOrBuilder
      getInstancePropertiesOrBuilder();

  /**
   *
   *
   * <pre>
   * Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
   * </pre>
   *
   * <code>optional string source_instance_template = 332423616;</code>
   *
   * @return Whether the sourceInstanceTemplate field is set.
   */
  boolean hasSourceInstanceTemplate();
  /**
   *
   *
   * <pre>
   * Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
   * </pre>
   *
   * <code>optional string source_instance_template = 332423616;</code>
   *
   * @return The sourceInstanceTemplate.
   */
  java.lang.String getSourceInstanceTemplate();
  /**
   *
   *
   * <pre>
   * Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
   * </pre>
   *
   * <code>optional string source_instance_template = 332423616;</code>
   *
   * @return The bytes for sourceInstanceTemplate.
   */
  com.google.protobuf.ByteString getSourceInstanceTemplateBytes();
}
