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

  /**
   *
   *
   * <pre>
   * A list of alternate IDs. The format should be: - E.g. XSS-stable Generic suffix like "stable" is particularly useful if a policy likes to avail newer set of expressions without having to change the policy. A given alias name can't be used for more than one entity set.
   * </pre>
   *
   * <code>repeated string aliases = 159207166;</code>
   *
   * @return A list containing the aliases.
   */
  java.util.List<java.lang.String> getAliasesList();
  /**
   *
   *
   * <pre>
   * A list of alternate IDs. The format should be: - E.g. XSS-stable Generic suffix like "stable" is particularly useful if a policy likes to avail newer set of expressions without having to change the policy. A given alias name can't be used for more than one entity set.
   * </pre>
   *
   * <code>repeated string aliases = 159207166;</code>
   *
   * @return The count of aliases.
   */
  int getAliasesCount();
  /**
   *
   *
   * <pre>
   * A list of alternate IDs. The format should be: - E.g. XSS-stable Generic suffix like "stable" is particularly useful if a policy likes to avail newer set of expressions without having to change the policy. A given alias name can't be used for more than one entity set.
   * </pre>
   *
   * <code>repeated string aliases = 159207166;</code>
   *
   * @param index The index of the element to return.
   * @return The aliases at the given index.
   */
  java.lang.String getAliases(int index);
  /**
   *
   *
   * <pre>
   * A list of alternate IDs. The format should be: - E.g. XSS-stable Generic suffix like "stable" is particularly useful if a policy likes to avail newer set of expressions without having to change the policy. A given alias name can't be used for more than one entity set.
   * </pre>
   *
   * <code>repeated string aliases = 159207166;</code>
   *
   * @param index The index of the value to return.
   * @return The bytes of the aliases at the given index.
   */
  com.google.protobuf.ByteString getAliasesBytes(int index);

  /**
   *
   *
   * <pre>
   * List of available expressions.
   * </pre>
   *
   * <code>repeated .google.cloud.compute.v1.WafExpressionSetExpression expressions = 175554779;
   * </code>
   */
  java.util.List<com.google.cloud.compute.v1.WafExpressionSetExpression> getExpressionsList();
  /**
   *
   *
   * <pre>
   * List of available expressions.
   * </pre>
   *
   * <code>repeated .google.cloud.compute.v1.WafExpressionSetExpression expressions = 175554779;
   * </code>
   */
  com.google.cloud.compute.v1.WafExpressionSetExpression getExpressions(int index);
  /**
   *
   *
   * <pre>
   * List of available expressions.
   * </pre>
   *
   * <code>repeated .google.cloud.compute.v1.WafExpressionSetExpression expressions = 175554779;
   * </code>
   */
  int getExpressionsCount();
  /**
   *
   *
   * <pre>
   * List of available expressions.
   * </pre>
   *
   * <code>repeated .google.cloud.compute.v1.WafExpressionSetExpression expressions = 175554779;
   * </code>
   */
  java.util.List<? extends com.google.cloud.compute.v1.WafExpressionSetExpressionOrBuilder>
      getExpressionsOrBuilderList();
  /**
   *
   *
   * <pre>
   * List of available expressions.
   * </pre>
   *
   * <code>repeated .google.cloud.compute.v1.WafExpressionSetExpression expressions = 175554779;
   * </code>
   */
  com.google.cloud.compute.v1.WafExpressionSetExpressionOrBuilder getExpressionsOrBuilder(
      int index);

  /**
   *
   *
   * <pre>
   * Google specified expression set ID. The format should be: - E.g. XSS-20170329 required
   * </pre>
   *
   * <code>optional string id = 3355;</code>
   *
   * @return Whether the id field is set.
   */
  boolean hasId();
  /**
   *
   *
   * <pre>
   * Google specified expression set ID. The format should be: - E.g. XSS-20170329 required
   * </pre>
   *
   * <code>optional string id = 3355;</code>
   *
   * @return The id.
   */
  java.lang.String getId();
  /**
   *
   *
   * <pre>
   * Google specified expression set ID. The format should be: - E.g. XSS-20170329 required
   * </pre>
   *
   * <code>optional string id = 3355;</code>
   *
   * @return The bytes for id.
   */
  com.google.protobuf.ByteString getIdBytes();
}
