/*
 * 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 resources request.
 * </pre>
 *
 * Protobuf type {@code google.cloud.asset.v1.SearchAllResourcesRequest}
 */
public final class SearchAllResourcesRequest extends com.google.protobuf.GeneratedMessageV3
    implements
    // @@protoc_insertion_point(message_implements:google.cloud.asset.v1.SearchAllResourcesRequest)
    SearchAllResourcesRequestOrBuilder {
  private static final long serialVersionUID = 0L;
  // Use SearchAllResourcesRequest.newBuilder() to construct.
  private SearchAllResourcesRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
    super(builder);
  }

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

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

  @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_SearchAllResourcesRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.google.cloud.asset.v1.AssetServiceProto
        .internal_static_google_cloud_asset_v1_SearchAllResourcesRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.google.cloud.asset.v1.SearchAllResourcesRequest.class,
            com.google.cloud.asset.v1.SearchAllResourcesRequest.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 resources within the `scope`. The caller must be
   * granted the
   * [`cloudasset.assets.searchAllResources`](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 resources within the `scope`. The caller must be
   * granted the
   * [`cloudasset.assets.searchAllResources`](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-resources#how_to_construct_a_query)
   * for more information. If not specified or empty, it will search all the
   * resources within the specified `scope`.
   * Examples:
   * * `name:Important` to find Google Cloud resources whose name contains
   *   "Important" as a word.
   * * `name=Important` to find the Google Cloud resource whose name is exactly
   *   "Important".
   * * `displayName:Impor*` to find Google Cloud resources whose display name
   *   contains "Impor" as a prefix of any word in the field.
   * * `location:us-west*` to find Google Cloud resources whose location
   *   contains both "us" and "west" as prefixes.
   * * `labels:prod` to find Google Cloud resources whose labels contain "prod"
   *   as a key or value.
   * * `labels.env:prod` to find Google Cloud resources that have a label "env"
   *   and its value is "prod".
   * * `labels.env:*` to find Google Cloud resources that have a label "env".
   * * `kmsKey:key` to find Google Cloud resources encrypted with a
   *   customer-managed encryption key whose name contains "key" as a word. This
   *   field is deprecated. Please use the `kmsKeys` field to retrieve Cloud KMS
   *   key information.
   * * `kmsKeys:key` to find Google Cloud resources encrypted with
   *   customer-managed encryption keys whose name contains the word "key".
   * * `relationships:instance-group-1` to find Google Cloud resources that have
   *   relationships with "instance-group-1" in the related resource name.
   * * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
   *   instances that have relationships of type "INSTANCE_TO_INSTANCEGROUP".
   * * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
   *   Compute Engine instances that have relationships with "instance-group-1"
   *   in the Compute Engine instance group resource name, for relationship type
   *   "INSTANCE_TO_INSTANCEGROUP".
   * * `state:ACTIVE` to find Google Cloud resources whose state contains
   *   "ACTIVE" as a word.
   * * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
   *   contain "ACTIVE" as a word.
   * * `createTime&lt;1609459200` to find Google Cloud resources that were created
   *   before "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
   *   "2021-01-01 00:00:00 UTC" in seconds.
   * * `updateTime&gt;1609459200` to find Google Cloud resources that were updated
   *   after "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
   *   "2021-01-01 00:00:00 UTC" in seconds.
   * * `Important` to find Google Cloud resources that contain "Important" as a
   *   word in any of the searchable fields.
   * * `Impor*` to find Google Cloud resources that contain "Impor" as a prefix
   *   of any word in any of the searchable fields.
   * * `Important location:(us-west1 OR global)` to find Google Cloud
   *   resources that contain "Important" as a word in any of the searchable
   *   fields and are also located in the "us-west1" region or the "global"
   *   location.
   * </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-resources#how_to_construct_a_query)
   * for more information. If not specified or empty, it will search all the
   * resources within the specified `scope`.
   * Examples:
   * * `name:Important` to find Google Cloud resources whose name contains
   *   "Important" as a word.
   * * `name=Important` to find the Google Cloud resource whose name is exactly
   *   "Important".
   * * `displayName:Impor*` to find Google Cloud resources whose display name
   *   contains "Impor" as a prefix of any word in the field.
   * * `location:us-west*` to find Google Cloud resources whose location
   *   contains both "us" and "west" as prefixes.
   * * `labels:prod` to find Google Cloud resources whose labels contain "prod"
   *   as a key or value.
   * * `labels.env:prod` to find Google Cloud resources that have a label "env"
   *   and its value is "prod".
   * * `labels.env:*` to find Google Cloud resources that have a label "env".
   * * `kmsKey:key` to find Google Cloud resources encrypted with a
   *   customer-managed encryption key whose name contains "key" as a word. This
   *   field is deprecated. Please use the `kmsKeys` field to retrieve Cloud KMS
   *   key information.
   * * `kmsKeys:key` to find Google Cloud resources encrypted with
   *   customer-managed encryption keys whose name contains the word "key".
   * * `relationships:instance-group-1` to find Google Cloud resources that have
   *   relationships with "instance-group-1" in the related resource name.
   * * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
   *   instances that have relationships of type "INSTANCE_TO_INSTANCEGROUP".
   * * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
   *   Compute Engine instances that have relationships with "instance-group-1"
   *   in the Compute Engine instance group resource name, for relationship type
   *   "INSTANCE_TO_INSTANCEGROUP".
   * * `state:ACTIVE` to find Google Cloud resources whose state contains
   *   "ACTIVE" as a word.
   * * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
   *   contain "ACTIVE" as a word.
   * * `createTime&lt;1609459200` to find Google Cloud resources that were created
   *   before "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
   *   "2021-01-01 00:00:00 UTC" in seconds.
   * * `updateTime&gt;1609459200` to find Google Cloud resources that were updated
   *   after "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
   *   "2021-01-01 00:00:00 UTC" in seconds.
   * * `Important` to find Google Cloud resources that contain "Important" as a
   *   word in any of the searchable fields.
   * * `Impor*` to find Google Cloud resources that contain "Impor" as a prefix
   *   of any word in any of the searchable fields.
   * * `Important location:(us-west1 OR global)` to find Google Cloud
   *   resources that contain "Important" as a word in any of the searchable
   *   fields and are also located in the "us-west1" region or the "global"
   *   location.
   * </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 ASSET_TYPES_FIELD_NUMBER = 3;

  @SuppressWarnings("serial")
  private com.google.protobuf.LazyStringList assetTypes_;
  /**
   *
   *
   * <pre>
   * Optional. A list of asset types that this request searches for. If empty,
   * it will search 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 resources whose asset type starts
   * with "compute.googleapis.com".
   * * ".*Instance" snapshots resources whose asset type ends with "Instance".
   * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
   * it will search 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 resources whose asset type starts
   * with "compute.googleapis.com".
   * * ".*Instance" snapshots resources whose asset type ends with "Instance".
   * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
   * it will search 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 resources whose asset type starts
   * with "compute.googleapis.com".
   * * ".*Instance" snapshots resources whose asset type ends with "Instance".
   * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
   * it will search 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 resources whose asset type starts
   * with "compute.googleapis.com".
   * * ".*Instance" snapshots resources whose asset type ends with "Instance".
   * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 PAGE_SIZE_FIELD_NUMBER = 4;
  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 = 4 [(.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 = 5;

  @SuppressWarnings("serial")
  private volatile java.lang.Object pageToken_ = "";
  /**
   *
   *
   * <pre>
   * Optional. If present, then 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 = 5 [(.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, then 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 = 5 [(.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 ORDER_BY_FIELD_NUMBER = 6;

  @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: "location DESC, name".
   * Only singular primitive fields in the response are sortable:
   *   * name
   *   * assetType
   *   * project
   *   * displayName
   *   * description
   *   * location
   *   * createTime
   *   * updateTime
   *   * state
   *   * parentFullResourceName
   *   * parentAssetType
   * All the other fields such as repeated fields (e.g., `networkTags`,
   * `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
   * `additionalAttributes`) are not supported.
   * </pre>
   *
   * <code>string order_by = 6 [(.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: "location DESC, name".
   * Only singular primitive fields in the response are sortable:
   *   * name
   *   * assetType
   *   * project
   *   * displayName
   *   * description
   *   * location
   *   * createTime
   *   * updateTime
   *   * state
   *   * parentFullResourceName
   *   * parentAssetType
   * All the other fields such as repeated fields (e.g., `networkTags`,
   * `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
   * `additionalAttributes`) are not supported.
   * </pre>
   *
   * <code>string order_by = 6 [(.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;
    }
  }

  public static final int READ_MASK_FIELD_NUMBER = 8;
  private com.google.protobuf.FieldMask readMask_;
  /**
   *
   *
   * <pre>
   * Optional. A comma-separated list of fields specifying which fields to be
   * returned in ResourceSearchResult. Only '*' or combination of top level
   * fields can be specified. Field names of both snake_case and camelCase are
   * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
   * The read_mask paths must be valid field paths listed but not limited to
   * (both snake_case and camelCase are supported):
   *   * name
   *   * assetType
   *   * project
   *   * displayName
   *   * description
   *   * location
   *   * tagKeys
   *   * tagValues
   *   * tagValueIds
   *   * labels
   *   * networkTags
   *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
   *     retrieve Cloud KMS key information.)
   *   * kmsKeys
   *   * createTime
   *   * updateTime
   *   * state
   *   * additionalAttributes
   *   * versionedResources
   * If read_mask is not specified, all fields except versionedResources will
   * be returned.
   * If only '*' is specified, all fields including versionedResources will be
   * returned.
   * Any invalid field path will trigger INVALID_ARGUMENT error.
   * </pre>
   *
   * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   *
   * @return Whether the readMask field is set.
   */
  @java.lang.Override
  public boolean hasReadMask() {
    return readMask_ != null;
  }
  /**
   *
   *
   * <pre>
   * Optional. A comma-separated list of fields specifying which fields to be
   * returned in ResourceSearchResult. Only '*' or combination of top level
   * fields can be specified. Field names of both snake_case and camelCase are
   * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
   * The read_mask paths must be valid field paths listed but not limited to
   * (both snake_case and camelCase are supported):
   *   * name
   *   * assetType
   *   * project
   *   * displayName
   *   * description
   *   * location
   *   * tagKeys
   *   * tagValues
   *   * tagValueIds
   *   * labels
   *   * networkTags
   *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
   *     retrieve Cloud KMS key information.)
   *   * kmsKeys
   *   * createTime
   *   * updateTime
   *   * state
   *   * additionalAttributes
   *   * versionedResources
   * If read_mask is not specified, all fields except versionedResources will
   * be returned.
   * If only '*' is specified, all fields including versionedResources will be
   * returned.
   * Any invalid field path will trigger INVALID_ARGUMENT error.
   * </pre>
   *
   * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   *
   * @return The readMask.
   */
  @java.lang.Override
  public com.google.protobuf.FieldMask getReadMask() {
    return readMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : readMask_;
  }
  /**
   *
   *
   * <pre>
   * Optional. A comma-separated list of fields specifying which fields to be
   * returned in ResourceSearchResult. Only '*' or combination of top level
   * fields can be specified. Field names of both snake_case and camelCase are
   * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
   * The read_mask paths must be valid field paths listed but not limited to
   * (both snake_case and camelCase are supported):
   *   * name
   *   * assetType
   *   * project
   *   * displayName
   *   * description
   *   * location
   *   * tagKeys
   *   * tagValues
   *   * tagValueIds
   *   * labels
   *   * networkTags
   *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
   *     retrieve Cloud KMS key information.)
   *   * kmsKeys
   *   * createTime
   *   * updateTime
   *   * state
   *   * additionalAttributes
   *   * versionedResources
   * If read_mask is not specified, all fields except versionedResources will
   * be returned.
   * If only '*' is specified, all fields including versionedResources will be
   * returned.
   * Any invalid field path will trigger INVALID_ARGUMENT error.
   * </pre>
   *
   * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public com.google.protobuf.FieldMaskOrBuilder getReadMaskOrBuilder() {
    return readMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : readMask_;
  }

  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_);
    }
    for (int i = 0; i < assetTypes_.size(); i++) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 3, assetTypes_.getRaw(i));
    }
    if (pageSize_ != 0) {
      output.writeInt32(4, pageSize_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 5, pageToken_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(orderBy_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 6, orderBy_);
    }
    if (readMask_ != null) {
      output.writeMessage(8, getReadMask());
    }
    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_);
    }
    {
      int dataSize = 0;
      for (int i = 0; i < assetTypes_.size(); i++) {
        dataSize += computeStringSizeNoTag(assetTypes_.getRaw(i));
      }
      size += dataSize;
      size += 1 * getAssetTypesList().size();
    }
    if (pageSize_ != 0) {
      size += com.google.protobuf.CodedOutputStream.computeInt32Size(4, pageSize_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, pageToken_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(orderBy_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, orderBy_);
    }
    if (readMask_ != null) {
      size += com.google.protobuf.CodedOutputStream.computeMessageSize(8, getReadMask());
    }
    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.SearchAllResourcesRequest)) {
      return super.equals(obj);
    }
    com.google.cloud.asset.v1.SearchAllResourcesRequest other =
        (com.google.cloud.asset.v1.SearchAllResourcesRequest) obj;

    if (!getScope().equals(other.getScope())) return false;
    if (!getQuery().equals(other.getQuery())) return false;
    if (!getAssetTypesList().equals(other.getAssetTypesList())) return false;
    if (getPageSize() != other.getPageSize()) return false;
    if (!getPageToken().equals(other.getPageToken())) return false;
    if (!getOrderBy().equals(other.getOrderBy())) return false;
    if (hasReadMask() != other.hasReadMask()) return false;
    if (hasReadMask()) {
      if (!getReadMask().equals(other.getReadMask())) 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();
    if (getAssetTypesCount() > 0) {
      hash = (37 * hash) + ASSET_TYPES_FIELD_NUMBER;
      hash = (53 * hash) + getAssetTypesList().hashCode();
    }
    hash = (37 * hash) + PAGE_SIZE_FIELD_NUMBER;
    hash = (53 * hash) + getPageSize();
    hash = (37 * hash) + PAGE_TOKEN_FIELD_NUMBER;
    hash = (53 * hash) + getPageToken().hashCode();
    hash = (37 * hash) + ORDER_BY_FIELD_NUMBER;
    hash = (53 * hash) + getOrderBy().hashCode();
    if (hasReadMask()) {
      hash = (37 * hash) + READ_MASK_FIELD_NUMBER;
      hash = (53 * hash) + getReadMask().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

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

  public static com.google.cloud.asset.v1.SearchAllResourcesRequest 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.SearchAllResourcesRequest parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.asset.v1.SearchAllResourcesRequest 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.SearchAllResourcesRequest parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.asset.v1.SearchAllResourcesRequest 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.SearchAllResourcesRequest parseFrom(
      java.io.InputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.asset.v1.SearchAllResourcesRequest 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.SearchAllResourcesRequest parseDelimitedFrom(
      java.io.InputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
  }

  public static com.google.cloud.asset.v1.SearchAllResourcesRequest 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.SearchAllResourcesRequest 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.SearchAllResourcesRequest 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.SearchAllResourcesRequest 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 resources request.
   * </pre>
   *
   * Protobuf type {@code google.cloud.asset.v1.SearchAllResourcesRequest}
   */
  public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder>
      implements
      // @@protoc_insertion_point(builder_implements:google.cloud.asset.v1.SearchAllResourcesRequest)
      com.google.cloud.asset.v1.SearchAllResourcesRequestOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      return com.google.cloud.asset.v1.AssetServiceProto
          .internal_static_google_cloud_asset_v1_SearchAllResourcesRequest_descriptor;
    }

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

    // Construct using com.google.cloud.asset.v1.SearchAllResourcesRequest.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_ = "";
      assetTypes_ = com.google.protobuf.LazyStringArrayList.EMPTY;
      bitField0_ = (bitField0_ & ~0x00000004);
      pageSize_ = 0;
      pageToken_ = "";
      orderBy_ = "";
      readMask_ = null;
      if (readMaskBuilder_ != null) {
        readMaskBuilder_.dispose();
        readMaskBuilder_ = null;
      }
      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_SearchAllResourcesRequest_descriptor;
    }

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

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

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

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

    private void buildPartial0(com.google.cloud.asset.v1.SearchAllResourcesRequest result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.scope_ = scope_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.query_ = query_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.pageSize_ = pageSize_;
      }
      if (((from_bitField0_ & 0x00000010) != 0)) {
        result.pageToken_ = pageToken_;
      }
      if (((from_bitField0_ & 0x00000020) != 0)) {
        result.orderBy_ = orderBy_;
      }
      if (((from_bitField0_ & 0x00000040) != 0)) {
        result.readMask_ = readMaskBuilder_ == null ? readMask_ : readMaskBuilder_.build();
      }
    }

    @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.SearchAllResourcesRequest) {
        return mergeFrom((com.google.cloud.asset.v1.SearchAllResourcesRequest) other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.google.cloud.asset.v1.SearchAllResourcesRequest other) {
      if (other == com.google.cloud.asset.v1.SearchAllResourcesRequest.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.assetTypes_.isEmpty()) {
        if (assetTypes_.isEmpty()) {
          assetTypes_ = other.assetTypes_;
          bitField0_ = (bitField0_ & ~0x00000004);
        } else {
          ensureAssetTypesIsMutable();
          assetTypes_.addAll(other.assetTypes_);
        }
        onChanged();
      }
      if (other.getPageSize() != 0) {
        setPageSize(other.getPageSize());
      }
      if (!other.getPageToken().isEmpty()) {
        pageToken_ = other.pageToken_;
        bitField0_ |= 0x00000010;
        onChanged();
      }
      if (!other.getOrderBy().isEmpty()) {
        orderBy_ = other.orderBy_;
        bitField0_ |= 0x00000020;
        onChanged();
      }
      if (other.hasReadMask()) {
        mergeReadMask(other.getReadMask());
      }
      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 26:
              {
                java.lang.String s = input.readStringRequireUtf8();
                ensureAssetTypesIsMutable();
                assetTypes_.add(s);
                break;
              } // case 26
            case 32:
              {
                pageSize_ = input.readInt32();
                bitField0_ |= 0x00000008;
                break;
              } // case 32
            case 42:
              {
                pageToken_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000010;
                break;
              } // case 42
            case 50:
              {
                orderBy_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000020;
                break;
              } // case 50
            case 66:
              {
                input.readMessage(getReadMaskFieldBuilder().getBuilder(), extensionRegistry);
                bitField0_ |= 0x00000040;
                break;
              } // case 66
            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 resources within the `scope`. The caller must be
     * granted the
     * [`cloudasset.assets.searchAllResources`](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 resources within the `scope`. The caller must be
     * granted the
     * [`cloudasset.assets.searchAllResources`](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 resources within the `scope`. The caller must be
     * granted the
     * [`cloudasset.assets.searchAllResources`](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 resources within the `scope`. The caller must be
     * granted the
     * [`cloudasset.assets.searchAllResources`](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 resources within the `scope`. The caller must be
     * granted the
     * [`cloudasset.assets.searchAllResources`](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-resources#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * resources within the specified `scope`.
     * Examples:
     * * `name:Important` to find Google Cloud resources whose name contains
     *   "Important" as a word.
     * * `name=Important` to find the Google Cloud resource whose name is exactly
     *   "Important".
     * * `displayName:Impor*` to find Google Cloud resources whose display name
     *   contains "Impor" as a prefix of any word in the field.
     * * `location:us-west*` to find Google Cloud resources whose location
     *   contains both "us" and "west" as prefixes.
     * * `labels:prod` to find Google Cloud resources whose labels contain "prod"
     *   as a key or value.
     * * `labels.env:prod` to find Google Cloud resources that have a label "env"
     *   and its value is "prod".
     * * `labels.env:*` to find Google Cloud resources that have a label "env".
     * * `kmsKey:key` to find Google Cloud resources encrypted with a
     *   customer-managed encryption key whose name contains "key" as a word. This
     *   field is deprecated. Please use the `kmsKeys` field to retrieve Cloud KMS
     *   key information.
     * * `kmsKeys:key` to find Google Cloud resources encrypted with
     *   customer-managed encryption keys whose name contains the word "key".
     * * `relationships:instance-group-1` to find Google Cloud resources that have
     *   relationships with "instance-group-1" in the related resource name.
     * * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
     *   instances that have relationships of type "INSTANCE_TO_INSTANCEGROUP".
     * * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
     *   Compute Engine instances that have relationships with "instance-group-1"
     *   in the Compute Engine instance group resource name, for relationship type
     *   "INSTANCE_TO_INSTANCEGROUP".
     * * `state:ACTIVE` to find Google Cloud resources whose state contains
     *   "ACTIVE" as a word.
     * * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
     *   contain "ACTIVE" as a word.
     * * `createTime&lt;1609459200` to find Google Cloud resources that were created
     *   before "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `updateTime&gt;1609459200` to find Google Cloud resources that were updated
     *   after "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `Important` to find Google Cloud resources that contain "Important" as a
     *   word in any of the searchable fields.
     * * `Impor*` to find Google Cloud resources that contain "Impor" as a prefix
     *   of any word in any of the searchable fields.
     * * `Important location:(us-west1 OR global)` to find Google Cloud
     *   resources that contain "Important" as a word in any of the searchable
     *   fields and are also located in the "us-west1" region or the "global"
     *   location.
     * </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-resources#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * resources within the specified `scope`.
     * Examples:
     * * `name:Important` to find Google Cloud resources whose name contains
     *   "Important" as a word.
     * * `name=Important` to find the Google Cloud resource whose name is exactly
     *   "Important".
     * * `displayName:Impor*` to find Google Cloud resources whose display name
     *   contains "Impor" as a prefix of any word in the field.
     * * `location:us-west*` to find Google Cloud resources whose location
     *   contains both "us" and "west" as prefixes.
     * * `labels:prod` to find Google Cloud resources whose labels contain "prod"
     *   as a key or value.
     * * `labels.env:prod` to find Google Cloud resources that have a label "env"
     *   and its value is "prod".
     * * `labels.env:*` to find Google Cloud resources that have a label "env".
     * * `kmsKey:key` to find Google Cloud resources encrypted with a
     *   customer-managed encryption key whose name contains "key" as a word. This
     *   field is deprecated. Please use the `kmsKeys` field to retrieve Cloud KMS
     *   key information.
     * * `kmsKeys:key` to find Google Cloud resources encrypted with
     *   customer-managed encryption keys whose name contains the word "key".
     * * `relationships:instance-group-1` to find Google Cloud resources that have
     *   relationships with "instance-group-1" in the related resource name.
     * * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
     *   instances that have relationships of type "INSTANCE_TO_INSTANCEGROUP".
     * * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
     *   Compute Engine instances that have relationships with "instance-group-1"
     *   in the Compute Engine instance group resource name, for relationship type
     *   "INSTANCE_TO_INSTANCEGROUP".
     * * `state:ACTIVE` to find Google Cloud resources whose state contains
     *   "ACTIVE" as a word.
     * * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
     *   contain "ACTIVE" as a word.
     * * `createTime&lt;1609459200` to find Google Cloud resources that were created
     *   before "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `updateTime&gt;1609459200` to find Google Cloud resources that were updated
     *   after "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `Important` to find Google Cloud resources that contain "Important" as a
     *   word in any of the searchable fields.
     * * `Impor*` to find Google Cloud resources that contain "Impor" as a prefix
     *   of any word in any of the searchable fields.
     * * `Important location:(us-west1 OR global)` to find Google Cloud
     *   resources that contain "Important" as a word in any of the searchable
     *   fields and are also located in the "us-west1" region or the "global"
     *   location.
     * </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-resources#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * resources within the specified `scope`.
     * Examples:
     * * `name:Important` to find Google Cloud resources whose name contains
     *   "Important" as a word.
     * * `name=Important` to find the Google Cloud resource whose name is exactly
     *   "Important".
     * * `displayName:Impor*` to find Google Cloud resources whose display name
     *   contains "Impor" as a prefix of any word in the field.
     * * `location:us-west*` to find Google Cloud resources whose location
     *   contains both "us" and "west" as prefixes.
     * * `labels:prod` to find Google Cloud resources whose labels contain "prod"
     *   as a key or value.
     * * `labels.env:prod` to find Google Cloud resources that have a label "env"
     *   and its value is "prod".
     * * `labels.env:*` to find Google Cloud resources that have a label "env".
     * * `kmsKey:key` to find Google Cloud resources encrypted with a
     *   customer-managed encryption key whose name contains "key" as a word. This
     *   field is deprecated. Please use the `kmsKeys` field to retrieve Cloud KMS
     *   key information.
     * * `kmsKeys:key` to find Google Cloud resources encrypted with
     *   customer-managed encryption keys whose name contains the word "key".
     * * `relationships:instance-group-1` to find Google Cloud resources that have
     *   relationships with "instance-group-1" in the related resource name.
     * * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
     *   instances that have relationships of type "INSTANCE_TO_INSTANCEGROUP".
     * * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
     *   Compute Engine instances that have relationships with "instance-group-1"
     *   in the Compute Engine instance group resource name, for relationship type
     *   "INSTANCE_TO_INSTANCEGROUP".
     * * `state:ACTIVE` to find Google Cloud resources whose state contains
     *   "ACTIVE" as a word.
     * * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
     *   contain "ACTIVE" as a word.
     * * `createTime&lt;1609459200` to find Google Cloud resources that were created
     *   before "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `updateTime&gt;1609459200` to find Google Cloud resources that were updated
     *   after "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `Important` to find Google Cloud resources that contain "Important" as a
     *   word in any of the searchable fields.
     * * `Impor*` to find Google Cloud resources that contain "Impor" as a prefix
     *   of any word in any of the searchable fields.
     * * `Important location:(us-west1 OR global)` to find Google Cloud
     *   resources that contain "Important" as a word in any of the searchable
     *   fields and are also located in the "us-west1" region or the "global"
     *   location.
     * </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-resources#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * resources within the specified `scope`.
     * Examples:
     * * `name:Important` to find Google Cloud resources whose name contains
     *   "Important" as a word.
     * * `name=Important` to find the Google Cloud resource whose name is exactly
     *   "Important".
     * * `displayName:Impor*` to find Google Cloud resources whose display name
     *   contains "Impor" as a prefix of any word in the field.
     * * `location:us-west*` to find Google Cloud resources whose location
     *   contains both "us" and "west" as prefixes.
     * * `labels:prod` to find Google Cloud resources whose labels contain "prod"
     *   as a key or value.
     * * `labels.env:prod` to find Google Cloud resources that have a label "env"
     *   and its value is "prod".
     * * `labels.env:*` to find Google Cloud resources that have a label "env".
     * * `kmsKey:key` to find Google Cloud resources encrypted with a
     *   customer-managed encryption key whose name contains "key" as a word. This
     *   field is deprecated. Please use the `kmsKeys` field to retrieve Cloud KMS
     *   key information.
     * * `kmsKeys:key` to find Google Cloud resources encrypted with
     *   customer-managed encryption keys whose name contains the word "key".
     * * `relationships:instance-group-1` to find Google Cloud resources that have
     *   relationships with "instance-group-1" in the related resource name.
     * * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
     *   instances that have relationships of type "INSTANCE_TO_INSTANCEGROUP".
     * * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
     *   Compute Engine instances that have relationships with "instance-group-1"
     *   in the Compute Engine instance group resource name, for relationship type
     *   "INSTANCE_TO_INSTANCEGROUP".
     * * `state:ACTIVE` to find Google Cloud resources whose state contains
     *   "ACTIVE" as a word.
     * * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
     *   contain "ACTIVE" as a word.
     * * `createTime&lt;1609459200` to find Google Cloud resources that were created
     *   before "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `updateTime&gt;1609459200` to find Google Cloud resources that were updated
     *   after "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `Important` to find Google Cloud resources that contain "Important" as a
     *   word in any of the searchable fields.
     * * `Impor*` to find Google Cloud resources that contain "Impor" as a prefix
     *   of any word in any of the searchable fields.
     * * `Important location:(us-west1 OR global)` to find Google Cloud
     *   resources that contain "Important" as a word in any of the searchable
     *   fields and are also located in the "us-west1" region or the "global"
     *   location.
     * </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-resources#how_to_construct_a_query)
     * for more information. If not specified or empty, it will search all the
     * resources within the specified `scope`.
     * Examples:
     * * `name:Important` to find Google Cloud resources whose name contains
     *   "Important" as a word.
     * * `name=Important` to find the Google Cloud resource whose name is exactly
     *   "Important".
     * * `displayName:Impor*` to find Google Cloud resources whose display name
     *   contains "Impor" as a prefix of any word in the field.
     * * `location:us-west*` to find Google Cloud resources whose location
     *   contains both "us" and "west" as prefixes.
     * * `labels:prod` to find Google Cloud resources whose labels contain "prod"
     *   as a key or value.
     * * `labels.env:prod` to find Google Cloud resources that have a label "env"
     *   and its value is "prod".
     * * `labels.env:*` to find Google Cloud resources that have a label "env".
     * * `kmsKey:key` to find Google Cloud resources encrypted with a
     *   customer-managed encryption key whose name contains "key" as a word. This
     *   field is deprecated. Please use the `kmsKeys` field to retrieve Cloud KMS
     *   key information.
     * * `kmsKeys:key` to find Google Cloud resources encrypted with
     *   customer-managed encryption keys whose name contains the word "key".
     * * `relationships:instance-group-1` to find Google Cloud resources that have
     *   relationships with "instance-group-1" in the related resource name.
     * * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
     *   instances that have relationships of type "INSTANCE_TO_INSTANCEGROUP".
     * * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
     *   Compute Engine instances that have relationships with "instance-group-1"
     *   in the Compute Engine instance group resource name, for relationship type
     *   "INSTANCE_TO_INSTANCEGROUP".
     * * `state:ACTIVE` to find Google Cloud resources whose state contains
     *   "ACTIVE" as a word.
     * * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
     *   contain "ACTIVE" as a word.
     * * `createTime&lt;1609459200` to find Google Cloud resources that were created
     *   before "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `updateTime&gt;1609459200` to find Google Cloud resources that were updated
     *   after "2021-01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of
     *   "2021-01-01 00:00:00 UTC" in seconds.
     * * `Important` to find Google Cloud resources that contain "Important" as a
     *   word in any of the searchable fields.
     * * `Impor*` to find Google Cloud resources that contain "Impor" as a prefix
     *   of any word in any of the searchable fields.
     * * `Important location:(us-west1 OR global)` to find Google Cloud
     *   resources that contain "Important" as a word in any of the searchable
     *   fields and are also located in the "us-west1" region or the "global"
     *   location.
     * </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 com.google.protobuf.LazyStringList assetTypes_ =
        com.google.protobuf.LazyStringArrayList.EMPTY;

    private void ensureAssetTypesIsMutable() {
      if (!((bitField0_ & 0x00000004) != 0)) {
        assetTypes_ = new com.google.protobuf.LazyStringArrayList(assetTypes_);
        bitField0_ |= 0x00000004;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearAssetTypes() {
      assetTypes_ = com.google.protobuf.LazyStringArrayList.EMPTY;
      bitField0_ = (bitField0_ & ~0x00000004);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A list of asset types that this request searches for. If empty,
     * it will search 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 resources whose asset type starts
     * with "compute.googleapis.com".
     * * ".*Instance" snapshots resources whose asset type ends with "Instance".
     * * ".*Instance.*" snapshots resources whose 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 = 3 [(.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 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 = 4 [(.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 = 4 [(.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_ |= 0x00000008;
      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 = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearPageSize() {
      bitField0_ = (bitField0_ & ~0x00000008);
      pageSize_ = 0;
      onChanged();
      return this;
    }

    private java.lang.Object pageToken_ = "";
    /**
     *
     *
     * <pre>
     * Optional. If present, then 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 = 5 [(.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, then 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 = 5 [(.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, then 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 = 5 [(.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_ |= 0x00000010;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. If present, then 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 = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearPageToken() {
      pageToken_ = getDefaultInstance().getPageToken();
      bitField0_ = (bitField0_ & ~0x00000010);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. If present, then 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 = 5 [(.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_ |= 0x00000010;
      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: "location DESC, name".
     * Only singular primitive fields in the response are sortable:
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * createTime
     *   * updateTime
     *   * state
     *   * parentFullResourceName
     *   * parentAssetType
     * All the other fields such as repeated fields (e.g., `networkTags`,
     * `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
     * `additionalAttributes`) are not supported.
     * </pre>
     *
     * <code>string order_by = 6 [(.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: "location DESC, name".
     * Only singular primitive fields in the response are sortable:
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * createTime
     *   * updateTime
     *   * state
     *   * parentFullResourceName
     *   * parentAssetType
     * All the other fields such as repeated fields (e.g., `networkTags`,
     * `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
     * `additionalAttributes`) are not supported.
     * </pre>
     *
     * <code>string order_by = 6 [(.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: "location DESC, name".
     * Only singular primitive fields in the response are sortable:
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * createTime
     *   * updateTime
     *   * state
     *   * parentFullResourceName
     *   * parentAssetType
     * All the other fields such as repeated fields (e.g., `networkTags`,
     * `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
     * `additionalAttributes`) are not supported.
     * </pre>
     *
     * <code>string order_by = 6 [(.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: "location DESC, name".
     * Only singular primitive fields in the response are sortable:
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * createTime
     *   * updateTime
     *   * state
     *   * parentFullResourceName
     *   * parentAssetType
     * All the other fields such as repeated fields (e.g., `networkTags`,
     * `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
     * `additionalAttributes`) are not supported.
     * </pre>
     *
     * <code>string order_by = 6 [(.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: "location DESC, name".
     * Only singular primitive fields in the response are sortable:
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * createTime
     *   * updateTime
     *   * state
     *   * parentFullResourceName
     *   * parentAssetType
     * All the other fields such as repeated fields (e.g., `networkTags`,
     * `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
     * `additionalAttributes`) are not supported.
     * </pre>
     *
     * <code>string order_by = 6 [(.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;
    }

    private com.google.protobuf.FieldMask readMask_;
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.protobuf.FieldMask,
            com.google.protobuf.FieldMask.Builder,
            com.google.protobuf.FieldMaskOrBuilder>
        readMaskBuilder_;
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     *
     * @return Whether the readMask field is set.
     */
    public boolean hasReadMask() {
      return ((bitField0_ & 0x00000040) != 0);
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     *
     * @return The readMask.
     */
    public com.google.protobuf.FieldMask getReadMask() {
      if (readMaskBuilder_ == null) {
        return readMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : readMask_;
      } else {
        return readMaskBuilder_.getMessage();
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder setReadMask(com.google.protobuf.FieldMask value) {
      if (readMaskBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        readMask_ = value;
      } else {
        readMaskBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000040;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder setReadMask(com.google.protobuf.FieldMask.Builder builderForValue) {
      if (readMaskBuilder_ == null) {
        readMask_ = builderForValue.build();
      } else {
        readMaskBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000040;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder mergeReadMask(com.google.protobuf.FieldMask value) {
      if (readMaskBuilder_ == null) {
        if (((bitField0_ & 0x00000040) != 0)
            && readMask_ != null
            && readMask_ != com.google.protobuf.FieldMask.getDefaultInstance()) {
          getReadMaskBuilder().mergeFrom(value);
        } else {
          readMask_ = value;
        }
      } else {
        readMaskBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000040;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder clearReadMask() {
      bitField0_ = (bitField0_ & ~0x00000040);
      readMask_ = null;
      if (readMaskBuilder_ != null) {
        readMaskBuilder_.dispose();
        readMaskBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public com.google.protobuf.FieldMask.Builder getReadMaskBuilder() {
      bitField0_ |= 0x00000040;
      onChanged();
      return getReadMaskFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public com.google.protobuf.FieldMaskOrBuilder getReadMaskOrBuilder() {
      if (readMaskBuilder_ != null) {
        return readMaskBuilder_.getMessageOrBuilder();
      } else {
        return readMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : readMask_;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. A comma-separated list of fields specifying which fields to be
     * returned in ResourceSearchResult. Only '*' or combination of top level
     * fields can be specified. Field names of both snake_case and camelCase are
     * supported. Examples: `"*"`, `"name,location"`, `"name,versionedResources"`.
     * The read_mask paths must be valid field paths listed but not limited to
     * (both snake_case and camelCase are supported):
     *   * name
     *   * assetType
     *   * project
     *   * displayName
     *   * description
     *   * location
     *   * tagKeys
     *   * tagValues
     *   * tagValueIds
     *   * labels
     *   * networkTags
     *   * kmsKey (This field is deprecated. Please use the `kmsKeys` field to
     *     retrieve Cloud KMS key information.)
     *   * kmsKeys
     *   * createTime
     *   * updateTime
     *   * state
     *   * additionalAttributes
     *   * versionedResources
     * If read_mask is not specified, all fields except versionedResources will
     * be returned.
     * If only '*' is specified, all fields including versionedResources will be
     * returned.
     * Any invalid field path will trigger INVALID_ARGUMENT error.
     * </pre>
     *
     * <code>.google.protobuf.FieldMask read_mask = 8 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.protobuf.FieldMask,
            com.google.protobuf.FieldMask.Builder,
            com.google.protobuf.FieldMaskOrBuilder>
        getReadMaskFieldBuilder() {
      if (readMaskBuilder_ == null) {
        readMaskBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.protobuf.FieldMask,
                com.google.protobuf.FieldMask.Builder,
                com.google.protobuf.FieldMaskOrBuilder>(
                getReadMask(), getParentForChildren(), isClean());
        readMask_ = null;
      }
      return readMaskBuilder_;
    }

    @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.SearchAllResourcesRequest)
  }

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

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

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

  private static final com.google.protobuf.Parser<SearchAllResourcesRequest> PARSER =
      new com.google.protobuf.AbstractParser<SearchAllResourcesRequest>() {
        @java.lang.Override
        public SearchAllResourcesRequest 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<SearchAllResourcesRequest> parser() {
    return PARSER;
  }

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

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