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

package com.google.cloud.asset.v1;

/**
 *
 *
 * <pre>
 * Search all IAM policies request.
 * </pre>
 *
 * Protobuf type {@code google.cloud.asset.v1.SearchAllIamPoliciesRequest}
 */
public final class SearchAllIamPoliciesRequest extends com.google.protobuf.GeneratedMessageV3
    implements
    // @@protoc_insertion_point(message_implements:google.cloud.asset.v1.SearchAllIamPoliciesRequest)
    SearchAllIamPoliciesRequestOrBuilder {
  private static final long serialVersionUID = 0L;
  // Use SearchAllIamPoliciesRequest.newBuilder() to construct.
  private SearchAllIamPoliciesRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
    super(builder);
  }

  private SearchAllIamPoliciesRequest() {
    scope_ = "";
    query_ = "";
    pageToken_ = "";
    assetTypes_ = com.google.protobuf.LazyStringArrayList.EMPTY;
    orderBy_ = "";
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
    return new SearchAllIamPoliciesRequest();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
    return this.unknownFields;
  }

  public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    return com.google.cloud.asset.v1.AssetServiceProto
        .internal_static_google_cloud_asset_v1_SearchAllIamPoliciesRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.google.cloud.asset.v1.AssetServiceProto
        .internal_static_google_cloud_asset_v1_SearchAllIamPoliciesRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.google.cloud.asset.v1.SearchAllIamPoliciesRequest.class,
            com.google.cloud.asset.v1.SearchAllIamPoliciesRequest.Builder.class);
  }

  public static final int SCOPE_FIELD_NUMBER = 1;

  @SuppressWarnings("serial")
  private volatile java.lang.Object scope_ = "";
  /**
   *
   *
   * <pre>
   * Required. A scope can be a project, a folder, or an organization. The
   * search is limited to the IAM policies within the `scope`. The caller must
   * be granted the
   * [`cloudasset.assets.searchAllIamPolicies`](https://cloud.google.com/asset-inventory/docs/access-control#required_permissions)
   * permission on the desired scope.
   * The allowed values are:
   * * projects/{PROJECT_ID} (e.g., "projects/foo-bar")
   * * projects/{PROJECT_NUMBER} (e.g., "projects/12345678")
   * * folders/{FOLDER_NUMBER} (e.g., "folders/1234567")
   * * organizations/{ORGANIZATION_NUMBER} (e.g., "organizations/123456")
   * </pre>
   *
   * <code>string scope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
   *
   * @return The scope.
   */
  @java.lang.Override
  public java.lang.String getScope() {
    java.lang.Object ref = scope_;
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      scope_ = s;
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * Required. A scope can be a project, a folder, or an organization. The
   * search is limited to the IAM policies within the `scope`. The caller must
   * be granted the
   * [`cloudasset.assets.searchAllIamPolicies`](https://cloud.google.com/asset-inventory/docs/access-control#required_permissions)
   * permission on the desired scope.
   * The allowed values are:
   * * projects/{PROJECT_ID} (e.g., "projects/foo-bar")
   * * projects/{PROJECT_NUMBER} (e.g., "projects/12345678")
   * * folders/{FOLDER_NUMBER} (e.g., "folders/1234567")
   * * organizations/{ORGANIZATION_NUMBER} (e.g., "organizations/123456")
   * </pre>
   *
   * <code>string scope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
   *
   * @return The bytes for scope.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getScopeBytes() {
    java.lang.Object ref = scope_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      scope_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int QUERY_FIELD_NUMBER = 2;

  @SuppressWarnings("serial")
  private volatile java.lang.Object query_ = "";
  /**
   *
   *
   * <pre>
   * Optional. The query statement. See [how to construct a
   * query](https://cloud.google.com/asset-inventory/docs/searching-iam-policies#how_to_construct_a_query)
   * for more information. If not specified or empty, it will search all the
   * IAM policies within the specified `scope`. Note that the query string is
   * compared against each IAM policy binding, including its principals,
   * roles, and IAM conditions. The returned IAM policies will only
   * contain the bindings that match your query. To learn more about the IAM
   * policy structure, see the [IAM policy
   * documentation](https://cloud.google.com/iam/help/allow-policies/structure).
   * Examples:
   * * `policy:amy&#64;gmail.com` to find IAM policy bindings that specify user
   *   "amy&#64;gmail.com".
   * * `policy:roles/compute.admin` to find IAM policy bindings that specify
   *   the Compute Admin role.
   * * `policy:comp*` to find IAM policy bindings that contain "comp" as a
   *   prefix of any word in the binding.
   * * `policy.role.permissions:storage.buckets.update` to find IAM policy
   *   bindings that specify a role containing "storage.buckets.update"
   *   permission. Note that if callers don't have `iam.roles.get` access to a
   *   role's included permissions, policy bindings that specify this role will
   *   be dropped from the search results.
   * * `policy.role.permissions:upd*` to find IAM policy bindings that specify a
   *   role containing "upd" as a prefix of any word in the role permission.
   *   Note that if callers don't have `iam.roles.get` access to a role's
   *   included permissions, policy bindings that specify this role will be
   *   dropped from the search results.
   * * `resource:organizations/123456` to find IAM policy bindings
   *   that are set on "organizations/123456".
   * * `resource=//cloudresourcemanager.googleapis.com/projects/myproject` to
   *   find IAM policy bindings that are set on the project named "myproject".
   * * `Important` to find IAM policy bindings that contain "Important" as a
   *   word in any of the searchable fields (except for the included
   *   permissions).
   * * `resource:(instance1 OR instance2) policy:amy` to find
   *   IAM policy bindings that are set on resources "instance1" or
   *   "instance2" and also specify user "amy".
   * * `roles:roles/compute.admin` to find IAM policy bindings that specify the
   *   Compute Admin role.
   * * `memberTypes:user` to find IAM policy bindings that contain the
   *   principal type "user".
   * </pre>
   *
   * <code>string query = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The query.
   */
  @java.lang.Override
  public java.lang.String getQuery() {
    java.lang.Object ref = query_;
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      query_ = s;
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * Optional. The query statement. See [how to construct a
   * query](https://cloud.google.com/asset-inventory/docs/searching-iam-policies#how_to_construct_a_query)
   * for more information. If not specified or empty, it will search all the
   * IAM policies within the specified `scope`. Note that the query string is
   * compared against each IAM policy binding, including its principals,
   * roles, and IAM conditions. The returned IAM policies will only
   * contain the bindings that match your query. To learn more about the IAM
   * policy structure, see the [IAM policy
   * documentation](https://cloud.google.com/iam/help/allow-policies/structure).
   * Examples:
   * * `policy:amy&#64;gmail.com` to find IAM policy bindings that specify user
   *   "amy&#64;gmail.com".
   * * `policy:roles/compute.admin` to find IAM policy bindings that specify
   *   the Compute Admin role.
   * * `policy:comp*` to find IAM policy bindings that contain "comp" as a
   *   prefix of any word in the binding.
   * * `policy.role.permissions:storage.buckets.update` to find IAM policy
   *   bindings that specify a role containing "storage.buckets.update"
   *   permission. Note that if callers don't have `iam.roles.get` access to a
   *   role's included permissions, policy bindings that specify this role will
   *   be dropped from the search results.
   * * `policy.role.permissions:upd*` to find IAM policy bindings that specify a
   *   role containing "upd" as a prefix of any word in the role permission.
   *   Note that if callers don't have `iam.roles.get` access to a role's
   *   included permissions, policy bindings that specify this role will be
   *   dropped from the search results.
   * * `resource:organizations/123456` to find IAM policy bindings
   *   that are set on "organizations/123456".
   * * `resource=//cloudresourcemanager.googleapis.com/projects/myproject` to
   *   find IAM policy bindings that are set on the project named "myproject".
   * * `Important` to find IAM policy bindings that contain "Important" as a
   *   word in any of the searchable fields (except for the included
   *   permissions).
   * * `resource:(instance1 OR instance2) policy:amy` to find
   *   IAM policy bindings that are set on resources "instance1" or
   *   "instance2" and also specify user "amy".
   * * `roles:roles/compute.admin` to find IAM policy bindings that specify the
   *   Compute Admin role.
   * * `memberTypes:user` to find IAM policy bindings that contain the
   *   principal type "user".
   * </pre>
   *
   * <code>string query = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The bytes for query.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getQueryBytes() {
    java.lang.Object ref = query_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      query_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int PAGE_SIZE_FIELD_NUMBER = 3;
  private int pageSize_ = 0;
  /**
   *
   *
   * <pre>
   * Optional. The page size for search result pagination. Page size is capped
   * at 500 even if a larger value is given. If set to zero, server will pick an
   * appropriate default. Returned results may be fewer than requested. When
   * this happens, there could be more results as long as `next_page_token` is
   * returned.
   * </pre>
   *
   * <code>int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The pageSize.
   */
  @java.lang.Override
  public int getPageSize() {
    return pageSize_;
  }

  public static final int PAGE_TOKEN_FIELD_NUMBER = 4;

  @SuppressWarnings("serial")
  private volatile java.lang.Object pageToken_ = "";
  /**
   *
   *
   * <pre>
   * Optional. If present, retrieve the next batch of results from the preceding
   * call to this method. `page_token` must be the value of `next_page_token`
   * from the previous response. The values of all other method parameters must
   * be identical to those in the previous call.
   * </pre>
   *
   * <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The pageToken.
   */
  @java.lang.Override
  public java.lang.String getPageToken() {
    java.lang.Object ref = pageToken_;
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      pageToken_ = s;
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * Optional. If present, retrieve the next batch of results from the preceding
   * call to this method. `page_token` must be the value of `next_page_token`
   * from the previous response. The values of all other method parameters must
   * be identical to those in the previous call.
   * </pre>
   *
   * <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The bytes for pageToken.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getPageTokenBytes() {
    java.lang.Object ref = pageToken_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      pageToken_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int ASSET_TYPES_FIELD_NUMBER = 5;

  @SuppressWarnings("serial")
  private com.google.protobuf.LazyStringList assetTypes_;
  /**
   *
   *
   * <pre>
   * Optional. A list of asset types that the IAM policies are attached to. If
   * empty, it will search the IAM policies that are attached to all the
   * [searchable asset
   * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
   * Regular expressions are also supported. For example:
   * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
   * starts with "compute.googleapis.com".
   * * ".*Instance" snapshots IAM policies attached to asset type ends with
   * "Instance".
   * * ".*Instance.*" snapshots IAM policies attached to asset type contains
   * "Instance".
   * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
   * regular expression syntax. If the regular expression does not match any
   * supported asset type, an INVALID_ARGUMENT error will be returned.
   * </pre>
   *
   * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return A list containing the assetTypes.
   */
  public com.google.protobuf.ProtocolStringList getAssetTypesList() {
    return assetTypes_;
  }
  /**
   *
   *
   * <pre>
   * Optional. A list of asset types that the IAM policies are attached to. If
   * empty, it will search the IAM policies that are attached to all the
   * [searchable asset
   * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
   * Regular expressions are also supported. For example:
   * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
   * starts with "compute.googleapis.com".
   * * ".*Instance" snapshots IAM policies attached to asset type ends with
   * "Instance".
   * * ".*Instance.*" snapshots IAM policies attached to asset type contains
   * "Instance".
   * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
   * regular expression syntax. If the regular expression does not match any
   * supported asset type, an INVALID_ARGUMENT error will be returned.
   * </pre>
   *
   * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The count of assetTypes.
   */
  public int getAssetTypesCount() {
    return assetTypes_.size();
  }
  /**
   *
   *
   * <pre>
   * Optional. A list of asset types that the IAM policies are attached to. If
   * empty, it will search the IAM policies that are attached to all the
   * [searchable asset
   * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
   * Regular expressions are also supported. For example:
   * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
   * starts with "compute.googleapis.com".
   * * ".*Instance" snapshots IAM policies attached to asset type ends with
   * "Instance".
   * * ".*Instance.*" snapshots IAM policies attached to asset type contains
   * "Instance".
   * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
   * regular expression syntax. If the regular expression does not match any
   * supported asset type, an INVALID_ARGUMENT error will be returned.
   * </pre>
   *
   * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @param index The index of the element to return.
   * @return The assetTypes at the given index.
   */
  public java.lang.String getAssetTypes(int index) {
    return assetTypes_.get(index);
  }
  /**
   *
   *
   * <pre>
   * Optional. A list of asset types that the IAM policies are attached to. If
   * empty, it will search the IAM policies that are attached to all the
   * [searchable asset
   * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
   * Regular expressions are also supported. For example:
   * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
   * starts with "compute.googleapis.com".
   * * ".*Instance" snapshots IAM policies attached to asset type ends with
   * "Instance".
   * * ".*Instance.*" snapshots IAM policies attached to asset type contains
   * "Instance".
   * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
   * regular expression syntax. If the regular expression does not match any
   * supported asset type, an INVALID_ARGUMENT error will be returned.
   * </pre>
   *
   * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @param index The index of the value to return.
   * @return The bytes of the assetTypes at the given index.
   */
  public com.google.protobuf.ByteString getAssetTypesBytes(int index) {
    return assetTypes_.getByteString(index);
  }

  public static final int ORDER_BY_FIELD_NUMBER = 7;

  @SuppressWarnings("serial")
  private volatile java.lang.Object orderBy_ = "";
  /**
   *
   *
   * <pre>
   * Optional. A comma-separated list of fields specifying the sorting order of
   * the results. The default order is ascending. Add " DESC" after the field
   * name to indicate descending order. Redundant space characters are ignored.
   * Example: "assetType DESC, resource".
   * Only singular primitive fields in the response are sortable:
   *   * resource
   *   * assetType
   *   * project
   * All the other fields such as repeated fields (e.g., `folders`) and
   * non-primitive fields (e.g., `policy`) are not supported.
   * </pre>
   *
   * <code>string order_by = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The orderBy.
   */
  @java.lang.Override
  public java.lang.String getOrderBy() {
    java.lang.Object ref = orderBy_;
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      orderBy_ = s;
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * Optional. A comma-separated list of fields specifying the sorting order of
   * the results. The default order is ascending. Add " DESC" after the field
   * name to indicate descending order. Redundant space characters are ignored.
   * Example: "assetType DESC, resource".
   * Only singular primitive fields in the response are sortable:
   *   * resource
   *   * assetType
   *   * project
   * All the other fields such as repeated fields (e.g., `folders`) and
   * non-primitive fields (e.g., `policy`) are not supported.
   * </pre>
   *
   * <code>string order_by = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The bytes for orderBy.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getOrderByBytes() {
    java.lang.Object ref = orderBy_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      orderBy_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  private byte memoizedIsInitialized = -1;

  @java.lang.Override
  public final boolean isInitialized() {
    byte isInitialized = memoizedIsInitialized;
    if (isInitialized == 1) return true;
    if (isInitialized == 0) return false;

    memoizedIsInitialized = 1;
    return true;
  }

  @java.lang.Override
  public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(scope_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 1, scope_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(query_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 2, query_);
    }
    if (pageSize_ != 0) {
      output.writeInt32(3, pageSize_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 4, pageToken_);
    }
    for (int i = 0; i < assetTypes_.size(); i++) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 5, assetTypes_.getRaw(i));
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(orderBy_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 7, orderBy_);
    }
    getUnknownFields().writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(scope_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, scope_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(query_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, query_);
    }
    if (pageSize_ != 0) {
      size += com.google.protobuf.CodedOutputStream.computeInt32Size(3, pageSize_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, pageToken_);
    }
    {
      int dataSize = 0;
      for (int i = 0; i < assetTypes_.size(); i++) {
        dataSize += computeStringSizeNoTag(assetTypes_.getRaw(i));
      }
      size += dataSize;
      size += 1 * getAssetTypesList().size();
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(orderBy_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, orderBy_);
    }
    size += getUnknownFields().getSerializedSize();
    memoizedSize = size;
    return size;
  }

  @java.lang.Override
  public boolean equals(final java.lang.Object obj) {
    if (obj == this) {
      return true;
    }
    if (!(obj instanceof com.google.cloud.asset.v1.SearchAllIamPoliciesRequest)) {
      return super.equals(obj);
    }
    com.google.cloud.asset.v1.SearchAllIamPoliciesRequest other =
        (com.google.cloud.asset.v1.SearchAllIamPoliciesRequest) obj;

    if (!getScope().equals(other.getScope())) return false;
    if (!getQuery().equals(other.getQuery())) return false;
    if (getPageSize() != other.getPageSize()) return false;
    if (!getPageToken().equals(other.getPageToken())) return false;
    if (!getAssetTypesList().equals(other.getAssetTypesList())) return false;
    if (!getOrderBy().equals(other.getOrderBy())) return false;
    if (!getUnknownFields().equals(other.getUnknownFields())) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    hash = (37 * hash) + SCOPE_FIELD_NUMBER;
    hash = (53 * hash) + getScope().hashCode();
    hash = (37 * hash) + QUERY_FIELD_NUMBER;
    hash = (53 * hash) + getQuery().hashCode();
    hash = (37 * hash) + PAGE_SIZE_FIELD_NUMBER;
    hash = (53 * hash) + getPageSize();
    hash = (37 * hash) + PAGE_TOKEN_FIELD_NUMBER;
    hash = (53 * hash) + getPageToken().hashCode();
    if (getAssetTypesCount() > 0) {
      hash = (37 * hash) + ASSET_TYPES_FIELD_NUMBER;
      hash = (53 * hash) + getAssetTypesList().hashCode();
    }
    hash = (37 * hash) + ORDER_BY_FIELD_NUMBER;
    hash = (53 * hash) + getOrderBy().hashCode();
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      java.io.InputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
        PARSER, input, extensionRegistry);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseDelimitedFrom(
      java.io.InputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseDelimitedFrom(
      java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
        PARSER, input, extensionRegistry);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      com.google.protobuf.CodedInputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest parseFrom(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
        PARSER, input, extensionRegistry);
  }

  @java.lang.Override
  public Builder newBuilderForType() {
    return newBuilder();
  }

  public static Builder newBuilder() {
    return DEFAULT_INSTANCE.toBuilder();
  }

  public static Builder newBuilder(
      com.google.cloud.asset.v1.SearchAllIamPoliciesRequest prototype) {
    return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
  }

  @java.lang.Override
  public Builder toBuilder() {
    return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
  }

  @java.lang.Override
  protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
    Builder builder = new Builder(parent);
    return builder;
  }
  /**
   *
   *
   * <pre>
   * Search all IAM policies request.
   * </pre>
   *
   * Protobuf type {@code google.cloud.asset.v1.SearchAllIamPoliciesRequest}
   */
  public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder>
      implements
      // @@protoc_insertion_point(builder_implements:google.cloud.asset.v1.SearchAllIamPoliciesRequest)
      com.google.cloud.asset.v1.SearchAllIamPoliciesRequestOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      return com.google.cloud.asset.v1.AssetServiceProto
          .internal_static_google_cloud_asset_v1_SearchAllIamPoliciesRequest_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.google.cloud.asset.v1.AssetServiceProto
          .internal_static_google_cloud_asset_v1_SearchAllIamPoliciesRequest_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.google.cloud.asset.v1.SearchAllIamPoliciesRequest.class,
              com.google.cloud.asset.v1.SearchAllIamPoliciesRequest.Builder.class);
    }

    // Construct using com.google.cloud.asset.v1.SearchAllIamPoliciesRequest.newBuilder()
    private Builder() {}

    private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
    }

    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      scope_ = "";
      query_ = "";
      pageSize_ = 0;
      pageToken_ = "";
      assetTypes_ = com.google.protobuf.LazyStringArrayList.EMPTY;
      bitField0_ = (bitField0_ & ~0x00000010);
      orderBy_ = "";
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
      return com.google.cloud.asset.v1.AssetServiceProto
          .internal_static_google_cloud_asset_v1_SearchAllIamPoliciesRequest_descriptor;
    }

    @java.lang.Override
    public com.google.cloud.asset.v1.SearchAllIamPoliciesRequest getDefaultInstanceForType() {
      return com.google.cloud.asset.v1.SearchAllIamPoliciesRequest.getDefaultInstance();
    }

    @java.lang.Override
    public com.google.cloud.asset.v1.SearchAllIamPoliciesRequest build() {
      com.google.cloud.asset.v1.SearchAllIamPoliciesRequest result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.google.cloud.asset.v1.SearchAllIamPoliciesRequest buildPartial() {
      com.google.cloud.asset.v1.SearchAllIamPoliciesRequest result =
          new com.google.cloud.asset.v1.SearchAllIamPoliciesRequest(this);
      buildPartialRepeatedFields(result);
      if (bitField0_ != 0) {
        buildPartial0(result);
      }
      onBuilt();
      return result;
    }

    private void buildPartialRepeatedFields(
        com.google.cloud.asset.v1.SearchAllIamPoliciesRequest result) {
      if (((bitField0_ & 0x00000010) != 0)) {
        assetTypes_ = assetTypes_.getUnmodifiableView();
        bitField0_ = (bitField0_ & ~0x00000010);
      }
      result.assetTypes_ = assetTypes_;
    }

    private void buildPartial0(com.google.cloud.asset.v1.SearchAllIamPoliciesRequest result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.scope_ = scope_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.query_ = query_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.pageSize_ = pageSize_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.pageToken_ = pageToken_;
      }
      if (((from_bitField0_ & 0x00000020) != 0)) {
        result.orderBy_ = orderBy_;
      }
    }

    @java.lang.Override
    public Builder clone() {
      return super.clone();
    }

    @java.lang.Override
    public Builder setField(
        com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
      return super.setField(field, value);
    }

    @java.lang.Override
    public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
      return super.clearField(field);
    }

    @java.lang.Override
    public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
      return super.clearOneof(oneof);
    }

    @java.lang.Override
    public Builder setRepeatedField(
        com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
      return super.setRepeatedField(field, index, value);
    }

    @java.lang.Override
    public Builder addRepeatedField(
        com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
      return super.addRepeatedField(field, value);
    }

    @java.lang.Override
    public Builder mergeFrom(com.google.protobuf.Message other) {
      if (other instanceof com.google.cloud.asset.v1.SearchAllIamPoliciesRequest) {
        return mergeFrom((com.google.cloud.asset.v1.SearchAllIamPoliciesRequest) other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.google.cloud.asset.v1.SearchAllIamPoliciesRequest other) {
      if (other == com.google.cloud.asset.v1.SearchAllIamPoliciesRequest.getDefaultInstance())
        return this;
      if (!other.getScope().isEmpty()) {
        scope_ = other.scope_;
        bitField0_ |= 0x00000001;
        onChanged();
      }
      if (!other.getQuery().isEmpty()) {
        query_ = other.query_;
        bitField0_ |= 0x00000002;
        onChanged();
      }
      if (other.getPageSize() != 0) {
        setPageSize(other.getPageSize());
      }
      if (!other.getPageToken().isEmpty()) {
        pageToken_ = other.pageToken_;
        bitField0_ |= 0x00000008;
        onChanged();
      }
      if (!other.assetTypes_.isEmpty()) {
        if (assetTypes_.isEmpty()) {
          assetTypes_ = other.assetTypes_;
          bitField0_ = (bitField0_ & ~0x00000010);
        } else {
          ensureAssetTypesIsMutable();
          assetTypes_.addAll(other.assetTypes_);
        }
        onChanged();
      }
      if (!other.getOrderBy().isEmpty()) {
        orderBy_ = other.orderBy_;
        bitField0_ |= 0x00000020;
        onChanged();
      }
      this.mergeUnknownFields(other.getUnknownFields());
      onChanged();
      return this;
    }

    @java.lang.Override
    public final boolean isInitialized() {
      return true;
    }

    @java.lang.Override
    public Builder mergeFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      if (extensionRegistry == null) {
        throw new java.lang.NullPointerException();
      }
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            case 10:
              {
                scope_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000001;
                break;
              } // case 10
            case 18:
              {
                query_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000002;
                break;
              } // case 18
            case 24:
              {
                pageSize_ = input.readInt32();
                bitField0_ |= 0x00000004;
                break;
              } // case 24
            case 34:
              {
                pageToken_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000008;
                break;
              } // case 34
            case 42:
              {
                java.lang.String s = input.readStringRequireUtf8();
                ensureAssetTypesIsMutable();
                assetTypes_.add(s);
                break;
              } // case 42
            case 58:
              {
                orderBy_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000020;
                break;
              } // case 58
            default:
              {
                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                  done = true; // was an endgroup tag
                }
                break;
              } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }

    private int bitField0_;

    private java.lang.Object scope_ = "";
    /**
     *
     *
     * <pre>
     * Required. A scope can be a project, a folder, or an organization. The
     * search is limited to the IAM policies within the `scope`. The caller must
     * be granted the
     * [`cloudasset.assets.searchAllIamPolicies`](https://cloud.google.com/asset-inventory/docs/access-control#required_permissions)
     * permission on the desired scope.
     * The allowed values are:
     * * projects/{PROJECT_ID} (e.g., "projects/foo-bar")
     * * projects/{PROJECT_NUMBER} (e.g., "projects/12345678")
     * * folders/{FOLDER_NUMBER} (e.g., "folders/1234567")
     * * organizations/{ORGANIZATION_NUMBER} (e.g., "organizations/123456")
     * </pre>
     *
     * <code>string scope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
     *
     * @return The scope.
     */
    public java.lang.String getScope() {
      java.lang.Object ref = scope_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        scope_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Required. A scope can be a project, a folder, or an organization. The
     * search is limited to the IAM policies within the `scope`. The caller must
     * be granted the
     * [`cloudasset.assets.searchAllIamPolicies`](https://cloud.google.com/asset-inventory/docs/access-control#required_permissions)
     * permission on the desired scope.
     * The allowed values are:
     * * projects/{PROJECT_ID} (e.g., "projects/foo-bar")
     * * projects/{PROJECT_NUMBER} (e.g., "projects/12345678")
     * * folders/{FOLDER_NUMBER} (e.g., "folders/1234567")
     * * organizations/{ORGANIZATION_NUMBER} (e.g., "organizations/123456")
     * </pre>
     *
     * <code>string scope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
     *
     * @return The bytes for scope.
     */
    public com.google.protobuf.ByteString getScopeBytes() {
      java.lang.Object ref = scope_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        scope_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Required. A scope can be a project, a folder, or an organization. The
     * search is limited to the IAM policies within the `scope`. The caller must
     * be granted the
     * [`cloudasset.assets.searchAllIamPolicies`](https://cloud.google.com/asset-inventory/docs/access-control#required_permissions)
     * permission on the desired scope.
     * The allowed values are:
     * * projects/{PROJECT_ID} (e.g., "projects/foo-bar")
     * * projects/{PROJECT_NUMBER} (e.g., "projects/12345678")
     * * folders/{FOLDER_NUMBER} (e.g., "folders/1234567")
     * * organizations/{ORGANIZATION_NUMBER} (e.g., "organizations/123456")
     * </pre>
     *
     * <code>string scope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
     *
     * @param value The scope to set.
     * @return This builder for chaining.
     */
    public Builder setScope(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      scope_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Required. A scope can be a project, a folder, or an organization. The
     * search is limited to the IAM policies within the `scope`. The caller must
     * be granted the
     * [`cloudasset.assets.searchAllIamPolicies`](https://cloud.google.com/asset-inventory/docs/access-control#required_permissions)
     * permission on the desired scope.
     * The allowed values are:
     * * projects/{PROJECT_ID} (e.g., "projects/foo-bar")
     * * projects/{PROJECT_NUMBER} (e.g., "projects/12345678")
     * * folders/{FOLDER_NUMBER} (e.g., "folders/1234567")
     * * organizations/{ORGANIZATION_NUMBER} (e.g., "organizations/123456")
     * </pre>
     *
     * <code>string scope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearScope() {
      scope_ = getDefaultInstance().getScope();
      bitField0_ = (bitField0_ & ~0x00000001);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Required. A scope can be a project, a folder, or an organization. The
     * search is limited to the IAM policies within the `scope`. The caller must
     * be granted the
     * [`cloudasset.assets.searchAllIamPolicies`](https://cloud.google.com/asset-inventory/docs/access-control#required_permissions)
     * permission on the desired scope.
     * The allowed values are:
     * * projects/{PROJECT_ID} (e.g., "projects/foo-bar")
     * * projects/{PROJECT_NUMBER} (e.g., "projects/12345678")
     * * folders/{FOLDER_NUMBER} (e.g., "folders/1234567")
     * * organizations/{ORGANIZATION_NUMBER} (e.g., "organizations/123456")
     * </pre>
     *
     * <code>string scope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
     *
     * @param value The bytes for scope to set.
     * @return This builder for chaining.
     */
    public Builder setScopeBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      scope_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }

    private java.lang.Object query_ = "";
    /**
     *
     *
     * <pre>
     * Optional. The query statement. See [how to construct a
     * query](https://cloud.google.com/asset-inventory/docs/searching-iam-policies#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * IAM policies within the specified `scope`. Note that the query string is
     * compared against each IAM policy binding, including its principals,
     * roles, and IAM conditions. The returned IAM policies will only
     * contain the bindings that match your query. To learn more about the IAM
     * policy structure, see the [IAM policy
     * documentation](https://cloud.google.com/iam/help/allow-policies/structure).
     * Examples:
     * * `policy:amy&#64;gmail.com` to find IAM policy bindings that specify user
     *   "amy&#64;gmail.com".
     * * `policy:roles/compute.admin` to find IAM policy bindings that specify
     *   the Compute Admin role.
     * * `policy:comp*` to find IAM policy bindings that contain "comp" as a
     *   prefix of any word in the binding.
     * * `policy.role.permissions:storage.buckets.update` to find IAM policy
     *   bindings that specify a role containing "storage.buckets.update"
     *   permission. Note that if callers don't have `iam.roles.get` access to a
     *   role's included permissions, policy bindings that specify this role will
     *   be dropped from the search results.
     * * `policy.role.permissions:upd*` to find IAM policy bindings that specify a
     *   role containing "upd" as a prefix of any word in the role permission.
     *   Note that if callers don't have `iam.roles.get` access to a role's
     *   included permissions, policy bindings that specify this role will be
     *   dropped from the search results.
     * * `resource:organizations/123456` to find IAM policy bindings
     *   that are set on "organizations/123456".
     * * `resource=//cloudresourcemanager.googleapis.com/projects/myproject` to
     *   find IAM policy bindings that are set on the project named "myproject".
     * * `Important` to find IAM policy bindings that contain "Important" as a
     *   word in any of the searchable fields (except for the included
     *   permissions).
     * * `resource:(instance1 OR instance2) policy:amy` to find
     *   IAM policy bindings that are set on resources "instance1" or
     *   "instance2" and also specify user "amy".
     * * `roles:roles/compute.admin` to find IAM policy bindings that specify the
     *   Compute Admin role.
     * * `memberTypes:user` to find IAM policy bindings that contain the
     *   principal type "user".
     * </pre>
     *
     * <code>string query = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The query.
     */
    public java.lang.String getQuery() {
      java.lang.Object ref = query_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        query_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. The query statement. See [how to construct a
     * query](https://cloud.google.com/asset-inventory/docs/searching-iam-policies#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * IAM policies within the specified `scope`. Note that the query string is
     * compared against each IAM policy binding, including its principals,
     * roles, and IAM conditions. The returned IAM policies will only
     * contain the bindings that match your query. To learn more about the IAM
     * policy structure, see the [IAM policy
     * documentation](https://cloud.google.com/iam/help/allow-policies/structure).
     * Examples:
     * * `policy:amy&#64;gmail.com` to find IAM policy bindings that specify user
     *   "amy&#64;gmail.com".
     * * `policy:roles/compute.admin` to find IAM policy bindings that specify
     *   the Compute Admin role.
     * * `policy:comp*` to find IAM policy bindings that contain "comp" as a
     *   prefix of any word in the binding.
     * * `policy.role.permissions:storage.buckets.update` to find IAM policy
     *   bindings that specify a role containing "storage.buckets.update"
     *   permission. Note that if callers don't have `iam.roles.get` access to a
     *   role's included permissions, policy bindings that specify this role will
     *   be dropped from the search results.
     * * `policy.role.permissions:upd*` to find IAM policy bindings that specify a
     *   role containing "upd" as a prefix of any word in the role permission.
     *   Note that if callers don't have `iam.roles.get` access to a role's
     *   included permissions, policy bindings that specify this role will be
     *   dropped from the search results.
     * * `resource:organizations/123456` to find IAM policy bindings
     *   that are set on "organizations/123456".
     * * `resource=//cloudresourcemanager.googleapis.com/projects/myproject` to
     *   find IAM policy bindings that are set on the project named "myproject".
     * * `Important` to find IAM policy bindings that contain "Important" as a
     *   word in any of the searchable fields (except for the included
     *   permissions).
     * * `resource:(instance1 OR instance2) policy:amy` to find
     *   IAM policy bindings that are set on resources "instance1" or
     *   "instance2" and also specify user "amy".
     * * `roles:roles/compute.admin` to find IAM policy bindings that specify the
     *   Compute Admin role.
     * * `memberTypes:user` to find IAM policy bindings that contain the
     *   principal type "user".
     * </pre>
     *
     * <code>string query = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The bytes for query.
     */
    public com.google.protobuf.ByteString getQueryBytes() {
      java.lang.Object ref = query_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        query_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. The query statement. See [how to construct a
     * query](https://cloud.google.com/asset-inventory/docs/searching-iam-policies#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * IAM policies within the specified `scope`. Note that the query string is
     * compared against each IAM policy binding, including its principals,
     * roles, and IAM conditions. The returned IAM policies will only
     * contain the bindings that match your query. To learn more about the IAM
     * policy structure, see the [IAM policy
     * documentation](https://cloud.google.com/iam/help/allow-policies/structure).
     * Examples:
     * * `policy:amy&#64;gmail.com` to find IAM policy bindings that specify user
     *   "amy&#64;gmail.com".
     * * `policy:roles/compute.admin` to find IAM policy bindings that specify
     *   the Compute Admin role.
     * * `policy:comp*` to find IAM policy bindings that contain "comp" as a
     *   prefix of any word in the binding.
     * * `policy.role.permissions:storage.buckets.update` to find IAM policy
     *   bindings that specify a role containing "storage.buckets.update"
     *   permission. Note that if callers don't have `iam.roles.get` access to a
     *   role's included permissions, policy bindings that specify this role will
     *   be dropped from the search results.
     * * `policy.role.permissions:upd*` to find IAM policy bindings that specify a
     *   role containing "upd" as a prefix of any word in the role permission.
     *   Note that if callers don't have `iam.roles.get` access to a role's
     *   included permissions, policy bindings that specify this role will be
     *   dropped from the search results.
     * * `resource:organizations/123456` to find IAM policy bindings
     *   that are set on "organizations/123456".
     * * `resource=//cloudresourcemanager.googleapis.com/projects/myproject` to
     *   find IAM policy bindings that are set on the project named "myproject".
     * * `Important` to find IAM policy bindings that contain "Important" as a
     *   word in any of the searchable fields (except for the included
     *   permissions).
     * * `resource:(instance1 OR instance2) policy:amy` to find
     *   IAM policy bindings that are set on resources "instance1" or
     *   "instance2" and also specify user "amy".
     * * `roles:roles/compute.admin` to find IAM policy bindings that specify the
     *   Compute Admin role.
     * * `memberTypes:user` to find IAM policy bindings that contain the
     *   principal type "user".
     * </pre>
     *
     * <code>string query = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The query to set.
     * @return This builder for chaining.
     */
    public Builder setQuery(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      query_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. The query statement. See [how to construct a
     * query](https://cloud.google.com/asset-inventory/docs/searching-iam-policies#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * IAM policies within the specified `scope`. Note that the query string is
     * compared against each IAM policy binding, including its principals,
     * roles, and IAM conditions. The returned IAM policies will only
     * contain the bindings that match your query. To learn more about the IAM
     * policy structure, see the [IAM policy
     * documentation](https://cloud.google.com/iam/help/allow-policies/structure).
     * Examples:
     * * `policy:amy&#64;gmail.com` to find IAM policy bindings that specify user
     *   "amy&#64;gmail.com".
     * * `policy:roles/compute.admin` to find IAM policy bindings that specify
     *   the Compute Admin role.
     * * `policy:comp*` to find IAM policy bindings that contain "comp" as a
     *   prefix of any word in the binding.
     * * `policy.role.permissions:storage.buckets.update` to find IAM policy
     *   bindings that specify a role containing "storage.buckets.update"
     *   permission. Note that if callers don't have `iam.roles.get` access to a
     *   role's included permissions, policy bindings that specify this role will
     *   be dropped from the search results.
     * * `policy.role.permissions:upd*` to find IAM policy bindings that specify a
     *   role containing "upd" as a prefix of any word in the role permission.
     *   Note that if callers don't have `iam.roles.get` access to a role's
     *   included permissions, policy bindings that specify this role will be
     *   dropped from the search results.
     * * `resource:organizations/123456` to find IAM policy bindings
     *   that are set on "organizations/123456".
     * * `resource=//cloudresourcemanager.googleapis.com/projects/myproject` to
     *   find IAM policy bindings that are set on the project named "myproject".
     * * `Important` to find IAM policy bindings that contain "Important" as a
     *   word in any of the searchable fields (except for the included
     *   permissions).
     * * `resource:(instance1 OR instance2) policy:amy` to find
     *   IAM policy bindings that are set on resources "instance1" or
     *   "instance2" and also specify user "amy".
     * * `roles:roles/compute.admin` to find IAM policy bindings that specify the
     *   Compute Admin role.
     * * `memberTypes:user` to find IAM policy bindings that contain the
     *   principal type "user".
     * </pre>
     *
     * <code>string query = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearQuery() {
      query_ = getDefaultInstance().getQuery();
      bitField0_ = (bitField0_ & ~0x00000002);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. The query statement. See [how to construct a
     * query](https://cloud.google.com/asset-inventory/docs/searching-iam-policies#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * IAM policies within the specified `scope`. Note that the query string is
     * compared against each IAM policy binding, including its principals,
     * roles, and IAM conditions. The returned IAM policies will only
     * contain the bindings that match your query. To learn more about the IAM
     * policy structure, see the [IAM policy
     * documentation](https://cloud.google.com/iam/help/allow-policies/structure).
     * Examples:
     * * `policy:amy&#64;gmail.com` to find IAM policy bindings that specify user
     *   "amy&#64;gmail.com".
     * * `policy:roles/compute.admin` to find IAM policy bindings that specify
     *   the Compute Admin role.
     * * `policy:comp*` to find IAM policy bindings that contain "comp" as a
     *   prefix of any word in the binding.
     * * `policy.role.permissions:storage.buckets.update` to find IAM policy
     *   bindings that specify a role containing "storage.buckets.update"
     *   permission. Note that if callers don't have `iam.roles.get` access to a
     *   role's included permissions, policy bindings that specify this role will
     *   be dropped from the search results.
     * * `policy.role.permissions:upd*` to find IAM policy bindings that specify a
     *   role containing "upd" as a prefix of any word in the role permission.
     *   Note that if callers don't have `iam.roles.get` access to a role's
     *   included permissions, policy bindings that specify this role will be
     *   dropped from the search results.
     * * `resource:organizations/123456` to find IAM policy bindings
     *   that are set on "organizations/123456".
     * * `resource=//cloudresourcemanager.googleapis.com/projects/myproject` to
     *   find IAM policy bindings that are set on the project named "myproject".
     * * `Important` to find IAM policy bindings that contain "Important" as a
     *   word in any of the searchable fields (except for the included
     *   permissions).
     * * `resource:(instance1 OR instance2) policy:amy` to find
     *   IAM policy bindings that are set on resources "instance1" or
     *   "instance2" and also specify user "amy".
     * * `roles:roles/compute.admin` to find IAM policy bindings that specify the
     *   Compute Admin role.
     * * `memberTypes:user` to find IAM policy bindings that contain the
     *   principal type "user".
     * </pre>
     *
     * <code>string query = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The bytes for query to set.
     * @return This builder for chaining.
     */
    public Builder setQueryBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      query_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }

    private int pageSize_;
    /**
     *
     *
     * <pre>
     * Optional. The page size for search result pagination. Page size is capped
     * at 500 even if a larger value is given. If set to zero, server will pick an
     * appropriate default. Returned results may be fewer than requested. When
     * this happens, there could be more results as long as `next_page_token` is
     * returned.
     * </pre>
     *
     * <code>int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The pageSize.
     */
    @java.lang.Override
    public int getPageSize() {
      return pageSize_;
    }
    /**
     *
     *
     * <pre>
     * Optional. The page size for search result pagination. Page size is capped
     * at 500 even if a larger value is given. If set to zero, server will pick an
     * appropriate default. Returned results may be fewer than requested. When
     * this happens, there could be more results as long as `next_page_token` is
     * returned.
     * </pre>
     *
     * <code>int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The pageSize to set.
     * @return This builder for chaining.
     */
    public Builder setPageSize(int value) {

      pageSize_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. The page size for search result pagination. Page size is capped
     * at 500 even if a larger value is given. If set to zero, server will pick an
     * appropriate default. Returned results may be fewer than requested. When
     * this happens, there could be more results as long as `next_page_token` is
     * returned.
     * </pre>
     *
     * <code>int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearPageSize() {
      bitField0_ = (bitField0_ & ~0x00000004);
      pageSize_ = 0;
      onChanged();
      return this;
    }

    private java.lang.Object pageToken_ = "";
    /**
     *
     *
     * <pre>
     * Optional. If present, retrieve the next batch of results from the preceding
     * call to this method. `page_token` must be the value of `next_page_token`
     * from the previous response. The values of all other method parameters must
     * be identical to those in the previous call.
     * </pre>
     *
     * <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The pageToken.
     */
    public java.lang.String getPageToken() {
      java.lang.Object ref = pageToken_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        pageToken_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. If present, retrieve the next batch of results from the preceding
     * call to this method. `page_token` must be the value of `next_page_token`
     * from the previous response. The values of all other method parameters must
     * be identical to those in the previous call.
     * </pre>
     *
     * <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The bytes for pageToken.
     */
    public com.google.protobuf.ByteString getPageTokenBytes() {
      java.lang.Object ref = pageToken_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        pageToken_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. If present, retrieve the next batch of results from the preceding
     * call to this method. `page_token` must be the value of `next_page_token`
     * from the previous response. The values of all other method parameters must
     * be identical to those in the previous call.
     * </pre>
     *
     * <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The pageToken to set.
     * @return This builder for chaining.
     */
    public Builder setPageToken(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      pageToken_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. If present, retrieve the next batch of results from the preceding
     * call to this method. `page_token` must be the value of `next_page_token`
     * from the previous response. The values of all other method parameters must
     * be identical to those in the previous call.
     * </pre>
     *
     * <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearPageToken() {
      pageToken_ = getDefaultInstance().getPageToken();
      bitField0_ = (bitField0_ & ~0x00000008);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. If present, retrieve the next batch of results from the preceding
     * call to this method. `page_token` must be the value of `next_page_token`
     * from the previous response. The values of all other method parameters must
     * be identical to those in the previous call.
     * </pre>
     *
     * <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The bytes for pageToken to set.
     * @return This builder for chaining.
     */
    public Builder setPageTokenBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      pageToken_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }

    private com.google.protobuf.LazyStringList assetTypes_ =
        com.google.protobuf.LazyStringArrayList.EMPTY;

    private void ensureAssetTypesIsMutable() {
      if (!((bitField0_ & 0x00000010) != 0)) {
        assetTypes_ = new com.google.protobuf.LazyStringArrayList(assetTypes_);
        bitField0_ |= 0x00000010;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return A list containing the assetTypes.
     */
    public com.google.protobuf.ProtocolStringList getAssetTypesList() {
      return assetTypes_.getUnmodifiableView();
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The count of assetTypes.
     */
    public int getAssetTypesCount() {
      return assetTypes_.size();
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param index The index of the element to return.
     * @return The assetTypes at the given index.
     */
    public java.lang.String getAssetTypes(int index) {
      return assetTypes_.get(index);
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param index The index of the value to return.
     * @return The bytes of the assetTypes at the given index.
     */
    public com.google.protobuf.ByteString getAssetTypesBytes(int index) {
      return assetTypes_.getByteString(index);
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param index The index to set the value at.
     * @param value The assetTypes to set.
     * @return This builder for chaining.
     */
    public Builder setAssetTypes(int index, java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureAssetTypesIsMutable();
      assetTypes_.set(index, value);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The assetTypes to add.
     * @return This builder for chaining.
     */
    public Builder addAssetTypes(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureAssetTypesIsMutable();
      assetTypes_.add(value);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param values The assetTypes to add.
     * @return This builder for chaining.
     */
    public Builder addAllAssetTypes(java.lang.Iterable<java.lang.String> values) {
      ensureAssetTypesIsMutable();
      com.google.protobuf.AbstractMessageLite.Builder.addAll(values, assetTypes_);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearAssetTypes() {
      assetTypes_ = com.google.protobuf.LazyStringArrayList.EMPTY;
      bitField0_ = (bitField0_ & ~0x00000010);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that the IAM policies are attached to. If
     * empty, it will search the IAM policies that are attached to all the
     * [searchable asset
     * types](https://cloud.google.com/asset-inventory/docs/supported-asset-types#searchable_asset_types).
     * Regular expressions are also supported. For example:
     * * "compute.googleapis.com.*" snapshots IAM policies attached to asset type
     * starts with "compute.googleapis.com".
     * * ".*Instance" snapshots IAM policies attached to asset type ends with
     * "Instance".
     * * ".*Instance.*" snapshots IAM policies attached to asset type contains
     * "Instance".
     * See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported
     * regular expression syntax. If the regular expression does not match any
     * supported asset type, an INVALID_ARGUMENT error will be returned.
     * </pre>
     *
     * <code>repeated string asset_types = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The bytes of the assetTypes to add.
     * @return This builder for chaining.
     */
    public Builder addAssetTypesBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      ensureAssetTypesIsMutable();
      assetTypes_.add(value);
      onChanged();
      return this;
    }

    private java.lang.Object orderBy_ = "";
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying the sorting order of
     * the results. The default order is ascending. Add " DESC" after the field
     * name to indicate descending order. Redundant space characters are ignored.
     * Example: "assetType DESC, resource".
     * Only singular primitive fields in the response are sortable:
     *   * resource
     *   * assetType
     *   * project
     * All the other fields such as repeated fields (e.g., `folders`) and
     * non-primitive fields (e.g., `policy`) are not supported.
     * </pre>
     *
     * <code>string order_by = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The orderBy.
     */
    public java.lang.String getOrderBy() {
      java.lang.Object ref = orderBy_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        orderBy_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying the sorting order of
     * the results. The default order is ascending. Add " DESC" after the field
     * name to indicate descending order. Redundant space characters are ignored.
     * Example: "assetType DESC, resource".
     * Only singular primitive fields in the response are sortable:
     *   * resource
     *   * assetType
     *   * project
     * All the other fields such as repeated fields (e.g., `folders`) and
     * non-primitive fields (e.g., `policy`) are not supported.
     * </pre>
     *
     * <code>string order_by = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The bytes for orderBy.
     */
    public com.google.protobuf.ByteString getOrderByBytes() {
      java.lang.Object ref = orderBy_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        orderBy_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying the sorting order of
     * the results. The default order is ascending. Add " DESC" after the field
     * name to indicate descending order. Redundant space characters are ignored.
     * Example: "assetType DESC, resource".
     * Only singular primitive fields in the response are sortable:
     *   * resource
     *   * assetType
     *   * project
     * All the other fields such as repeated fields (e.g., `folders`) and
     * non-primitive fields (e.g., `policy`) are not supported.
     * </pre>
     *
     * <code>string order_by = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The orderBy to set.
     * @return This builder for chaining.
     */
    public Builder setOrderBy(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      orderBy_ = value;
      bitField0_ |= 0x00000020;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying the sorting order of
     * the results. The default order is ascending. Add " DESC" after the field
     * name to indicate descending order. Redundant space characters are ignored.
     * Example: "assetType DESC, resource".
     * Only singular primitive fields in the response are sortable:
     *   * resource
     *   * assetType
     *   * project
     * All the other fields such as repeated fields (e.g., `folders`) and
     * non-primitive fields (e.g., `policy`) are not supported.
     * </pre>
     *
     * <code>string order_by = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearOrderBy() {
      orderBy_ = getDefaultInstance().getOrderBy();
      bitField0_ = (bitField0_ & ~0x00000020);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying the sorting order of
     * the results. The default order is ascending. Add " DESC" after the field
     * name to indicate descending order. Redundant space characters are ignored.
     * Example: "assetType DESC, resource".
     * Only singular primitive fields in the response are sortable:
     *   * resource
     *   * assetType
     *   * project
     * All the other fields such as repeated fields (e.g., `folders`) and
     * non-primitive fields (e.g., `policy`) are not supported.
     * </pre>
     *
     * <code>string order_by = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The bytes for orderBy to set.
     * @return This builder for chaining.
     */
    public Builder setOrderByBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      orderBy_ = value;
      bitField0_ |= 0x00000020;
      onChanged();
      return this;
    }

    @java.lang.Override
    public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

    @java.lang.Override
    public final Builder mergeUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.mergeUnknownFields(unknownFields);
    }

    // @@protoc_insertion_point(builder_scope:google.cloud.asset.v1.SearchAllIamPoliciesRequest)
  }

  // @@protoc_insertion_point(class_scope:google.cloud.asset.v1.SearchAllIamPoliciesRequest)
  private static final com.google.cloud.asset.v1.SearchAllIamPoliciesRequest DEFAULT_INSTANCE;

  static {
    DEFAULT_INSTANCE = new com.google.cloud.asset.v1.SearchAllIamPoliciesRequest();
  }

  public static com.google.cloud.asset.v1.SearchAllIamPoliciesRequest getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser<SearchAllIamPoliciesRequest> PARSER =
      new com.google.protobuf.AbstractParser<SearchAllIamPoliciesRequest>() {
        @java.lang.Override
        public SearchAllIamPoliciesRequest parsePartialFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws com.google.protobuf.InvalidProtocolBufferException {
          Builder builder = newBuilder();
          try {
            builder.mergeFrom(input, extensionRegistry);
          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
            throw e.setUnfinishedMessage(builder.buildPartial());
          } catch (com.google.protobuf.UninitializedMessageException e) {
            throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
          } catch (java.io.IOException e) {
            throw new com.google.protobuf.InvalidProtocolBufferException(e)
                .setUnfinishedMessage(builder.buildPartial());
          }
          return builder.buildPartial();
        }
      };

  public static com.google.protobuf.Parser<SearchAllIamPoliciesRequest> parser() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.protobuf.Parser<SearchAllIamPoliciesRequest> getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.cloud.asset.v1.SearchAllIamPoliciesRequest getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }
}
