/*
 * 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 GuestAttributesOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.GuestAttributes)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * [Output Only] Type of the resource. Always compute#guestAttributes for guest attributes entry.
   * </pre>
   *
   * <code>optional string kind = 3292052;</code>
   *
   * @return Whether the kind field is set.
   */
  boolean hasKind();
  /**
   *
   *
   * <pre>
   * [Output Only] Type of the resource. Always compute#guestAttributes for guest attributes entry.
   * </pre>
   *
   * <code>optional string kind = 3292052;</code>
   *
   * @return The kind.
   */
  java.lang.String getKind();
  /**
   *
   *
   * <pre>
   * [Output Only] Type of the resource. Always compute#guestAttributes for guest attributes entry.
   * </pre>
   *
   * <code>optional string kind = 3292052;</code>
   *
   * @return The bytes for kind.
   */
  com.google.protobuf.ByteString getKindBytes();

  /**
   *
   *
   * <pre>
   * The path to be queried. This can be the default namespace ('') or a nested namespace ('&#92;/') or a specified key ('&#92;/&#92;').
   * </pre>
   *
   * <code>optional string query_path = 368591164;</code>
   *
   * @return Whether the queryPath field is set.
   */
  boolean hasQueryPath();
  /**
   *
   *
   * <pre>
   * The path to be queried. This can be the default namespace ('') or a nested namespace ('&#92;/') or a specified key ('&#92;/&#92;').
   * </pre>
   *
   * <code>optional string query_path = 368591164;</code>
   *
   * @return The queryPath.
   */
  java.lang.String getQueryPath();
  /**
   *
   *
   * <pre>
   * The path to be queried. This can be the default namespace ('') or a nested namespace ('&#92;/') or a specified key ('&#92;/&#92;').
   * </pre>
   *
   * <code>optional string query_path = 368591164;</code>
   *
   * @return The bytes for queryPath.
   */
  com.google.protobuf.ByteString getQueryPathBytes();

  /**
   *
   *
   * <pre>
   * [Output Only] The value of the requested queried path.
   * </pre>
   *
   * <code>optional .google.cloud.compute.v1.GuestAttributesValue query_value = 157570874;</code>
   *
   * @return Whether the queryValue field is set.
   */
  boolean hasQueryValue();
  /**
   *
   *
   * <pre>
   * [Output Only] The value of the requested queried path.
   * </pre>
   *
   * <code>optional .google.cloud.compute.v1.GuestAttributesValue query_value = 157570874;</code>
   *
   * @return The queryValue.
   */
  com.google.cloud.compute.v1.GuestAttributesValue getQueryValue();
  /**
   *
   *
   * <pre>
   * [Output Only] The value of the requested queried path.
   * </pre>
   *
   * <code>optional .google.cloud.compute.v1.GuestAttributesValue query_value = 157570874;</code>
   */
  com.google.cloud.compute.v1.GuestAttributesValueOrBuilder getQueryValueOrBuilder();

  /**
   *
   *
   * <pre>
   * [Output Only] Server-defined URL for this resource.
   * </pre>
   *
   * <code>optional string self_link = 456214797;</code>
   *
   * @return Whether the selfLink field is set.
   */
  boolean hasSelfLink();
  /**
   *
   *
   * <pre>
   * [Output Only] Server-defined URL for this resource.
   * </pre>
   *
   * <code>optional string self_link = 456214797;</code>
   *
   * @return The selfLink.
   */
  java.lang.String getSelfLink();
  /**
   *
   *
   * <pre>
   * [Output Only] Server-defined URL for this resource.
   * </pre>
   *
   * <code>optional string self_link = 456214797;</code>
   *
   * @return The bytes for selfLink.
   */
  com.google.protobuf.ByteString getSelfLinkBytes();

  /**
   *
   *
   * <pre>
   * The key to search for.
   * </pre>
   *
   * <code>optional string variable_key = 164364828;</code>
   *
   * @return Whether the variableKey field is set.
   */
  boolean hasVariableKey();
  /**
   *
   *
   * <pre>
   * The key to search for.
   * </pre>
   *
   * <code>optional string variable_key = 164364828;</code>
   *
   * @return The variableKey.
   */
  java.lang.String getVariableKey();
  /**
   *
   *
   * <pre>
   * The key to search for.
   * </pre>
   *
   * <code>optional string variable_key = 164364828;</code>
   *
   * @return The bytes for variableKey.
   */
  com.google.protobuf.ByteString getVariableKeyBytes();

  /**
   *
   *
   * <pre>
   * [Output Only] The value found for the requested key.
   * </pre>
   *
   * <code>optional string variable_value = 124582382;</code>
   *
   * @return Whether the variableValue field is set.
   */
  boolean hasVariableValue();
  /**
   *
   *
   * <pre>
   * [Output Only] The value found for the requested key.
   * </pre>
   *
   * <code>optional string variable_value = 124582382;</code>
   *
   * @return The variableValue.
   */
  java.lang.String getVariableValue();
  /**
   *
   *
   * <pre>
   * [Output Only] The value found for the requested key.
   * </pre>
   *
   * <code>optional string variable_value = 124582382;</code>
   *
   * @return The bytes for variableValue.
   */
  com.google.protobuf.ByteString getVariableValueBytes();
}
