diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..f525df995 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,51 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- + +Thanks for stopping by to let us know something could be better! + +**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response. + +Please run down the following list and make sure you've tried the usual "quick fixes": + + - Search the issues already opened: https://github.com/googleapis/java-compute/issues + - Check for answers on StackOverflow: http://stackoverflow.com/questions/tagged/google-cloud-platform + +If you are still having issues, please include as much information as possible: + +#### Environment details + +1. Specify the API at the beginning of the title. For example, "BigQuery: ..."). + General, Core, and Other are also allowed as types +2. OS type and version: +3. Java version: +4. compute version(s): + +#### Steps to reproduce + + 1. ? + 2. ? + +#### Code example + +```java +// example +``` + +#### Stack trace +``` +Any relevant stacktrace here. +``` + +#### External references such as API reference guides + +- ? + +#### Any additional information below + + +Following these steps guarantees the quickest resolution possible. + +Thanks! diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..754e30c68 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,21 @@ +--- +name: Feature request +about: Suggest an idea for this library + +--- + +Thanks for stopping by to let us know something could be better! + +**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response. + +**Is your feature request related to a problem? Please describe.** +What the problem is. Example: I'm always frustrated when [...] + +**Describe the solution you'd like** +What you want to happen. + +**Describe alternatives you've considered** +Any alternative solutions or features you've considered. + +**Additional context** +Any other context or screenshots about the feature request. diff --git a/.github/ISSUE_TEMPLATE/support_request.md b/.github/ISSUE_TEMPLATE/support_request.md new file mode 100644 index 000000000..995869032 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/support_request.md @@ -0,0 +1,7 @@ +--- +name: Support request +about: If you have a support contract with Google, please create an issue in the Google Cloud Support console. + +--- + +**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..0bd0ee062 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1 @@ +Fixes # (it's a good idea to open an issue first for context and/or discussion) \ No newline at end of file diff --git a/.github/release-please.yml b/.github/release-please.yml new file mode 100644 index 000000000..827446828 --- /dev/null +++ b/.github/release-please.yml @@ -0,0 +1 @@ +releaseType: java-yoshi diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..dc2d514ce --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +.gitignore + +# Packages +dist +bin +var +sdist +target + +# Unit test / coverage reports +.coverage +.tox +nosetests.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg + +.metadata +.project +.pydevproject +*.iml +.idea +.settings +.DS_Store +.classpath + +# Built documentation +docs/ + + +# Wheel directory used in Travis builds. +gcloud-java-wheels/ +src/test/resources/gcd-head.zip +src/test/resources/gcd-v1beta2-rev1-2.1.1.zip + +# API key file containing value of GOOGLE_API_KEY for integration tests +api_key + +# Python utilities +*.pyc +artman-genfiles +venv \ No newline at end of file diff --git a/.kokoro/build.bat b/.kokoro/build.bat new file mode 100644 index 000000000..4bc8aca89 --- /dev/null +++ b/.kokoro/build.bat @@ -0,0 +1,3 @@ +:: See documentation in type-shell-output.bat + +"C:\Program Files\Git\bin\bash.exe" github/java-compute/.kokoro/build.sh diff --git a/.kokoro/build.sh b/.kokoro/build.sh new file mode 100755 index 000000000..fa132f410 --- /dev/null +++ b/.kokoro/build.sh @@ -0,0 +1,60 @@ +#!/bin/bash +# Copyright 2019 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 +# +# http://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. + +set -eo pipefail + +## Get the directory of the build script +scriptDir=$(realpath $(dirname "${BASH_SOURCE[0]}")) +## cd to the parent directory, i.e. the root of the git repo +cd ${scriptDir}/.. + +# Print out Java version +java -version +echo ${JOB_TYPE} + +mvn install -B -V \ + -DskipTests=true \ + -Dclirr.skip=true \ + -Dmaven.javadoc.skip=true \ + -Dgcloud.download.skip=true \ + -T 1C + +# if GOOGLE_APPLICATION_CREDIENTIALS is specified as a relative path prepend Kokoro root directory onto it +if [[ ! -z "${GOOGLE_APPLICATION_CREDENTIALS}" && "${GOOGLE_APPLICATION_CREDENTIALS}" != /* ]]; then + export GOOGLE_APPLICATION_CREDENTIALS=$(realpath ${KOKORO_ROOT}/src/${GOOGLE_APPLICATION_CREDENTIALS}) +fi + +case ${JOB_TYPE} in +test) + mvn test -B -Dclirr.skip=true + bash ${KOKORO_GFILE_DIR}/codecov.sh + bash .kokoro/coerce_logs.sh + ;; +lint) + mvn com.coveo:fmt-maven-plugin:check + ;; +javadoc) + mvn javadoc:javadoc javadoc:test-javadoc + ;; +integration) + mvn -B ${INTEGRATION_TEST_ARGS} -DtrimStackTrace=false -Dclirr.skip=true -fae verify + bash .kokoro/coerce_logs.sh + ;; +clirr) + mvn -B clirr:check + ;; +*) + ;; +esac \ No newline at end of file diff --git a/.kokoro/coerce_logs.sh b/.kokoro/coerce_logs.sh new file mode 100755 index 000000000..5cf7ba49e --- /dev/null +++ b/.kokoro/coerce_logs.sh @@ -0,0 +1,38 @@ +#!/bin/bash +# Copyright 2019 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 +# +# http://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. + +# This script finds and moves sponge logs so that they can be found by placer +# and are not flagged as flaky by sponge. + +set -eo pipefail + +## Get the directory of the build script +scriptDir=$(realpath $(dirname "${BASH_SOURCE[0]}")) +## cd to the parent directory, i.e. the root of the git repo +cd ${scriptDir}/.. + +job=$(basename ${KOKORO_JOB_NAME}) + +echo "coercing sponge logs..." +for xml in `find . -name *-sponge_log.xml` +do + echo "processing ${xml}" + class=$(basename ${xml} | cut -d- -f2) + dir=$(dirname ${xml})/${job}/${class} + text=$(dirname ${xml})/${class}-sponge_log.txt + mkdir -p ${dir} + mv ${xml} ${dir}/sponge_log.xml + mv ${text} ${dir}/sponge_log.txt +done diff --git a/.kokoro/common.cfg b/.kokoro/common.cfg new file mode 100644 index 000000000..3c22c4c09 --- /dev/null +++ b/.kokoro/common.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Download trampoline resources. These will be in ${KOKORO_GFILE_DIR} +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" + +# All builds use the trampoline script to run in docker. +build_file: "java-compute/.kokoro/trampoline.sh" + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/build.sh" +} diff --git a/.kokoro/continuous/common.cfg b/.kokoro/continuous/common.cfg new file mode 100644 index 000000000..f2bc2232a --- /dev/null +++ b/.kokoro/continuous/common.cfg @@ -0,0 +1,25 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Build logs will be here +action { + define_artifacts { + regex: "**/*sponge_log.xml" + regex: "**/*sponge_log.txt" + } +} + +# Download trampoline resources. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" + +# Use the trampoline script to run in docker. +build_file: "java-compute/.kokoro/trampoline.sh" + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/build.sh" +} + +env_vars: { + key: "JOB_TYPE" + value: "test" +} diff --git a/.kokoro/continuous/dependencies.cfg b/.kokoro/continuous/dependencies.cfg new file mode 100644 index 000000000..902b999b0 --- /dev/null +++ b/.kokoro/continuous/dependencies.cfg @@ -0,0 +1,12 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/dependencies.sh" +} diff --git a/.kokoro/continuous/integration.cfg b/.kokoro/continuous/integration.cfg new file mode 100644 index 000000000..3b017fc80 --- /dev/null +++ b/.kokoro/continuous/integration.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} diff --git a/.kokoro/continuous/java11.cfg b/.kokoro/continuous/java11.cfg new file mode 100644 index 000000000..709f2b4c7 --- /dev/null +++ b/.kokoro/continuous/java11.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java11" +} diff --git a/.kokoro/continuous/java7.cfg b/.kokoro/continuous/java7.cfg new file mode 100644 index 000000000..cb24f44ee --- /dev/null +++ b/.kokoro/continuous/java7.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java7" +} diff --git a/.kokoro/continuous/java8-osx.cfg b/.kokoro/continuous/java8-osx.cfg new file mode 100644 index 000000000..03dbd6025 --- /dev/null +++ b/.kokoro/continuous/java8-osx.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-compute/.kokoro/build.sh" diff --git a/.kokoro/continuous/java8-win.cfg b/.kokoro/continuous/java8-win.cfg new file mode 100644 index 000000000..ae263190a --- /dev/null +++ b/.kokoro/continuous/java8-win.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-compute/.kokoro/build.bat" diff --git a/.kokoro/continuous/java8.cfg b/.kokoro/continuous/java8.cfg new file mode 100644 index 000000000..3b017fc80 --- /dev/null +++ b/.kokoro/continuous/java8.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} diff --git a/.kokoro/continuous/lint.cfg b/.kokoro/continuous/lint.cfg new file mode 100644 index 000000000..6d323c8ae --- /dev/null +++ b/.kokoro/continuous/lint.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. + +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "JOB_TYPE" + value: "lint" +} \ No newline at end of file diff --git a/.kokoro/continuous/propose_release.cfg b/.kokoro/continuous/propose_release.cfg new file mode 100644 index 000000000..caec726b8 --- /dev/null +++ b/.kokoro/continuous/propose_release.cfg @@ -0,0 +1,53 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Build logs will be here +action { + define_artifacts { + regex: "**/*sponge_log.xml" + } +} + +# Download trampoline resources. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" + +# Use the trampoline script to run in docker. +build_file: "java-compute/.kokoro/trampoline.sh" + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/node:10-user" +} + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/continuous/propose_release.sh" +} + +# tokens used by release-please to keep an up-to-date release PR. +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "github-magic-proxy-key-release-please" + } + } +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "github-magic-proxy-token-release-please" + } + } +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "github-magic-proxy-url-release-please" + } + } +} diff --git a/.kokoro/continuous/propose_release.sh b/.kokoro/continuous/propose_release.sh new file mode 100755 index 000000000..cbcc79d32 --- /dev/null +++ b/.kokoro/continuous/propose_release.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +# Copyright 2019 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. + +set -eo pipefail + +export NPM_CONFIG_PREFIX=/home/node/.npm-global + +if [ -f ${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-url-release-please ]; then + # Groom the release PR as new commits are merged. + npx release-please release-pr --token=${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-token-release-please \ + --repo-url=googleapis/java-compute \ + --package-name="compute" \ + --api-url=${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-url-release-please \ + --proxy-key=${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-key-release-please \ + --release-type=java-yoshi +fi diff --git a/.kokoro/dependencies.sh b/.kokoro/dependencies.sh new file mode 100755 index 000000000..78a5e318e --- /dev/null +++ b/.kokoro/dependencies.sh @@ -0,0 +1,27 @@ +#!/bin/bash +# Copyright 2019 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 +# +# http://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. + +set -eo pipefail + +cd github/java-compute/ + +# Print out Java +java -version +echo $JOB_TYPE + +export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=128m" + +mvn install -DskipTests=true -B -V +mvn -B dependency:analyze -DfailOnWarning=true diff --git a/.kokoro/linkage-monitor.sh b/.kokoro/linkage-monitor.sh new file mode 100755 index 000000000..fd161bcad --- /dev/null +++ b/.kokoro/linkage-monitor.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# Copyright 2019 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 +# +# http://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. + +set -eo pipefail +# Display commands being run. +set -x + +cd github/java-compute/ + +# Print out Java version +java -version +echo ${JOB_TYPE} + +mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dgcloud.download.skip=true -B -V + +# Kokoro job cloud-opensource-java/ubuntu/linkage-monitor-gcs creates this JAR +JAR=linkage-monitor-latest-all-deps.jar +curl -v -O "https://storage.googleapis.com/cloud-opensource-java-linkage-monitor/${JAR}" + +# Fails if there's new linkage errors compared with baseline +java -jar ${JAR} com.google.cloud:libraries-bom diff --git a/.kokoro/nightly/common.cfg b/.kokoro/nightly/common.cfg new file mode 100644 index 000000000..f2bc2232a --- /dev/null +++ b/.kokoro/nightly/common.cfg @@ -0,0 +1,25 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Build logs will be here +action { + define_artifacts { + regex: "**/*sponge_log.xml" + regex: "**/*sponge_log.txt" + } +} + +# Download trampoline resources. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" + +# Use the trampoline script to run in docker. +build_file: "java-compute/.kokoro/trampoline.sh" + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/build.sh" +} + +env_vars: { + key: "JOB_TYPE" + value: "test" +} diff --git a/.kokoro/nightly/dependencies.cfg b/.kokoro/nightly/dependencies.cfg new file mode 100644 index 000000000..902b999b0 --- /dev/null +++ b/.kokoro/nightly/dependencies.cfg @@ -0,0 +1,12 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/dependencies.sh" +} diff --git a/.kokoro/nightly/integration.cfg b/.kokoro/nightly/integration.cfg new file mode 100644 index 000000000..3b017fc80 --- /dev/null +++ b/.kokoro/nightly/integration.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} diff --git a/.kokoro/nightly/java11.cfg b/.kokoro/nightly/java11.cfg new file mode 100644 index 000000000..709f2b4c7 --- /dev/null +++ b/.kokoro/nightly/java11.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java11" +} diff --git a/.kokoro/nightly/java7.cfg b/.kokoro/nightly/java7.cfg new file mode 100644 index 000000000..cb24f44ee --- /dev/null +++ b/.kokoro/nightly/java7.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java7" +} diff --git a/.kokoro/nightly/java8-osx.cfg b/.kokoro/nightly/java8-osx.cfg new file mode 100644 index 000000000..03dbd6025 --- /dev/null +++ b/.kokoro/nightly/java8-osx.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-compute/.kokoro/build.sh" diff --git a/.kokoro/nightly/java8-win.cfg b/.kokoro/nightly/java8-win.cfg new file mode 100644 index 000000000..ae263190a --- /dev/null +++ b/.kokoro/nightly/java8-win.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-compute/.kokoro/build.bat" diff --git a/.kokoro/nightly/java8.cfg b/.kokoro/nightly/java8.cfg new file mode 100644 index 000000000..3b017fc80 --- /dev/null +++ b/.kokoro/nightly/java8.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} diff --git a/.kokoro/nightly/lint.cfg b/.kokoro/nightly/lint.cfg new file mode 100644 index 000000000..6d323c8ae --- /dev/null +++ b/.kokoro/nightly/lint.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. + +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "JOB_TYPE" + value: "lint" +} \ No newline at end of file diff --git a/.kokoro/presubmit/clirr.cfg b/.kokoro/presubmit/clirr.cfg new file mode 100644 index 000000000..ec572442e --- /dev/null +++ b/.kokoro/presubmit/clirr.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. + +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "JOB_TYPE" + value: "clirr" +} \ No newline at end of file diff --git a/.kokoro/presubmit/common.cfg b/.kokoro/presubmit/common.cfg new file mode 100644 index 000000000..75f011434 --- /dev/null +++ b/.kokoro/presubmit/common.cfg @@ -0,0 +1,34 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Build logs will be here +action { + define_artifacts { + regex: "**/*sponge_log.xml" + regex: "**/*sponge_log.txt" + } +} + +# Download trampoline resources. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" + +# Use the trampoline script to run in docker. +build_file: "java-compute/.kokoro/trampoline.sh" + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/build.sh" +} + +env_vars: { + key: "JOB_TYPE" + value: "test" +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "dpebot_codecov_token" + } + } +} diff --git a/.kokoro/presubmit/dependencies.cfg b/.kokoro/presubmit/dependencies.cfg new file mode 100644 index 000000000..902b999b0 --- /dev/null +++ b/.kokoro/presubmit/dependencies.cfg @@ -0,0 +1,12 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/dependencies.sh" +} diff --git a/.kokoro/presubmit/integration.cfg b/.kokoro/presubmit/integration.cfg new file mode 100644 index 000000000..141f90c13 --- /dev/null +++ b/.kokoro/presubmit/integration.cfg @@ -0,0 +1,31 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "java_it_service_account" + } + } +} diff --git a/.kokoro/presubmit/java11.cfg b/.kokoro/presubmit/java11.cfg new file mode 100644 index 000000000..709f2b4c7 --- /dev/null +++ b/.kokoro/presubmit/java11.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java11" +} diff --git a/.kokoro/presubmit/java7.cfg b/.kokoro/presubmit/java7.cfg new file mode 100644 index 000000000..cb24f44ee --- /dev/null +++ b/.kokoro/presubmit/java7.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java7" +} diff --git a/.kokoro/presubmit/java8-osx.cfg b/.kokoro/presubmit/java8-osx.cfg new file mode 100644 index 000000000..03dbd6025 --- /dev/null +++ b/.kokoro/presubmit/java8-osx.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-compute/.kokoro/build.sh" diff --git a/.kokoro/presubmit/java8-win.cfg b/.kokoro/presubmit/java8-win.cfg new file mode 100644 index 000000000..ae263190a --- /dev/null +++ b/.kokoro/presubmit/java8-win.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-compute/.kokoro/build.bat" diff --git a/.kokoro/presubmit/java8.cfg b/.kokoro/presubmit/java8.cfg new file mode 100644 index 000000000..3b017fc80 --- /dev/null +++ b/.kokoro/presubmit/java8.cfg @@ -0,0 +1,7 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} diff --git a/.kokoro/presubmit/linkage-monitor.cfg b/.kokoro/presubmit/linkage-monitor.cfg new file mode 100644 index 000000000..af6f56f3b --- /dev/null +++ b/.kokoro/presubmit/linkage-monitor.cfg @@ -0,0 +1,12 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/linkage-monitor.sh" +} \ No newline at end of file diff --git a/.kokoro/presubmit/lint.cfg b/.kokoro/presubmit/lint.cfg new file mode 100644 index 000000000..6d323c8ae --- /dev/null +++ b/.kokoro/presubmit/lint.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. + +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +env_vars: { + key: "JOB_TYPE" + value: "lint" +} \ No newline at end of file diff --git a/.kokoro/release/bump_snapshot.cfg b/.kokoro/release/bump_snapshot.cfg new file mode 100644 index 000000000..65e2c3c98 --- /dev/null +++ b/.kokoro/release/bump_snapshot.cfg @@ -0,0 +1,53 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Build logs will be here +action { + define_artifacts { + regex: "**/*sponge_log.xml" + } +} + +# Download trampoline resources. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" + +# Use the trampoline script to run in docker. +build_file: "java-compute/.kokoro/trampoline.sh" + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/node:10-user" +} + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/release/bump_snapshot.sh" +} + +# tokens used by release-please to keep an up-to-date release PR. +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "github-magic-proxy-key-release-please" + } + } +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "github-magic-proxy-token-release-please" + } + } +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "github-magic-proxy-url-release-please" + } + } +} diff --git a/.kokoro/release/bump_snapshot.sh b/.kokoro/release/bump_snapshot.sh new file mode 100755 index 000000000..ecd4e9829 --- /dev/null +++ b/.kokoro/release/bump_snapshot.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +# Copyright 2019 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. + +set -eo pipefail + +export NPM_CONFIG_PREFIX=/home/node/.npm-global + +if [ -f ${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-url-release-please ]; then + # Groom the snapshot release PR immediately after publishing a release + npx release-please release-pr --token=${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-token-release-please \ + --repo-url=googleapis/java-compute \ + --package-name="compute" \ + --api-url=${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-url-release-please \ + --proxy-key=${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-key-release-please \ + --snapshot \ + --release-type=java-auth-yoshi +fi diff --git a/.kokoro/release/common.cfg b/.kokoro/release/common.cfg new file mode 100644 index 000000000..69f72aa6e --- /dev/null +++ b/.kokoro/release/common.cfg @@ -0,0 +1,49 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Download trampoline resources. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" + +# Use the trampoline script to run in docker. +build_file: "java-compute/.kokoro/trampoline.sh" + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/java8" +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 70247 + keyname: "maven-gpg-keyring" + } + } +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 70247 + keyname: "maven-gpg-passphrase" + } + } +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 70247 + keyname: "maven-gpg-pubkeyring" + } + } +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 70247 + keyname: "sonatype-credentials" + } + } +} diff --git a/.kokoro/release/common.sh b/.kokoro/release/common.sh new file mode 100755 index 000000000..6e3f65999 --- /dev/null +++ b/.kokoro/release/common.sh @@ -0,0 +1,50 @@ +#!/bin/bash +# Copyright 2018 Google Inc. +# +# 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 +# +# http://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. + +set -eo pipefail + +# Get secrets from keystore and set and environment variables +setup_environment_secrets() { + export GPG_PASSPHRASE=$(cat ${KOKORO_KEYSTORE_DIR}/70247_maven-gpg-passphrase) + export GPG_TTY=$(tty) + export GPG_HOMEDIR=/gpg + mkdir $GPG_HOMEDIR + mv ${KOKORO_KEYSTORE_DIR}/70247_maven-gpg-pubkeyring $GPG_HOMEDIR/pubring.gpg + mv ${KOKORO_KEYSTORE_DIR}/70247_maven-gpg-keyring $GPG_HOMEDIR/secring.gpg + export SONATYPE_USERNAME=$(cat ${KOKORO_KEYSTORE_DIR}/70247_sonatype-credentials | cut -f1 -d'|') + export SONATYPE_PASSWORD=$(cat ${KOKORO_KEYSTORE_DIR}/70247_sonatype-credentials | cut -f2 -d'|') +} + +create_settings_xml_file() { + echo " + + + ossrh + ${SONATYPE_USERNAME} + ${SONATYPE_PASSWORD} + + + sonatype-nexus-staging + ${SONATYPE_USERNAME} + ${SONATYPE_PASSWORD} + + + sonatype-nexus-snapshots + ${SONATYPE_USERNAME} + ${SONATYPE_PASSWORD} + + +" > $1 +} \ No newline at end of file diff --git a/.kokoro/release/drop.cfg b/.kokoro/release/drop.cfg new file mode 100644 index 000000000..5d333406d --- /dev/null +++ b/.kokoro/release/drop.cfg @@ -0,0 +1,9 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/release/drop.sh" +} + +# Download staging properties file. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/java/releases/java-compute" \ No newline at end of file diff --git a/.kokoro/release/drop.sh b/.kokoro/release/drop.sh new file mode 100755 index 000000000..5c4551efa --- /dev/null +++ b/.kokoro/release/drop.sh @@ -0,0 +1,32 @@ +#!/bin/bash +# Copyright 2018 Google Inc. +# +# 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 +# +# http://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. + +set -eo pipefail + +# STAGING_REPOSITORY_ID must be set +if [ -z "${STAGING_REPOSITORY_ID}" ]; then + echo "Missing STAGING_REPOSITORY_ID environment variable" + exit 1 +fi + +source $(dirname "$0")/common.sh +pushd $(dirname "$0")/../../ + +setup_environment_secrets +create_settings_xml_file "settings.xml" + +mvn nexus-staging:drop -B \ + --settings=settings.xml \ + -DstagingRepositoryId=${STAGING_REPOSITORY_ID} diff --git a/.kokoro/release/promote.cfg b/.kokoro/release/promote.cfg new file mode 100644 index 000000000..1e2f399af --- /dev/null +++ b/.kokoro/release/promote.cfg @@ -0,0 +1,10 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/release/promote.sh" +} + +# Download staging properties file. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/java/releases/java-compute" + diff --git a/.kokoro/release/promote.sh b/.kokoro/release/promote.sh new file mode 100755 index 000000000..1fa95fa53 --- /dev/null +++ b/.kokoro/release/promote.sh @@ -0,0 +1,34 @@ +#!/bin/bash +# Copyright 2018 Google Inc. +# +# 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 +# +# http://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. + +set -eo pipefail + +# STAGING_REPOSITORY_ID must be set +if [ -z "${STAGING_REPOSITORY_ID}" ]; then + echo "Missing STAGING_REPOSITORY_ID environment variable" + exit 1 +fi + +source $(dirname "$0")/common.sh + +pushd $(dirname "$0")/../../ + +setup_environment_secrets +create_settings_xml_file "settings.xml" + +mvn nexus-staging:release -B \ + -DperformRelease=true \ + --settings=settings.xml \ + -DstagingRepositoryId=${STAGING_REPOSITORY_ID} diff --git a/.kokoro/release/publish_javadoc.cfg b/.kokoro/release/publish_javadoc.cfg new file mode 100644 index 000000000..25c15b4bc --- /dev/null +++ b/.kokoro/release/publish_javadoc.cfg @@ -0,0 +1,19 @@ +# Format: //devtools/kokoro/config/proto/build.proto +env_vars: { + key: "STAGING_BUCKET" + value: "docs-staging" +} + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/release/publish_javadoc.sh" +} + +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "docuploader_service_account" + } + } +} diff --git a/.kokoro/release/publish_javadoc.sh b/.kokoro/release/publish_javadoc.sh new file mode 100755 index 000000000..3b25b5021 --- /dev/null +++ b/.kokoro/release/publish_javadoc.sh @@ -0,0 +1,55 @@ +#!/bin/bash +# Copyright 2019 Google Inc. +# +# 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 +# +# http://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. + +set -eo pipefail + +if [[ -z "${CREDENTIALS}" ]]; then + CREDENTIALS=${KOKORO_KEYSTORE_DIR}/73713_docuploader_service_account +fi + +if [[ -z "${STAGING_BUCKET}" ]]; then + echo "Need to set STAGING_BUCKET environment variable" + exit 1 +fi + +# work from the git root directory +pushd $(dirname "$0")/../../ + +# install docuploader package +python3 -m pip install gcp-docuploader + +# compile all packages +mvn clean install -B -DskipTests=true + +NAME=compute +VERSION=$(grep ${NAME}: versions.txt | cut -d: -f3) + +# build the docs +mvn site -B + +pushd target/site/apidocs + +# create metadata +python3 -m docuploader create-metadata \ + --name ${NAME} \ + --version ${VERSION} \ + --language java + +# upload docs +python3 -m docuploader upload . \ + --credentials ${CREDENTIALS} \ + --staging-bucket ${STAGING_BUCKET} + +popd diff --git a/.kokoro/release/snapshot.cfg b/.kokoro/release/snapshot.cfg new file mode 100644 index 000000000..f5cae5f3a --- /dev/null +++ b/.kokoro/release/snapshot.cfg @@ -0,0 +1,6 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/release/snapshot.sh" +} \ No newline at end of file diff --git a/.kokoro/release/snapshot.sh b/.kokoro/release/snapshot.sh new file mode 100755 index 000000000..098168a73 --- /dev/null +++ b/.kokoro/release/snapshot.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# Copyright 2019 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 +# +# http://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. + +set -eo pipefail + +source $(dirname "$0")/common.sh +MAVEN_SETTINGS_FILE=$(realpath $(dirname "$0")/../../)/settings.xml +pushd $(dirname "$0")/../../ + +# ensure we're trying to push a snapshot (no-result returns non-zero exit code) +grep SNAPSHOT versions.txt + +setup_environment_secrets +create_settings_xml_file "settings.xml" + +mvn clean install deploy -B \ + --settings ${MAVEN_SETTINGS_FILE} \ + -DperformRelease=true \ + -Dgpg.executable=gpg \ + -Dgpg.passphrase=${GPG_PASSPHRASE} \ + -Dgpg.homedir=${GPG_HOMEDIR} diff --git a/.kokoro/release/stage.cfg b/.kokoro/release/stage.cfg new file mode 100644 index 000000000..f4a4af1c7 --- /dev/null +++ b/.kokoro/release/stage.cfg @@ -0,0 +1,44 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-compute/.kokoro/release/stage.sh" +} + +# Need to save the properties file +action { + define_artifacts { + regex: "github/java-compute/target/nexus-staging/staging/*.properties" + strip_prefix: "github/java-compute" + } +} + +# Fetch the token needed for reporting release status to GitHub +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "yoshi-automation-github-key" + } + } +} + +# Fetch magictoken to use with Magic Github Proxy +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "releasetool-magictoken" + } + } +} + +# Fetch api key to use with Magic Github Proxy +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73713 + keyname: "magic-github-proxy-api-key" + } + } +} diff --git a/.kokoro/release/stage.sh b/.kokoro/release/stage.sh new file mode 100755 index 000000000..3c482cbc5 --- /dev/null +++ b/.kokoro/release/stage.sh @@ -0,0 +1,42 @@ +#!/bin/bash +# Copyright 2018 Google Inc. +# +# 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 +# +# http://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. + +set -eo pipefail + +# Start the releasetool reporter +python3 -m pip install gcp-releasetool +python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script + +source $(dirname "$0")/common.sh +MAVEN_SETTINGS_FILE=$(realpath $(dirname "$0")/../../)/settings.xml +pushd $(dirname "$0")/../../ + +setup_environment_secrets +create_settings_xml_file "settings.xml" + +mvn clean install deploy -B \ + --settings ${MAVEN_SETTINGS_FILE} \ + -DskipTests=true \ + -DperformRelease=true \ + -Dgpg.executable=gpg \ + -Dgpg.passphrase=${GPG_PASSPHRASE} \ + -Dgpg.homedir=${GPG_HOMEDIR} + +if [[ -n "${AUTORELEASE_PR}" ]] +then + mvn nexus-staging:release -B \ + -DperformRelease=true \ + --settings=settings.xml +fi \ No newline at end of file diff --git a/.kokoro/trampoline.sh b/.kokoro/trampoline.sh new file mode 100644 index 000000000..ba17ce014 --- /dev/null +++ b/.kokoro/trampoline.sh @@ -0,0 +1,24 @@ +#!/bin/bash +# Copyright 2018 Google Inc. +# +# 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 +# +# http://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. +set -eo pipefail +# Always run the cleanup script, regardless of the success of bouncing into +# the container. +function cleanup() { + chmod +x ${KOKORO_GFILE_DIR}/trampoline_cleanup.sh + ${KOKORO_GFILE_DIR}/trampoline_cleanup.sh + echo "cleanup"; +} +trap cleanup EXIT +python3 "${KOKORO_GFILE_DIR}/trampoline_v1.py" diff --git a/google-cloud-compute/.repo-metadata.json b/.repo-metadata.json similarity index 86% rename from google-cloud-compute/.repo-metadata.json rename to .repo-metadata.json index 78eba1386..664a124d3 100644 --- a/google-cloud-compute/.repo-metadata.json +++ b/.repo-metadata.json @@ -6,8 +6,8 @@ "issue_tracker": "https://issuetracker.google.com/savedsearches/559755", "release_level": "alpha", "language": "java", - "repo": "googleapis/google-cloud-java", - "repo_short": "google-cloud-java", + "repo": "googleapis/java-compute", + "repo_short": "java-compute", "distribution_name": "com.google.cloud:google-cloud-compute", "api_id": "compute.googleapis.com" } \ No newline at end of file diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..6b2238bb7 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,93 @@ +# Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of +experience, education, socio-economic status, nationality, personal appearance, +race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, or to ban temporarily or permanently any +contributor for other behaviors that they deem inappropriate, threatening, +offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +This Code of Conduct also applies outside the project spaces when the Project +Steward has a reasonable belief that an individual's behavior may have a +negative impact on the project or its community. + +## Conflict Resolution + +We do not believe that all conflict is bad; healthy debate and disagreement +often yield positive results. However, it is never okay to be disrespectful or +to engage in behavior that violates the project’s code of conduct. + +If you see someone violating the code of conduct, you are encouraged to address +the behavior directly with those involved. Many issues can be resolved quickly +and easily, and this gives people more control over the outcome of their +dispute. If you are unable to resolve the matter for any reason, or if the +behavior is threatening or harassing, report it. We are dedicated to providing +an environment where participants feel welcome and safe. + +Reports should be directed to *[PROJECT STEWARD NAME(s) AND EMAIL(s)]*, the +Project Steward(s) for *[PROJECT NAME]*. It is the Project Steward’s duty to +receive and address reported violations of the code of conduct. They will then +work with a committee consisting of representatives from the Open Source +Programs Office and the Google Open Source Strategy team. If for any reason you +are uncomfortable reaching out the Project Steward, please email +opensource@google.com. + +We will investigate every complaint, but you may not receive a direct response. +We will use our discretion in determining when and how to follow up on reported +incidents, which may range from not taking action to permanent expulsion from +the project and project-sponsored spaces. We will notify the accused of the +report and provide them an opportunity to discuss it before any action is taken. +The identity of the reporter will be omitted from the details of the report +supplied to the accused. In potentially harmful situations, such as ongoing +harassment or threats to anyone's safety, we may take action without notice. + +## Attribution + +This Code of Conduct is adapted from the Contributor Covenant, version 1.4, +available at +https://www.contributor-covenant.org/version/1/4/code-of-conduct.html \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..ebbb59e53 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,28 @@ +# How to Contribute + +We'd love to accept your patches and contributions to this project. There are +just a few small guidelines you need to follow. + +## Contributor License Agreement + +Contributions to this project must be accompanied by a Contributor License +Agreement. You (or your employer) retain the copyright to your contribution; +this simply gives us permission to use and redistribute your contributions as +part of the project. Head over to to see +your current agreements on file or to sign a new one. + +You generally only need to submit a CLA once, so if you've already submitted one +(even if it was for a different project), you probably don't need to do it +again. + +## Code reviews + +All submissions, including submissions by project members, require review. We +use GitHub pull requests for this purpose. Consult +[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more +information on using pull requests. + +## Community Guidelines + +This project follows +[Google's Open Source Community Guidelines](https://opensource.google.com/conduct/). \ No newline at end of file diff --git a/LICENSE b/LICENSE index 4eedc0116..d64569567 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,5 @@ -Apache License + + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -178,7 +179,7 @@ Apache License APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" + boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a diff --git a/google-cloud-compute/README.md b/README.md similarity index 100% rename from google-cloud-compute/README.md rename to README.md diff --git a/codecov.yaml b/codecov.yaml new file mode 100644 index 000000000..5724ea947 --- /dev/null +++ b/codecov.yaml @@ -0,0 +1,4 @@ +--- +codecov: + ci: + - source.cloud.google.com diff --git a/google-cloud-compute/pom.xml b/google-cloud-compute/pom.xml deleted file mode 100644 index 296c6c95a..000000000 --- a/google-cloud-compute/pom.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - 4.0.0 - google-cloud-compute - 0.117.0-alpha - jar - Google Cloud Compute - https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-compute - - Java idiomatic client for Google Cloud Compute Engine. - - - com.google.cloud - google-cloud-clients - 0.117.0-alpha - - - google-cloud-compute - - - - ${project.groupId} - google-cloud-core-http - - - com.google.apis - google-api-services-compute - compile - - - - - ${project.groupId} - google-cloud-core - test-jar - test - - - org.easymock - easymock - test - - - org.objenesis - objenesis - test - - - com.google.api - gax-httpjson - testlib - test - - - com.google.api - gax - testlib - test - - - com.google.truth - truth - test - - - diff --git a/java.header b/java.header new file mode 100644 index 000000000..3a9b503aa --- /dev/null +++ b/java.header @@ -0,0 +1,15 @@ +^/\*$ +^ \* Copyright \d\d\d\d,? Google (Inc\.|LLC)( All [rR]ights [rR]eserved\.)?$ +^ \*$ +^ \* 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\.$ +^ \*/$ diff --git a/license-checks.xml b/license-checks.xml new file mode 100644 index 000000000..6597fced8 --- /dev/null +++ b/license-checks.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..122106b17 --- /dev/null +++ b/pom.xml @@ -0,0 +1,239 @@ + + + 4.0.0 + com.google.cloud + google-cloud-compute + pom + 0.117.0-alpha + Google Cloud Compute + https://github.com/googleapis/java-compute + + Java idiomatic client for Google Cloud Compute Engine. + + + + com.google.cloud + google-cloud-shared-config + 0.2.1 + + + + + chingor + Jeff Ching + chingor@google.com + Google + + Developer + + + + + Google LLC + + + scm:git:git@github.com:googleapis/java-compute.git + scm:git:git@github.com:googleapis/java-compute.git + https://github.com/googleapis/java-compute + HEAD + + + https://github.com/googleapis/java-compute/issues + GitHub Issues + + + + sonatype-nexus-snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + + + + + UTF-8 + UTF-8 + github + google-cloud-compute + 1.91.1 + 1.8.1 + 1.17.0 + 1.49.0 + 1.24.0 + 3.10.0 + 4.12 + 28.1-android + 1.4.0 + 1.3.2 + 1.18 + + + + + + com.google.cloud + google-cloud-compute + 0.117.0-alpha + + + + io.grpc + grpc-bom + ${grpc.version} + pom + import + + + com.google.api + gax-bom + ${gax.version} + pom + import + + + com.google.guava + guava-bom + ${guava.version} + pom + import + + + + com.google.protobuf + protobuf-java + ${protobuf.version} + + + com.google.api + api-common + ${google.api-common.version} + + + com.google.api.grpc + proto-google-common-protos + ${google.common-protos.version} + + + org.threeten + threetenbp + ${threeten.version} + + + javax.annotation + javax.annotation-api + ${javax.annotations.version} + + + org.codehaus.mojo + animal-sniffer-annotations + ${animal-sniffer.version} + + + + junit + junit + ${junit.version} + test + + + com.google.api + gax-grpc + ${gax.version} + testlib + test + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + org.objenesis:objenesis + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + + index + dependency-info + team + ci-management + issue-management + licenses + scm + dependency-management + distribution-management + summary + modules + + + + + true + ${site.installationModule} + jar + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + + html + + aggregate + javadoc + + + + + none + protected + true + ${project.build.directory}/javadoc + + + Test helpers packages + com.google.cloud.testing + + + SPI packages + com.google.cloud.spi* + + + + + https://grpc.io/grpc-java/javadoc/ + https://developers.google.com/protocol-buffers/docs/reference/java/ + https://googleapis.dev/java/google-auth-library/latest/ + https://googleapis.dev/java/gax/latest/ + https://googleapis.github.io/api-common-java/${google.api-common.version}/apidocs/ + + + + + + \ No newline at end of file diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..998104700 --- /dev/null +++ b/renovate.json @@ -0,0 +1,27 @@ +{ + "extends": [ + "config:base" + ], + "ignoreDeps": [], + "packageRules": [ + { + "managers": ["maven"], + "packageNames": ["com.google.guava:guava*"], + "versionScheme": "docker" + }, + { + "packagePatterns": ["^io.grpc:grpc-"], + "groupName": "gRPC packages" + }, + { + "packagePatterns": ["^com.google.protobuf:protobuf-"], + "groupName": "Protobuf packages" + }, + { + "packagePatterns": ["^io.opencensus:opencensus-"], + "groupName": "OpenCensus packages" + } + ], + "semanticCommits": true, + "semanticCommitType": "deps" +} diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/Regions.java b/src/main/java/com/google/cloud/compute/Regions.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/Regions.java rename to src/main/java/com/google/cloud/compute/Regions.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Address.java b/src/main/java/com/google/cloud/compute/deprecated/Address.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Address.java rename to src/main/java/com/google/cloud/compute/deprecated/Address.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/AddressId.java b/src/main/java/com/google/cloud/compute/deprecated/AddressId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/AddressId.java rename to src/main/java/com/google/cloud/compute/deprecated/AddressId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/AddressInfo.java b/src/main/java/com/google/cloud/compute/deprecated/AddressInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/AddressInfo.java rename to src/main/java/com/google/cloud/compute/deprecated/AddressInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/AttachedDisk.java b/src/main/java/com/google/cloud/compute/deprecated/AttachedDisk.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/AttachedDisk.java rename to src/main/java/com/google/cloud/compute/deprecated/AttachedDisk.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Compute.java b/src/main/java/com/google/cloud/compute/deprecated/Compute.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Compute.java rename to src/main/java/com/google/cloud/compute/deprecated/Compute.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ComputeException.java b/src/main/java/com/google/cloud/compute/deprecated/ComputeException.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ComputeException.java rename to src/main/java/com/google/cloud/compute/deprecated/ComputeException.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ComputeFactory.java b/src/main/java/com/google/cloud/compute/deprecated/ComputeFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ComputeFactory.java rename to src/main/java/com/google/cloud/compute/deprecated/ComputeFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ComputeImpl.java b/src/main/java/com/google/cloud/compute/deprecated/ComputeImpl.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ComputeImpl.java rename to src/main/java/com/google/cloud/compute/deprecated/ComputeImpl.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ComputeOptions.java b/src/main/java/com/google/cloud/compute/deprecated/ComputeOptions.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ComputeOptions.java rename to src/main/java/com/google/cloud/compute/deprecated/ComputeOptions.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DeprecationStatus.java b/src/main/java/com/google/cloud/compute/deprecated/DeprecationStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DeprecationStatus.java rename to src/main/java/com/google/cloud/compute/deprecated/DeprecationStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Disk.java b/src/main/java/com/google/cloud/compute/deprecated/Disk.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Disk.java rename to src/main/java/com/google/cloud/compute/deprecated/Disk.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/DiskConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/DiskConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskId.java b/src/main/java/com/google/cloud/compute/deprecated/DiskId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskId.java rename to src/main/java/com/google/cloud/compute/deprecated/DiskId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskImageConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/DiskImageConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskImageConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/DiskImageConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskInfo.java b/src/main/java/com/google/cloud/compute/deprecated/DiskInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskInfo.java rename to src/main/java/com/google/cloud/compute/deprecated/DiskInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskType.java b/src/main/java/com/google/cloud/compute/deprecated/DiskType.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskType.java rename to src/main/java/com/google/cloud/compute/deprecated/DiskType.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskTypeId.java b/src/main/java/com/google/cloud/compute/deprecated/DiskTypeId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/DiskTypeId.java rename to src/main/java/com/google/cloud/compute/deprecated/DiskTypeId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ForwardingRuleId.java b/src/main/java/com/google/cloud/compute/deprecated/ForwardingRuleId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ForwardingRuleId.java rename to src/main/java/com/google/cloud/compute/deprecated/ForwardingRuleId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/GlobalAddressId.java b/src/main/java/com/google/cloud/compute/deprecated/GlobalAddressId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/GlobalAddressId.java rename to src/main/java/com/google/cloud/compute/deprecated/GlobalAddressId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/GlobalForwardingRuleId.java b/src/main/java/com/google/cloud/compute/deprecated/GlobalForwardingRuleId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/GlobalForwardingRuleId.java rename to src/main/java/com/google/cloud/compute/deprecated/GlobalForwardingRuleId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/GlobalOperationId.java b/src/main/java/com/google/cloud/compute/deprecated/GlobalOperationId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/GlobalOperationId.java rename to src/main/java/com/google/cloud/compute/deprecated/GlobalOperationId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Image.java b/src/main/java/com/google/cloud/compute/deprecated/Image.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Image.java rename to src/main/java/com/google/cloud/compute/deprecated/Image.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ImageConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/ImageConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ImageConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/ImageConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ImageDiskConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/ImageDiskConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ImageDiskConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/ImageDiskConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ImageId.java b/src/main/java/com/google/cloud/compute/deprecated/ImageId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ImageId.java rename to src/main/java/com/google/cloud/compute/deprecated/ImageId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ImageInfo.java b/src/main/java/com/google/cloud/compute/deprecated/ImageInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ImageInfo.java rename to src/main/java/com/google/cloud/compute/deprecated/ImageInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Instance.java b/src/main/java/com/google/cloud/compute/deprecated/Instance.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Instance.java rename to src/main/java/com/google/cloud/compute/deprecated/Instance.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/InstanceId.java b/src/main/java/com/google/cloud/compute/deprecated/InstanceId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/InstanceId.java rename to src/main/java/com/google/cloud/compute/deprecated/InstanceId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/InstanceInfo.java b/src/main/java/com/google/cloud/compute/deprecated/InstanceInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/InstanceInfo.java rename to src/main/java/com/google/cloud/compute/deprecated/InstanceInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/License.java b/src/main/java/com/google/cloud/compute/deprecated/License.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/License.java rename to src/main/java/com/google/cloud/compute/deprecated/License.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/LicenseId.java b/src/main/java/com/google/cloud/compute/deprecated/LicenseId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/LicenseId.java rename to src/main/java/com/google/cloud/compute/deprecated/LicenseId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/MachineType.java b/src/main/java/com/google/cloud/compute/deprecated/MachineType.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/MachineType.java rename to src/main/java/com/google/cloud/compute/deprecated/MachineType.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/MachineTypeId.java b/src/main/java/com/google/cloud/compute/deprecated/MachineTypeId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/MachineTypeId.java rename to src/main/java/com/google/cloud/compute/deprecated/MachineTypeId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Metadata.java b/src/main/java/com/google/cloud/compute/deprecated/Metadata.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Metadata.java rename to src/main/java/com/google/cloud/compute/deprecated/Metadata.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Network.java b/src/main/java/com/google/cloud/compute/deprecated/Network.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Network.java rename to src/main/java/com/google/cloud/compute/deprecated/Network.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/NetworkConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/NetworkConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/NetworkConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/NetworkConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/NetworkId.java b/src/main/java/com/google/cloud/compute/deprecated/NetworkId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/NetworkId.java rename to src/main/java/com/google/cloud/compute/deprecated/NetworkId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/NetworkInfo.java b/src/main/java/com/google/cloud/compute/deprecated/NetworkInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/NetworkInfo.java rename to src/main/java/com/google/cloud/compute/deprecated/NetworkInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/NetworkInterface.java b/src/main/java/com/google/cloud/compute/deprecated/NetworkInterface.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/NetworkInterface.java rename to src/main/java/com/google/cloud/compute/deprecated/NetworkInterface.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Operation.java b/src/main/java/com/google/cloud/compute/deprecated/Operation.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Operation.java rename to src/main/java/com/google/cloud/compute/deprecated/Operation.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/OperationId.java b/src/main/java/com/google/cloud/compute/deprecated/OperationId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/OperationId.java rename to src/main/java/com/google/cloud/compute/deprecated/OperationId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Option.java b/src/main/java/com/google/cloud/compute/deprecated/Option.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Option.java rename to src/main/java/com/google/cloud/compute/deprecated/Option.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Region.java b/src/main/java/com/google/cloud/compute/deprecated/Region.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Region.java rename to src/main/java/com/google/cloud/compute/deprecated/Region.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/RegionAddressId.java b/src/main/java/com/google/cloud/compute/deprecated/RegionAddressId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/RegionAddressId.java rename to src/main/java/com/google/cloud/compute/deprecated/RegionAddressId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/RegionForwardingRuleId.java b/src/main/java/com/google/cloud/compute/deprecated/RegionForwardingRuleId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/RegionForwardingRuleId.java rename to src/main/java/com/google/cloud/compute/deprecated/RegionForwardingRuleId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/RegionId.java b/src/main/java/com/google/cloud/compute/deprecated/RegionId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/RegionId.java rename to src/main/java/com/google/cloud/compute/deprecated/RegionId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/RegionOperationId.java b/src/main/java/com/google/cloud/compute/deprecated/RegionOperationId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/RegionOperationId.java rename to src/main/java/com/google/cloud/compute/deprecated/RegionOperationId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ResourceId.java b/src/main/java/com/google/cloud/compute/deprecated/ResourceId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ResourceId.java rename to src/main/java/com/google/cloud/compute/deprecated/ResourceId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SchedulingOptions.java b/src/main/java/com/google/cloud/compute/deprecated/SchedulingOptions.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SchedulingOptions.java rename to src/main/java/com/google/cloud/compute/deprecated/SchedulingOptions.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ServiceAccount.java b/src/main/java/com/google/cloud/compute/deprecated/ServiceAccount.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ServiceAccount.java rename to src/main/java/com/google/cloud/compute/deprecated/ServiceAccount.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Snapshot.java b/src/main/java/com/google/cloud/compute/deprecated/Snapshot.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Snapshot.java rename to src/main/java/com/google/cloud/compute/deprecated/Snapshot.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SnapshotDiskConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/SnapshotDiskConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SnapshotDiskConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/SnapshotDiskConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SnapshotId.java b/src/main/java/com/google/cloud/compute/deprecated/SnapshotId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SnapshotId.java rename to src/main/java/com/google/cloud/compute/deprecated/SnapshotId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SnapshotInfo.java b/src/main/java/com/google/cloud/compute/deprecated/SnapshotInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SnapshotInfo.java rename to src/main/java/com/google/cloud/compute/deprecated/SnapshotInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/StandardDiskConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/StandardDiskConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/StandardDiskConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/StandardDiskConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/StandardNetworkConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/StandardNetworkConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/StandardNetworkConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/StandardNetworkConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/StorageImageConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/StorageImageConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/StorageImageConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/StorageImageConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SubnetNetworkConfiguration.java b/src/main/java/com/google/cloud/compute/deprecated/SubnetNetworkConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SubnetNetworkConfiguration.java rename to src/main/java/com/google/cloud/compute/deprecated/SubnetNetworkConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Subnetwork.java b/src/main/java/com/google/cloud/compute/deprecated/Subnetwork.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Subnetwork.java rename to src/main/java/com/google/cloud/compute/deprecated/Subnetwork.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SubnetworkId.java b/src/main/java/com/google/cloud/compute/deprecated/SubnetworkId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SubnetworkId.java rename to src/main/java/com/google/cloud/compute/deprecated/SubnetworkId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SubnetworkInfo.java b/src/main/java/com/google/cloud/compute/deprecated/SubnetworkInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/SubnetworkInfo.java rename to src/main/java/com/google/cloud/compute/deprecated/SubnetworkInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Tags.java b/src/main/java/com/google/cloud/compute/deprecated/Tags.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Tags.java rename to src/main/java/com/google/cloud/compute/deprecated/Tags.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Zone.java b/src/main/java/com/google/cloud/compute/deprecated/Zone.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/Zone.java rename to src/main/java/com/google/cloud/compute/deprecated/Zone.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ZoneId.java b/src/main/java/com/google/cloud/compute/deprecated/ZoneId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ZoneId.java rename to src/main/java/com/google/cloud/compute/deprecated/ZoneId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ZoneOperationId.java b/src/main/java/com/google/cloud/compute/deprecated/ZoneOperationId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/ZoneOperationId.java rename to src/main/java/com/google/cloud/compute/deprecated/ZoneOperationId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/package-info.java b/src/main/java/com/google/cloud/compute/deprecated/package-info.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/package-info.java rename to src/main/java/com/google/cloud/compute/deprecated/package-info.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/spi/ComputeRpcFactory.java b/src/main/java/com/google/cloud/compute/deprecated/spi/ComputeRpcFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/spi/ComputeRpcFactory.java rename to src/main/java/com/google/cloud/compute/deprecated/spi/ComputeRpcFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/spi/v1/ComputeRpc.java b/src/main/java/com/google/cloud/compute/deprecated/spi/v1/ComputeRpc.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/spi/v1/ComputeRpc.java rename to src/main/java/com/google/cloud/compute/deprecated/spi/v1/ComputeRpc.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/spi/v1/HttpComputeRpc.java b/src/main/java/com/google/cloud/compute/deprecated/spi/v1/HttpComputeRpc.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/spi/v1/HttpComputeRpc.java rename to src/main/java/com/google/cloud/compute/deprecated/spi/v1/HttpComputeRpc.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/testing/RemoteComputeHelper.java b/src/main/java/com/google/cloud/compute/deprecated/testing/RemoteComputeHelper.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/testing/RemoteComputeHelper.java rename to src/main/java/com/google/cloud/compute/deprecated/testing/RemoteComputeHelper.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/testing/ResourceCleaner.java b/src/main/java/com/google/cloud/compute/deprecated/testing/ResourceCleaner.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/testing/ResourceCleaner.java rename to src/main/java/com/google/cloud/compute/deprecated/testing/ResourceCleaner.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/testing/package-info.java b/src/main/java/com/google/cloud/compute/deprecated/testing/package-info.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/deprecated/testing/package-info.java rename to src/main/java/com/google/cloud/compute/deprecated/testing/package-info.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AbandonInstancesInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AbandonInstancesInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AbandonInstancesInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AbandonInstancesInstanceGroupManagerHttpRequest.java index 242b14dfc..e76373833 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AbandonInstancesInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AbandonInstancesInstanceGroupManagerHttpRequest.java @@ -37,7 +37,8 @@ * to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== suppress_warning + * http-rest-shadowed ==) */ public final class AbandonInstancesInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AbandonInstancesRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AbandonInstancesRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AbandonInstancesRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AbandonInstancesRegionInstanceGroupManagerHttpRequest.java index e73fde391..bfbd3510a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AbandonInstancesRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AbandonInstancesRegionInstanceGroupManagerHttpRequest.java @@ -37,7 +37,8 @@ * to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== suppress_warning + * http-rest-shadowed ==) */ public final class AbandonInstancesRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorConfig.java b/src/main/java/com/google/cloud/compute/v1/AcceleratorConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorConfig.java rename to src/main/java/com/google/cloud/compute/v1/AcceleratorConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorType.java b/src/main/java/com/google/cloud/compute/v1/AcceleratorType.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorType.java rename to src/main/java/com/google/cloud/compute/v1/AcceleratorType.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/AcceleratorTypeAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeClient.java b/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeClient.java rename to src/main/java/com/google/cloud/compute/v1/AcceleratorTypeClient.java index ed3172caa..49b5a56b8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeClient.java +++ b/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeClient.java @@ -156,7 +156,7 @@ public AcceleratorTypeStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of accelerator types. + * Retrieves an aggregated list of accelerator types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -184,7 +184,7 @@ public final AggregatedListAcceleratorTypesPagedResponse aggregatedListAccelerat // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of accelerator types. + * Retrieves an aggregated list of accelerator types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -210,7 +210,7 @@ public final AggregatedListAcceleratorTypesPagedResponse aggregatedListAccelerat // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of accelerator types. + * Retrieves an aggregated list of accelerator types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -237,7 +237,7 @@ public final AggregatedListAcceleratorTypesPagedResponse aggregatedListAccelerat // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of accelerator types. + * Retrieves an aggregated list of accelerator types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -264,7 +264,7 @@ public final AggregatedListAcceleratorTypesPagedResponse aggregatedListAccelerat // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of accelerator types. + * Retrieves an aggregated list of accelerator types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -298,7 +298,7 @@ public final AggregatedListAcceleratorTypesPagedResponse aggregatedListAccelerat // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified accelerator type. + * Returns the specified accelerator type. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -324,7 +324,7 @@ public final AcceleratorType getAcceleratorType(ProjectZoneAcceleratorTypeName a // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified accelerator type. + * Returns the specified accelerator type. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -348,7 +348,7 @@ public final AcceleratorType getAcceleratorType(String acceleratorType) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified accelerator type. + * Returns the specified accelerator type. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -372,7 +372,7 @@ public final AcceleratorType getAcceleratorType(GetAcceleratorTypeHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified accelerator type. + * Returns the specified accelerator type. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -396,7 +396,8 @@ public final AcceleratorType getAcceleratorType(GetAcceleratorTypeHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of accelerator types available to the specified project. + * Retrieves a list of accelerator types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -423,7 +424,8 @@ public final ListAcceleratorTypesPagedResponse listAcceleratorTypes(ProjectZoneN // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of accelerator types available to the specified project. + * Retrieves a list of accelerator types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -448,7 +450,8 @@ public final ListAcceleratorTypesPagedResponse listAcceleratorTypes(String zone) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of accelerator types available to the specified project. + * Retrieves a list of accelerator types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -475,7 +478,8 @@ public final ListAcceleratorTypesPagedResponse listAcceleratorTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of accelerator types available to the specified project. + * Retrieves a list of accelerator types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -501,7 +505,8 @@ public final ListAcceleratorTypesPagedResponse listAcceleratorTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of accelerator types available to the specified project. + * Retrieves a list of accelerator types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeList.java b/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeList.java rename to src/main/java/com/google/cloud/compute/v1/AcceleratorTypeList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeSettings.java b/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypeSettings.java rename to src/main/java/com/google/cloud/compute/v1/AcceleratorTypeSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypesScopedList.java b/src/main/java/com/google/cloud/compute/v1/AcceleratorTypesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AcceleratorTypesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/AcceleratorTypesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AccessConfig.java b/src/main/java/com/google/cloud/compute/v1/AccessConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AccessConfig.java rename to src/main/java/com/google/cloud/compute/v1/AccessConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddAccessConfigInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddAccessConfigInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddAccessConfigInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddAccessConfigInstanceHttpRequest.java index 423129eea..655532076 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddAccessConfigInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddAccessConfigInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.addAccessConfig. Adds an access config to an - * instance's network interface. + * instance's network interface. (== suppress_warning http-rest-shadowed ==) */ public final class AddAccessConfigInstanceHttpRequest implements ApiMessage { private final AccessConfig accessConfigResource; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddHealthCheckTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddHealthCheckTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddHealthCheckTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddHealthCheckTargetPoolHttpRequest.java index 12cb3917a..eb920b15c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddHealthCheckTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddHealthCheckTargetPoolHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetPools.addHealthCheck. Adds health check URLs to a target - * pool. + * pool. (== suppress_warning http-rest-shadowed ==) */ public final class AddHealthCheckTargetPoolHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddInstanceTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddInstanceTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddInstanceTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddInstanceTargetPoolHttpRequest.java index fdd3efef4..e8fd7aec0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddInstanceTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddInstanceTargetPoolHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.targetPools.addInstance. Adds an instance to a target pool. */ +/** + * Request object for method compute.targetPools.addInstance. Adds an instance to a target pool. (== + * suppress_warning http-rest-shadowed ==) + */ public final class AddInstanceTargetPoolHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddInstancesInstanceGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddInstancesInstanceGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddInstancesInstanceGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddInstancesInstanceGroupHttpRequest.java index bfdcdf724..25cb8454a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddInstancesInstanceGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddInstancesInstanceGroupHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.instanceGroups.addInstances. Adds a list of instances to the * specified instance group. All of the instances in the instance group must be in the same - * network/subnetwork. Read Adding instances for more information. + * network/subnetwork. Read Adding instances for more information. (== suppress_warning + * http-rest-shadowed ==) */ public final class AddInstancesInstanceGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddNodesNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddNodesNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddNodesNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddNodesNodeGroupHttpRequest.java index 7c057bf2e..01f19e0aa 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddNodesNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddNodesNodeGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeGroups.addNodes. Adds specified number of nodes to the node - * group. + * group. (== suppress_warning http-rest-shadowed ==) */ public final class AddNodesNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddPeeringNetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddPeeringNetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddPeeringNetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddPeeringNetworkHttpRequest.java index 7b19b696a..9a51d2fcc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddPeeringNetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddPeeringNetworkHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.networks.addPeering. Adds a peering to the specified network. + * (== suppress_warning http-rest-shadowed ==) */ public final class AddPeeringNetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesDiskHttpRequest.java index fda69dec7..f3d644411 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesDiskHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.disks.addResourcePolicies. Adds existing resource policies to a * disk. You can only add one policy which will be applied to this disk for scheduling snapshot - * creation. + * creation. (== suppress_warning http-rest-shadowed ==) */ public final class AddResourcePoliciesDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesRegionDiskHttpRequest.java index 4df732b00..1cb34129b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddResourcePoliciesRegionDiskHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.regionDisks.addResourcePolicies. Adds existing resource * policies to a regional disk. You can only add one policy which will be applied to this disk for - * scheduling snapshot creation. + * scheduling snapshot creation. (== suppress_warning http-rest-shadowed ==) */ public final class AddResourcePoliciesRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddRuleSecurityPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddRuleSecurityPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddRuleSecurityPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddRuleSecurityPolicyHttpRequest.java index 15f578666..1da8bb922 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddRuleSecurityPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddRuleSecurityPolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.securityPolicies.addRule. Inserts a rule into a security - * policy. + * policy. (== suppress_warning http-rest-shadowed ==) */ public final class AddRuleSecurityPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendBucketHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendBucketHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendBucketHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendBucketHttpRequest.java index f427e945c..ee4586eb5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendBucketHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendBucketHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendBuckets.addSignedUrlKey. Adds a key for validating - * requests with signed URLs for this backend bucket. + * requests with signed URLs for this backend bucket. (== suppress_warning http-rest-shadowed ==) */ public final class AddSignedUrlKeyBackendBucketHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendServiceHttpRequest.java index c499fbae6..a13fc9bde 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AddSignedUrlKeyBackendServiceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendServices.addSignedUrlKey. Adds a key for validating - * requests with signed URLs for this backend service. + * requests with signed URLs for this backend service. (== suppress_warning http-rest-shadowed ==) */ public final class AddSignedUrlKeyBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Address.java b/src/main/java/com/google/cloud/compute/v1/Address.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Address.java rename to src/main/java/com/google/cloud/compute/v1/Address.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/AddressAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/AddressAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressClient.java b/src/main/java/com/google/cloud/compute/v1/AddressClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressClient.java rename to src/main/java/com/google/cloud/compute/v1/AddressClient.java index ddd28fbc5..cbafa1a0e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressClient.java +++ b/src/main/java/com/google/cloud/compute/v1/AddressClient.java @@ -153,7 +153,7 @@ public AddressStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of addresses. + * Retrieves an aggregated list of addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -180,7 +180,7 @@ public final AggregatedListAddressesPagedResponse aggregatedListAddresses(Projec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of addresses. + * Retrieves an aggregated list of addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final AggregatedListAddressesPagedResponse aggregatedListAddresses(String // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of addresses. + * Retrieves an aggregated list of addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -232,7 +232,7 @@ public final AggregatedListAddressesPagedResponse aggregatedListAddresses( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of addresses. + * Retrieves an aggregated list of addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -259,7 +259,7 @@ public final AggregatedListAddressesPagedResponse aggregatedListAddresses( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of addresses. + * Retrieves an aggregated list of addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -292,7 +292,7 @@ public final AggregatedListAddressesPagedResponse aggregatedListAddresses( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified address resource. + * Deletes the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -318,7 +318,7 @@ public final Operation deleteAddress(ProjectRegionAddressName address) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified address resource. + * Deletes the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -342,7 +342,7 @@ public final Operation deleteAddress(String address) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified address resource. + * Deletes the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -366,7 +366,7 @@ public final Operation deleteAddress(DeleteAddressHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified address resource. + * Deletes the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -389,7 +389,7 @@ public final UnaryCallable deleteAddressCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified address resource. + * Returns the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -415,7 +415,7 @@ public final Address getAddress(ProjectRegionAddressName address) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified address resource. + * Returns the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -438,7 +438,7 @@ public final Address getAddress(String address) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified address resource. + * Returns the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -462,7 +462,7 @@ public final Address getAddress(GetAddressHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified address resource. + * Returns the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -486,6 +486,7 @@ public final UnaryCallable getAddressCallable() // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an address resource in the specified project by using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -527,6 +528,7 @@ public final Operation insertAddress(ProjectRegionName region, Address addressRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an address resource in the specified project by using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -568,6 +570,7 @@ public final Operation insertAddress(String region, Address addressResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an address resource in the specified project by using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -594,6 +597,7 @@ public final Operation insertAddress(InsertAddressHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an address resource in the specified project by using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -618,7 +622,8 @@ public final UnaryCallable insertAddressCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of addresses contained within the specified region. + * Retrieves a list of addresses contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -645,7 +650,8 @@ public final ListAddressesPagedResponse listAddresses(ProjectRegionName region) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of addresses contained within the specified region. + * Retrieves a list of addresses contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -670,7 +676,8 @@ public final ListAddressesPagedResponse listAddresses(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of addresses contained within the specified region. + * Retrieves a list of addresses contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -696,7 +703,8 @@ public final ListAddressesPagedResponse listAddresses(ListAddressesHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of addresses contained within the specified region. + * Retrieves a list of addresses contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -722,7 +730,8 @@ public final ListAddressesPagedResponse listAddresses(ListAddressesHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of addresses contained within the specified region. + * Retrieves a list of addresses contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressList.java b/src/main/java/com/google/cloud/compute/v1/AddressList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressList.java rename to src/main/java/com/google/cloud/compute/v1/AddressList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressSettings.java b/src/main/java/com/google/cloud/compute/v1/AddressSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressSettings.java rename to src/main/java/com/google/cloud/compute/v1/AddressSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressesScopedList.java b/src/main/java/com/google/cloud/compute/v1/AddressesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AddressesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/AddressesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAcceleratorTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListAcceleratorTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAcceleratorTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListAcceleratorTypesHttpRequest.java index 163ef4a40..bff364f13 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAcceleratorTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListAcceleratorTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.acceleratorTypes.aggregatedList. Retrieves an aggregated list - * of accelerator types. + * of accelerator types. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListAcceleratorTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAddressesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListAddressesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAddressesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListAddressesHttpRequest.java index 7bd4d296e..14a33cce6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAddressesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListAddressesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.addresses.aggregatedList. Retrieves an aggregated list of - * addresses. + * addresses. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListAddressesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAutoscalersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListAutoscalersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAutoscalersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListAutoscalersHttpRequest.java index 20e5e1b97..c5873dc1c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListAutoscalersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListAutoscalersHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.autoscalers.aggregatedList. Retrieves an aggregated list of - * autoscalers. + * autoscalers. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListAutoscalersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListBackendServicesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListBackendServicesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListBackendServicesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListBackendServicesHttpRequest.java index a4fb9d4ef..d86dba503 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListBackendServicesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListBackendServicesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.backendServices.aggregatedList. Retrieves the list of all - * BackendService resources, regional and global, available to the specified project. + * BackendService resources, regional and global, available to the specified project. (== + * suppress_warning http-rest-shadowed ==) */ public final class AggregatedListBackendServicesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListDiskTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListDiskTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListDiskTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListDiskTypesHttpRequest.java index 46a38df32..85fe029a9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListDiskTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListDiskTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.diskTypes.aggregatedList. Retrieves an aggregated list of disk - * types. + * types. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListDiskTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListDisksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListDisksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListDisksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListDisksHttpRequest.java index a0b64b1ef..0e5005239 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListDisksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListDisksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.disks.aggregatedList. Retrieves an aggregated list of - * persistent disks. + * persistent disks. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListDisksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListForwardingRulesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListForwardingRulesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListForwardingRulesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListForwardingRulesHttpRequest.java index 833a7e2ab..2cf4dd9cd 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListForwardingRulesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListForwardingRulesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.forwardingRules.aggregatedList. Retrieves an aggregated list of - * forwarding rules. + * forwarding rules. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListForwardingRulesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListGlobalOperationsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListGlobalOperationsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListGlobalOperationsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListGlobalOperationsHttpRequest.java index 3c4579d52..3d3218db0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListGlobalOperationsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListGlobalOperationsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.globalOperations.aggregatedList. Retrieves an aggregated list - * of all operations. + * of all operations. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListGlobalOperationsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListHealthChecksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListHealthChecksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListHealthChecksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListHealthChecksHttpRequest.java index 5e8a4bc0f..509427e69 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListHealthChecksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListHealthChecksHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.healthChecks.aggregatedList. Retrieves the list of all - * HealthCheck resources, regional and global, available to the specified project. + * HealthCheck resources, regional and global, available to the specified project. (== + * suppress_warning http-rest-shadowed ==) */ public final class AggregatedListHealthChecksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupManagersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupManagersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupManagersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupManagersHttpRequest.java index c912c3329..0237759e0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupManagersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupManagersHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instanceGroupManagers.aggregatedList. Retrieves the list of - * managed instance groups and groups them by zone. + * managed instance groups and groups them by zone. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListInstanceGroupManagersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupsHttpRequest.java index 2327ef93f..76dd14584 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListInstanceGroupsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instanceGroups.aggregatedList. Retrieves the list of instance - * groups and sorts them by zone. + * groups and sorts them by zone. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListInstanceGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstancesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListInstancesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstancesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListInstancesHttpRequest.java index 747f5a3ef..359501ca7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInstancesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListInstancesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.aggregatedList. Retrieves aggregated list of all of - * the instances in your project across all regions and zones. + * the instances in your project across all regions and zones. (== suppress_warning + * http-rest-shadowed ==) */ public final class AggregatedListInstancesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInterconnectAttachmentsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListInterconnectAttachmentsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInterconnectAttachmentsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListInterconnectAttachmentsHttpRequest.java index 3b28d74d8..c52cdad5f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListInterconnectAttachmentsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListInterconnectAttachmentsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.interconnectAttachments.aggregatedList. Retrieves an aggregated - * list of interconnect attachments. + * list of interconnect attachments. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListInterconnectAttachmentsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListMachineTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListMachineTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListMachineTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListMachineTypesHttpRequest.java index 92c1145fb..7736adc72 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListMachineTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListMachineTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.machineTypes.aggregatedList. Retrieves an aggregated list of - * machine types. + * machine types. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListMachineTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNetworkEndpointGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListNetworkEndpointGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNetworkEndpointGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListNetworkEndpointGroupsHttpRequest.java index ad0e5c045..3534fb2d4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNetworkEndpointGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListNetworkEndpointGroupsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.networkEndpointGroups.aggregatedList. Retrieves the list of - * network endpoint groups and sorts them by zone. + * network endpoint groups and sorts them by zone. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListNetworkEndpointGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListNodeGroupsHttpRequest.java index 56a1207a2..651a10ef1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeGroupsHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.nodeGroups.aggregatedList. Retrieves an aggregated list of node - * groups. Note: use nodeGroups.listNodes for more details about each group. + * groups. Note: use nodeGroups.listNodes for more details about each group. (== suppress_warning + * http-rest-shadowed ==) */ public final class AggregatedListNodeGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTemplatesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTemplatesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTemplatesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTemplatesHttpRequest.java index 035fffd83..c666ee02d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTemplatesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTemplatesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeTemplates.aggregatedList. Retrieves an aggregated list of - * node templates. + * node templates. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListNodeTemplatesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTypesHttpRequest.java index be6955ac1..ed7c6554a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListNodeTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeTypes.aggregatedList. Retrieves an aggregated list of node - * types. + * types. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListNodeTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListRegionCommitmentsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListRegionCommitmentsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListRegionCommitmentsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListRegionCommitmentsHttpRequest.java index fddbf5348..e6940e723 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListRegionCommitmentsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListRegionCommitmentsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionCommitments.aggregatedList. Retrieves an aggregated list - * of commitments. + * of commitments. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListRegionCommitmentsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListReservationsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListReservationsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListReservationsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListReservationsHttpRequest.java index 2d42e3dfe..613aaec11 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListReservationsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListReservationsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.reservations.aggregatedList. Retrieves an aggregated list of - * reservations. + * reservations. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListReservationsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListResourcePoliciesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListResourcePoliciesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListResourcePoliciesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListResourcePoliciesHttpRequest.java index f902cfa2b..433d0ed29 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListResourcePoliciesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListResourcePoliciesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.resourcePolicies.aggregatedList. Retrieves an aggregated list - * of resource policies. + * of resource policies. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListResourcePoliciesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListRoutersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListRoutersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListRoutersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListRoutersHttpRequest.java index ed223021e..80b72550b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListRoutersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListRoutersHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.routers.aggregatedList. Retrieves an aggregated list of - * routers. + * routers. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListRoutersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListSslCertificatesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListSslCertificatesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListSslCertificatesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListSslCertificatesHttpRequest.java index 0e8f83ff4..eb37901fc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListSslCertificatesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListSslCertificatesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.sslCertificates.aggregatedList. Retrieves the list of all - * SslCertificate resources, regional and global, available to the specified project. + * SslCertificate resources, regional and global, available to the specified project. (== + * suppress_warning http-rest-shadowed ==) */ public final class AggregatedListSslCertificatesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListSubnetworksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListSubnetworksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListSubnetworksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListSubnetworksHttpRequest.java index 2e82be781..c7229f5d4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListSubnetworksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListSubnetworksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.subnetworks.aggregatedList. Retrieves an aggregated list of - * subnetworks. + * subnetworks. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListSubnetworksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpProxiesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpProxiesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpProxiesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpProxiesHttpRequest.java index 13eeb94a8..2e74f84d4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpProxiesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpProxiesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetHttpProxies.aggregatedList. Retrieves the list of all - * TargetHttpProxy resources, regional and global, available to the specified project. + * TargetHttpProxy resources, regional and global, available to the specified project. (== + * suppress_warning http-rest-shadowed ==) */ public final class AggregatedListTargetHttpProxiesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpsProxiesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpsProxiesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpsProxiesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpsProxiesHttpRequest.java index a9a384d1c..f60530441 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpsProxiesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetHttpsProxiesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetHttpsProxies.aggregatedList. Retrieves the list of all - * TargetHttpsProxy resources, regional and global, available to the specified project. + * TargetHttpsProxy resources, regional and global, available to the specified project. (== + * suppress_warning http-rest-shadowed ==) */ public final class AggregatedListTargetHttpsProxiesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetInstancesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetInstancesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetInstancesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListTargetInstancesHttpRequest.java index 173bdcded..e4f46d5d8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetInstancesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetInstancesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetInstances.aggregatedList. Retrieves an aggregated list of - * target instances. + * target instances. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListTargetInstancesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetPoolsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetPoolsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetPoolsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListTargetPoolsHttpRequest.java index 2059b8805..3654db1b1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetPoolsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetPoolsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetPools.aggregatedList. Retrieves an aggregated list of - * target pools. + * target pools. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListTargetPoolsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetVpnGatewaysHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetVpnGatewaysHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetVpnGatewaysHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListTargetVpnGatewaysHttpRequest.java index 3539e77b1..a1b1a173d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetVpnGatewaysHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListTargetVpnGatewaysHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetVpnGateways.aggregatedList. Retrieves an aggregated list - * of target VPN gateways. + * of target VPN gateways. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListTargetVpnGatewaysHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListUrlMapsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListUrlMapsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListUrlMapsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListUrlMapsHttpRequest.java index fcdf00edf..44bfc572e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListUrlMapsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListUrlMapsHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.urlMaps.aggregatedList. Retrieves the list of all UrlMap - * resources, regional and global, available to the specified project. + * resources, regional and global, available to the specified project. (== suppress_warning + * http-rest-shadowed ==) */ public final class AggregatedListUrlMapsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnGatewaysHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnGatewaysHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnGatewaysHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListVpnGatewaysHttpRequest.java index e026be7bb..9e8923257 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnGatewaysHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnGatewaysHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.vpnGateways.aggregatedList. Retrieves an aggregated list of VPN - * gateways. + * gateways. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListVpnGatewaysHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnTunnelsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnTunnelsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnTunnelsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AggregatedListVpnTunnelsHttpRequest.java index e68046263..89abc2046 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnTunnelsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnTunnelsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.vpnTunnels.aggregatedList. Retrieves an aggregated list of VPN - * tunnels. + * tunnels. (== suppress_warning http-rest-shadowed ==) */ public final class AggregatedListVpnTunnelsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AliasIpRange.java b/src/main/java/com/google/cloud/compute/v1/AliasIpRange.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AliasIpRange.java rename to src/main/java/com/google/cloud/compute/v1/AliasIpRange.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.java b/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.java rename to src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUAllocationReservedInstanceProperties.java b/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUAllocationReservedInstanceProperties.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUAllocationReservedInstanceProperties.java rename to src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUAllocationReservedInstanceProperties.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUReservation.java b/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUReservation.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUReservation.java rename to src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUReservation.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Allowed.java b/src/main/java/com/google/cloud/compute/v1/Allowed.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Allowed.java rename to src/main/java/com/google/cloud/compute/v1/Allowed.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachDiskInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AttachDiskInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachDiskInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AttachDiskInstanceHttpRequest.java index 9eef9ccac..9f0bf025c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachDiskInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AttachDiskInstanceHttpRequest.java @@ -28,7 +28,7 @@ * Request object for method compute.instances.attachDisk. Attaches an existing Disk resource to an * instance. You must first create the disk before you can attach it. It is not possible to create * and attach a disk at the same time. For more information, read Adding a persistent disk to your - * instance. + * instance. (== suppress_warning http-rest-shadowed ==) */ public final class AttachDiskInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachNetworkEndpointsNetworkEndpointGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/AttachNetworkEndpointsNetworkEndpointGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachNetworkEndpointsNetworkEndpointGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/AttachNetworkEndpointsNetworkEndpointGroupHttpRequest.java index fbc90928f..382af5bc1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachNetworkEndpointsNetworkEndpointGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/AttachNetworkEndpointsNetworkEndpointGroupHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.networkEndpointGroups.attachNetworkEndpoints. Attach a list of - * network endpoints to the specified network endpoint group. + * network endpoints to the specified network endpoint group. (== suppress_warning + * http-rest-shadowed ==) */ public final class AttachNetworkEndpointsNetworkEndpointGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachedDisk.java b/src/main/java/com/google/cloud/compute/v1/AttachedDisk.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachedDisk.java rename to src/main/java/com/google/cloud/compute/v1/AttachedDisk.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachedDiskInitializeParams.java b/src/main/java/com/google/cloud/compute/v1/AttachedDiskInitializeParams.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachedDiskInitializeParams.java rename to src/main/java/com/google/cloud/compute/v1/AttachedDiskInitializeParams.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AuditConfig.java b/src/main/java/com/google/cloud/compute/v1/AuditConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AuditConfig.java rename to src/main/java/com/google/cloud/compute/v1/AuditConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AuditLogConfig.java b/src/main/java/com/google/cloud/compute/v1/AuditLogConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AuditLogConfig.java rename to src/main/java/com/google/cloud/compute/v1/AuditLogConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AuthorizationLoggingOptions.java b/src/main/java/com/google/cloud/compute/v1/AuthorizationLoggingOptions.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AuthorizationLoggingOptions.java rename to src/main/java/com/google/cloud/compute/v1/AuthorizationLoggingOptions.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Autoscaler.java b/src/main/java/com/google/cloud/compute/v1/Autoscaler.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Autoscaler.java rename to src/main/java/com/google/cloud/compute/v1/Autoscaler.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/AutoscalerAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalerAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerClient.java b/src/main/java/com/google/cloud/compute/v1/AutoscalerClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerClient.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalerClient.java index bc5bf6b51..bfa28706f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerClient.java +++ b/src/main/java/com/google/cloud/compute/v1/AutoscalerClient.java @@ -153,7 +153,7 @@ public AutoscalerStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of autoscalers. + * Retrieves an aggregated list of autoscalers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -181,7 +181,7 @@ public final AggregatedListAutoscalersPagedResponse aggregatedListAutoscalers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of autoscalers. + * Retrieves an aggregated list of autoscalers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -206,7 +206,7 @@ public final AggregatedListAutoscalersPagedResponse aggregatedListAutoscalers(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of autoscalers. + * Retrieves an aggregated list of autoscalers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -233,7 +233,7 @@ public final AggregatedListAutoscalersPagedResponse aggregatedListAutoscalers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of autoscalers. + * Retrieves an aggregated list of autoscalers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -260,7 +260,7 @@ public final AggregatedListAutoscalersPagedResponse aggregatedListAutoscalers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of autoscalers. + * Retrieves an aggregated list of autoscalers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -293,7 +293,7 @@ public final AggregatedListAutoscalersPagedResponse aggregatedListAutoscalers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified autoscaler. + * Deletes the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -319,7 +319,7 @@ public final Operation deleteAutoscaler(ProjectZoneAutoscalerName autoscaler) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified autoscaler. + * Deletes the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -343,7 +343,7 @@ public final Operation deleteAutoscaler(String autoscaler) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified autoscaler. + * Deletes the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -367,7 +367,7 @@ public final Operation deleteAutoscaler(DeleteAutoscalerHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified autoscaler. + * Deletes the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -391,7 +391,7 @@ public final UnaryCallable deleteAutosca // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified autoscaler resource. Gets a list of available autoscalers by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -418,7 +418,7 @@ public final Autoscaler getAutoscaler(ProjectZoneAutoscalerName autoscaler) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified autoscaler resource. Gets a list of available autoscalers by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -443,7 +443,7 @@ public final Autoscaler getAutoscaler(String autoscaler) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified autoscaler resource. Gets a list of available autoscalers by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -468,7 +468,7 @@ public final Autoscaler getAutoscaler(GetAutoscalerHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified autoscaler resource. Gets a list of available autoscalers by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -491,7 +491,8 @@ public final UnaryCallable getAutoscalerCa // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an autoscaler in the specified project using the data included in the request. + * Creates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -527,7 +528,8 @@ public final Operation insertAutoscaler(ProjectZoneName zone, Autoscaler autosca // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an autoscaler in the specified project using the data included in the request. + * Creates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -563,7 +565,8 @@ public final Operation insertAutoscaler(String zone, Autoscaler autoscalerResour // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an autoscaler in the specified project using the data included in the request. + * Creates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -589,7 +592,8 @@ public final Operation insertAutoscaler(InsertAutoscalerHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an autoscaler in the specified project using the data included in the request. + * Creates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -614,7 +618,8 @@ public final UnaryCallable insertAutosca // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified zone. + * Retrieves a list of autoscalers contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -641,7 +646,8 @@ public final ListAutoscalersPagedResponse listAutoscalers(ProjectZoneName zone) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified zone. + * Retrieves a list of autoscalers contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -666,7 +672,8 @@ public final ListAutoscalersPagedResponse listAutoscalers(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified zone. + * Retrieves a list of autoscalers contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -692,7 +699,8 @@ public final ListAutoscalersPagedResponse listAutoscalers(ListAutoscalersHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified zone. + * Retrieves a list of autoscalers contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -718,7 +726,8 @@ public final ListAutoscalersPagedResponse listAutoscalers(ListAutoscalersHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified zone. + * Retrieves a list of autoscalers contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -751,7 +760,8 @@ public final UnaryCallable listAutos // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates an autoscaler in the specified project using the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -801,7 +811,8 @@ public final Operation patchAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates an autoscaler in the specified project using the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -848,7 +859,8 @@ public final Operation patchAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates an autoscaler in the specified project using the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -879,7 +891,8 @@ public final Operation patchAutoscaler(PatchAutoscalerHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates an autoscaler in the specified project using the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -908,7 +921,8 @@ public final UnaryCallable patchAutoscale // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an autoscaler in the specified project using the data included in the request. + * Updates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -957,7 +971,8 @@ public final Operation updateAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an autoscaler in the specified project using the data included in the request. + * Updates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1003,7 +1018,8 @@ public final Operation updateAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an autoscaler in the specified project using the data included in the request. + * Updates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1033,7 +1049,8 @@ public final Operation updateAutoscaler(UpdateAutoscalerHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an autoscaler in the specified project using the data included in the request. + * Updates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerList.java b/src/main/java/com/google/cloud/compute/v1/AutoscalerList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerList.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalerList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerSettings.java b/src/main/java/com/google/cloud/compute/v1/AutoscalerSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerSettings.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalerSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerStatusDetails.java b/src/main/java/com/google/cloud/compute/v1/AutoscalerStatusDetails.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalerStatusDetails.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalerStatusDetails.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalersScopedList.java b/src/main/java/com/google/cloud/compute/v1/AutoscalersScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalersScopedList.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalersScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicy.java b/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicy.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalingPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyCpuUtilization.java b/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyCpuUtilization.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyCpuUtilization.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyCpuUtilization.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyCustomMetricUtilization.java b/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyCustomMetricUtilization.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyCustomMetricUtilization.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyCustomMetricUtilization.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyLoadBalancingUtilization.java b/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyLoadBalancingUtilization.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyLoadBalancingUtilization.java rename to src/main/java/com/google/cloud/compute/v1/AutoscalingPolicyLoadBalancingUtilization.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Backend.java b/src/main/java/com/google/cloud/compute/v1/Backend.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Backend.java rename to src/main/java/com/google/cloud/compute/v1/Backend.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucket.java b/src/main/java/com/google/cloud/compute/v1/BackendBucket.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucket.java rename to src/main/java/com/google/cloud/compute/v1/BackendBucket.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketCdnPolicy.java b/src/main/java/com/google/cloud/compute/v1/BackendBucketCdnPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketCdnPolicy.java rename to src/main/java/com/google/cloud/compute/v1/BackendBucketCdnPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketClient.java b/src/main/java/com/google/cloud/compute/v1/BackendBucketClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketClient.java rename to src/main/java/com/google/cloud/compute/v1/BackendBucketClient.java index 541e99213..f0ac16dc5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketClient.java +++ b/src/main/java/com/google/cloud/compute/v1/BackendBucketClient.java @@ -156,7 +156,8 @@ public BackendBucketStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a key for validating requests with signed URLs for this backend bucket. + * Adds a key for validating requests with signed URLs for this backend bucket. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -188,7 +189,8 @@ public final Operation addSignedUrlKeyBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a key for validating requests with signed URLs for this backend bucket. + * Adds a key for validating requests with signed URLs for this backend bucket. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -220,7 +222,8 @@ public final Operation addSignedUrlKeyBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a key for validating requests with signed URLs for this backend bucket. + * Adds a key for validating requests with signed URLs for this backend bucket. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -247,7 +250,8 @@ public final Operation addSignedUrlKeyBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a key for validating requests with signed URLs for this backend bucket. + * Adds a key for validating requests with signed URLs for this backend bucket. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -273,7 +277,7 @@ public final Operation addSignedUrlKeyBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified BackendBucket resource. + * Deletes the specified BackendBucket resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -299,7 +303,7 @@ public final Operation deleteBackendBucket(ProjectGlobalBackendBucketName backen // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified BackendBucket resource. + * Deletes the specified BackendBucket resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -323,7 +327,7 @@ public final Operation deleteBackendBucket(String backendBucket) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified BackendBucket resource. + * Deletes the specified BackendBucket resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -347,7 +351,7 @@ public final Operation deleteBackendBucket(DeleteBackendBucketHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified BackendBucket resource. + * Deletes the specified BackendBucket resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -371,7 +375,8 @@ public final Operation deleteBackendBucket(DeleteBackendBucketHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a key for validating requests with signed URLs for this backend bucket. + * Deletes a key for validating requests with signed URLs for this backend bucket. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -402,7 +407,8 @@ public final Operation deleteSignedUrlKeyBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a key for validating requests with signed URLs for this backend bucket. + * Deletes a key for validating requests with signed URLs for this backend bucket. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -432,7 +438,8 @@ public final Operation deleteSignedUrlKeyBackendBucket(String backendBucket, Str // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a key for validating requests with signed URLs for this backend bucket. + * Deletes a key for validating requests with signed URLs for this backend bucket. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -459,7 +466,8 @@ public final Operation deleteSignedUrlKeyBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a key for validating requests with signed URLs for this backend bucket. + * Deletes a key for validating requests with signed URLs for this backend bucket. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -486,7 +494,7 @@ public final Operation deleteSignedUrlKeyBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified BackendBucket resource. Gets a list of available backend buckets by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -513,7 +521,7 @@ public final BackendBucket getBackendBucket(ProjectGlobalBackendBucketName backe // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified BackendBucket resource. Gets a list of available backend buckets by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -538,7 +546,7 @@ public final BackendBucket getBackendBucket(String backendBucket) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified BackendBucket resource. Gets a list of available backend buckets by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -563,7 +571,7 @@ public final BackendBucket getBackendBucket(GetBackendBucketHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified BackendBucket resource. Gets a list of available backend buckets by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -588,7 +596,7 @@ public final BackendBucket getBackendBucket(GetBackendBucketHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a BackendBucket resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -621,7 +629,7 @@ public final Operation insertBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a BackendBucket resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -653,7 +661,7 @@ public final Operation insertBackendBucket(String project, BackendBucket backend // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a BackendBucket resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -680,7 +688,7 @@ public final Operation insertBackendBucket(InsertBackendBucketHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a BackendBucket resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -706,7 +714,8 @@ public final Operation insertBackendBucket(InsertBackendBucketHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendBucket resources available to the specified project. + * Retrieves the list of BackendBucket resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -733,7 +742,8 @@ public final ListBackendBucketsPagedResponse listBackendBuckets(ProjectName proj // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendBucket resources available to the specified project. + * Retrieves the list of BackendBucket resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -758,7 +768,8 @@ public final ListBackendBucketsPagedResponse listBackendBuckets(String project) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendBucket resources available to the specified project. + * Retrieves the list of BackendBucket resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -785,7 +796,8 @@ public final ListBackendBucketsPagedResponse listBackendBuckets( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendBucket resources available to the specified project. + * Retrieves the list of BackendBucket resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -811,7 +823,8 @@ public final ListBackendBucketsPagedResponse listBackendBuckets( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendBucket resources available to the specified project. + * Retrieves the list of BackendBucket resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -845,7 +858,8 @@ public final ListBackendBucketsPagedResponse listBackendBuckets( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified BackendBucket resource with the data included in the request. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -886,7 +900,8 @@ public final Operation patchBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified BackendBucket resource with the data included in the request. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -925,7 +940,8 @@ public final Operation patchBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified BackendBucket resource with the data included in the request. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -954,7 +970,8 @@ public final Operation patchBackendBucket(PatchBackendBucketHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified BackendBucket resource with the data included in the request. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -982,7 +999,8 @@ public final Operation patchBackendBucket(PatchBackendBucketHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified BackendBucket resource with the data included in the request. + * Updates the specified BackendBucket resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1022,7 +1040,8 @@ public final Operation updateBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified BackendBucket resource with the data included in the request. + * Updates the specified BackendBucket resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1060,7 +1079,8 @@ public final Operation updateBackendBucket( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified BackendBucket resource with the data included in the request. + * Updates the specified BackendBucket resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1088,7 +1108,8 @@ public final Operation updateBackendBucket(UpdateBackendBucketHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified BackendBucket resource with the data included in the request. + * Updates the specified BackendBucket resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketList.java b/src/main/java/com/google/cloud/compute/v1/BackendBucketList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketList.java rename to src/main/java/com/google/cloud/compute/v1/BackendBucketList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketSettings.java b/src/main/java/com/google/cloud/compute/v1/BackendBucketSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendBucketSettings.java rename to src/main/java/com/google/cloud/compute/v1/BackendBucketSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendService.java b/src/main/java/com/google/cloud/compute/v1/BackendService.java similarity index 92% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendService.java rename to src/main/java/com/google/cloud/compute/v1/BackendService.java index d48a832ff..2c674b5fe 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendService.java +++ b/src/main/java/com/google/cloud/compute/v1/BackendService.java @@ -28,16 +28,12 @@ /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store information - * about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services are - * used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public final class BackendService implements ApiMessage { private final Integer affinityCookieTtlSec; @@ -278,7 +274,8 @@ public BackendServiceCdnPolicy getCdnPolicy() { } /** - * Settings controlling the volume of connections to a backend service. + * Settings controlling the volume of connections to a backend service. If not set, this feature + * is considered disabled. * *

This field is applicable to either: - A regional backend service with the service_protocol * set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global @@ -374,9 +371,11 @@ public String getKind() { } /** - * Indicates whether the backend service will be used with internal or external load balancing. A - * backend service created for one type of load balancing cannot be used with the other. Possible - * values are INTERNAL and EXTERNAL. + * Specifies the load balancer type. Choose EXTERNAL for load balancers that receive traffic from + * external clients. Choose INTERNAL for Internal TCP/UDP Load Balancing. Choose INTERNAL_MANAGED + * for Internal HTTP(S) Load Balancing. Choose INTERNAL_SELF_MANAGED for Traffic Director. A + * backend service created for one type of load balancing cannot be used with another. For more + * information, refer to Choosing a load balancer. */ public String getLoadBalancingScheme() { return loadBalancingScheme; @@ -417,10 +416,12 @@ public String getName() { } /** - * Settings controlling eviction of unhealthy hosts from the load balancing pool. This field is - * applicable to either: - A regional backend service with the service_protocol set to HTTP, - * HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend service - * with the load_balancing_scheme set to INTERNAL_SELF_MANAGED. + * Settings controlling the eviction of unhealthy hosts from the load balancing pool for the + * backend service. If not set, this feature is considered disabled. + * + *

This field is applicable to either: - A regional backend service with the service_protocol + * set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global + * backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED. */ public OutlierDetection getOutlierDetection() { return outlierDetection; @@ -452,9 +453,9 @@ public String getPortName() { /** * The protocol this BackendService uses to communicate with backends. * - *

Possible values are HTTP, HTTPS, TCP, SSL, or UDP, depending on the chosen load balancer or - * Traffic Director configuration. Refer to the documentation for the load balancer or for Traffic - * director for more information. + *

Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, or UDP, depending on the chosen load + * balancer or Traffic Director configuration. Refer to the documentation for the load balancer or + * for Traffic Director for more information. */ public String getProtocol() { return protocol; @@ -727,7 +728,8 @@ public Builder setCdnPolicy(BackendServiceCdnPolicy cdnPolicy) { } /** - * Settings controlling the volume of connections to a backend service. + * Settings controlling the volume of connections to a backend service. If not set, this feature + * is considered disabled. * *

This field is applicable to either: - A regional backend service with the service_protocol * set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global @@ -738,7 +740,8 @@ public CircuitBreakers getCircuitBreakers() { } /** - * Settings controlling the volume of connections to a backend service. + * Settings controlling the volume of connections to a backend service. If not set, this feature + * is considered disabled. * *

This field is applicable to either: - A regional backend service with the service_protocol * set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global @@ -964,18 +967,22 @@ public Builder setKind(String kind) { } /** - * Indicates whether the backend service will be used with internal or external load balancing. - * A backend service created for one type of load balancing cannot be used with the other. - * Possible values are INTERNAL and EXTERNAL. + * Specifies the load balancer type. Choose EXTERNAL for load balancers that receive traffic + * from external clients. Choose INTERNAL for Internal TCP/UDP Load Balancing. Choose + * INTERNAL_MANAGED for Internal HTTP(S) Load Balancing. Choose INTERNAL_SELF_MANAGED for + * Traffic Director. A backend service created for one type of load balancing cannot be used + * with another. For more information, refer to Choosing a load balancer. */ public String getLoadBalancingScheme() { return loadBalancingScheme; } /** - * Indicates whether the backend service will be used with internal or external load balancing. - * A backend service created for one type of load balancing cannot be used with the other. - * Possible values are INTERNAL and EXTERNAL. + * Specifies the load balancer type. Choose EXTERNAL for load balancers that receive traffic + * from external clients. Choose INTERNAL for Internal TCP/UDP Load Balancing. Choose + * INTERNAL_MANAGED for Internal HTTP(S) Load Balancing. Choose INTERNAL_SELF_MANAGED for + * Traffic Director. A backend service created for one type of load balancing cannot be used + * with another. For more information, refer to Choosing a load balancer. */ public Builder setLoadBalancingScheme(String loadBalancingScheme) { this.loadBalancingScheme = loadBalancingScheme; @@ -1053,20 +1060,24 @@ public Builder setName(String name) { } /** - * Settings controlling eviction of unhealthy hosts from the load balancing pool. This field is - * applicable to either: - A regional backend service with the service_protocol set to HTTP, - * HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend - * service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED. + * Settings controlling the eviction of unhealthy hosts from the load balancing pool for the + * backend service. If not set, this feature is considered disabled. + * + *

This field is applicable to either: - A regional backend service with the service_protocol + * set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global + * backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED. */ public OutlierDetection getOutlierDetection() { return outlierDetection; } /** - * Settings controlling eviction of unhealthy hosts from the load balancing pool. This field is - * applicable to either: - A regional backend service with the service_protocol set to HTTP, - * HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend - * service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED. + * Settings controlling the eviction of unhealthy hosts from the load balancing pool for the + * backend service. If not set, this feature is considered disabled. + * + *

This field is applicable to either: - A regional backend service with the service_protocol + * set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global + * backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED. */ public Builder setOutlierDetection(OutlierDetection outlierDetection) { this.outlierDetection = outlierDetection; @@ -1126,9 +1137,9 @@ public Builder setPortName(String portName) { /** * The protocol this BackendService uses to communicate with backends. * - *

Possible values are HTTP, HTTPS, TCP, SSL, or UDP, depending on the chosen load balancer - * or Traffic Director configuration. Refer to the documentation for the load balancer or for - * Traffic director for more information. + *

Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, or UDP, depending on the chosen load + * balancer or Traffic Director configuration. Refer to the documentation for the load balancer + * or for Traffic Director for more information. */ public String getProtocol() { return protocol; @@ -1137,9 +1148,9 @@ public String getProtocol() { /** * The protocol this BackendService uses to communicate with backends. * - *

Possible values are HTTP, HTTPS, TCP, SSL, or UDP, depending on the chosen load balancer - * or Traffic Director configuration. Refer to the documentation for the load balancer or for - * Traffic director for more information. + *

Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, or UDP, depending on the chosen load + * balancer or Traffic Director configuration. Refer to the documentation for the load balancer + * or for Traffic Director for more information. */ public Builder setProtocol(String protocol) { this.protocol = protocol; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/BackendServiceAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/BackendServiceAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceCdnPolicy.java b/src/main/java/com/google/cloud/compute/v1/BackendServiceCdnPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceCdnPolicy.java rename to src/main/java/com/google/cloud/compute/v1/BackendServiceCdnPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceClient.java b/src/main/java/com/google/cloud/compute/v1/BackendServiceClient.java similarity index 92% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceClient.java rename to src/main/java/com/google/cloud/compute/v1/BackendServiceClient.java index b3bd044f3..672b5a7c3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceClient.java +++ b/src/main/java/com/google/cloud/compute/v1/BackendServiceClient.java @@ -156,7 +156,8 @@ public BackendServiceStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a key for validating requests with signed URLs for this backend service. + * Adds a key for validating requests with signed URLs for this backend service. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -188,7 +189,8 @@ public final Operation addSignedUrlKeyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a key for validating requests with signed URLs for this backend service. + * Adds a key for validating requests with signed URLs for this backend service. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -220,7 +222,8 @@ public final Operation addSignedUrlKeyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a key for validating requests with signed URLs for this backend service. + * Adds a key for validating requests with signed URLs for this backend service. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -247,7 +250,8 @@ public final Operation addSignedUrlKeyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a key for validating requests with signed URLs for this backend service. + * Adds a key for validating requests with signed URLs for this backend service. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -274,7 +278,7 @@ public final Operation addSignedUrlKeyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all BackendService resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -303,7 +307,7 @@ public final AggregatedListBackendServicesPagedResponse aggregatedListBackendSer // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all BackendService resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -330,7 +334,7 @@ public final AggregatedListBackendServicesPagedResponse aggregatedListBackendSer // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all BackendService resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -358,7 +362,7 @@ public final AggregatedListBackendServicesPagedResponse aggregatedListBackendSer // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all BackendService resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -386,7 +390,7 @@ public final AggregatedListBackendServicesPagedResponse aggregatedListBackendSer // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all BackendService resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -419,7 +423,7 @@ public final AggregatedListBackendServicesPagedResponse aggregatedListBackendSer // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified BackendService resource. + * Deletes the specified BackendService resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -445,7 +449,7 @@ public final Operation deleteBackendService(ProjectGlobalBackendServiceName back // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified BackendService resource. + * Deletes the specified BackendService resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -469,7 +473,7 @@ public final Operation deleteBackendService(String backendService) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified BackendService resource. + * Deletes the specified BackendService resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -493,7 +497,7 @@ public final Operation deleteBackendService(DeleteBackendServiceHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified BackendService resource. + * Deletes the specified BackendService resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -517,7 +521,8 @@ public final Operation deleteBackendService(DeleteBackendServiceHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a key for validating requests with signed URLs for this backend service. + * Deletes a key for validating requests with signed URLs for this backend service. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -548,7 +553,8 @@ public final Operation deleteSignedUrlKeyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a key for validating requests with signed URLs for this backend service. + * Deletes a key for validating requests with signed URLs for this backend service. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -578,7 +584,8 @@ public final Operation deleteSignedUrlKeyBackendService(String backendService, S // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a key for validating requests with signed URLs for this backend service. + * Deletes a key for validating requests with signed URLs for this backend service. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -605,7 +612,8 @@ public final Operation deleteSignedUrlKeyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a key for validating requests with signed URLs for this backend service. + * Deletes a key for validating requests with signed URLs for this backend service. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -631,7 +639,8 @@ public final Operation deleteSignedUrlKeyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified BackendService resource. Gets a list of available backend services. + * Returns the specified BackendService resource. Gets a list of available backend services. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -657,7 +666,8 @@ public final BackendService getBackendService(ProjectGlobalBackendServiceName ba // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified BackendService resource. Gets a list of available backend services. + * Returns the specified BackendService resource. Gets a list of available backend services. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -681,7 +691,8 @@ public final BackendService getBackendService(String backendService) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified BackendService resource. Gets a list of available backend services. + * Returns the specified BackendService resource. Gets a list of available backend services. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -705,7 +716,8 @@ public final BackendService getBackendService(GetBackendServiceHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified BackendService resource. Gets a list of available backend services. + * Returns the specified BackendService resource. Gets a list of available backend services. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -729,7 +741,8 @@ public final BackendService getBackendService(GetBackendServiceHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets the most recent health check results for this BackendService. + * Gets the most recent health check results for this BackendService. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -761,7 +774,8 @@ public final BackendServiceGroupHealth getHealthBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets the most recent health check results for this BackendService. + * Gets the most recent health check results for this BackendService. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -792,7 +806,8 @@ public final BackendServiceGroupHealth getHealthBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets the most recent health check results for this BackendService. + * Gets the most recent health check results for this BackendService. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -819,7 +834,8 @@ public final BackendServiceGroupHealth getHealthBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets the most recent health check results for this BackendService. + * Gets the most recent health check results for this BackendService. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -847,7 +863,8 @@ public final BackendServiceGroupHealth getHealthBackendService( /** * Creates a BackendService resource in the specified project using the data included in the * request. There are several restrictions and guidelines to keep in mind when creating a backend - * service. Read Restrictions and Guidelines for more information. + * service. Read Restrictions and Guidelines for more information. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -861,14 +878,10 @@ public final BackendServiceGroupHealth getHealthBackendService( * * @param project Project ID for this request. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @BetaApi @@ -887,7 +900,8 @@ public final Operation insertBackendService( /** * Creates a BackendService resource in the specified project using the data included in the * request. There are several restrictions and guidelines to keep in mind when creating a backend - * service. Read Restrictions and Guidelines for more information. + * service. Read Restrictions and Guidelines for more information. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -901,14 +915,10 @@ public final Operation insertBackendService( * * @param project Project ID for this request. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @BetaApi @@ -927,7 +937,8 @@ public final Operation insertBackendService( /** * Creates a BackendService resource in the specified project using the data included in the * request. There are several restrictions and guidelines to keep in mind when creating a backend - * service. Read Restrictions and Guidelines for more information. + * service. Read Restrictions and Guidelines for more information. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -955,7 +966,8 @@ public final Operation insertBackendService(InsertBackendServiceHttpRequest requ /** * Creates a BackendService resource in the specified project using the data included in the * request. There are several restrictions and guidelines to keep in mind when creating a backend - * service. Read Restrictions and Guidelines for more information. + * service. Read Restrictions and Guidelines for more information. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -981,7 +993,8 @@ public final Operation insertBackendService(InsertBackendServiceHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendService resources available to the specified project. + * Retrieves the list of BackendService resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1008,7 +1021,8 @@ public final ListBackendServicesPagedResponse listBackendServices(ProjectName pr // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendService resources available to the specified project. + * Retrieves the list of BackendService resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1033,7 +1047,8 @@ public final ListBackendServicesPagedResponse listBackendServices(String project // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendService resources available to the specified project. + * Retrieves the list of BackendService resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1060,7 +1075,8 @@ public final ListBackendServicesPagedResponse listBackendServices( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendService resources available to the specified project. + * Retrieves the list of BackendService resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1086,7 +1102,8 @@ public final ListBackendServicesPagedResponse listBackendServices( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of BackendService resources available to the specified project. + * Retrieves the list of BackendService resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1122,7 +1139,7 @@ public final ListBackendServicesPagedResponse listBackendServices( * Patches the specified BackendService resource with the data included in the request. There are * several restrictions and guidelines to keep in mind when updating a backend service. Read * Restrictions and Guidelines for more information. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1137,14 +1154,10 @@ public final ListBackendServicesPagedResponse listBackendServices( * * @param backendService Name of the BackendService resource to patch. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @param fieldMask The fields that should be serialized (even if they have empty values). If the * containing message object has a non-null fieldmask, then all the fields in the field mask * (and only those fields in the field mask) will be serialized. If the containing object does @@ -1171,7 +1184,7 @@ public final Operation patchBackendService( * Patches the specified BackendService resource with the data included in the request. There are * several restrictions and guidelines to keep in mind when updating a backend service. Read * Restrictions and Guidelines for more information. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1186,14 +1199,10 @@ public final Operation patchBackendService( * * @param backendService Name of the BackendService resource to patch. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @param fieldMask The fields that should be serialized (even if they have empty values). If the * containing message object has a non-null fieldmask, then all the fields in the field mask * (and only those fields in the field mask) will be serialized. If the containing object does @@ -1218,7 +1227,7 @@ public final Operation patchBackendService( * Patches the specified BackendService resource with the data included in the request. There are * several restrictions and guidelines to keep in mind when updating a backend service. Read * Restrictions and Guidelines for more information. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1249,7 +1258,7 @@ public final Operation patchBackendService(PatchBackendServiceHttpRequest reques * Patches the specified BackendService resource with the data included in the request. There are * several restrictions and guidelines to keep in mind when updating a backend service. Read * Restrictions and Guidelines for more information. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1277,7 +1286,8 @@ public final Operation patchBackendService(PatchBackendServiceHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the security policy for the specified backend service. + * Sets the security policy for the specified backend service. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1309,7 +1319,8 @@ public final Operation setSecurityPolicyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the security policy for the specified backend service. + * Sets the security policy for the specified backend service. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1340,7 +1351,8 @@ public final Operation setSecurityPolicyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the security policy for the specified backend service. + * Sets the security policy for the specified backend service. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1367,7 +1379,8 @@ public final Operation setSecurityPolicyBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the security policy for the specified backend service. + * Sets the security policy for the specified backend service. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1395,7 +1408,7 @@ public final Operation setSecurityPolicyBackendService( /** * Updates the specified BackendService resource with the data included in the request. There are * several restrictions and guidelines to keep in mind when updating a backend service. Read - * Restrictions and Guidelines for more information. + * Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1410,14 +1423,10 @@ public final Operation setSecurityPolicyBackendService( * * @param backendService Name of the BackendService resource to update. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @param fieldMask The fields that should be serialized (even if they have empty values). If the * containing message object has a non-null fieldmask, then all the fields in the field mask * (and only those fields in the field mask) will be serialized. If the containing object does @@ -1443,7 +1452,7 @@ public final Operation updateBackendService( /** * Updates the specified BackendService resource with the data included in the request. There are * several restrictions and guidelines to keep in mind when updating a backend service. Read - * Restrictions and Guidelines for more information. + * Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1458,14 +1467,10 @@ public final Operation updateBackendService( * * @param backendService Name of the BackendService resource to update. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @param fieldMask The fields that should be serialized (even if they have empty values). If the * containing message object has a non-null fieldmask, then all the fields in the field mask * (and only those fields in the field mask) will be serialized. If the containing object does @@ -1489,7 +1494,7 @@ public final Operation updateBackendService( /** * Updates the specified BackendService resource with the data included in the request. There are * several restrictions and guidelines to keep in mind when updating a backend service. Read - * Restrictions and Guidelines for more information. + * Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1519,7 +1524,7 @@ public final Operation updateBackendService(UpdateBackendServiceHttpRequest requ /** * Updates the specified BackendService resource with the data included in the request. There are * several restrictions and guidelines to keep in mind when updating a backend service. Read - * Restrictions and Guidelines for more information. + * Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceGroupHealth.java b/src/main/java/com/google/cloud/compute/v1/BackendServiceGroupHealth.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceGroupHealth.java rename to src/main/java/com/google/cloud/compute/v1/BackendServiceGroupHealth.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceIAP.java b/src/main/java/com/google/cloud/compute/v1/BackendServiceIAP.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceIAP.java rename to src/main/java/com/google/cloud/compute/v1/BackendServiceIAP.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceList.java b/src/main/java/com/google/cloud/compute/v1/BackendServiceList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceList.java rename to src/main/java/com/google/cloud/compute/v1/BackendServiceList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceReference.java b/src/main/java/com/google/cloud/compute/v1/BackendServiceReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceReference.java rename to src/main/java/com/google/cloud/compute/v1/BackendServiceReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceSettings.java b/src/main/java/com/google/cloud/compute/v1/BackendServiceSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServiceSettings.java rename to src/main/java/com/google/cloud/compute/v1/BackendServiceSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServicesScopedList.java b/src/main/java/com/google/cloud/compute/v1/BackendServicesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/BackendServicesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/BackendServicesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Binding.java b/src/main/java/com/google/cloud/compute/v1/Binding.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Binding.java rename to src/main/java/com/google/cloud/compute/v1/Binding.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CacheInvalidationRule.java b/src/main/java/com/google/cloud/compute/v1/CacheInvalidationRule.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CacheInvalidationRule.java rename to src/main/java/com/google/cloud/compute/v1/CacheInvalidationRule.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CacheKeyPolicy.java b/src/main/java/com/google/cloud/compute/v1/CacheKeyPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CacheKeyPolicy.java rename to src/main/java/com/google/cloud/compute/v1/CacheKeyPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CircuitBreakers.java b/src/main/java/com/google/cloud/compute/v1/CircuitBreakers.java similarity index 85% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CircuitBreakers.java rename to src/main/java/com/google/cloud/compute/v1/CircuitBreakers.java index 7fa55670b..915d8ec49 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CircuitBreakers.java +++ b/src/main/java/com/google/cloud/compute/v1/CircuitBreakers.java @@ -92,32 +92,31 @@ public List getFieldMask() { } /** - * The maximum number of connections to the backend cluster. If not specified, the default is - * 1024. + * The maximum number of connections to the backend service. If not specified, there is no limit. */ public Integer getMaxConnections() { return maxConnections; } /** - * The maximum number of pending requests allowed to the backend cluster. If not specified, the - * default is 1024. + * The maximum number of pending requests allowed to the backend service. If not specified, there + * is no limit. */ public Integer getMaxPendingRequests() { return maxPendingRequests; } /** - * The maximum number of parallel requests that allowed to the backend cluster. If not specified, - * the default is 1024. + * The maximum number of parallel requests that allowed to the backend service. If not specified, + * there is no limit. */ public Integer getMaxRequests() { return maxRequests; } /** - * Maximum requests for a single backend connection. This parameter is respected by both the - * HTTP/1.1 and HTTP/2 implementations. If not specified, there is no limit. Setting this + * Maximum requests for a single connection to the backend service. This parameter is respected by + * both the HTTP/1.1 and HTTP/2 implementations. If not specified, there is no limit. Setting this * parameter to 1 will effectively disable keep alive. */ public Integer getMaxRequestsPerConnection() { @@ -126,7 +125,7 @@ public Integer getMaxRequestsPerConnection() { /** * The maximum number of parallel retries allowed to the backend cluster. If not specified, the - * default is 3. + * default is 1. */ public Integer getMaxRetries() { return maxRetries; @@ -192,16 +191,16 @@ public Builder mergeFrom(CircuitBreakers other) { } /** - * The maximum number of connections to the backend cluster. If not specified, the default is - * 1024. + * The maximum number of connections to the backend service. If not specified, there is no + * limit. */ public Integer getMaxConnections() { return maxConnections; } /** - * The maximum number of connections to the backend cluster. If not specified, the default is - * 1024. + * The maximum number of connections to the backend service. If not specified, there is no + * limit. */ public Builder setMaxConnections(Integer maxConnections) { this.maxConnections = maxConnections; @@ -209,16 +208,16 @@ public Builder setMaxConnections(Integer maxConnections) { } /** - * The maximum number of pending requests allowed to the backend cluster. If not specified, the - * default is 1024. + * The maximum number of pending requests allowed to the backend service. If not specified, + * there is no limit. */ public Integer getMaxPendingRequests() { return maxPendingRequests; } /** - * The maximum number of pending requests allowed to the backend cluster. If not specified, the - * default is 1024. + * The maximum number of pending requests allowed to the backend service. If not specified, + * there is no limit. */ public Builder setMaxPendingRequests(Integer maxPendingRequests) { this.maxPendingRequests = maxPendingRequests; @@ -226,16 +225,16 @@ public Builder setMaxPendingRequests(Integer maxPendingRequests) { } /** - * The maximum number of parallel requests that allowed to the backend cluster. If not - * specified, the default is 1024. + * The maximum number of parallel requests that allowed to the backend service. If not + * specified, there is no limit. */ public Integer getMaxRequests() { return maxRequests; } /** - * The maximum number of parallel requests that allowed to the backend cluster. If not - * specified, the default is 1024. + * The maximum number of parallel requests that allowed to the backend service. If not + * specified, there is no limit. */ public Builder setMaxRequests(Integer maxRequests) { this.maxRequests = maxRequests; @@ -243,18 +242,18 @@ public Builder setMaxRequests(Integer maxRequests) { } /** - * Maximum requests for a single backend connection. This parameter is respected by both the - * HTTP/1.1 and HTTP/2 implementations. If not specified, there is no limit. Setting this - * parameter to 1 will effectively disable keep alive. + * Maximum requests for a single connection to the backend service. This parameter is respected + * by both the HTTP/1.1 and HTTP/2 implementations. If not specified, there is no limit. Setting + * this parameter to 1 will effectively disable keep alive. */ public Integer getMaxRequestsPerConnection() { return maxRequestsPerConnection; } /** - * Maximum requests for a single backend connection. This parameter is respected by both the - * HTTP/1.1 and HTTP/2 implementations. If not specified, there is no limit. Setting this - * parameter to 1 will effectively disable keep alive. + * Maximum requests for a single connection to the backend service. This parameter is respected + * by both the HTTP/1.1 and HTTP/2 implementations. If not specified, there is no limit. Setting + * this parameter to 1 will effectively disable keep alive. */ public Builder setMaxRequestsPerConnection(Integer maxRequestsPerConnection) { this.maxRequestsPerConnection = maxRequestsPerConnection; @@ -263,7 +262,7 @@ public Builder setMaxRequestsPerConnection(Integer maxRequestsPerConnection) { /** * The maximum number of parallel retries allowed to the backend cluster. If not specified, the - * default is 3. + * default is 1. */ public Integer getMaxRetries() { return maxRetries; @@ -271,7 +270,7 @@ public Integer getMaxRetries() { /** * The maximum number of parallel retries allowed to the backend cluster. If not specified, the - * default is 3. + * default is 1. */ public Builder setMaxRetries(Integer maxRetries) { this.maxRetries = maxRetries; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Commitment.java b/src/main/java/com/google/cloud/compute/v1/Commitment.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Commitment.java rename to src/main/java/com/google/cloud/compute/v1/Commitment.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CommitmentAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/CommitmentAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CommitmentAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/CommitmentAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CommitmentList.java b/src/main/java/com/google/cloud/compute/v1/CommitmentList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CommitmentList.java rename to src/main/java/com/google/cloud/compute/v1/CommitmentList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CommitmentsScopedList.java b/src/main/java/com/google/cloud/compute/v1/CommitmentsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CommitmentsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/CommitmentsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Condition.java b/src/main/java/com/google/cloud/compute/v1/Condition.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Condition.java rename to src/main/java/com/google/cloud/compute/v1/Condition.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ConnectionDraining.java b/src/main/java/com/google/cloud/compute/v1/ConnectionDraining.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ConnectionDraining.java rename to src/main/java/com/google/cloud/compute/v1/ConnectionDraining.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ConsistentHashLoadBalancerSettings.java b/src/main/java/com/google/cloud/compute/v1/ConsistentHashLoadBalancerSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ConsistentHashLoadBalancerSettings.java rename to src/main/java/com/google/cloud/compute/v1/ConsistentHashLoadBalancerSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ConsistentHashLoadBalancerSettingsHttpCookie.java b/src/main/java/com/google/cloud/compute/v1/ConsistentHashLoadBalancerSettingsHttpCookie.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ConsistentHashLoadBalancerSettingsHttpCookie.java rename to src/main/java/com/google/cloud/compute/v1/ConsistentHashLoadBalancerSettingsHttpCookie.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CorsPolicy.java b/src/main/java/com/google/cloud/compute/v1/CorsPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CorsPolicy.java rename to src/main/java/com/google/cloud/compute/v1/CorsPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CreateSnapshotDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/CreateSnapshotDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CreateSnapshotDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/CreateSnapshotDiskHttpRequest.java index ef19816ae..294bfc68b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CreateSnapshotDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/CreateSnapshotDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.disks.createSnapshot. Creates a snapshot of a specified - * persistent disk. + * persistent disk. (== suppress_warning http-rest-shadowed ==) */ public final class CreateSnapshotDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CreateSnapshotRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/CreateSnapshotRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CreateSnapshotRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/CreateSnapshotRegionDiskHttpRequest.java index 37a4c0661..2316f58a8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CreateSnapshotRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/CreateSnapshotRegionDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionDisks.createSnapshot. Creates a snapshot of this regional - * disk. + * disk. (== suppress_warning http-rest-shadowed ==) */ public final class CreateSnapshotRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CustomerEncryptionKey.java b/src/main/java/com/google/cloud/compute/v1/CustomerEncryptionKey.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CustomerEncryptionKey.java rename to src/main/java/com/google/cloud/compute/v1/CustomerEncryptionKey.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CustomerEncryptionKeyProtectedDisk.java b/src/main/java/com/google/cloud/compute/v1/CustomerEncryptionKeyProtectedDisk.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/CustomerEncryptionKeyProtectedDisk.java rename to src/main/java/com/google/cloud/compute/v1/CustomerEncryptionKeyProtectedDisk.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Data.java b/src/main/java/com/google/cloud/compute/v1/Data.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Data.java rename to src/main/java/com/google/cloud/compute/v1/Data.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAccessConfigInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteAccessConfigInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAccessConfigInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteAccessConfigInstanceHttpRequest.java index 0fb602a55..9bbc38221 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAccessConfigInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteAccessConfigInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.deleteAccessConfig. Deletes an access config from an - * instance's network interface. + * instance's network interface. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteAccessConfigInstanceHttpRequest implements ApiMessage { private final String accessConfig; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAddressHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteAddressHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAddressHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteAddressHttpRequest.java index 4edcb79cd..9331bd4ab 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAddressHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteAddressHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.addresses.delete. Deletes the specified address resource. */ +/** + * Request object for method compute.addresses.delete. Deletes the specified address resource. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteAddressHttpRequest implements ApiMessage { private final String access_token; private final String address; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteAutoscalerHttpRequest.java index 85d78d97b..e053dadc4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteAutoscalerHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.autoscalers.delete. Deletes the specified autoscaler. */ +/** + * Request object for method compute.autoscalers.delete. Deletes the specified autoscaler. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteAutoscalerHttpRequest implements ApiMessage { private final String access_token; private final String autoscaler; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteBackendBucketHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteBackendBucketHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteBackendBucketHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteBackendBucketHttpRequest.java index d2f814a13..dfb20013e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteBackendBucketHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteBackendBucketHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendBuckets.delete. Deletes the specified BackendBucket - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteBackendBucketHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteBackendServiceHttpRequest.java index f78f6f031..fb971a16d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteBackendServiceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendServices.delete. Deletes the specified BackendService - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteDiskHttpRequest.java index 45d957416..c2fe69be6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteDiskHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.disks.delete. Deletes the specified persistent disk. Deleting a * disk removes its data permanently and is irreversible. However, deleting a disk does not delete - * any snapshots previously made from the disk. You must separately delete snapshots. + * any snapshots previously made from the disk. You must separately delete snapshots. (== + * suppress_warning http-rest-shadowed ==) */ public final class DeleteDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteExternalVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteExternalVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteExternalVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteExternalVpnGatewayHttpRequest.java index b5be4e2c2..c283b48f9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteExternalVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteExternalVpnGatewayHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.externalVpnGateways.delete. Deletes the specified - * externalVpnGateway. + * externalVpnGateway. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteExternalVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteFirewallHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteFirewallHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteFirewallHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteFirewallHttpRequest.java index 009266f3f..59e1e62a6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteFirewallHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteFirewallHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.firewalls.delete. Deletes the specified firewall. */ +/** + * Request object for method compute.firewalls.delete. Deletes the specified firewall. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteFirewallHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteForwardingRuleHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteForwardingRuleHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteForwardingRuleHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteForwardingRuleHttpRequest.java index 46d585e40..8420d9092 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteForwardingRuleHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteForwardingRuleHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.forwardingRules.delete. Deletes the specified ForwardingRule - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteForwardingRuleHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalAddressHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteGlobalAddressHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalAddressHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteGlobalAddressHttpRequest.java index baf3227fe..1a626cadb 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalAddressHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteGlobalAddressHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.globalAddresses.delete. Deletes the specified address resource. + * (== suppress_warning http-rest-shadowed ==) */ public final class DeleteGlobalAddressHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalForwardingRuleHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteGlobalForwardingRuleHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalForwardingRuleHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteGlobalForwardingRuleHttpRequest.java index dc48e6e0b..b4f434b85 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalForwardingRuleHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteGlobalForwardingRuleHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.globalForwardingRules.delete. Deletes the specified - * GlobalForwardingRule resource. + * GlobalForwardingRule resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteGlobalForwardingRuleHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalOperationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteGlobalOperationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalOperationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteGlobalOperationHttpRequest.java index 92871ba3a..e18f41f14 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteGlobalOperationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteGlobalOperationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.globalOperations.delete. Deletes the specified Operations - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteGlobalOperationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteHealthCheckHttpRequest.java index 4efb64b99..237e427b7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteHealthCheckHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.healthChecks.delete. Deletes the specified HealthCheck - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHttpHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteHttpHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHttpHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteHttpHealthCheckHttpRequest.java index c6d5ae174..c3d63a366 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHttpHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteHttpHealthCheckHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.httpHealthChecks.delete. Deletes the specified HttpHealthCheck - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteHttpHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHttpsHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteHttpsHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHttpsHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteHttpsHealthCheckHttpRequest.java index 162fc05e4..395bc7ef8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteHttpsHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteHttpsHealthCheckHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.httpsHealthChecks.delete. Deletes the specified - * HttpsHealthCheck resource. + * HttpsHealthCheck resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteHttpsHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteImageHttpRequest.java index 56daf2369..ad5b6b1c6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteImageHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.images.delete. Deletes the specified image. */ +/** + * Request object for method compute.images.delete. Deletes the specified image. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteImageHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupHttpRequest.java index ee2b14cb2..2a481961b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.instanceGroups.delete. Deletes the specified instance group. * The instances in the group are not deleted. Note that instance group must not belong to a backend - * service. Read Deleting an instance group for more information. + * service. Read Deleting an instance group for more information. (== suppress_warning + * http-rest-shadowed ==) */ public final class DeleteInstanceGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupManagerHttpRequest.java index 6d9f799b5..783b81020 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteInstanceGroupManagerHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.instanceGroupManagers.delete. Deletes the specified managed * instance group and all of the instances in that group. Note that the instance group must not - * belong to a backend service. Read Deleting an instance group for more information. + * belong to a backend service. Read Deleting an instance group for more information. (== + * suppress_warning http-rest-shadowed ==) */ public final class DeleteInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteInstanceHttpRequest.java index 2f860fdb8..7a9a1e95e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.delete. Deletes the specified Instance resource. For - * more information, see Stopping or Deleting an Instance. + * more information, see Stopping or Deleting an Instance. (== suppress_warning http-rest-shadowed + * ==) */ public final class DeleteInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteInstanceTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteInstanceTemplateHttpRequest.java index b4d00b1e2..d836179df 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstanceTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteInstanceTemplateHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.instanceTemplates.delete. Deletes the specified instance * template. Deleting an instance template is permanent and cannot be undone. It is not possible to - * delete templates that are already in use by a managed instance group. + * delete templates that are already in use by a managed instance group. (== suppress_warning + * http-rest-shadowed ==) */ public final class DeleteInstanceTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstancesInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteInstancesInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstancesInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteInstancesInstanceGroupManagerHttpRequest.java index 561b5e978..047d7afe8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstancesInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteInstancesInstanceGroupManagerHttpRequest.java @@ -36,7 +36,8 @@ * to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== suppress_warning + * http-rest-shadowed ==) */ public final class DeleteInstancesInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstancesRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteInstancesRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstancesRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteInstancesRegionInstanceGroupManagerHttpRequest.java index 05095040b..535e390e4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInstancesRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteInstancesRegionInstanceGroupManagerHttpRequest.java @@ -37,7 +37,8 @@ * to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== suppress_warning + * http-rest-shadowed ==) */ public final class DeleteInstancesRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectAttachmentHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectAttachmentHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectAttachmentHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteInterconnectAttachmentHttpRequest.java index 1875f48b9..8bbb5e7f4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectAttachmentHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectAttachmentHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.interconnectAttachments.delete. Deletes the specified - * interconnect attachment. + * interconnect attachment. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteInterconnectAttachmentHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteInterconnectHttpRequest.java index 728596981..c45f6e0a6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteInterconnectHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.interconnects.delete. Deletes the specified interconnect. */ +/** + * Request object for method compute.interconnects.delete. Deletes the specified interconnect. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteInterconnectHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteLicenseHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteLicenseHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteLicenseHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteLicenseHttpRequest.java index b1259e505..c96e8d7f1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteLicenseHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteLicenseHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.licenses.delete. Deletes the specified license. */ +/** + * Request object for method compute.licenses.delete. Deletes the specified license. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteLicenseHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNetworkEndpointGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteNetworkEndpointGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNetworkEndpointGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteNetworkEndpointGroupHttpRequest.java index 864d5d69e..4c7d31caf 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNetworkEndpointGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteNetworkEndpointGroupHttpRequest.java @@ -28,7 +28,7 @@ * Request object for method compute.networkEndpointGroups.delete. Deletes the specified network * endpoint group. The network endpoints in the NEG and the VM instances they belong to are not * terminated when the NEG is deleted. Note that the NEG cannot be deleted if there are backend - * services referencing it. + * services referencing it. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteNetworkEndpointGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteNetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteNetworkHttpRequest.java index 64c7d624d..b6ef73a06 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteNetworkHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.networks.delete. Deletes the specified network. */ +/** + * Request object for method compute.networks.delete. Deletes the specified network. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteNetworkHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteNodeGroupHttpRequest.java index 1d935ea71..14b5f6e3e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteNodeGroupHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.nodeGroups.delete. Deletes the specified NodeGroup resource. + * (== suppress_warning http-rest-shadowed ==) */ public final class DeleteNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodeTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteNodeTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodeTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteNodeTemplateHttpRequest.java index 8e21c5556..30958eba2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodeTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteNodeTemplateHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeTemplates.delete. Deletes the specified NodeTemplate - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteNodeTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodesNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteNodesNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodesNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteNodesNodeGroupHttpRequest.java index 50b2a875f..55214d2b2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteNodesNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteNodesNodeGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeGroups.deleteNodes. Deletes specified nodes from the node - * group. + * group. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteNodesNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionAutoscalerHttpRequest.java index 2444e3b6c..a95014555 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionAutoscalerHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.regionAutoscalers.delete. Deletes the specified autoscaler. */ +/** + * Request object for method compute.regionAutoscalers.delete. Deletes the specified autoscaler. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteRegionAutoscalerHttpRequest implements ApiMessage { private final String access_token; private final String autoscaler; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionBackendServiceHttpRequest.java index 2f1454ba2..3b09f6e62 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionBackendServiceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionBackendServices.delete. Deletes the specified regional - * BackendService resource. + * BackendService resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteRegionBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionDiskHttpRequest.java index 13d7ef498..4bfcf159c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionDiskHttpRequest.java @@ -28,7 +28,7 @@ * Request object for method compute.regionDisks.delete. Deletes the specified regional persistent * disk. Deleting a regional disk removes all the replicas of its data permanently and is * irreversible. However, deleting a disk does not delete any snapshots previously made from the - * disk. You must separately delete snapshots. + * disk. You must separately delete snapshots. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionHealthCheckHttpRequest.java index 1a7e17f41..57ac5677e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionHealthCheckHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionHealthChecks.delete. Deletes the specified HealthCheck - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteRegionHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionInstanceGroupManagerHttpRequest.java index 382cc897d..3b0a53655 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionInstanceGroupManagerHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionInstanceGroupManagers.delete. Deletes the specified - * managed instance group and all of the instances in that group. + * managed instance group and all of the instances in that group. (== suppress_warning + * http-rest-shadowed ==) */ public final class DeleteRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionOperationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionOperationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionOperationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionOperationHttpRequest.java index 1b1e21657..51197c3e1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionOperationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionOperationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionOperations.delete. Deletes the specified region-specific - * Operations resource. + * Operations resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteRegionOperationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionSslCertificateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionSslCertificateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionSslCertificateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionSslCertificateHttpRequest.java index f5c10ef23..15fd7c03c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionSslCertificateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionSslCertificateHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionSslCertificates.delete. Deletes the specified - * SslCertificate resource in the region. + * SslCertificate resource in the region. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteRegionSslCertificateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpProxyHttpRequest.java index 3278570e6..2574ff342 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionTargetHttpProxies.delete. Deletes the specified - * TargetHttpProxy resource. + * TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteRegionTargetHttpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpsProxyHttpRequest.java index ecaca8b37..72f8c566e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionTargetHttpsProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionTargetHttpsProxies.delete. Deletes the specified - * TargetHttpsProxy resource. + * TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteRegionTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRegionUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRegionUrlMapHttpRequest.java index 6055c6e14..a6e00dd5c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRegionUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRegionUrlMapHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.regionUrlMaps.delete. Deletes the specified UrlMap resource. + * (== suppress_warning http-rest-shadowed ==) */ public final class DeleteRegionUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteReservationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteReservationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteReservationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteReservationHttpRequest.java index e435ed9ec..e60aa4b86 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteReservationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteReservationHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.reservations.delete. Deletes the specified reservation. */ +/** + * Request object for method compute.reservations.delete. Deletes the specified reservation. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteReservationHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteResourcePolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteResourcePolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteResourcePolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteResourcePolicyHttpRequest.java index 14d99cfd8..e88c3d688 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteResourcePolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteResourcePolicyHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.resourcePolicies.delete. Deletes the specified resource policy. + * (== suppress_warning http-rest-shadowed ==) */ public final class DeleteResourcePolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRouteHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRouteHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRouteHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRouteHttpRequest.java index 8ff170e89..121f0d1f4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRouteHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRouteHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.routes.delete. Deletes the specified Route resource. */ +/** + * Request object for method compute.routes.delete. Deletes the specified Route resource. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteRouteHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRouterHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteRouterHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRouterHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteRouterHttpRequest.java index a8f5a93b5..05aa1831f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteRouterHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteRouterHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.routers.delete. Deletes the specified Router resource. */ +/** + * Request object for method compute.routers.delete. Deletes the specified Router resource. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteRouterHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSecurityPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteSecurityPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSecurityPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteSecurityPolicyHttpRequest.java index e3d6e1e87..80a23ca70 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSecurityPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteSecurityPolicyHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.securityPolicies.delete. Deletes the specified policy. */ +/** + * Request object for method compute.securityPolicies.delete. Deletes the specified policy. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteSecurityPolicyHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendBucketHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendBucketHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendBucketHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendBucketHttpRequest.java index 2cc263c3c..a64abfad1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendBucketHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendBucketHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendBuckets.deleteSignedUrlKey. Deletes a key for validating - * requests with signed URLs for this backend bucket. + * requests with signed URLs for this backend bucket. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteSignedUrlKeyBackendBucketHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendServiceHttpRequest.java index e1889fe05..ec0b3ac05 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteSignedUrlKeyBackendServiceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.backendServices.deleteSignedUrlKey. Deletes a key for - * validating requests with signed URLs for this backend service. + * validating requests with signed URLs for this backend service. (== suppress_warning + * http-rest-shadowed ==) */ public final class DeleteSignedUrlKeyBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSnapshotHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteSnapshotHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSnapshotHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteSnapshotHttpRequest.java index 33c82393c..211f132f3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSnapshotHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteSnapshotHttpRequest.java @@ -30,7 +30,7 @@ * snapshot. If any data on the snapshot that is marked for deletion is needed for subsequent * snapshots, the data will be moved to the next corresponding snapshot. * - *

For more information, see Deleting snapshots. + *

For more information, see Deleting snapshots. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteSnapshotHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSslCertificateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteSslCertificateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSslCertificateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteSslCertificateHttpRequest.java index 06fbebe74..97df3444f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSslCertificateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteSslCertificateHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.sslCertificates.delete. Deletes the specified SslCertificate - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteSslCertificateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSslPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteSslPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSslPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteSslPolicyHttpRequest.java index bbfb9444a..8ac0be378 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSslPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteSslPolicyHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.sslPolicies.delete. Deletes the specified SSL policy. The SSL * policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy - * resources. + * resources. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteSslPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteSubnetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteSubnetworkHttpRequest.java index 280089fc9..3a835c7f7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteSubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteSubnetworkHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.subnetworks.delete. Deletes the specified subnetwork. */ +/** + * Request object for method compute.subnetworks.delete. Deletes the specified subnetwork. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteSubnetworkHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpProxyHttpRequest.java index 4902827ba..f5750bdd2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetHttpProxies.delete. Deletes the specified TargetHttpProxy - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteTargetHttpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpsProxyHttpRequest.java index d38ace8f7..a29e8cad9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteTargetHttpsProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetHttpsProxies.delete. Deletes the specified - * TargetHttpsProxy resource. + * TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteTargetInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteTargetInstanceHttpRequest.java index c57efa7e0..60e737277 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteTargetInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetInstances.delete. Deletes the specified TargetInstance - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteTargetInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteTargetPoolHttpRequest.java index 5887749d4..8f477e6d8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteTargetPoolHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.targetPools.delete. Deletes the specified target pool. */ +/** + * Request object for method compute.targetPools.delete. Deletes the specified target pool. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteTargetPoolHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetSslProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteTargetSslProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetSslProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteTargetSslProxyHttpRequest.java index 96f977f02..b0f7f0af1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetSslProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteTargetSslProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetSslProxies.delete. Deletes the specified TargetSslProxy - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteTargetSslProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetTcpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteTargetTcpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetTcpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteTargetTcpProxyHttpRequest.java index 6bda89ed5..efd921ca5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetTcpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteTargetTcpProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetTcpProxies.delete. Deletes the specified TargetTcpProxy - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteTargetTcpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteTargetVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteTargetVpnGatewayHttpRequest.java index 75e0e7a4b..ace17631c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteTargetVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteTargetVpnGatewayHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetVpnGateways.delete. Deletes the specified target VPN - * gateway. + * gateway. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteTargetVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteUrlMapHttpRequest.java index 7397ca969..9df708a07 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteUrlMapHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.urlMaps.delete. Deletes the specified UrlMap resource. */ +/** + * Request object for method compute.urlMaps.delete. Deletes the specified UrlMap resource. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteUrlMapHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteVpnGatewayHttpRequest.java index 605548eaf..e08ab05de 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteVpnGatewayHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.vpnGateways.delete. Deletes the specified VPN gateway. */ +/** + * Request object for method compute.vpnGateways.delete. Deletes the specified VPN gateway. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DeleteVpnGatewayHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteVpnTunnelHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteVpnTunnelHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteVpnTunnelHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteVpnTunnelHttpRequest.java index d04d75250..db99fba7f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteVpnTunnelHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteVpnTunnelHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.vpnTunnels.delete. Deletes the specified VpnTunnel resource. + * (== suppress_warning http-rest-shadowed ==) */ public final class DeleteVpnTunnelHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteZoneOperationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeleteZoneOperationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteZoneOperationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeleteZoneOperationHttpRequest.java index 910b9e367..05618d3f6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeleteZoneOperationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeleteZoneOperationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.zoneOperations.delete. Deletes the specified zone-specific - * Operations resource. + * Operations resource. (== suppress_warning http-rest-shadowed ==) */ public final class DeleteZoneOperationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Denied.java b/src/main/java/com/google/cloud/compute/v1/Denied.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Denied.java rename to src/main/java/com/google/cloud/compute/v1/Denied.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeprecateImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DeprecateImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeprecateImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DeprecateImageHttpRequest.java index b762e4e17..10811271e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeprecateImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DeprecateImageHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.images.deprecate. Sets the deprecation status of an image. * - *

If an empty request body is given, clears the deprecation status instead. + *

If an empty request body is given, clears the deprecation status instead. (== suppress_warning + * http-rest-shadowed ==) */ public final class DeprecateImageHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeprecationStatus.java b/src/main/java/com/google/cloud/compute/v1/DeprecationStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DeprecationStatus.java rename to src/main/java/com/google/cloud/compute/v1/DeprecationStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DetachDiskInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DetachDiskInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DetachDiskInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DetachDiskInstanceHttpRequest.java index a250d626d..7cbfc284f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DetachDiskInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DetachDiskInstanceHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.instances.detachDisk. Detaches a disk from an instance. */ +/** + * Request object for method compute.instances.detachDisk. Detaches a disk from an instance. (== + * suppress_warning http-rest-shadowed ==) + */ public final class DetachDiskInstanceHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DetachNetworkEndpointsNetworkEndpointGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DetachNetworkEndpointsNetworkEndpointGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DetachNetworkEndpointsNetworkEndpointGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DetachNetworkEndpointsNetworkEndpointGroupHttpRequest.java index 93184e401..9897db553 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DetachNetworkEndpointsNetworkEndpointGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DetachNetworkEndpointsNetworkEndpointGroupHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.networkEndpointGroups.detachNetworkEndpoints. Detach a list of - * network endpoints from the specified network endpoint group. + * network endpoints from the specified network endpoint group. (== suppress_warning + * http-rest-shadowed ==) */ public final class DetachNetworkEndpointsNetworkEndpointGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisableXpnHostProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DisableXpnHostProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisableXpnHostProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DisableXpnHostProjectHttpRequest.java index c612f4828..80459e93f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisableXpnHostProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DisableXpnHostProjectHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.projects.disableXpnHost. Disable this project as a shared VPC - * host project. + * host project. (== suppress_warning http-rest-shadowed ==) */ public final class DisableXpnHostProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisableXpnResourceProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/DisableXpnResourceProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisableXpnResourceProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/DisableXpnResourceProjectHttpRequest.java index 50b62cb68..cd07bbc23 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisableXpnResourceProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DisableXpnResourceProjectHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.projects.disableXpnResource. Disable a service resource (also - * known as service project) associated with this host project. + * known as service project) associated with this host project. (== suppress_warning + * http-rest-shadowed ==) */ public final class DisableXpnResourceProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Disk.java b/src/main/java/com/google/cloud/compute/v1/Disk.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Disk.java rename to src/main/java/com/google/cloud/compute/v1/Disk.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/DiskAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/DiskAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskClient.java b/src/main/java/com/google/cloud/compute/v1/DiskClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskClient.java rename to src/main/java/com/google/cloud/compute/v1/DiskClient.java index 4d661e617..687672864 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskClient.java +++ b/src/main/java/com/google/cloud/compute/v1/DiskClient.java @@ -155,7 +155,7 @@ public DiskStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds existing resource policies to a disk. You can only add one policy which will be applied to - * this disk for scheduling snapshot creation. + * this disk for scheduling snapshot creation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -187,7 +187,7 @@ public final Operation addResourcePoliciesDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds existing resource policies to a disk. You can only add one policy which will be applied to - * this disk for scheduling snapshot creation. + * this disk for scheduling snapshot creation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -218,7 +218,7 @@ public final Operation addResourcePoliciesDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds existing resource policies to a disk. You can only add one policy which will be applied to - * this disk for scheduling snapshot creation. + * this disk for scheduling snapshot creation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -245,7 +245,7 @@ public final Operation addResourcePoliciesDisk(AddResourcePoliciesDiskHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds existing resource policies to a disk. You can only add one policy which will be applied to - * this disk for scheduling snapshot creation. + * this disk for scheduling snapshot creation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -271,7 +271,7 @@ public final Operation addResourcePoliciesDisk(AddResourcePoliciesDiskHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of persistent disks. + * Retrieves an aggregated list of persistent disks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -298,7 +298,7 @@ public final AggregatedListDisksPagedResponse aggregatedListDisks(ProjectName pr // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of persistent disks. + * Retrieves an aggregated list of persistent disks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -323,7 +323,7 @@ public final AggregatedListDisksPagedResponse aggregatedListDisks(String project // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of persistent disks. + * Retrieves an aggregated list of persistent disks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -350,7 +350,7 @@ public final AggregatedListDisksPagedResponse aggregatedListDisks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of persistent disks. + * Retrieves an aggregated list of persistent disks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -376,7 +376,7 @@ public final AggregatedListDisksPagedResponse aggregatedListDisks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of persistent disks. + * Retrieves an aggregated list of persistent disks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -409,7 +409,7 @@ public final AggregatedListDisksPagedResponse aggregatedListDisks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a snapshot of a specified persistent disk. + * Creates a snapshot of a specified persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -447,7 +447,7 @@ public final Operation createSnapshotDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a snapshot of a specified persistent disk. + * Creates a snapshot of a specified persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -485,7 +485,7 @@ public final Operation createSnapshotDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a snapshot of a specified persistent disk. + * Creates a snapshot of a specified persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -513,7 +513,7 @@ public final Operation createSnapshotDisk(CreateSnapshotDiskHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a snapshot of a specified persistent disk. + * Creates a snapshot of a specified persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -543,7 +543,7 @@ public final Operation createSnapshotDisk(CreateSnapshotDiskHttpRequest request) /** * Deletes the specified persistent disk. Deleting a disk removes its data permanently and is * irreversible. However, deleting a disk does not delete any snapshots previously made from the - * disk. You must separately delete snapshots. + * disk. You must separately delete snapshots. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -569,7 +569,7 @@ public final Operation deleteDisk(ProjectZoneDiskName disk) { /** * Deletes the specified persistent disk. Deleting a disk removes its data permanently and is * irreversible. However, deleting a disk does not delete any snapshots previously made from the - * disk. You must separately delete snapshots. + * disk. You must separately delete snapshots. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -594,7 +594,7 @@ public final Operation deleteDisk(String disk) { /** * Deletes the specified persistent disk. Deleting a disk removes its data permanently and is * irreversible. However, deleting a disk does not delete any snapshots previously made from the - * disk. You must separately delete snapshots. + * disk. You must separately delete snapshots. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -620,7 +620,7 @@ public final Operation deleteDisk(DeleteDiskHttpRequest request) { /** * Deletes the specified persistent disk. Deleting a disk removes its data permanently and is * irreversible. However, deleting a disk does not delete any snapshots previously made from the - * disk. You must separately delete snapshots. + * disk. You must separately delete snapshots. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -644,7 +644,7 @@ public final UnaryCallable deleteDiskCallable( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns a specified persistent disk. Gets a list of available persistent disks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -669,7 +669,7 @@ public final Disk getDisk(ProjectZoneDiskName disk) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns a specified persistent disk. Gets a list of available persistent disks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -693,7 +693,7 @@ public final Disk getDisk(String disk) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns a specified persistent disk. Gets a list of available persistent disks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -718,7 +718,7 @@ public final Disk getDisk(GetDiskHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns a specified persistent disk. Gets a list of available persistent disks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -742,7 +742,7 @@ public final UnaryCallable getDiskCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -769,7 +769,7 @@ public final Policy getIamPolicyDisk(ProjectZoneDiskResourceName resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -794,7 +794,7 @@ public final Policy getIamPolicyDisk(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -819,7 +819,7 @@ public final Policy getIamPolicyDisk(GetIamPolicyDiskHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -845,7 +845,7 @@ public final UnaryCallable getIamPolicyDisk * Creates a persistent disk in the specified project using the data in the request. You can * create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by * omitting all properties. You can also create a disk that is larger than the default size by - * specifying the sizeGb property. + * specifying the sizeGb property. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -885,7 +885,7 @@ public final Operation insertDisk(ProjectZoneName zone, Disk diskResource) { * Creates a persistent disk in the specified project using the data in the request. You can * create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by * omitting all properties. You can also create a disk that is larger than the default size by - * specifying the sizeGb property. + * specifying the sizeGb property. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -922,7 +922,7 @@ public final Operation insertDisk(String zone, Disk diskResource) { * Creates a persistent disk in the specified project using the data in the request. You can * create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by * omitting all properties. You can also create a disk that is larger than the default size by - * specifying the sizeGb property. + * specifying the sizeGb property. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -951,7 +951,7 @@ public final Operation insertDisk(InsertDiskHttpRequest request) { * Creates a persistent disk in the specified project using the data in the request. You can * create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by * omitting all properties. You can also create a disk that is larger than the default size by - * specifying the sizeGb property. + * specifying the sizeGb property. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -976,7 +976,8 @@ public final UnaryCallable insertDiskCallable( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of persistent disks contained within the specified zone. + * Retrieves a list of persistent disks contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1001,7 +1002,8 @@ public final ListDisksPagedResponse listDisks(ProjectZoneName zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of persistent disks contained within the specified zone. + * Retrieves a list of persistent disks contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1025,7 +1027,8 @@ public final ListDisksPagedResponse listDisks(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of persistent disks contained within the specified zone. + * Retrieves a list of persistent disks contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1051,7 +1054,8 @@ public final ListDisksPagedResponse listDisks(ListDisksHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of persistent disks contained within the specified zone. + * Retrieves a list of persistent disks contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1077,7 +1081,8 @@ public final ListDisksPagedResponse listDisks(ListDisksHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of persistent disks contained within the specified zone. + * Retrieves a list of persistent disks contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1109,7 +1114,7 @@ public final UnaryCallable listDisksCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes resource policies from a disk. + * Removes resource policies from a disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1141,7 +1146,7 @@ public final Operation removeResourcePoliciesDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes resource policies from a disk. + * Removes resource policies from a disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1172,7 +1177,7 @@ public final Operation removeResourcePoliciesDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes resource policies from a disk. + * Removes resource policies from a disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1198,7 +1203,7 @@ public final Operation removeResourcePoliciesDisk(RemoveResourcePoliciesDiskHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes resource policies from a disk. + * Removes resource policies from a disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1224,7 +1229,8 @@ public final Operation removeResourcePoliciesDisk(RemoveResourcePoliciesDiskHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Resizes the specified persistent disk. You can only increase the size of the disk. + * Resizes the specified persistent disk. You can only increase the size of the disk. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1254,7 +1260,8 @@ public final Operation resizeDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Resizes the specified persistent disk. You can only increase the size of the disk. + * Resizes the specified persistent disk. You can only increase the size of the disk. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1283,7 +1290,8 @@ public final Operation resizeDisk(String disk, DisksResizeRequest disksResizeReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Resizes the specified persistent disk. You can only increase the size of the disk. + * Resizes the specified persistent disk. You can only increase the size of the disk. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1309,7 +1317,8 @@ public final Operation resizeDisk(ResizeDiskHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Resizes the specified persistent disk. You can only increase the size of the disk. + * Resizes the specified persistent disk. You can only increase the size of the disk. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1334,7 +1343,8 @@ public final UnaryCallable resizeDiskCallable( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1364,7 +1374,8 @@ public final Policy setIamPolicyDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1394,7 +1405,8 @@ public final Policy setIamPolicyDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1420,7 +1432,8 @@ public final Policy setIamPolicyDisk(SetIamPolicyDiskHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1446,7 +1459,7 @@ public final UnaryCallable setIamPolicyDisk // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a disk. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1477,7 +1490,7 @@ public final Operation setLabelsDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a disk. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1508,7 +1521,7 @@ public final Operation setLabelsDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a disk. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1535,7 +1548,7 @@ public final Operation setLabelsDisk(SetLabelsDiskHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a disk. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1560,7 +1573,8 @@ public final UnaryCallable setLabelsDiskCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1590,7 +1604,8 @@ public final TestPermissionsResponse testIamPermissionsDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1620,7 +1635,8 @@ public final TestPermissionsResponse testIamPermissionsDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1647,7 +1663,8 @@ public final TestPermissionsResponse testIamPermissionsDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskInstantiationConfig.java b/src/main/java/com/google/cloud/compute/v1/DiskInstantiationConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskInstantiationConfig.java rename to src/main/java/com/google/cloud/compute/v1/DiskInstantiationConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskList.java b/src/main/java/com/google/cloud/compute/v1/DiskList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskList.java rename to src/main/java/com/google/cloud/compute/v1/DiskList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskMoveRequest.java b/src/main/java/com/google/cloud/compute/v1/DiskMoveRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskMoveRequest.java rename to src/main/java/com/google/cloud/compute/v1/DiskMoveRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskSettings.java b/src/main/java/com/google/cloud/compute/v1/DiskSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskSettings.java rename to src/main/java/com/google/cloud/compute/v1/DiskSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskType.java b/src/main/java/com/google/cloud/compute/v1/DiskType.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskType.java rename to src/main/java/com/google/cloud/compute/v1/DiskType.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/DiskTypeAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/DiskTypeAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeClient.java b/src/main/java/com/google/cloud/compute/v1/DiskTypeClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeClient.java rename to src/main/java/com/google/cloud/compute/v1/DiskTypeClient.java index f6c83ff5c..1abbebae2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeClient.java +++ b/src/main/java/com/google/cloud/compute/v1/DiskTypeClient.java @@ -153,7 +153,7 @@ public DiskTypeStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of disk types. + * Retrieves an aggregated list of disk types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -180,7 +180,7 @@ public final AggregatedListDiskTypesPagedResponse aggregatedListDiskTypes(Projec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of disk types. + * Retrieves an aggregated list of disk types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final AggregatedListDiskTypesPagedResponse aggregatedListDiskTypes(String // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of disk types. + * Retrieves an aggregated list of disk types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -232,7 +232,7 @@ public final AggregatedListDiskTypesPagedResponse aggregatedListDiskTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of disk types. + * Retrieves an aggregated list of disk types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -259,7 +259,7 @@ public final AggregatedListDiskTypesPagedResponse aggregatedListDiskTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of disk types. + * Retrieves an aggregated list of disk types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -293,7 +293,7 @@ public final AggregatedListDiskTypesPagedResponse aggregatedListDiskTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified disk type. Gets a list of available disk types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -320,7 +320,7 @@ public final DiskType getDiskType(ProjectZoneDiskTypeName diskType) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified disk type. Gets a list of available disk types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -345,7 +345,7 @@ public final DiskType getDiskType(String diskType) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified disk type. Gets a list of available disk types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -370,7 +370,7 @@ public final DiskType getDiskType(GetDiskTypeHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified disk type. Gets a list of available disk types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -393,7 +393,8 @@ public final UnaryCallable getDiskTypeCallable // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of disk types available to the specified project. + * Retrieves a list of disk types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -420,7 +421,8 @@ public final ListDiskTypesPagedResponse listDiskTypes(ProjectZoneName zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of disk types available to the specified project. + * Retrieves a list of disk types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -444,7 +446,8 @@ public final ListDiskTypesPagedResponse listDiskTypes(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of disk types available to the specified project. + * Retrieves a list of disk types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -470,7 +473,8 @@ public final ListDiskTypesPagedResponse listDiskTypes(ListDiskTypesHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of disk types available to the specified project. + * Retrieves a list of disk types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -496,7 +500,8 @@ public final ListDiskTypesPagedResponse listDiskTypes(ListDiskTypesHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of disk types available to the specified project. + * Retrieves a list of disk types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeList.java b/src/main/java/com/google/cloud/compute/v1/DiskTypeList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeList.java rename to src/main/java/com/google/cloud/compute/v1/DiskTypeList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeSettings.java b/src/main/java/com/google/cloud/compute/v1/DiskTypeSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypeSettings.java rename to src/main/java/com/google/cloud/compute/v1/DiskTypeSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypesScopedList.java b/src/main/java/com/google/cloud/compute/v1/DiskTypesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DiskTypesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/DiskTypesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksAddResourcePoliciesRequest.java b/src/main/java/com/google/cloud/compute/v1/DisksAddResourcePoliciesRequest.java similarity index 91% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksAddResourcePoliciesRequest.java rename to src/main/java/com/google/cloud/compute/v1/DisksAddResourcePoliciesRequest.java index dd86967bd..3205fc79b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksAddResourcePoliciesRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/DisksAddResourcePoliciesRequest.java @@ -62,7 +62,7 @@ public List getFieldMask() { return null; } - /** Resource policies to be added to this disk. */ + /** Resource policies to be added to this disk. Currently you can only specify one policy here. */ public List getResourcePoliciesList() { return resourcePolicies; } @@ -106,12 +106,16 @@ public Builder mergeFrom(DisksAddResourcePoliciesRequest other) { this.resourcePolicies = source.resourcePolicies; } - /** Resource policies to be added to this disk. */ + /** + * Resource policies to be added to this disk. Currently you can only specify one policy here. + */ public List getResourcePoliciesList() { return resourcePolicies; } - /** Resource policies to be added to this disk. */ + /** + * Resource policies to be added to this disk. Currently you can only specify one policy here. + */ public Builder addAllResourcePolicies(List resourcePolicies) { if (this.resourcePolicies == null) { this.resourcePolicies = new LinkedList<>(); @@ -120,7 +124,9 @@ public Builder addAllResourcePolicies(List resourcePolicies) { return this; } - /** Resource policies to be added to this disk. */ + /** + * Resource policies to be added to this disk. Currently you can only specify one policy here. + */ public Builder addResourcePolicies(String resourcePolicies) { if (this.resourcePolicies == null) { this.resourcePolicies = new LinkedList<>(); diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksRemoveResourcePoliciesRequest.java b/src/main/java/com/google/cloud/compute/v1/DisksRemoveResourcePoliciesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksRemoveResourcePoliciesRequest.java rename to src/main/java/com/google/cloud/compute/v1/DisksRemoveResourcePoliciesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksResizeRequest.java b/src/main/java/com/google/cloud/compute/v1/DisksResizeRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksResizeRequest.java rename to src/main/java/com/google/cloud/compute/v1/DisksResizeRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksScopedList.java b/src/main/java/com/google/cloud/compute/v1/DisksScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisksScopedList.java rename to src/main/java/com/google/cloud/compute/v1/DisksScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisplayDevice.java b/src/main/java/com/google/cloud/compute/v1/DisplayDevice.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DisplayDevice.java rename to src/main/java/com/google/cloud/compute/v1/DisplayDevice.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DistributionPolicy.java b/src/main/java/com/google/cloud/compute/v1/DistributionPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DistributionPolicy.java rename to src/main/java/com/google/cloud/compute/v1/DistributionPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DistributionPolicyZoneConfiguration.java b/src/main/java/com/google/cloud/compute/v1/DistributionPolicyZoneConfiguration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/DistributionPolicyZoneConfiguration.java rename to src/main/java/com/google/cloud/compute/v1/DistributionPolicyZoneConfiguration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Duration.java b/src/main/java/com/google/cloud/compute/v1/Duration.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Duration.java rename to src/main/java/com/google/cloud/compute/v1/Duration.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/EnableXpnHostProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/EnableXpnHostProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/EnableXpnHostProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/EnableXpnHostProjectHttpRequest.java index 049f1ce4e..9849825a1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/EnableXpnHostProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/EnableXpnHostProjectHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.projects.enableXpnHost. Enable this project as a shared VPC - * host project. + * host project. (== suppress_warning http-rest-shadowed ==) */ public final class EnableXpnHostProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/EnableXpnResourceProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/EnableXpnResourceProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/EnableXpnResourceProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/EnableXpnResourceProjectHttpRequest.java index 8bd8e2972..6756e3302 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/EnableXpnResourceProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/EnableXpnResourceProjectHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.projects.enableXpnResource. Enable service resource (a.k.a * service project) for a host project, so that subnets in the host project can be used by instances - * in the service project. + * in the service project. (== suppress_warning http-rest-shadowed ==) */ public final class EnableXpnResourceProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Error.java b/src/main/java/com/google/cloud/compute/v1/Error.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Error.java rename to src/main/java/com/google/cloud/compute/v1/Error.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Errors.java b/src/main/java/com/google/cloud/compute/v1/Errors.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Errors.java rename to src/main/java/com/google/cloud/compute/v1/Errors.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExpandIpCidrRangeSubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ExpandIpCidrRangeSubnetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExpandIpCidrRangeSubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ExpandIpCidrRangeSubnetworkHttpRequest.java index b2ae81346..66eeb83f7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExpandIpCidrRangeSubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ExpandIpCidrRangeSubnetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.subnetworks.expandIpCidrRange. Expands the IP CIDR range of the - * subnetwork to a specified value. + * subnetwork to a specified value. (== suppress_warning http-rest-shadowed ==) */ public final class ExpandIpCidrRangeSubnetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Expr.java b/src/main/java/com/google/cloud/compute/v1/Expr.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Expr.java rename to src/main/java/com/google/cloud/compute/v1/Expr.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGateway.java b/src/main/java/com/google/cloud/compute/v1/ExternalVpnGateway.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGateway.java rename to src/main/java/com/google/cloud/compute/v1/ExternalVpnGateway.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayClient.java b/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayClient.java rename to src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayClient.java index b4e243c34..6f707eaca 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayClient.java +++ b/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayClient.java @@ -156,7 +156,7 @@ public ExternalVpnGatewayStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified externalVpnGateway. + * Deletes the specified externalVpnGateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -184,7 +184,7 @@ public final Operation deleteExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified externalVpnGateway. + * Deletes the specified externalVpnGateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -210,7 +210,7 @@ public final Operation deleteExternalVpnGateway(String externalVpnGateway) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified externalVpnGateway. + * Deletes the specified externalVpnGateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -234,7 +234,7 @@ public final Operation deleteExternalVpnGateway(DeleteExternalVpnGatewayHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified externalVpnGateway. + * Deletes the specified externalVpnGateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -259,7 +259,7 @@ public final Operation deleteExternalVpnGateway(DeleteExternalVpnGatewayHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified externalVpnGateway. Get a list of available externalVpnGateways by making - * a list() request. + * a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -288,7 +288,7 @@ public final ExternalVpnGateway getExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified externalVpnGateway. Get a list of available externalVpnGateways by making - * a list() request. + * a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -315,7 +315,7 @@ public final ExternalVpnGateway getExternalVpnGateway(String externalVpnGateway) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified externalVpnGateway. Get a list of available externalVpnGateways by making - * a list() request. + * a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -340,7 +340,7 @@ public final ExternalVpnGateway getExternalVpnGateway(GetExternalVpnGatewayHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified externalVpnGateway. Get a list of available externalVpnGateways by making - * a list() request. + * a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -365,6 +365,7 @@ public final ExternalVpnGateway getExternalVpnGateway(GetExternalVpnGatewayHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a ExternalVpnGateway in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -399,6 +400,7 @@ public final Operation insertExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a ExternalVpnGateway in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -433,6 +435,7 @@ public final Operation insertExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a ExternalVpnGateway in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -459,6 +462,7 @@ public final Operation insertExternalVpnGateway(InsertExternalVpnGatewayHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a ExternalVpnGateway in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -484,7 +488,8 @@ public final Operation insertExternalVpnGateway(InsertExternalVpnGatewayHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of ExternalVpnGateway available to the specified project. + * Retrieves the list of ExternalVpnGateway available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -511,7 +516,8 @@ public final ListExternalVpnGatewaysPagedResponse listExternalVpnGateways(Projec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of ExternalVpnGateway available to the specified project. + * Retrieves the list of ExternalVpnGateway available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -536,7 +542,8 @@ public final ListExternalVpnGatewaysPagedResponse listExternalVpnGateways(String // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of ExternalVpnGateway available to the specified project. + * Retrieves the list of ExternalVpnGateway available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -563,7 +570,8 @@ public final ListExternalVpnGatewaysPagedResponse listExternalVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of ExternalVpnGateway available to the specified project. + * Retrieves the list of ExternalVpnGateway available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -590,7 +598,8 @@ public final ListExternalVpnGatewaysPagedResponse listExternalVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of ExternalVpnGateway available to the specified project. + * Retrieves the list of ExternalVpnGateway available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -624,7 +633,7 @@ public final ListExternalVpnGatewaysPagedResponse listExternalVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on an ExternalVpnGateway. To learn more about labels, read the Labeling - * Resources documentation. + * Resources documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -656,7 +665,7 @@ public final Operation setLabelsExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on an ExternalVpnGateway. To learn more about labels, read the Labeling - * Resources documentation. + * Resources documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -687,7 +696,7 @@ public final Operation setLabelsExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on an ExternalVpnGateway. To learn more about labels, read the Labeling - * Resources documentation. + * Resources documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -715,7 +724,7 @@ public final Operation setLabelsExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on an ExternalVpnGateway. To learn more about labels, read the Labeling - * Resources documentation. + * Resources documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -741,7 +750,8 @@ public final Operation setLabelsExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -772,7 +782,8 @@ public final TestPermissionsResponse testIamPermissionsExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -802,7 +813,8 @@ public final TestPermissionsResponse testIamPermissionsExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -829,7 +841,8 @@ public final TestPermissionsResponse testIamPermissionsExternalVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayInterface.java b/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayInterface.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayInterface.java rename to src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayInterface.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayList.java b/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayList.java rename to src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewayList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewaySettings.java b/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewaySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewaySettings.java rename to src/main/java/com/google/cloud/compute/v1/ExternalVpnGatewaySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Firewall.java b/src/main/java/com/google/cloud/compute/v1/Firewall.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Firewall.java rename to src/main/java/com/google/cloud/compute/v1/Firewall.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallClient.java b/src/main/java/com/google/cloud/compute/v1/FirewallClient.java similarity index 93% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallClient.java rename to src/main/java/com/google/cloud/compute/v1/FirewallClient.java index c1b6661fb..3e603b5ac 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallClient.java +++ b/src/main/java/com/google/cloud/compute/v1/FirewallClient.java @@ -153,7 +153,7 @@ public FirewallStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified firewall. + * Deletes the specified firewall. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -179,7 +179,7 @@ public final Operation deleteFirewall(ProjectGlobalFirewallName firewall) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified firewall. + * Deletes the specified firewall. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -203,7 +203,7 @@ public final Operation deleteFirewall(String firewall) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified firewall. + * Deletes the specified firewall. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -227,7 +227,7 @@ public final Operation deleteFirewall(DeleteFirewallHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified firewall. + * Deletes the specified firewall. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -250,7 +250,7 @@ public final UnaryCallable deleteFirewallC // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified firewall. + * Returns the specified firewall. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -276,7 +276,7 @@ public final Firewall getFirewall(ProjectGlobalFirewallName firewall) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified firewall. + * Returns the specified firewall. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -300,7 +300,7 @@ public final Firewall getFirewall(String firewall) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified firewall. + * Returns the specified firewall. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -324,7 +324,7 @@ public final Firewall getFirewall(GetFirewallHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified firewall. + * Returns the specified firewall. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -347,7 +347,8 @@ public final UnaryCallable getFirewallCallable // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a firewall rule in the specified project using the data included in the request. + * Creates a firewall rule in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -378,7 +379,8 @@ public final Operation insertFirewall(ProjectName project, Firewall firewallReso // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a firewall rule in the specified project using the data included in the request. + * Creates a firewall rule in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -409,7 +411,8 @@ public final Operation insertFirewall(String project, Firewall firewallResource) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a firewall rule in the specified project using the data included in the request. + * Creates a firewall rule in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -435,7 +438,8 @@ public final Operation insertFirewall(InsertFirewallHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a firewall rule in the specified project using the data included in the request. + * Creates a firewall rule in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -460,7 +464,8 @@ public final UnaryCallable insertFirewallC // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of firewall rules available to the specified project. + * Retrieves the list of firewall rules available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -487,7 +492,8 @@ public final ListFirewallsPagedResponse listFirewalls(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of firewall rules available to the specified project. + * Retrieves the list of firewall rules available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -512,7 +518,8 @@ public final ListFirewallsPagedResponse listFirewalls(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of firewall rules available to the specified project. + * Retrieves the list of firewall rules available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -538,7 +545,8 @@ public final ListFirewallsPagedResponse listFirewalls(ListFirewallsHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of firewall rules available to the specified project. + * Retrieves the list of firewall rules available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -564,7 +572,8 @@ public final ListFirewallsPagedResponse listFirewalls(ListFirewallsHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of firewall rules available to the specified project. + * Retrieves the list of firewall rules available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -597,7 +606,8 @@ public final UnaryCallable listFirewalls // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified firewall rule with the data included in the request. This method supports - * PATCH semantics and uses the JSON merge patch format and processing rules. + * PATCH semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -636,7 +646,8 @@ public final Operation patchFirewall( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified firewall rule with the data included in the request. This method supports - * PATCH semantics and uses the JSON merge patch format and processing rules. + * PATCH semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -675,7 +686,8 @@ public final Operation patchFirewall( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified firewall rule with the data included in the request. This method supports - * PATCH semantics and uses the JSON merge patch format and processing rules. + * PATCH semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -704,7 +716,8 @@ public final Operation patchFirewall(PatchFirewallHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified firewall rule with the data included in the request. This method supports - * PATCH semantics and uses the JSON merge patch format and processing rules. + * PATCH semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -731,9 +744,9 @@ public final UnaryCallable patchFirewallCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified firewall rule with the data included in the request. The PUT method can - * only update the following fields of firewall rule: allowed, description, sourceRanges, - * sourceTags, targetTags. + * Updates the specified firewall rule with the data included in the request. Note that all fields + * will be updated if using PUT, even fields that are not specified. To update individual fields, + * please use PATCH instead. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -771,9 +784,9 @@ public final Operation updateFirewall( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified firewall rule with the data included in the request. The PUT method can - * only update the following fields of firewall rule: allowed, description, sourceRanges, - * sourceTags, targetTags. + * Updates the specified firewall rule with the data included in the request. Note that all fields + * will be updated if using PUT, even fields that are not specified. To update individual fields, + * please use PATCH instead. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -811,9 +824,9 @@ public final Operation updateFirewall( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified firewall rule with the data included in the request. The PUT method can - * only update the following fields of firewall rule: allowed, description, sourceRanges, - * sourceTags, targetTags. + * Updates the specified firewall rule with the data included in the request. Note that all fields + * will be updated if using PUT, even fields that are not specified. To update individual fields, + * please use PATCH instead. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -841,9 +854,9 @@ public final Operation updateFirewall(UpdateFirewallHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified firewall rule with the data included in the request. The PUT method can - * only update the following fields of firewall rule: allowed, description, sourceRanges, - * sourceTags, targetTags. + * Updates the specified firewall rule with the data included in the request. Note that all fields + * will be updated if using PUT, even fields that are not specified. To update individual fields, + * please use PATCH instead. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallList.java b/src/main/java/com/google/cloud/compute/v1/FirewallList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallList.java rename to src/main/java/com/google/cloud/compute/v1/FirewallList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallLogConfig.java b/src/main/java/com/google/cloud/compute/v1/FirewallLogConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallLogConfig.java rename to src/main/java/com/google/cloud/compute/v1/FirewallLogConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallSettings.java b/src/main/java/com/google/cloud/compute/v1/FirewallSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FirewallSettings.java rename to src/main/java/com/google/cloud/compute/v1/FirewallSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FixedOrPercent.java b/src/main/java/com/google/cloud/compute/v1/FixedOrPercent.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/FixedOrPercent.java rename to src/main/java/com/google/cloud/compute/v1/FixedOrPercent.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRule.java b/src/main/java/com/google/cloud/compute/v1/ForwardingRule.java similarity index 92% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRule.java rename to src/main/java/com/google/cloud/compute/v1/ForwardingRule.java index 8f521d1ad..858140bf8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRule.java +++ b/src/main/java/com/google/cloud/compute/v1/ForwardingRule.java @@ -29,31 +29,15 @@ /** * Represents a Forwarding Rule resource. * - *

A forwardingRules resource represents a regional forwarding rule. + *

A forwarding rule and its corresponding IP address represent the frontend configuration of a + * Google Cloud Platform load balancer. Forwarding rules can also reference target instances and + * Cloud VPN Classic gateways (targetVpnGateway). * - *

Regional external forwarding rules can reference any of the following resources: + *

For more information, read Forwarding rule concepts and Using protocol forwarding. * - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool for a - * Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer using Standard - * Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - A target TCP proxy - * for a TCP Proxy load balancer using Standard Tier. - * - *

Regional internal forwarding rules can reference the backend service of an internal TCP/UDP - * load balancer. - * - *

For regional internal forwarding rules, the following applies: - If the loadBalancingScheme - * for the load balancer is INTERNAL, then the forwarding rule references a regional internal - * backend service. - If the loadBalancingScheme for the load balancer is INTERNAL_MANAGED, then the - * forwarding rule must reference a regional target HTTP(S) proxy. - * - *

For more information, read Using Forwarding rules. - * - *

A globalForwardingRules resource represents a global forwarding rule. - * - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== resource_for - * beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== resource_for - * beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== + * resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) */ public final class ForwardingRule implements ApiMessage { private final Boolean allPorts; @@ -304,8 +288,12 @@ public String getIPAddress() { /** * The IP protocol to which this rule applies. Valid options are TCP, UDP, ESP, AH, SCTP or ICMP. * - *

When the load balancing scheme is INTERNAL, only TCP and UDP are valid. When the load - * balancing scheme is INTERNAL_SELF_MANAGED, only TCPis valid. + *

For Internal TCP/UDP Load Balancing, the load balancing scheme is INTERNAL, and one of TCP + * or UDP are valid. For Traffic Director, the load balancing scheme is INTERNAL_SELF_MANAGED, and + * only TCPis valid. For Internal HTTP(S) Load Balancing, the load balancing scheme is + * INTERNAL_MANAGED, and only TCP is valid. For HTTP(S), SSL Proxy, and TCP Proxy Load Balancing, + * the load balancing scheme is EXTERNAL and only TCP is valid. For Network TCP/UDP Load + * Balancing, the load balancing scheme is EXTERNAL, and one of TCP or UDP is valid. */ public String getIPProtocol() { return iPProtocol; @@ -335,11 +323,18 @@ public String getKind() { } /** - * This signifies what the ForwardingRule will be used for and can only take the following values: - * INTERNAL, INTERNAL_SELF_MANAGED, EXTERNAL. The value of INTERNAL means that this will be used - * for Internal Network Load Balancing (TCP, UDP). The value of INTERNAL_SELF_MANAGED means that - * this will be used for Internal Global HTTP(S) LB. The value of EXTERNAL means that this will be - * used for External Load Balancing (HTTP(S) LB, External TCP/UDP LB, SSL Proxy) + * Specifies the forwarding rule type. EXTERNAL is used for: - Classic Cloud VPN gateways - + * Protocol forwarding to VMs from an external IP address - The following load balancers: HTTP(S), + * SSL Proxy, TCP Proxy, and Network TCP/UDP. + * + *

INTERNAL is used for: - Protocol forwarding to VMs from an internal IP address - Internal + * TCP/UDP load balancers + * + *

INTERNAL_MANAGED is used for: - Internal HTTP(S) load balancers + * + *

INTERNAL_SELF_MANAGED is used for: - Traffic Director + * + *

For more information about forwarding rules, refer to Forwarding rule concepts. */ public String getLoadBalancingScheme() { return loadBalancingScheme; @@ -761,8 +756,12 @@ public Builder setIPAddress(String iPAddress) { * The IP protocol to which this rule applies. Valid options are TCP, UDP, ESP, AH, SCTP or * ICMP. * - *

When the load balancing scheme is INTERNAL, only TCP and UDP are valid. When the load - * balancing scheme is INTERNAL_SELF_MANAGED, only TCPis valid. + *

For Internal TCP/UDP Load Balancing, the load balancing scheme is INTERNAL, and one of TCP + * or UDP are valid. For Traffic Director, the load balancing scheme is INTERNAL_SELF_MANAGED, + * and only TCPis valid. For Internal HTTP(S) Load Balancing, the load balancing scheme is + * INTERNAL_MANAGED, and only TCP is valid. For HTTP(S), SSL Proxy, and TCP Proxy Load + * Balancing, the load balancing scheme is EXTERNAL and only TCP is valid. For Network TCP/UDP + * Load Balancing, the load balancing scheme is EXTERNAL, and one of TCP or UDP is valid. */ public String getIPProtocol() { return iPProtocol; @@ -772,8 +771,12 @@ public String getIPProtocol() { * The IP protocol to which this rule applies. Valid options are TCP, UDP, ESP, AH, SCTP or * ICMP. * - *

When the load balancing scheme is INTERNAL, only TCP and UDP are valid. When the load - * balancing scheme is INTERNAL_SELF_MANAGED, only TCPis valid. + *

For Internal TCP/UDP Load Balancing, the load balancing scheme is INTERNAL, and one of TCP + * or UDP are valid. For Traffic Director, the load balancing scheme is INTERNAL_SELF_MANAGED, + * and only TCPis valid. For Internal HTTP(S) Load Balancing, the load balancing scheme is + * INTERNAL_MANAGED, and only TCP is valid. For HTTP(S), SSL Proxy, and TCP Proxy Load + * Balancing, the load balancing scheme is EXTERNAL and only TCP is valid. For Network TCP/UDP + * Load Balancing, the load balancing scheme is EXTERNAL, and one of TCP or UDP is valid. */ public Builder setIPProtocol(String iPProtocol) { this.iPProtocol = iPProtocol; @@ -832,22 +835,36 @@ public Builder setKind(String kind) { } /** - * This signifies what the ForwardingRule will be used for and can only take the following - * values: INTERNAL, INTERNAL_SELF_MANAGED, EXTERNAL. The value of INTERNAL means that this will - * be used for Internal Network Load Balancing (TCP, UDP). The value of INTERNAL_SELF_MANAGED - * means that this will be used for Internal Global HTTP(S) LB. The value of EXTERNAL means that - * this will be used for External Load Balancing (HTTP(S) LB, External TCP/UDP LB, SSL Proxy) + * Specifies the forwarding rule type. EXTERNAL is used for: - Classic Cloud VPN gateways - + * Protocol forwarding to VMs from an external IP address - The following load balancers: + * HTTP(S), SSL Proxy, TCP Proxy, and Network TCP/UDP. + * + *

INTERNAL is used for: - Protocol forwarding to VMs from an internal IP address - Internal + * TCP/UDP load balancers + * + *

INTERNAL_MANAGED is used for: - Internal HTTP(S) load balancers + * + *

INTERNAL_SELF_MANAGED is used for: - Traffic Director + * + *

For more information about forwarding rules, refer to Forwarding rule concepts. */ public String getLoadBalancingScheme() { return loadBalancingScheme; } /** - * This signifies what the ForwardingRule will be used for and can only take the following - * values: INTERNAL, INTERNAL_SELF_MANAGED, EXTERNAL. The value of INTERNAL means that this will - * be used for Internal Network Load Balancing (TCP, UDP). The value of INTERNAL_SELF_MANAGED - * means that this will be used for Internal Global HTTP(S) LB. The value of EXTERNAL means that - * this will be used for External Load Balancing (HTTP(S) LB, External TCP/UDP LB, SSL Proxy) + * Specifies the forwarding rule type. EXTERNAL is used for: - Classic Cloud VPN gateways - + * Protocol forwarding to VMs from an external IP address - The following load balancers: + * HTTP(S), SSL Proxy, TCP Proxy, and Network TCP/UDP. + * + *

INTERNAL is used for: - Protocol forwarding to VMs from an internal IP address - Internal + * TCP/UDP load balancers + * + *

INTERNAL_MANAGED is used for: - Internal HTTP(S) load balancers + * + *

INTERNAL_SELF_MANAGED is used for: - Traffic Director + * + *

For more information about forwarding rules, refer to Forwarding rule concepts. */ public Builder setLoadBalancingScheme(String loadBalancingScheme) { this.loadBalancingScheme = loadBalancingScheme; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/ForwardingRuleAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/ForwardingRuleAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleClient.java b/src/main/java/com/google/cloud/compute/v1/ForwardingRuleClient.java similarity index 91% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleClient.java rename to src/main/java/com/google/cloud/compute/v1/ForwardingRuleClient.java index 4ecbc6174..9f2cf0d87 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleClient.java +++ b/src/main/java/com/google/cloud/compute/v1/ForwardingRuleClient.java @@ -155,7 +155,7 @@ public ForwardingRuleStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of forwarding rules. + * Retrieves an aggregated list of forwarding rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -183,7 +183,7 @@ public final AggregatedListForwardingRulesPagedResponse aggregatedListForwarding // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of forwarding rules. + * Retrieves an aggregated list of forwarding rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -209,7 +209,7 @@ public final AggregatedListForwardingRulesPagedResponse aggregatedListForwarding // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of forwarding rules. + * Retrieves an aggregated list of forwarding rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -236,7 +236,7 @@ public final AggregatedListForwardingRulesPagedResponse aggregatedListForwarding // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of forwarding rules. + * Retrieves an aggregated list of forwarding rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -263,7 +263,7 @@ public final AggregatedListForwardingRulesPagedResponse aggregatedListForwarding // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of forwarding rules. + * Retrieves an aggregated list of forwarding rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -296,7 +296,7 @@ public final AggregatedListForwardingRulesPagedResponse aggregatedListForwarding // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified ForwardingRule resource. + * Deletes the specified ForwardingRule resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -322,7 +322,7 @@ public final Operation deleteForwardingRule(ProjectRegionForwardingRuleName forw // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified ForwardingRule resource. + * Deletes the specified ForwardingRule resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -346,7 +346,7 @@ public final Operation deleteForwardingRule(String forwardingRule) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified ForwardingRule resource. + * Deletes the specified ForwardingRule resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -370,7 +370,7 @@ public final Operation deleteForwardingRule(DeleteForwardingRuleHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified ForwardingRule resource. + * Deletes the specified ForwardingRule resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -394,7 +394,7 @@ public final Operation deleteForwardingRule(DeleteForwardingRuleHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified ForwardingRule resource. + * Returns the specified ForwardingRule resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -420,7 +420,7 @@ public final ForwardingRule getForwardingRule(ProjectRegionForwardingRuleName fo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified ForwardingRule resource. + * Returns the specified ForwardingRule resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -444,7 +444,7 @@ public final ForwardingRule getForwardingRule(String forwardingRule) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified ForwardingRule resource. + * Returns the specified ForwardingRule resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -468,7 +468,7 @@ public final ForwardingRule getForwardingRule(GetForwardingRuleHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified ForwardingRule resource. + * Returns the specified ForwardingRule resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -493,7 +493,7 @@ public final ForwardingRule getForwardingRule(GetForwardingRuleHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a ForwardingRule resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -507,22 +507,11 @@ public final ForwardingRule getForwardingRule(GetForwardingRuleHttpRequest reque * * @param region Name of the region scoping this request. * @param forwardingRuleResource Represents a Forwarding Rule resource. - *

A forwardingRules resource represents a regional forwarding rule. - *

Regional external forwarding rules can reference any of the following resources: - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool - * for a Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer - * using Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - * - A target TCP proxy for a TCP Proxy load balancer using Standard Tier. - *

Regional internal forwarding rules can reference the backend service of an internal - * TCP/UDP load balancer. - *

For regional internal forwarding rules, the following applies: - If the - * loadBalancingScheme for the load balancer is INTERNAL, then the forwarding rule references - * a regional internal backend service. - If the loadBalancingScheme for the load balancer is - * INTERNAL_MANAGED, then the forwarding rule must reference a regional target HTTP(S) proxy. - *

For more information, read Using Forwarding rules. - *

A globalForwardingRules resource represents a global forwarding rule. - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + *

A forwarding rule and its corresponding IP address represent the frontend configuration + * of a Google Cloud Platform load balancer. Forwarding rules can also reference target + * instances and Cloud VPN Classic gateways (targetVpnGateway). + *

For more information, read Forwarding rule concepts and Using protocol forwarding. + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) * (== resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules * ==) @@ -543,7 +532,7 @@ public final Operation insertForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a ForwardingRule resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -557,22 +546,11 @@ public final Operation insertForwardingRule( * * @param region Name of the region scoping this request. * @param forwardingRuleResource Represents a Forwarding Rule resource. - *

A forwardingRules resource represents a regional forwarding rule. - *

Regional external forwarding rules can reference any of the following resources: - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool - * for a Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer - * using Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - * - A target TCP proxy for a TCP Proxy load balancer using Standard Tier. - *

Regional internal forwarding rules can reference the backend service of an internal - * TCP/UDP load balancer. - *

For regional internal forwarding rules, the following applies: - If the - * loadBalancingScheme for the load balancer is INTERNAL, then the forwarding rule references - * a regional internal backend service. - If the loadBalancingScheme for the load balancer is - * INTERNAL_MANAGED, then the forwarding rule must reference a regional target HTTP(S) proxy. - *

For more information, read Using Forwarding rules. - *

A globalForwardingRules resource represents a global forwarding rule. - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + *

A forwarding rule and its corresponding IP address represent the frontend configuration + * of a Google Cloud Platform load balancer. Forwarding rules can also reference target + * instances and Cloud VPN Classic gateways (targetVpnGateway). + *

For more information, read Forwarding rule concepts and Using protocol forwarding. + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) * (== resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules * ==) @@ -593,7 +571,7 @@ public final Operation insertForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a ForwardingRule resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -620,7 +598,7 @@ public final Operation insertForwardingRule(InsertForwardingRuleHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a ForwardingRule resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -646,7 +624,8 @@ public final Operation insertForwardingRule(InsertForwardingRuleHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of ForwardingRule resources available to the specified project and region. + * Retrieves a list of ForwardingRule resources available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -673,7 +652,8 @@ public final ListForwardingRulesPagedResponse listForwardingRules(ProjectRegionN // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of ForwardingRule resources available to the specified project and region. + * Retrieves a list of ForwardingRule resources available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -698,7 +678,8 @@ public final ListForwardingRulesPagedResponse listForwardingRules(String region) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of ForwardingRule resources available to the specified project and region. + * Retrieves a list of ForwardingRule resources available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -725,7 +706,8 @@ public final ListForwardingRulesPagedResponse listForwardingRules( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of ForwardingRule resources available to the specified project and region. + * Retrieves a list of ForwardingRule resources available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -751,7 +733,8 @@ public final ListForwardingRulesPagedResponse listForwardingRules( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of ForwardingRule resources available to the specified project and region. + * Retrieves a list of ForwardingRule resources available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -785,7 +768,7 @@ public final ListForwardingRulesPagedResponse listForwardingRules( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes target URL for forwarding rule. The new target should be of the same type as the old - * target. + * target. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -816,7 +799,7 @@ public final Operation setTargetForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes target URL for forwarding rule. The new target should be of the same type as the old - * target. + * target. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -847,7 +830,7 @@ public final Operation setTargetForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes target URL for forwarding rule. The new target should be of the same type as the old - * target. + * target. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -874,7 +857,7 @@ public final Operation setTargetForwardingRule(SetTargetForwardingRuleHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes target URL for forwarding rule. The new target should be of the same type as the old - * target. + * target. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleList.java b/src/main/java/com/google/cloud/compute/v1/ForwardingRuleList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleList.java rename to src/main/java/com/google/cloud/compute/v1/ForwardingRuleList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleReference.java b/src/main/java/com/google/cloud/compute/v1/ForwardingRuleReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleReference.java rename to src/main/java/com/google/cloud/compute/v1/ForwardingRuleReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleSettings.java b/src/main/java/com/google/cloud/compute/v1/ForwardingRuleSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRuleSettings.java rename to src/main/java/com/google/cloud/compute/v1/ForwardingRuleSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRulesScopedList.java b/src/main/java/com/google/cloud/compute/v1/ForwardingRulesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ForwardingRulesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/ForwardingRulesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAcceleratorTypeHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetAcceleratorTypeHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAcceleratorTypeHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetAcceleratorTypeHttpRequest.java index 2656e8b47..8cc77be4a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAcceleratorTypeHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetAcceleratorTypeHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.acceleratorTypes.get. Returns the specified accelerator type. + * (== suppress_warning http-rest-shadowed ==) */ public final class GetAcceleratorTypeHttpRequest implements ApiMessage { private final String acceleratorType; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAddressHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetAddressHttpRequest.java similarity index 98% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAddressHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetAddressHttpRequest.java index e0ba0fed4..9a78a9c44 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAddressHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetAddressHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.addresses.get. Returns the specified address resource. */ +/** + * Request object for method compute.addresses.get. Returns the specified address resource. (== + * suppress_warning http-rest-shadowed ==) + */ public final class GetAddressHttpRequest implements ApiMessage { private final String access_token; private final String address; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetAutoscalerHttpRequest.java index 0a42f5439..aa8b7af55 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetAutoscalerHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.autoscalers.get. Returns the specified autoscaler resource. - * Gets a list of available autoscalers by making a list() request. + * Gets a list of available autoscalers by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetAutoscalerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetBackendBucketHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetBackendBucketHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetBackendBucketHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetBackendBucketHttpRequest.java index e23886257..7124309dd 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetBackendBucketHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetBackendBucketHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.backendBuckets.get. Returns the specified BackendBucket - * resource. Gets a list of available backend buckets by making a list() request. + * resource. Gets a list of available backend buckets by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetBackendBucketHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetBackendServiceHttpRequest.java index 49e5cd987..61787c743 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetBackendServiceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendServices.get. Returns the specified BackendService - * resource. Gets a list of available backend services. + * resource. Gets a list of available backend services. (== suppress_warning http-rest-shadowed ==) */ public final class GetBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiagnosticsInterconnectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetDiagnosticsInterconnectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiagnosticsInterconnectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetDiagnosticsInterconnectHttpRequest.java index 134b84e76..b3e13992d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiagnosticsInterconnectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetDiagnosticsInterconnectHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.interconnects.getDiagnostics. Returns the - * interconnectDiagnostics for the specified interconnect. + * interconnectDiagnostics for the specified interconnect. (== suppress_warning http-rest-shadowed + * ==) */ public final class GetDiagnosticsInterconnectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetDiskHttpRequest.java index 23c010db9..a4a6037a3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetDiskHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.disks.get. Returns a specified persistent disk. Gets a list of - * available persistent disks by making a list() request. + * available persistent disks by making a list() request. (== suppress_warning http-rest-shadowed + * ==) */ public final class GetDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiskTypeHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetDiskTypeHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiskTypeHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetDiskTypeHttpRequest.java index 4dc10a510..3f7beefe6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetDiskTypeHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetDiskTypeHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.diskTypes.get. Returns the specified disk type. Gets a list of - * available disk types by making a list() request. + * available disk types by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetDiskTypeHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetExternalVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetExternalVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetExternalVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetExternalVpnGatewayHttpRequest.java index 78a948304..22902574e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetExternalVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetExternalVpnGatewayHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.externalVpnGateways.get. Returns the specified - * externalVpnGateway. Get a list of available externalVpnGateways by making a list() request. + * externalVpnGateway. Get a list of available externalVpnGateways by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetExternalVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetFirewallHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetFirewallHttpRequest.java similarity index 98% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetFirewallHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetFirewallHttpRequest.java index 8b57c7c67..337a32301 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetFirewallHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetFirewallHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.firewalls.get. Returns the specified firewall. */ +/** + * Request object for method compute.firewalls.get. Returns the specified firewall. (== + * suppress_warning http-rest-shadowed ==) + */ public final class GetFirewallHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetForwardingRuleHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetForwardingRuleHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetForwardingRuleHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetForwardingRuleHttpRequest.java index 2a1d8c96b..a9989fef2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetForwardingRuleHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetForwardingRuleHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.forwardingRules.get. Returns the specified ForwardingRule - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class GetForwardingRuleHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetFromFamilyImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetFromFamilyImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetFromFamilyImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetFromFamilyImageHttpRequest.java index 48c2b2298..03406160f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetFromFamilyImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetFromFamilyImageHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.images.getFromFamily. Returns the latest image that is part of - * an image family and is not deprecated. + * an image family and is not deprecated. (== suppress_warning http-rest-shadowed ==) */ public final class GetFromFamilyImageHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalAddressHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetGlobalAddressHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalAddressHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetGlobalAddressHttpRequest.java index a7ac091f3..6ab1d6500 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalAddressHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetGlobalAddressHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.globalAddresses.get. Returns the specified address resource. - * Gets a list of available addresses by making a list() request. + * Gets a list of available addresses by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetGlobalAddressHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalForwardingRuleHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetGlobalForwardingRuleHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalForwardingRuleHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetGlobalForwardingRuleHttpRequest.java index 82e78d583..f14fd8c23 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalForwardingRuleHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetGlobalForwardingRuleHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.globalForwardingRules.get. Returns the specified * GlobalForwardingRule resource. Gets a list of available forwarding rules by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) */ public final class GetGlobalForwardingRuleHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalOperationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetGlobalOperationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalOperationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetGlobalOperationHttpRequest.java index fcf27c87d..db9cb05ad 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGlobalOperationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetGlobalOperationHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.globalOperations.get. Retrieves the specified Operations - * resource. Gets a list of operations by making a list() request. + * resource. Gets a list of operations by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetGlobalOperationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGuestAttributesInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetGuestAttributesInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGuestAttributesInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetGuestAttributesInstanceHttpRequest.java index 667e56d93..80443fd47 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetGuestAttributesInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetGuestAttributesInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.getGuestAttributes. Returns the specified guest - * attributes entry. + * attributes entry. (== suppress_warning http-rest-shadowed ==) */ public final class GetGuestAttributesInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetHealthBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetHealthBackendServiceHttpRequest.java index 1075670e7..5cac92a1f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetHealthBackendServiceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendServices.getHealth. Gets the most recent health check - * results for this BackendService. + * results for this BackendService. (== suppress_warning http-rest-shadowed ==) */ public final class GetHealthBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetHealthCheckHttpRequest.java index 10a1e97d8..8773e2b5c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetHealthCheckHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.healthChecks.get. Returns the specified HealthCheck resource. - * Gets a list of available health checks by making a list() request. + * Gets a list of available health checks by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthRegionBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetHealthRegionBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthRegionBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetHealthRegionBackendServiceHttpRequest.java index 087b63442..3cb153235 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthRegionBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetHealthRegionBackendServiceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionBackendServices.getHealth. Gets the most recent health - * check results for this regional BackendService. + * check results for this regional BackendService. (== suppress_warning http-rest-shadowed ==) */ public final class GetHealthRegionBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetHealthTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetHealthTargetPoolHttpRequest.java index 86efb01a0..dc20f2fe6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHealthTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetHealthTargetPoolHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetPools.getHealth. Gets the most recent health check - * results for each IP for the instance that is referenced by the given target pool. + * results for each IP for the instance that is referenced by the given target pool. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetHealthTargetPoolHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHttpHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetHttpHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHttpHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetHttpHealthCheckHttpRequest.java index 32227aed9..4e53a4490 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHttpHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetHttpHealthCheckHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.httpHealthChecks.get. Returns the specified HttpHealthCheck - * resource. Gets a list of available HTTP health checks by making a list() request. + * resource. Gets a list of available HTTP health checks by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetHttpHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHttpsHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetHttpsHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHttpsHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetHttpsHealthCheckHttpRequest.java index 61dba7ac4..28ac1bf30 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetHttpsHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetHttpsHealthCheckHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.httpsHealthChecks.get. Returns the specified HttpsHealthCheck - * resource. Gets a list of available HTTPS health checks by making a list() request. + * resource. Gets a list of available HTTPS health checks by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetHttpsHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyDiskHttpRequest.java index 0fea032b8..925ac9eb1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyDiskHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.disks.getIamPolicy. Gets the access control policy for a - * resource. May be empty if no such policy or resource exists. + * resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyImageHttpRequest.java index e4eef7d1b..4ac9dc8b2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyImageHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.images.getIamPolicy. Gets the access control policy for a - * resource. May be empty if no such policy or resource exists. + * resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyImageHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceHttpRequest.java index 1ea2f7c14..6d3b15ff9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.getIamPolicy. Gets the access control policy for a - * resource. May be empty if no such policy or resource exists. + * resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceTemplateHttpRequest.java index 9562dbd3c..9e45f8c53 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyInstanceTemplateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instanceTemplates.getIamPolicy. Gets the access control policy - * for a resource. May be empty if no such policy or resource exists. + * for a resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyInstanceTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyLicenseHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyLicenseHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyLicenseHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyLicenseHttpRequest.java index f97e61d63..f8901c084 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyLicenseHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyLicenseHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.licenses.getIamPolicy. Gets the access control policy for a - * resource. May be empty if no such policy or resource exists. + * resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyLicenseHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeGroupHttpRequest.java index b48065244..111ea753d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeGroupHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.nodeGroups.getIamPolicy. Gets the access control policy for a - * resource. May be empty if no such policy or resource exists. + * resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeTemplateHttpRequest.java index 989eacbb8..488abb7fe 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyNodeTemplateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.nodeTemplates.getIamPolicy. Gets the access control policy for - * a resource. May be empty if no such policy or resource exists. + * a resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyNodeTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyReservationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyReservationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyReservationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyReservationHttpRequest.java index 0e5775d8f..46d571a5f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyReservationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyReservationHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.reservations.getIamPolicy. Gets the access control policy for a - * resource. May be empty if no such policy or resource exists. + * resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyReservationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyResourcePolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyResourcePolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyResourcePolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicyResourcePolicyHttpRequest.java index a6cf5be22..6bd61dc67 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicyResourcePolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicyResourcePolicyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.resourcePolicies.getIamPolicy. Gets the access control policy - * for a resource. May be empty if no such policy or resource exists. + * for a resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicyResourcePolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicySnapshotHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicySnapshotHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicySnapshotHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicySnapshotHttpRequest.java index 36de3c783..841a6bb18 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicySnapshotHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicySnapshotHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.snapshots.getIamPolicy. Gets the access control policy for a - * resource. May be empty if no such policy or resource exists. + * resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicySnapshotHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicySubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetIamPolicySubnetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicySubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetIamPolicySubnetworkHttpRequest.java index ec48405ff..21965dcc6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetIamPolicySubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetIamPolicySubnetworkHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.subnetworks.getIamPolicy. Gets the access control policy for a - * resource. May be empty if no such policy or resource exists. + * resource. May be empty if no such policy or resource exists. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetIamPolicySubnetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetImageHttpRequest.java index a21b8f778..d7311cc17 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetImageHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.images.get. Returns the specified image. Gets a list of - * available images by making a list() request. + * available images by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetImageHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetInstanceGroupHttpRequest.java index 4ad9734dc..7d437984a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instanceGroups.get. Returns the specified instance group. Gets - * a list of available instance groups by making a list() request. + * a list of available instance groups by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetInstanceGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetInstanceGroupManagerHttpRequest.java index c9adb2d2e..6ef7b02a2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetInstanceGroupManagerHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.instanceGroupManagers.get. Returns all of the details about the * specified managed instance group. Gets a list of available managed instance groups by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetInstanceHttpRequest.java index 33ed43043..9846c03c4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.get. Returns the specified Instance resource. Gets a - * list of available instances by making a list() request. + * list of available instances by making a list() request. (== suppress_warning http-rest-shadowed + * ==) */ public final class GetInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetInstanceTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetInstanceTemplateHttpRequest.java index 72e142a22..b92cc61e1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInstanceTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetInstanceTemplateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instanceTemplates.get. Returns the specified instance template. - * Gets a list of available instance templates by making a list() request. + * Gets a list of available instance templates by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetInstanceTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectAttachmentHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetInterconnectAttachmentHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectAttachmentHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetInterconnectAttachmentHttpRequest.java index 446a1ab00..294788f38 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectAttachmentHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetInterconnectAttachmentHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.interconnectAttachments.get. Returns the specified interconnect - * attachment. + * attachment. (== suppress_warning http-rest-shadowed ==) */ public final class GetInterconnectAttachmentHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetInterconnectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetInterconnectHttpRequest.java index 91bd90ac1..a42c6b6e9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetInterconnectHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.interconnects.get. Returns the specified interconnect. Get a - * list of available interconnects by making a list() request. + * list of available interconnects by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetInterconnectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectLocationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetInterconnectLocationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectLocationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetInterconnectLocationHttpRequest.java index 5ebf5cfae..b6120009b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetInterconnectLocationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetInterconnectLocationHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.interconnectLocations.get. Returns the details for the * specified interconnect location. Gets a list of available interconnect locations by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetInterconnectLocationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetLicenseCodeHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetLicenseCodeHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetLicenseCodeHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetLicenseCodeHttpRequest.java index 76847087d..65a137317 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetLicenseCodeHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetLicenseCodeHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.licenseCodes.get. Return a specified license code. License - * codes are mirrored across all projects that have permissions to read the License Code. + * codes are mirrored across all projects that have permissions to read the License Code. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetLicenseCodeHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetLicenseHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetLicenseHttpRequest.java similarity index 98% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetLicenseHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetLicenseHttpRequest.java index 275eb397f..c8960fd96 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetLicenseHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetLicenseHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.licenses.get. Returns the specified License resource. */ +/** + * Request object for method compute.licenses.get. Returns the specified License resource. (== + * suppress_warning http-rest-shadowed ==) + */ public final class GetLicenseHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetMachineTypeHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetMachineTypeHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetMachineTypeHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetMachineTypeHttpRequest.java index 1f2f47985..f81ff8f7d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetMachineTypeHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetMachineTypeHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.machineTypes.get. Returns the specified machine type. Gets a - * list of available machine types by making a list() request. + * list of available machine types by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetMachineTypeHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNatMappingInfoRoutersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetNatMappingInfoRoutersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNatMappingInfoRoutersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetNatMappingInfoRoutersHttpRequest.java index e43590ef2..6c3f461db 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNatMappingInfoRoutersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetNatMappingInfoRoutersHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.routers.getNatMappingInfo. Retrieves runtime Nat mapping - * information of VM endpoints. + * information of VM endpoints. (== suppress_warning http-rest-shadowed ==) */ public final class GetNatMappingInfoRoutersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNetworkEndpointGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetNetworkEndpointGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNetworkEndpointGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetNetworkEndpointGroupHttpRequest.java index 16062d9c4..4536240e0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNetworkEndpointGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetNetworkEndpointGroupHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.networkEndpointGroups.get. Returns the specified network - * endpoint group. Gets a list of available network endpoint groups by making a list() request. + * endpoint group. Gets a list of available network endpoint groups by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetNetworkEndpointGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetNetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetNetworkHttpRequest.java index e98e9ff64..4f6070671 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetNetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.networks.get. Returns the specified network. Gets a list of - * available networks by making a list() request. + * available networks by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetNetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetNodeGroupHttpRequest.java index ce5077cea..9f73de85b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetNodeGroupHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.nodeGroups.get. Returns the specified NodeGroup. Get a list of * available NodeGroups by making a list() request. Note: the "nodes" field should not be used. Use - * nodeGroups.listNodes instead. + * nodeGroups.listNodes instead. (== suppress_warning http-rest-shadowed ==) */ public final class GetNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetNodeTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetNodeTemplateHttpRequest.java index 07418e3ae..9e363774b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetNodeTemplateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.nodeTemplates.get. Returns the specified node template. Gets a - * list of available node templates by making a list() request. + * list of available node templates by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetNodeTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeTypeHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetNodeTypeHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeTypeHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetNodeTypeHttpRequest.java index 016b67049..a122e90f4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetNodeTypeHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetNodeTypeHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeTypes.get. Returns the specified node type. Gets a list of - * available node types by making a list() request. + * available node types by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetNodeTypeHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetProjectHttpRequest.java similarity index 98% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetProjectHttpRequest.java index 1dd010a2c..4b95df0a4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetProjectHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.projects.get. Returns the specified Project resource. */ +/** + * Request object for method compute.projects.get. Returns the specified Project resource. (== + * suppress_warning http-rest-shadowed ==) + */ public final class GetProjectHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionAutoscalerHttpRequest.java similarity index 98% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionAutoscalerHttpRequest.java index 93b31983e..01c4f062f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionAutoscalerHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.regionAutoscalers.get. Returns the specified autoscaler. */ +/** + * Request object for method compute.regionAutoscalers.get. Returns the specified autoscaler. (== + * suppress_warning http-rest-shadowed ==) + */ public final class GetRegionAutoscalerHttpRequest implements ApiMessage { private final String access_token; private final String autoscaler; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionBackendServiceHttpRequest.java index f790138e8..366bed158 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionBackendServiceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionBackendServices.get. Returns the specified regional - * BackendService resource. + * BackendService resource. (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionCommitmentHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionCommitmentHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionCommitmentHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionCommitmentHttpRequest.java index 6e6116bee..228cab4a9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionCommitmentHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionCommitmentHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionCommitments.get. Returns the specified commitment - * resource. Gets a list of available commitments by making a list() request. + * resource. Gets a list of available commitments by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetRegionCommitmentHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionDiskHttpRequest.java index 58d710e52..12f57f7e6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionDiskHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.regionDisks.get. Returns a specified regional persistent disk. + * (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionDiskTypeHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionDiskTypeHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionDiskTypeHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionDiskTypeHttpRequest.java index bd6647c98..40753cea1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionDiskTypeHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionDiskTypeHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionDiskTypes.get. Returns the specified regional disk type. - * Gets a list of available disk types by making a list() request. + * Gets a list of available disk types by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetRegionDiskTypeHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionHealthCheckHttpRequest.java index 1cf8e206a..5244b1c3c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionHealthCheckHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionHealthChecks.get. Returns the specified HealthCheck - * resource. Gets a list of available health checks by making a list() request. + * resource. Gets a list of available health checks by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetRegionHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionHttpRequest.java index 02cc9c883..bbb417340 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regions.get. Returns the specified Region resource. Gets a list - * of available regions by making a list() request. + * of available regions by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupHttpRequest.java index a32779843..1f7ba05b6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionInstanceGroups.get. Returns the specified instance group - * resource. + * resource. (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionInstanceGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupManagerHttpRequest.java index e9993fb10..5cac317b7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionInstanceGroupManagerHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionInstanceGroupManagers.get. Returns all of the details - * about the specified managed instance group. + * about the specified managed instance group. (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionOperationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionOperationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionOperationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionOperationHttpRequest.java index 25d97be1e..8093a2308 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionOperationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionOperationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionOperations.get. Retrieves the specified region-specific - * Operations resource. + * Operations resource. (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionOperationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionSslCertificateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionSslCertificateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionSslCertificateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionSslCertificateHttpRequest.java index 61b01f3f8..2fed94714 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionSslCertificateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionSslCertificateHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.regionSslCertificates.get. Returns the specified SslCertificate * resource in the specified region. Get a list of available SSL certificates by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionSslCertificateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpProxyHttpRequest.java index 211e0772a..de7973e46 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpProxyHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.regionTargetHttpProxies.get. Returns the specified * TargetHttpProxy resource in the specified region. Gets a list of available target HTTP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionTargetHttpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpsProxyHttpRequest.java index cba7b5ebf..b9bea24fb 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionTargetHttpsProxyHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.regionTargetHttpsProxies.get. Returns the specified * TargetHttpsProxy resource in the specified region. Gets a list of available target HTTP proxies - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetRegionTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRegionUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRegionUrlMapHttpRequest.java index b8b36cc78..a2383aa95 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRegionUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRegionUrlMapHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionUrlMaps.get. Returns the specified UrlMap resource. Gets - * a list of available URL maps by making a list() request. + * a list of available URL maps by making a list() request. (== suppress_warning http-rest-shadowed + * ==) */ public final class GetRegionUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetReservationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetReservationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetReservationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetReservationHttpRequest.java index 96b74a8ff..f0759e5e1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetReservationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetReservationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.reservations.get. Retrieves information about the specified - * reservation. + * reservation. (== suppress_warning http-rest-shadowed ==) */ public final class GetReservationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetResourcePolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetResourcePolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetResourcePolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetResourcePolicyHttpRequest.java index cca1d9093..7cdbcdbd4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetResourcePolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetResourcePolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.resourcePolicies.get. Retrieves all information of the - * specified resource policy. + * specified resource policy. (== suppress_warning http-rest-shadowed ==) */ public final class GetResourcePolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouteHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRouteHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouteHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRouteHttpRequest.java index 010cceb62..6f6c1c676 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouteHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRouteHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.routes.get. Returns the specified Route resource. Gets a list - * of available routes by making a list() request. + * of available routes by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetRouteHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouterHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRouterHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouterHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRouterHttpRequest.java index 703ac7b37..f2c3f706d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouterHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRouterHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.routers.get. Returns the specified Router resource. Gets a list - * of available routers by making a list() request. + * of available routers by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetRouterHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouterStatusRouterHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRouterStatusRouterHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouterStatusRouterHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRouterStatusRouterHttpRequest.java index 93cd22fe5..757f3c966 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRouterStatusRouterHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRouterStatusRouterHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.routers.getRouterStatus. Retrieves runtime information of the - * specified router. + * specified router. (== suppress_warning http-rest-shadowed ==) */ public final class GetRouterStatusRouterHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRuleSecurityPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetRuleSecurityPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRuleSecurityPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetRuleSecurityPolicyHttpRequest.java index b8c5d7600..3d353016f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetRuleSecurityPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetRuleSecurityPolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.securityPolicies.getRule. Gets a rule at the specified - * priority. + * priority. (== suppress_warning http-rest-shadowed ==) */ public final class GetRuleSecurityPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSecurityPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetSecurityPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSecurityPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetSecurityPolicyHttpRequest.java index 94668203b..cb792edbf 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSecurityPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetSecurityPolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.securityPolicies.get. List all of the ordered rules present in - * a single specified policy. + * a single specified policy. (== suppress_warning http-rest-shadowed ==) */ public final class GetSecurityPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSerialPortOutputInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetSerialPortOutputInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSerialPortOutputInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetSerialPortOutputInstanceHttpRequest.java index b200f666f..695af0379 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSerialPortOutputInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetSerialPortOutputInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.getSerialPortOutput. Returns the last 1 MB of serial - * port output from the specified instance. + * port output from the specified instance. (== suppress_warning http-rest-shadowed ==) */ public final class GetSerialPortOutputInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetShieldedInstanceIdentityInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetShieldedInstanceIdentityInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetShieldedInstanceIdentityInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetShieldedInstanceIdentityInstanceHttpRequest.java index b8e02dece..8d857a8c3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetShieldedInstanceIdentityInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetShieldedInstanceIdentityInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.getShieldedInstanceIdentity. Returns the Shielded - * Instance Identity of an instance + * Instance Identity of an instance (== suppress_warning http-rest-shadowed ==) */ public final class GetShieldedInstanceIdentityInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSnapshotHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetSnapshotHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSnapshotHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetSnapshotHttpRequest.java index b254b3399..69c24858f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSnapshotHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetSnapshotHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.snapshots.get. Returns the specified Snapshot resource. Gets a - * list of available snapshots by making a list() request. + * list of available snapshots by making a list() request. (== suppress_warning http-rest-shadowed + * ==) */ public final class GetSnapshotHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSslCertificateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetSslCertificateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSslCertificateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetSslCertificateHttpRequest.java index c964d6e1a..f07b154b1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSslCertificateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetSslCertificateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.sslCertificates.get. Returns the specified SslCertificate - * resource. Gets a list of available SSL certificates by making a list() request. + * resource. Gets a list of available SSL certificates by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetSslCertificateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSslPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetSslPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSslPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetSslPolicyHttpRequest.java index 4a7e9fab7..f185717fb 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSslPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetSslPolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.sslPolicies.get. Lists all of the ordered rules present in a - * single specified policy. + * single specified policy. (== suppress_warning http-rest-shadowed ==) */ public final class GetSslPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetStatusVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetStatusVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetStatusVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetStatusVpnGatewayHttpRequest.java index 4bf70fb7c..9ded23186 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetStatusVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetStatusVpnGatewayHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.vpnGateways.getStatus. Returns the status for the specified VPN - * gateway. + * gateway. (== suppress_warning http-rest-shadowed ==) */ public final class GetStatusVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetSubnetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetSubnetworkHttpRequest.java index 26663ef32..4783274ac 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetSubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetSubnetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.subnetworks.get. Returns the specified subnetwork. Gets a list - * of available subnetworks list() request. + * of available subnetworks list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetSubnetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetHttpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetTargetHttpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetHttpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetTargetHttpProxyHttpRequest.java index bec9fe270..0f9768680 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetHttpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetTargetHttpProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetHttpProxies.get. Returns the specified TargetHttpProxy - * resource. Gets a list of available target HTTP proxies by making a list() request. + * resource. Gets a list of available target HTTP proxies by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetTargetHttpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetTargetHttpsProxyHttpRequest.java index 09743101b..a20e37215 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetTargetHttpsProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetHttpsProxies.get. Returns the specified TargetHttpsProxy - * resource. Gets a list of available target HTTPS proxies by making a list() request. + * resource. Gets a list of available target HTTPS proxies by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetTargetInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetTargetInstanceHttpRequest.java index a7ec41325..8794771ad 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetTargetInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetInstances.get. Returns the specified TargetInstance - * resource. Gets a list of available target instances by making a list() request. + * resource. Gets a list of available target instances by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetTargetInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetTargetPoolHttpRequest.java index ab6f862e5..973d0121b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetTargetPoolHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetPools.get. Returns the specified target pool. Gets a list - * of available target pools by making a list() request. + * of available target pools by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetTargetPoolHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetSslProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetTargetSslProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetSslProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetTargetSslProxyHttpRequest.java index 5b7ab4232..f8d976c04 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetSslProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetTargetSslProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetSslProxies.get. Returns the specified TargetSslProxy - * resource. Gets a list of available target SSL proxies by making a list() request. + * resource. Gets a list of available target SSL proxies by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetTargetSslProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetTcpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetTargetTcpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetTcpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetTargetTcpProxyHttpRequest.java index 9571c3492..5290a5b68 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetTcpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetTargetTcpProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetTcpProxies.get. Returns the specified TargetTcpProxy - * resource. Gets a list of available target TCP proxies by making a list() request. + * resource. Gets a list of available target TCP proxies by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetTargetTcpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetTargetVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetTargetVpnGatewayHttpRequest.java index c6d82cb2e..ff8ad29ba 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetTargetVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetTargetVpnGatewayHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetVpnGateways.get. Returns the specified target VPN - * gateway. Gets a list of available target VPN gateways by making a list() request. + * gateway. Gets a list of available target VPN gateways by making a list() request. (== + * suppress_warning http-rest-shadowed ==) */ public final class GetTargetVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetUrlMapHttpRequest.java index a3c2cd8b9..e2044712f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetUrlMapHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.urlMaps.get. Returns the specified UrlMap resource. Gets a list - * of available URL maps by making a list() request. + * of available URL maps by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetVpnGatewayHttpRequest.java index 90f8d228f..d0d339cce 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetVpnGatewayHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.vpnGateways.get. Returns the specified VPN gateway. Gets a list - * of available VPN gateways by making a list() request. + * of available VPN gateways by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetVpnTunnelHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetVpnTunnelHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetVpnTunnelHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetVpnTunnelHttpRequest.java index 214543d1f..bd2c391b8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetVpnTunnelHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetVpnTunnelHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.vpnTunnels.get. Returns the specified VpnTunnel resource. Gets - * a list of available VPN tunnels by making a list() request. + * a list of available VPN tunnels by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class GetVpnTunnelHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetXpnHostProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetXpnHostProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetXpnHostProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetXpnHostProjectHttpRequest.java index ba1f4b598..b9c2751fa 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetXpnHostProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetXpnHostProjectHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.projects.getXpnHost. Gets the shared VPC host project that this - * project links to. May be empty if no link exists. + * project links to. May be empty if no link exists. (== suppress_warning http-rest-shadowed ==) */ public final class GetXpnHostProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetXpnResourcesProjectsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetXpnResourcesProjectsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetXpnResourcesProjectsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetXpnResourcesProjectsHttpRequest.java index 403dfb510..ab9f2d5c0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetXpnResourcesProjectsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetXpnResourcesProjectsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.projects.getXpnResources. Gets service resources (a.k.a service - * project) associated with this host project. + * project) associated with this host project. (== suppress_warning http-rest-shadowed ==) */ public final class GetXpnResourcesProjectsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetZoneHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetZoneHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetZoneHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetZoneHttpRequest.java index 4060ffa86..1f4e61d86 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetZoneHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetZoneHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.zones.get. Returns the specified Zone resource. Gets a list of - * available zones by making a list() request. + * available zones by making a list() request. (== suppress_warning http-rest-shadowed ==) */ public final class GetZoneHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetZoneOperationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/GetZoneOperationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetZoneOperationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/GetZoneOperationHttpRequest.java index b6584c02a..8ea8924b8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GetZoneOperationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/GetZoneOperationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.zoneOperations.get. Retrieves the specified zone-specific - * Operations resource. + * Operations resource. (== suppress_warning http-rest-shadowed ==) */ public final class GetZoneOperationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalAddressClient.java b/src/main/java/com/google/cloud/compute/v1/GlobalAddressClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalAddressClient.java rename to src/main/java/com/google/cloud/compute/v1/GlobalAddressClient.java index c76f86e3a..502d23d0c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalAddressClient.java +++ b/src/main/java/com/google/cloud/compute/v1/GlobalAddressClient.java @@ -155,7 +155,7 @@ public GlobalAddressStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified address resource. + * Deletes the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -181,7 +181,7 @@ public final Operation deleteGlobalAddress(ProjectGlobalAddressName address) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified address resource. + * Deletes the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final Operation deleteGlobalAddress(String address) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified address resource. + * Deletes the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -229,7 +229,7 @@ public final Operation deleteGlobalAddress(DeleteGlobalAddressHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified address resource. + * Deletes the specified address resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -254,7 +254,7 @@ public final Operation deleteGlobalAddress(DeleteGlobalAddressHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified address resource. Gets a list of available addresses by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -281,7 +281,7 @@ public final Address getGlobalAddress(ProjectGlobalAddressName address) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified address resource. Gets a list of available addresses by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -306,7 +306,7 @@ public final Address getGlobalAddress(String address) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified address resource. Gets a list of available addresses by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -331,7 +331,7 @@ public final Address getGlobalAddress(GetGlobalAddressHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified address resource. Gets a list of available addresses by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -355,6 +355,7 @@ public final UnaryCallable getGlobalAddres // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an address resource in the specified project by using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -396,6 +397,7 @@ public final Operation insertGlobalAddress(ProjectName project, Address addressR // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an address resource in the specified project by using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -437,6 +439,7 @@ public final Operation insertGlobalAddress(String project, Address addressResour // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an address resource in the specified project by using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -463,6 +466,7 @@ public final Operation insertGlobalAddress(InsertGlobalAddressHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an address resource in the specified project by using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -488,7 +492,7 @@ public final Operation insertGlobalAddress(InsertGlobalAddressHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of global addresses. + * Retrieves a list of global addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -515,7 +519,7 @@ public final ListGlobalAddressesPagedResponse listGlobalAddresses(ProjectName pr // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of global addresses. + * Retrieves a list of global addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -540,7 +544,7 @@ public final ListGlobalAddressesPagedResponse listGlobalAddresses(String project // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of global addresses. + * Retrieves a list of global addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -567,7 +571,7 @@ public final ListGlobalAddressesPagedResponse listGlobalAddresses( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of global addresses. + * Retrieves a list of global addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -593,7 +597,7 @@ public final ListGlobalAddressesPagedResponse listGlobalAddresses( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of global addresses. + * Retrieves a list of global addresses. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalAddressSettings.java b/src/main/java/com/google/cloud/compute/v1/GlobalAddressSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalAddressSettings.java rename to src/main/java/com/google/cloud/compute/v1/GlobalAddressSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleClient.java b/src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleClient.java similarity index 90% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleClient.java rename to src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleClient.java index 08887c0b3..3f413b0a3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleClient.java +++ b/src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleClient.java @@ -156,7 +156,8 @@ public GlobalForwardingRuleStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified GlobalForwardingRule resource. + * Deletes the specified GlobalForwardingRule resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -183,7 +184,8 @@ public final Operation deleteGlobalForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified GlobalForwardingRule resource. + * Deletes the specified GlobalForwardingRule resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -209,7 +211,8 @@ public final Operation deleteGlobalForwardingRule(String forwardingRule) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified GlobalForwardingRule resource. + * Deletes the specified GlobalForwardingRule resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -233,7 +236,8 @@ public final Operation deleteGlobalForwardingRule(DeleteGlobalForwardingRuleHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified GlobalForwardingRule resource. + * Deletes the specified GlobalForwardingRule resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -258,7 +262,7 @@ public final Operation deleteGlobalForwardingRule(DeleteGlobalForwardingRuleHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified GlobalForwardingRule resource. Gets a list of available forwarding rules - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -286,7 +290,7 @@ public final ForwardingRule getGlobalForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified GlobalForwardingRule resource. Gets a list of available forwarding rules - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -311,7 +315,7 @@ public final ForwardingRule getGlobalForwardingRule(String forwardingRule) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified GlobalForwardingRule resource. Gets a list of available forwarding rules - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -336,7 +340,7 @@ public final ForwardingRule getGlobalForwardingRule(GetGlobalForwardingRuleHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified GlobalForwardingRule resource. Gets a list of available forwarding rules - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -361,7 +365,7 @@ public final ForwardingRule getGlobalForwardingRule(GetGlobalForwardingRuleHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a GlobalForwardingRule resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -375,22 +379,11 @@ public final ForwardingRule getGlobalForwardingRule(GetGlobalForwardingRuleHttpR * * @param project Project ID for this request. * @param forwardingRuleResource Represents a Forwarding Rule resource. - *

A forwardingRules resource represents a regional forwarding rule. - *

Regional external forwarding rules can reference any of the following resources: - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool - * for a Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer - * using Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - * - A target TCP proxy for a TCP Proxy load balancer using Standard Tier. - *

Regional internal forwarding rules can reference the backend service of an internal - * TCP/UDP load balancer. - *

For regional internal forwarding rules, the following applies: - If the - * loadBalancingScheme for the load balancer is INTERNAL, then the forwarding rule references - * a regional internal backend service. - If the loadBalancingScheme for the load balancer is - * INTERNAL_MANAGED, then the forwarding rule must reference a regional target HTTP(S) proxy. - *

For more information, read Using Forwarding rules. - *

A globalForwardingRules resource represents a global forwarding rule. - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + *

A forwarding rule and its corresponding IP address represent the frontend configuration + * of a Google Cloud Platform load balancer. Forwarding rules can also reference target + * instances and Cloud VPN Classic gateways (targetVpnGateway). + *

For more information, read Forwarding rule concepts and Using protocol forwarding. + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) * (== resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules * ==) @@ -411,7 +404,7 @@ public final Operation insertGlobalForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a GlobalForwardingRule resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -425,22 +418,11 @@ public final Operation insertGlobalForwardingRule( * * @param project Project ID for this request. * @param forwardingRuleResource Represents a Forwarding Rule resource. - *

A forwardingRules resource represents a regional forwarding rule. - *

Regional external forwarding rules can reference any of the following resources: - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool - * for a Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer - * using Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - * - A target TCP proxy for a TCP Proxy load balancer using Standard Tier. - *

Regional internal forwarding rules can reference the backend service of an internal - * TCP/UDP load balancer. - *

For regional internal forwarding rules, the following applies: - If the - * loadBalancingScheme for the load balancer is INTERNAL, then the forwarding rule references - * a regional internal backend service. - If the loadBalancingScheme for the load balancer is - * INTERNAL_MANAGED, then the forwarding rule must reference a regional target HTTP(S) proxy. - *

For more information, read Using Forwarding rules. - *

A globalForwardingRules resource represents a global forwarding rule. - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + *

A forwarding rule and its corresponding IP address represent the frontend configuration + * of a Google Cloud Platform load balancer. Forwarding rules can also reference target + * instances and Cloud VPN Classic gateways (targetVpnGateway). + *

For more information, read Forwarding rule concepts and Using protocol forwarding. + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) * (== resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules * ==) @@ -461,7 +443,7 @@ public final Operation insertGlobalForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a GlobalForwardingRule resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -488,7 +470,7 @@ public final Operation insertGlobalForwardingRule(InsertGlobalForwardingRuleHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a GlobalForwardingRule resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -514,7 +496,8 @@ public final Operation insertGlobalForwardingRule(InsertGlobalForwardingRuleHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of GlobalForwardingRule resources available to the specified project. + * Retrieves a list of GlobalForwardingRule resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -542,7 +525,8 @@ public final ListGlobalForwardingRulesPagedResponse listGlobalForwardingRules( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of GlobalForwardingRule resources available to the specified project. + * Retrieves a list of GlobalForwardingRule resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -567,7 +551,8 @@ public final ListGlobalForwardingRulesPagedResponse listGlobalForwardingRules(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of GlobalForwardingRule resources available to the specified project. + * Retrieves a list of GlobalForwardingRule resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -594,7 +579,8 @@ public final ListGlobalForwardingRulesPagedResponse listGlobalForwardingRules( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of GlobalForwardingRule resources available to the specified project. + * Retrieves a list of GlobalForwardingRule resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -621,7 +607,8 @@ public final ListGlobalForwardingRulesPagedResponse listGlobalForwardingRules( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of GlobalForwardingRule resources available to the specified project. + * Retrieves a list of GlobalForwardingRule resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -655,7 +642,7 @@ public final ListGlobalForwardingRulesPagedResponse listGlobalForwardingRules( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes target URL for the GlobalForwardingRule resource. The new target should be of the same - * type as the old target. + * type as the old target. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -686,7 +673,7 @@ public final Operation setTargetGlobalForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes target URL for the GlobalForwardingRule resource. The new target should be of the same - * type as the old target. + * type as the old target. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -717,7 +704,7 @@ public final Operation setTargetGlobalForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes target URL for the GlobalForwardingRule resource. The new target should be of the same - * type as the old target. + * type as the old target. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -745,7 +732,7 @@ public final Operation setTargetGlobalForwardingRule( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes target URL for the GlobalForwardingRule resource. The new target should be of the same - * type as the old target. + * type as the old target. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleSettings.java b/src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleSettings.java rename to src/main/java/com/google/cloud/compute/v1/GlobalForwardingRuleSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalOperationClient.java b/src/main/java/com/google/cloud/compute/v1/GlobalOperationClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalOperationClient.java rename to src/main/java/com/google/cloud/compute/v1/GlobalOperationClient.java index 286d8f5ae..5132c45fd 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalOperationClient.java +++ b/src/main/java/com/google/cloud/compute/v1/GlobalOperationClient.java @@ -156,7 +156,7 @@ public GlobalOperationStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of all operations. + * Retrieves an aggregated list of all operations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -184,7 +184,7 @@ public final AggregatedListGlobalOperationsPagedResponse aggregatedListGlobalOpe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of all operations. + * Retrieves an aggregated list of all operations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -210,7 +210,7 @@ public final AggregatedListGlobalOperationsPagedResponse aggregatedListGlobalOpe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of all operations. + * Retrieves an aggregated list of all operations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -237,7 +237,7 @@ public final AggregatedListGlobalOperationsPagedResponse aggregatedListGlobalOpe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of all operations. + * Retrieves an aggregated list of all operations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -264,7 +264,7 @@ public final AggregatedListGlobalOperationsPagedResponse aggregatedListGlobalOpe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of all operations. + * Retrieves an aggregated list of all operations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -297,7 +297,7 @@ public final AggregatedListGlobalOperationsPagedResponse aggregatedListGlobalOpe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Operations resource. + * Deletes the specified Operations resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -323,7 +323,7 @@ public final void deleteGlobalOperation(ProjectGlobalOperationName operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Operations resource. + * Deletes the specified Operations resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -347,7 +347,7 @@ public final void deleteGlobalOperation(String operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Operations resource. + * Deletes the specified Operations resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -371,7 +371,7 @@ public final void deleteGlobalOperation(DeleteGlobalOperationHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Operations resource. + * Deletes the specified Operations resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -396,7 +396,7 @@ public final void deleteGlobalOperation(DeleteGlobalOperationHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the specified Operations resource. Gets a list of operations by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -423,7 +423,7 @@ public final Operation getGlobalOperation(ProjectGlobalOperationName operation) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the specified Operations resource. Gets a list of operations by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -448,7 +448,7 @@ public final Operation getGlobalOperation(String operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the specified Operations resource. Gets a list of operations by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -473,7 +473,7 @@ public final Operation getGlobalOperation(GetGlobalOperationHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the specified Operations resource. Gets a list of operations by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -497,7 +497,8 @@ public final Operation getGlobalOperation(GetGlobalOperationHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified project. + * Retrieves a list of Operation resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -524,7 +525,8 @@ public final ListGlobalOperationsPagedResponse listGlobalOperations(ProjectName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified project. + * Retrieves a list of Operation resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -549,7 +551,8 @@ public final ListGlobalOperationsPagedResponse listGlobalOperations(String proje // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified project. + * Retrieves a list of Operation resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -576,7 +579,8 @@ public final ListGlobalOperationsPagedResponse listGlobalOperations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified project. + * Retrieves a list of Operation resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -602,7 +606,8 @@ public final ListGlobalOperationsPagedResponse listGlobalOperations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified project. + * Retrieves a list of Operation resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalOperationSettings.java b/src/main/java/com/google/cloud/compute/v1/GlobalOperationSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalOperationSettings.java rename to src/main/java/com/google/cloud/compute/v1/GlobalOperationSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalSetLabelsRequest.java b/src/main/java/com/google/cloud/compute/v1/GlobalSetLabelsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalSetLabelsRequest.java rename to src/main/java/com/google/cloud/compute/v1/GlobalSetLabelsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalSetPolicyRequest.java b/src/main/java/com/google/cloud/compute/v1/GlobalSetPolicyRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GlobalSetPolicyRequest.java rename to src/main/java/com/google/cloud/compute/v1/GlobalSetPolicyRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GuestAttributes.java b/src/main/java/com/google/cloud/compute/v1/GuestAttributes.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GuestAttributes.java rename to src/main/java/com/google/cloud/compute/v1/GuestAttributes.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GuestAttributesEntry.java b/src/main/java/com/google/cloud/compute/v1/GuestAttributesEntry.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GuestAttributesEntry.java rename to src/main/java/com/google/cloud/compute/v1/GuestAttributesEntry.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GuestAttributesValue.java b/src/main/java/com/google/cloud/compute/v1/GuestAttributesValue.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GuestAttributesValue.java rename to src/main/java/com/google/cloud/compute/v1/GuestAttributesValue.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GuestOsFeature.java b/src/main/java/com/google/cloud/compute/v1/GuestOsFeature.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/GuestOsFeature.java rename to src/main/java/com/google/cloud/compute/v1/GuestOsFeature.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheck.java b/src/main/java/com/google/cloud/compute/v1/HealthCheck.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheck.java rename to src/main/java/com/google/cloud/compute/v1/HealthCheck.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckClient.java b/src/main/java/com/google/cloud/compute/v1/HealthCheckClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckClient.java rename to src/main/java/com/google/cloud/compute/v1/HealthCheckClient.java index 375f7d6ab..5301b3331 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckClient.java +++ b/src/main/java/com/google/cloud/compute/v1/HealthCheckClient.java @@ -155,7 +155,7 @@ public HealthCheckStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all HealthCheck resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -184,7 +184,7 @@ public final AggregatedListHealthChecksPagedResponse aggregatedListHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all HealthCheck resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -210,7 +210,7 @@ public final AggregatedListHealthChecksPagedResponse aggregatedListHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all HealthCheck resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -238,7 +238,7 @@ public final AggregatedListHealthChecksPagedResponse aggregatedListHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all HealthCheck resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -266,7 +266,7 @@ public final AggregatedListHealthChecksPagedResponse aggregatedListHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all HealthCheck resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -299,7 +299,7 @@ public final AggregatedListHealthChecksPagedResponse aggregatedListHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HealthCheck resource. + * Deletes the specified HealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -325,7 +325,7 @@ public final Operation deleteHealthCheck(ProjectGlobalHealthCheckName healthChec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HealthCheck resource. + * Deletes the specified HealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -349,7 +349,7 @@ public final Operation deleteHealthCheck(String healthCheck) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HealthCheck resource. + * Deletes the specified HealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -373,7 +373,7 @@ public final Operation deleteHealthCheck(DeleteHealthCheckHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HealthCheck resource. + * Deletes the specified HealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -397,7 +397,7 @@ public final UnaryCallable deleteHealth // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HealthCheck resource. Gets a list of available health checks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -424,7 +424,7 @@ public final HealthCheck getHealthCheck(ProjectGlobalHealthCheckName healthCheck // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HealthCheck resource. Gets a list of available health checks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -449,7 +449,7 @@ public final HealthCheck getHealthCheck(String healthCheck) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HealthCheck resource. Gets a list of available health checks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -474,7 +474,7 @@ public final HealthCheck getHealthCheck(GetHealthCheckHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HealthCheck resource. Gets a list of available health checks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -498,6 +498,7 @@ public final UnaryCallable getHealthChec // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -531,6 +532,7 @@ public final Operation insertHealthCheck(ProjectName project, HealthCheck health // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -564,6 +566,7 @@ public final Operation insertHealthCheck(String project, HealthCheck healthCheck // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -590,6 +593,7 @@ public final Operation insertHealthCheck(InsertHealthCheckHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -614,7 +618,8 @@ public final UnaryCallable insertHealth // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -641,7 +646,8 @@ public final ListHealthChecksPagedResponse listHealthChecks(ProjectName project) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -666,7 +672,8 @@ public final ListHealthChecksPagedResponse listHealthChecks(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -692,7 +699,8 @@ public final ListHealthChecksPagedResponse listHealthChecks(ListHealthChecksHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -718,7 +726,8 @@ public final ListHealthChecksPagedResponse listHealthChecks(ListHealthChecksHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -753,6 +762,7 @@ public final ListHealthChecksPagedResponse listHealthChecks(ListHealthChecksHttp /** * Updates a HealthCheck resource in the specified project using the data included in the request. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -796,6 +806,7 @@ public final Operation patchHealthCheck( /** * Updates a HealthCheck resource in the specified project using the data included in the request. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -837,6 +848,7 @@ public final Operation patchHealthCheck( /** * Updates a HealthCheck resource in the specified project using the data included in the request. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -866,6 +878,7 @@ public final Operation patchHealthCheck(PatchHealthCheckHttpRequest request) { /** * Updates a HealthCheck resource in the specified project using the data included in the request. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -893,6 +906,7 @@ public final UnaryCallable patchHealthCh // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -935,6 +949,7 @@ public final Operation updateHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -975,6 +990,7 @@ public final Operation updateHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1003,6 +1019,7 @@ public final Operation updateHealthCheck(UpdateHealthCheckHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckList.java b/src/main/java/com/google/cloud/compute/v1/HealthCheckList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckList.java rename to src/main/java/com/google/cloud/compute/v1/HealthCheckList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckReference.java b/src/main/java/com/google/cloud/compute/v1/HealthCheckReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckReference.java rename to src/main/java/com/google/cloud/compute/v1/HealthCheckReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckSettings.java b/src/main/java/com/google/cloud/compute/v1/HealthCheckSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthCheckSettings.java rename to src/main/java/com/google/cloud/compute/v1/HealthCheckSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthChecksAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/HealthChecksAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthChecksAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/HealthChecksAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthChecksScopedList.java b/src/main/java/com/google/cloud/compute/v1/HealthChecksScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthChecksScopedList.java rename to src/main/java/com/google/cloud/compute/v1/HealthChecksScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthStatus.java b/src/main/java/com/google/cloud/compute/v1/HealthStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthStatus.java rename to src/main/java/com/google/cloud/compute/v1/HealthStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthStatusForNetworkEndpoint.java b/src/main/java/com/google/cloud/compute/v1/HealthStatusForNetworkEndpoint.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HealthStatusForNetworkEndpoint.java rename to src/main/java/com/google/cloud/compute/v1/HealthStatusForNetworkEndpoint.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HostRule.java b/src/main/java/com/google/cloud/compute/v1/HostRule.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HostRule.java rename to src/main/java/com/google/cloud/compute/v1/HostRule.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Http2HealthCheck.java b/src/main/java/com/google/cloud/compute/v1/Http2HealthCheck.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Http2HealthCheck.java rename to src/main/java/com/google/cloud/compute/v1/Http2HealthCheck.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpFaultAbort.java b/src/main/java/com/google/cloud/compute/v1/HttpFaultAbort.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpFaultAbort.java rename to src/main/java/com/google/cloud/compute/v1/HttpFaultAbort.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpFaultDelay.java b/src/main/java/com/google/cloud/compute/v1/HttpFaultDelay.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpFaultDelay.java rename to src/main/java/com/google/cloud/compute/v1/HttpFaultDelay.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpFaultInjection.java b/src/main/java/com/google/cloud/compute/v1/HttpFaultInjection.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpFaultInjection.java rename to src/main/java/com/google/cloud/compute/v1/HttpFaultInjection.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHeaderAction.java b/src/main/java/com/google/cloud/compute/v1/HttpHeaderAction.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHeaderAction.java rename to src/main/java/com/google/cloud/compute/v1/HttpHeaderAction.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHeaderMatch.java b/src/main/java/com/google/cloud/compute/v1/HttpHeaderMatch.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHeaderMatch.java rename to src/main/java/com/google/cloud/compute/v1/HttpHeaderMatch.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHeaderOption.java b/src/main/java/com/google/cloud/compute/v1/HttpHeaderOption.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHeaderOption.java rename to src/main/java/com/google/cloud/compute/v1/HttpHeaderOption.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheck.java b/src/main/java/com/google/cloud/compute/v1/HttpHealthCheck.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheck.java rename to src/main/java/com/google/cloud/compute/v1/HttpHealthCheck.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheck2.java b/src/main/java/com/google/cloud/compute/v1/HttpHealthCheck2.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheck2.java rename to src/main/java/com/google/cloud/compute/v1/HttpHealthCheck2.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckClient.java b/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckClient.java rename to src/main/java/com/google/cloud/compute/v1/HttpHealthCheckClient.java index 20f8eeb1e..91a60b11b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckClient.java +++ b/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckClient.java @@ -156,7 +156,7 @@ public HttpHealthCheckStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HttpHealthCheck resource. + * Deletes the specified HttpHealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +182,7 @@ public final Operation deleteHttpHealthCheck(ProjectGlobalHttpHealthCheckName ht // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HttpHealthCheck resource. + * Deletes the specified HttpHealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -206,7 +206,7 @@ public final Operation deleteHttpHealthCheck(String httpHealthCheck) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HttpHealthCheck resource. + * Deletes the specified HttpHealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -230,7 +230,7 @@ public final Operation deleteHttpHealthCheck(DeleteHttpHealthCheckHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HttpHealthCheck resource. + * Deletes the specified HttpHealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -255,7 +255,7 @@ public final Operation deleteHttpHealthCheck(DeleteHttpHealthCheckHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HttpHealthCheck resource. Gets a list of available HTTP health checks by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -283,7 +283,7 @@ public final HttpHealthCheck2 getHttpHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HttpHealthCheck resource. Gets a list of available HTTP health checks by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -308,7 +308,7 @@ public final HttpHealthCheck2 getHttpHealthCheck(String httpHealthCheck) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HttpHealthCheck resource. Gets a list of available HTTP health checks by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -333,7 +333,7 @@ public final HttpHealthCheck2 getHttpHealthCheck(GetHttpHealthCheckHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HttpHealthCheck resource. Gets a list of available HTTP health checks by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -358,7 +358,7 @@ public final HttpHealthCheck2 getHttpHealthCheck(GetHttpHealthCheckHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HttpHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -391,7 +391,7 @@ public final Operation insertHttpHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HttpHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -424,7 +424,7 @@ public final Operation insertHttpHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HttpHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -451,7 +451,7 @@ public final Operation insertHttpHealthCheck(InsertHttpHealthCheckHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HttpHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -477,7 +477,8 @@ public final Operation insertHttpHealthCheck(InsertHttpHealthCheckHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpHealthCheck resources available to the specified project. + * Retrieves the list of HttpHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -504,7 +505,8 @@ public final ListHttpHealthChecksPagedResponse listHttpHealthChecks(ProjectName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpHealthCheck resources available to the specified project. + * Retrieves the list of HttpHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -529,7 +531,8 @@ public final ListHttpHealthChecksPagedResponse listHttpHealthChecks(String proje // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpHealthCheck resources available to the specified project. + * Retrieves the list of HttpHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -556,7 +559,8 @@ public final ListHttpHealthChecksPagedResponse listHttpHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpHealthCheck resources available to the specified project. + * Retrieves the list of HttpHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -582,7 +586,8 @@ public final ListHttpHealthChecksPagedResponse listHttpHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpHealthCheck resources available to the specified project. + * Retrieves the list of HttpHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -617,7 +622,7 @@ public final ListHttpHealthChecksPagedResponse listHttpHealthChecks( /** * Updates a HttpHealthCheck resource in the specified project using the data included in the * request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -659,7 +664,7 @@ public final Operation patchHttpHealthCheck( /** * Updates a HttpHealthCheck resource in the specified project using the data included in the * request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -699,7 +704,7 @@ public final Operation patchHttpHealthCheck( /** * Updates a HttpHealthCheck resource in the specified project using the data included in the * request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -729,7 +734,7 @@ public final Operation patchHttpHealthCheck(PatchHttpHealthCheckHttpRequest requ /** * Updates a HttpHealthCheck resource in the specified project using the data included in the * request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -758,7 +763,7 @@ public final Operation patchHttpHealthCheck(PatchHttpHealthCheckHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HttpHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -799,7 +804,7 @@ public final Operation updateHttpHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HttpHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -838,7 +843,7 @@ public final Operation updateHttpHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HttpHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -867,7 +872,7 @@ public final Operation updateHttpHealthCheck(UpdateHttpHealthCheckHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HttpHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckList.java b/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckList.java rename to src/main/java/com/google/cloud/compute/v1/HttpHealthCheckList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckSettings.java b/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpHealthCheckSettings.java rename to src/main/java/com/google/cloud/compute/v1/HttpHealthCheckSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpQueryParameterMatch.java b/src/main/java/com/google/cloud/compute/v1/HttpQueryParameterMatch.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpQueryParameterMatch.java rename to src/main/java/com/google/cloud/compute/v1/HttpQueryParameterMatch.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRedirectAction.java b/src/main/java/com/google/cloud/compute/v1/HttpRedirectAction.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRedirectAction.java rename to src/main/java/com/google/cloud/compute/v1/HttpRedirectAction.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRetryPolicy.java b/src/main/java/com/google/cloud/compute/v1/HttpRetryPolicy.java similarity index 90% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRetryPolicy.java rename to src/main/java/com/google/cloud/compute/v1/HttpRetryPolicy.java index 8134ba026..a81c85db5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRetryPolicy.java +++ b/src/main/java/com/google/cloud/compute/v1/HttpRetryPolicy.java @@ -76,12 +76,19 @@ public List getFieldMask() { return null; } - /** Specifies the allowed number retries. This number must be > 0. */ + /** + * Specifies the allowed number retries. This number must be > 0. If not specified, defaults to + * 1. + */ public Integer getNumRetries() { return numRetries; } - /** Specifies a non-zero timeout per retry attempt. */ + /** + * Specifies a non-zero timeout per retry attempt. If not specified, will use the timeout set in + * HttpRouteAction. If timeout in HttpRouteAction is not set, will use the largest timeout among + * all backend services associated with the route. + */ public Duration getPerTryTimeout() { return perTryTimeout; } @@ -155,23 +162,37 @@ public Builder mergeFrom(HttpRetryPolicy other) { this.retryConditions = source.retryConditions; } - /** Specifies the allowed number retries. This number must be > 0. */ + /** + * Specifies the allowed number retries. This number must be > 0. If not specified, defaults + * to 1. + */ public Integer getNumRetries() { return numRetries; } - /** Specifies the allowed number retries. This number must be > 0. */ + /** + * Specifies the allowed number retries. This number must be > 0. If not specified, defaults + * to 1. + */ public Builder setNumRetries(Integer numRetries) { this.numRetries = numRetries; return this; } - /** Specifies a non-zero timeout per retry attempt. */ + /** + * Specifies a non-zero timeout per retry attempt. If not specified, will use the timeout set in + * HttpRouteAction. If timeout in HttpRouteAction is not set, will use the largest timeout among + * all backend services associated with the route. + */ public Duration getPerTryTimeout() { return perTryTimeout; } - /** Specifies a non-zero timeout per retry attempt. */ + /** + * Specifies a non-zero timeout per retry attempt. If not specified, will use the timeout set in + * HttpRouteAction. If timeout in HttpRouteAction is not set, will use the largest timeout among + * all backend services associated with the route. + */ public Builder setPerTryTimeout(Duration perTryTimeout) { this.perTryTimeout = perTryTimeout; return this; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRouteAction.java b/src/main/java/com/google/cloud/compute/v1/HttpRouteAction.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRouteAction.java rename to src/main/java/com/google/cloud/compute/v1/HttpRouteAction.java index 5a2c01b14..9aff6f5a9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRouteAction.java +++ b/src/main/java/com/google/cloud/compute/v1/HttpRouteAction.java @@ -141,9 +141,10 @@ public HttpRetryPolicy getRetryPolicy() { } /** - * Specifies the timeout for the selected route. Timeout is computed from the time the request is - * has been fully processed (i.e. end-of-stream) up until the response has been completely - * processed. Timeout includes all retries. If not specified, the default value is 15 seconds. + * Specifies the timeout for the selected route. Timeout is computed from the time the request has + * been fully processed (i.e. end-of-stream) up until the response has been completely processed. + * Timeout includes all retries. If not specified, will use the largest timeout among all backend + * services associated with the route. */ public Duration getTimeout() { return timeout; @@ -314,8 +315,9 @@ public Builder setRetryPolicy(HttpRetryPolicy retryPolicy) { /** * Specifies the timeout for the selected route. Timeout is computed from the time the request - * is has been fully processed (i.e. end-of-stream) up until the response has been completely - * processed. Timeout includes all retries. If not specified, the default value is 15 seconds. + * has been fully processed (i.e. end-of-stream) up until the response has been completely + * processed. Timeout includes all retries. If not specified, will use the largest timeout among + * all backend services associated with the route. */ public Duration getTimeout() { return timeout; @@ -323,8 +325,9 @@ public Duration getTimeout() { /** * Specifies the timeout for the selected route. Timeout is computed from the time the request - * is has been fully processed (i.e. end-of-stream) up until the response has been completely - * processed. Timeout includes all retries. If not specified, the default value is 15 seconds. + * has been fully processed (i.e. end-of-stream) up until the response has been completely + * processed. Timeout includes all retries. If not specified, will use the largest timeout among + * all backend services associated with the route. */ public Builder setTimeout(Duration timeout) { this.timeout = timeout; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRouteRule.java b/src/main/java/com/google/cloud/compute/v1/HttpRouteRule.java similarity index 71% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRouteRule.java rename to src/main/java/com/google/cloud/compute/v1/HttpRouteRule.java index f279956e9..67da7db8a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRouteRule.java +++ b/src/main/java/com/google/cloud/compute/v1/HttpRouteRule.java @@ -30,28 +30,36 @@ * load balancing proxies will perform. */ public final class HttpRouteRule implements ApiMessage { + private final String description; private final HttpHeaderAction headerAction; private final List matchRules; + private final Integer priority; private final HttpRouteAction routeAction; private final String service; private final HttpRedirectAction urlRedirect; private HttpRouteRule() { + this.description = null; this.headerAction = null; this.matchRules = null; + this.priority = null; this.routeAction = null; this.service = null; this.urlRedirect = null; } private HttpRouteRule( + String description, HttpHeaderAction headerAction, List matchRules, + Integer priority, HttpRouteAction routeAction, String service, HttpRedirectAction urlRedirect) { + this.description = description; this.headerAction = headerAction; this.matchRules = matchRules; + this.priority = priority; this.routeAction = routeAction; this.service = service; this.urlRedirect = urlRedirect; @@ -59,12 +67,18 @@ private HttpRouteRule( @Override public Object getFieldValue(String fieldName) { + if ("description".equals(fieldName)) { + return description; + } if ("headerAction".equals(fieldName)) { return headerAction; } if ("matchRules".equals(fieldName)) { return matchRules; } + if ("priority".equals(fieldName)) { + return priority; + } if ("routeAction".equals(fieldName)) { return routeAction; } @@ -95,6 +109,14 @@ public List getFieldMask() { return null; } + /** + * The short description conveying the intent of this routeRule. The description can have a + * maximum length of 1024 characters. + */ + public String getDescription() { + return description; + } + /** * Specifies changes to request and response headers that need to take effect for the selected * backendService. The headerAction specified here are applied before the matching @@ -109,6 +131,21 @@ public List getMatchRulesList() { return matchRules; } + /** + * For routeRules within a given pathMatcher, priority determines the order in which load balancer + * will interpret routeRules. RouteRules are evaluated in order of priority, from the lowest to + * highest number. The priority of a rule decreases as its number increases (1, 2, 3, N+1). The + * first rule that matches the request is applied. You cannot configure two or more routeRules + * with the same priority. Priority for each rule must be set to a number between 0 and 2147483647 + * inclusive. Priority numbers can have gaps, which enable you to add or remove rules in the + * future without affecting the rest of the rules. For example, 1, 2, 3, 4, 5, 9, 12, 16 is a + * valid series of priority numbers to which you could add rules numbered from 6 to 8, 10 to 11, + * and 13 to 15 in the future without any impact on existing rules. + */ + public Integer getPriority() { + return priority; + } + /** * In response to a matching matchRule, the load balancer performs advanced routing actions like * URL rewrites, header transformations, etc. prior to forwarding the request to the selected @@ -163,8 +200,10 @@ public static HttpRouteRule getDefaultInstance() { } public static class Builder { + private String description; private HttpHeaderAction headerAction; private List matchRules; + private Integer priority; private HttpRouteAction routeAction; private String service; private HttpRedirectAction urlRedirect; @@ -173,12 +212,18 @@ public static class Builder { public Builder mergeFrom(HttpRouteRule other) { if (other == HttpRouteRule.getDefaultInstance()) return this; + if (other.getDescription() != null) { + this.description = other.description; + } if (other.getHeaderAction() != null) { this.headerAction = other.headerAction; } if (other.getMatchRulesList() != null) { this.matchRules = other.matchRules; } + if (other.getPriority() != null) { + this.priority = other.priority; + } if (other.getRouteAction() != null) { this.routeAction = other.routeAction; } @@ -192,13 +237,32 @@ public Builder mergeFrom(HttpRouteRule other) { } Builder(HttpRouteRule source) { + this.description = source.description; this.headerAction = source.headerAction; this.matchRules = source.matchRules; + this.priority = source.priority; this.routeAction = source.routeAction; this.service = source.service; this.urlRedirect = source.urlRedirect; } + /** + * The short description conveying the intent of this routeRule. The description can have a + * maximum length of 1024 characters. + */ + public String getDescription() { + return description; + } + + /** + * The short description conveying the intent of this routeRule. The description can have a + * maximum length of 1024 characters. + */ + public Builder setDescription(String description) { + this.description = description; + return this; + } + /** * Specifies changes to request and response headers that need to take effect for the selected * backendService. The headerAction specified here are applied before the matching @@ -240,6 +304,37 @@ public Builder addMatchRules(HttpRouteRuleMatch matchRules) { return this; } + /** + * For routeRules within a given pathMatcher, priority determines the order in which load + * balancer will interpret routeRules. RouteRules are evaluated in order of priority, from the + * lowest to highest number. The priority of a rule decreases as its number increases (1, 2, 3, + * N+1). The first rule that matches the request is applied. You cannot configure two or more + * routeRules with the same priority. Priority for each rule must be set to a number between 0 + * and 2147483647 inclusive. Priority numbers can have gaps, which enable you to add or remove + * rules in the future without affecting the rest of the rules. For example, 1, 2, 3, 4, 5, 9, + * 12, 16 is a valid series of priority numbers to which you could add rules numbered from 6 to + * 8, 10 to 11, and 13 to 15 in the future without any impact on existing rules. + */ + public Integer getPriority() { + return priority; + } + + /** + * For routeRules within a given pathMatcher, priority determines the order in which load + * balancer will interpret routeRules. RouteRules are evaluated in order of priority, from the + * lowest to highest number. The priority of a rule decreases as its number increases (1, 2, 3, + * N+1). The first rule that matches the request is applied. You cannot configure two or more + * routeRules with the same priority. Priority for each rule must be set to a number between 0 + * and 2147483647 inclusive. Priority numbers can have gaps, which enable you to add or remove + * rules in the future without affecting the rest of the rules. For example, 1, 2, 3, 4, 5, 9, + * 12, 16 is a valid series of priority numbers to which you could add rules numbered from 6 to + * 8, 10 to 11, and 13 to 15 in the future without any impact on existing rules. + */ + public Builder setPriority(Integer priority) { + this.priority = priority; + return this; + } + /** * In response to a matching matchRule, the load balancer performs advanced routing actions like * URL rewrites, header transformations, etc. prior to forwarding the request to the selected @@ -307,13 +402,16 @@ public Builder setUrlRedirect(HttpRedirectAction urlRedirect) { public HttpRouteRule build() { - return new HttpRouteRule(headerAction, matchRules, routeAction, service, urlRedirect); + return new HttpRouteRule( + description, headerAction, matchRules, priority, routeAction, service, urlRedirect); } public Builder clone() { Builder newBuilder = new Builder(); + newBuilder.setDescription(this.description); newBuilder.setHeaderAction(this.headerAction); newBuilder.addAllMatchRules(this.matchRules); + newBuilder.setPriority(this.priority); newBuilder.setRouteAction(this.routeAction); newBuilder.setService(this.service); newBuilder.setUrlRedirect(this.urlRedirect); @@ -324,12 +422,18 @@ public Builder clone() { @Override public String toString() { return "HttpRouteRule{" + + "description=" + + description + + ", " + "headerAction=" + headerAction + ", " + "matchRules=" + matchRules + ", " + + "priority=" + + priority + + ", " + "routeAction=" + routeAction + ", " @@ -348,8 +452,10 @@ public boolean equals(Object o) { } if (o instanceof HttpRouteRule) { HttpRouteRule that = (HttpRouteRule) o; - return Objects.equals(this.headerAction, that.getHeaderAction()) + return Objects.equals(this.description, that.getDescription()) + && Objects.equals(this.headerAction, that.getHeaderAction()) && Objects.equals(this.matchRules, that.getMatchRulesList()) + && Objects.equals(this.priority, that.getPriority()) && Objects.equals(this.routeAction, that.getRouteAction()) && Objects.equals(this.service, that.getService()) && Objects.equals(this.urlRedirect, that.getUrlRedirect()); @@ -359,6 +465,7 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(headerAction, matchRules, routeAction, service, urlRedirect); + return Objects.hash( + description, headerAction, matchRules, priority, routeAction, service, urlRedirect); } } diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRouteRuleMatch.java b/src/main/java/com/google/cloud/compute/v1/HttpRouteRuleMatch.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpRouteRuleMatch.java rename to src/main/java/com/google/cloud/compute/v1/HttpRouteRuleMatch.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpSHealthCheck.java b/src/main/java/com/google/cloud/compute/v1/HttpSHealthCheck.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpSHealthCheck.java rename to src/main/java/com/google/cloud/compute/v1/HttpSHealthCheck.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheck2.java b/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheck2.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheck2.java rename to src/main/java/com/google/cloud/compute/v1/HttpsHealthCheck2.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckClient.java b/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckClient.java rename to src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckClient.java index 2a7fd4ee5..293ad6b6b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckClient.java +++ b/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckClient.java @@ -156,7 +156,7 @@ public HttpsHealthCheckStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HttpsHealthCheck resource. + * Deletes the specified HttpsHealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -183,7 +183,7 @@ public final Operation deleteHttpsHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HttpsHealthCheck resource. + * Deletes the specified HttpsHealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -209,7 +209,7 @@ public final Operation deleteHttpsHealthCheck(String httpsHealthCheck) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HttpsHealthCheck resource. + * Deletes the specified HttpsHealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -233,7 +233,7 @@ public final Operation deleteHttpsHealthCheck(DeleteHttpsHealthCheckHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HttpsHealthCheck resource. + * Deletes the specified HttpsHealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -258,7 +258,7 @@ public final Operation deleteHttpsHealthCheck(DeleteHttpsHealthCheckHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HttpsHealthCheck resource. Gets a list of available HTTPS health checks - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -286,7 +286,7 @@ public final HttpsHealthCheck2 getHttpsHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HttpsHealthCheck resource. Gets a list of available HTTPS health checks - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -311,7 +311,7 @@ public final HttpsHealthCheck2 getHttpsHealthCheck(String httpsHealthCheck) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HttpsHealthCheck resource. Gets a list of available HTTPS health checks - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -336,7 +336,7 @@ public final HttpsHealthCheck2 getHttpsHealthCheck(GetHttpsHealthCheckHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HttpsHealthCheck resource. Gets a list of available HTTPS health checks - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -361,7 +361,7 @@ public final HttpsHealthCheck2 getHttpsHealthCheck(GetHttpsHealthCheckHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HttpsHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -394,7 +394,7 @@ public final Operation insertHttpsHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HttpsHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -427,7 +427,7 @@ public final Operation insertHttpsHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HttpsHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -454,7 +454,7 @@ public final Operation insertHttpsHealthCheck(InsertHttpsHealthCheckHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HttpsHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -480,7 +480,8 @@ public final Operation insertHttpsHealthCheck(InsertHttpsHealthCheckHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpsHealthCheck resources available to the specified project. + * Retrieves the list of HttpsHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -507,7 +508,8 @@ public final ListHttpsHealthChecksPagedResponse listHttpsHealthChecks(ProjectNam // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpsHealthCheck resources available to the specified project. + * Retrieves the list of HttpsHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -532,7 +534,8 @@ public final ListHttpsHealthChecksPagedResponse listHttpsHealthChecks(String pro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpsHealthCheck resources available to the specified project. + * Retrieves the list of HttpsHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -559,7 +562,8 @@ public final ListHttpsHealthChecksPagedResponse listHttpsHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpsHealthCheck resources available to the specified project. + * Retrieves the list of HttpsHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -585,7 +589,8 @@ public final ListHttpsHealthChecksPagedResponse listHttpsHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HttpsHealthCheck resources available to the specified project. + * Retrieves the list of HttpsHealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -620,7 +625,7 @@ public final ListHttpsHealthChecksPagedResponse listHttpsHealthChecks( /** * Updates a HttpsHealthCheck resource in the specified project using the data included in the * request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -662,7 +667,7 @@ public final Operation patchHttpsHealthCheck( /** * Updates a HttpsHealthCheck resource in the specified project using the data included in the * request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -702,7 +707,7 @@ public final Operation patchHttpsHealthCheck( /** * Updates a HttpsHealthCheck resource in the specified project using the data included in the * request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -732,7 +737,7 @@ public final Operation patchHttpsHealthCheck(PatchHttpsHealthCheckHttpRequest re /** * Updates a HttpsHealthCheck resource in the specified project using the data included in the * request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -761,7 +766,7 @@ public final Operation patchHttpsHealthCheck(PatchHttpsHealthCheckHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HttpsHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -802,7 +807,7 @@ public final Operation updateHttpsHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HttpsHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -841,7 +846,7 @@ public final Operation updateHttpsHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HttpsHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -870,7 +875,7 @@ public final Operation updateHttpsHealthCheck(UpdateHttpsHealthCheckHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HttpsHealthCheck resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckList.java b/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckList.java rename to src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckSettings.java b/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckSettings.java rename to src/main/java/com/google/cloud/compute/v1/HttpsHealthCheckSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Image.java b/src/main/java/com/google/cloud/compute/v1/Image.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Image.java rename to src/main/java/com/google/cloud/compute/v1/Image.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ImageClient.java b/src/main/java/com/google/cloud/compute/v1/ImageClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ImageClient.java rename to src/main/java/com/google/cloud/compute/v1/ImageClient.java index 6d330d8d9..8adee0806 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ImageClient.java +++ b/src/main/java/com/google/cloud/compute/v1/ImageClient.java @@ -153,7 +153,7 @@ public ImageStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified image. + * Deletes the specified image. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -179,7 +179,7 @@ public final Operation deleteImage(ProjectGlobalImageName image) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified image. + * Deletes the specified image. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -202,7 +202,7 @@ public final Operation deleteImage(String image) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified image. + * Deletes the specified image. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -226,7 +226,7 @@ public final Operation deleteImage(DeleteImageHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified image. + * Deletes the specified image. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -251,7 +251,8 @@ public final UnaryCallable deleteImageCallabl /** * Sets the deprecation status of an image. * - *

If an empty request body is given, clears the deprecation status instead. + *

If an empty request body is given, clears the deprecation status instead. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -283,7 +284,8 @@ public final Operation deprecateImage( /** * Sets the deprecation status of an image. * - *

If an empty request body is given, clears the deprecation status instead. + *

If an empty request body is given, clears the deprecation status instead. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -314,7 +316,8 @@ public final Operation deprecateImage(String image, DeprecationStatus deprecatio /** * Sets the deprecation status of an image. * - *

If an empty request body is given, clears the deprecation status instead. + *

If an empty request body is given, clears the deprecation status instead. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -342,7 +345,8 @@ public final Operation deprecateImage(DeprecateImageHttpRequest request) { /** * Sets the deprecation status of an image. * - *

If an empty request body is given, clears the deprecation status instead. + *

If an empty request body is given, clears the deprecation status instead. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -367,7 +371,8 @@ public final UnaryCallable deprecateImageC // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified image. Gets a list of available images by making a list() request. + * Returns the specified image. Gets a list of available images by making a list() request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -391,7 +396,8 @@ public final Image getImage(ProjectGlobalImageName image) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified image. Gets a list of available images by making a list() request. + * Returns the specified image. Gets a list of available images by making a list() request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -414,7 +420,8 @@ public final Image getImage(String image) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified image. Gets a list of available images by making a list() request. + * Returns the specified image. Gets a list of available images by making a list() request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -438,7 +445,8 @@ public final Image getImage(GetImageHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified image. Gets a list of available images by making a list() request. + * Returns the specified image. Gets a list of available images by making a list() request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -461,7 +469,8 @@ public final UnaryCallable getImageCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the latest image that is part of an image family and is not deprecated. + * Returns the latest image that is part of an image family and is not deprecated. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -487,7 +496,8 @@ public final Image getFromFamilyImage(ProjectGlobalImageFamilyName family) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the latest image that is part of an image family and is not deprecated. + * Returns the latest image that is part of an image family and is not deprecated. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -511,7 +521,8 @@ public final Image getFromFamilyImage(String family) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the latest image that is part of an image family and is not deprecated. + * Returns the latest image that is part of an image family and is not deprecated. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -535,7 +546,8 @@ public final Image getFromFamilyImage(GetFromFamilyImageHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the latest image that is part of an image family and is not deprecated. + * Returns the latest image that is part of an image family and is not deprecated. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -559,7 +571,7 @@ public final UnaryCallable getFromFamilyIm // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -586,7 +598,7 @@ public final Policy getIamPolicyImage(ProjectGlobalImageResourceName resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -611,7 +623,7 @@ public final Policy getIamPolicyImage(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -636,7 +648,7 @@ public final Policy getIamPolicyImage(GetIamPolicyImageHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -659,7 +671,8 @@ public final UnaryCallable getIamPolicyIma // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an image in the specified project using the data included in the request. + * Creates an image in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -694,7 +707,8 @@ public final Operation insertImage( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an image in the specified project using the data included in the request. + * Creates an image in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -728,7 +742,8 @@ public final Operation insertImage(Boolean forceCreate, String project, Image im // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an image in the specified project using the data included in the request. + * Creates an image in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -756,7 +771,8 @@ public final Operation insertImage(InsertImageHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an image in the specified project using the data included in the request. + * Creates an image in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -787,7 +803,7 @@ public final UnaryCallable insertImageCallabl * images you create that belong to your project. This method does not get any images that belong * to other projects, including publicly-available images, like Debian 8. If you want to get a * list of publicly-available images, use this method to make a request to the respective image - * project, such as debian-cloud or windows-cloud. + * project, such as debian-cloud or windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -818,7 +834,7 @@ public final ListImagesPagedResponse listImages(ProjectName project) { * images you create that belong to your project. This method does not get any images that belong * to other projects, including publicly-available images, like Debian 8. If you want to get a * list of publicly-available images, use this method to make a request to the respective image - * project, such as debian-cloud or windows-cloud. + * project, such as debian-cloud or windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -846,7 +862,7 @@ public final ListImagesPagedResponse listImages(String project) { * images you create that belong to your project. This method does not get any images that belong * to other projects, including publicly-available images, like Debian 8. If you want to get a * list of publicly-available images, use this method to make a request to the respective image - * project, such as debian-cloud or windows-cloud. + * project, such as debian-cloud or windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -876,7 +892,7 @@ public final ListImagesPagedResponse listImages(ListImagesHttpRequest request) { * images you create that belong to your project. This method does not get any images that belong * to other projects, including publicly-available images, like Debian 8. If you want to get a * list of publicly-available images, use this method to make a request to the respective image - * project, such as debian-cloud or windows-cloud. + * project, such as debian-cloud or windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -906,7 +922,7 @@ public final ListImagesPagedResponse listImages(ListImagesHttpRequest request) { * images you create that belong to your project. This method does not get any images that belong * to other projects, including publicly-available images, like Debian 8. If you want to get a * list of publicly-available images, use this method to make a request to the respective image - * project, such as debian-cloud or windows-cloud. + * project, such as debian-cloud or windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -938,7 +954,8 @@ public final UnaryCallable listImagesCallable( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -969,7 +986,8 @@ public final Policy setIamPolicyImage( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -999,7 +1017,8 @@ public final Policy setIamPolicyImage( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1025,7 +1044,8 @@ public final Policy setIamPolicyImage(SetIamPolicyImageHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1051,7 +1071,7 @@ public final UnaryCallable setIamPolicyIma // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on an image. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1083,7 +1103,7 @@ public final Operation setLabelsImage( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on an image. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1114,7 +1134,7 @@ public final Operation setLabelsImage( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on an image. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1141,7 +1161,7 @@ public final Operation setLabelsImage(SetLabelsImageHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on an image. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1166,7 +1186,8 @@ public final UnaryCallable setLabelsImageC // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1197,7 +1218,8 @@ public final TestPermissionsResponse testIamPermissionsImage( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1227,7 +1249,8 @@ public final TestPermissionsResponse testIamPermissionsImage( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1254,7 +1277,8 @@ public final TestPermissionsResponse testIamPermissionsImage( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ImageList.java b/src/main/java/com/google/cloud/compute/v1/ImageList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ImageList.java rename to src/main/java/com/google/cloud/compute/v1/ImageList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ImageSettings.java b/src/main/java/com/google/cloud/compute/v1/ImageSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ImageSettings.java rename to src/main/java/com/google/cloud/compute/v1/ImageSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertAddressHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertAddressHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertAddressHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertAddressHttpRequest.java index 362742562..1bbc04c04 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertAddressHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertAddressHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.addresses.insert. Creates an address resource in the specified - * project by using the data included in the request. + * project by using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertAddressHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertAutoscalerHttpRequest.java index 52c2255d5..0306862d2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertAutoscalerHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.autoscalers.insert. Creates an autoscaler in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertAutoscalerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertBackendBucketHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertBackendBucketHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertBackendBucketHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertBackendBucketHttpRequest.java index e14086505..5067d62f2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertBackendBucketHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertBackendBucketHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.backendBuckets.insert. Creates a BackendBucket resource in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class InsertBackendBucketHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertBackendServiceHttpRequest.java similarity index 89% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertBackendServiceHttpRequest.java index 3e33da5ba..102a92ba6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertBackendServiceHttpRequest.java @@ -28,7 +28,7 @@ * Request object for method compute.backendServices.insert. Creates a BackendService resource in * the specified project using the data included in the request. There are several restrictions and * guidelines to keep in mind when creating a backend service. Read Restrictions and Guidelines for - * more information. + * more information. (== suppress_warning http-rest-shadowed ==) */ public final class InsertBackendServiceHttpRequest implements ApiMessage { private final String access_token; @@ -139,16 +139,12 @@ public String getAccessToken() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services are - * used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -310,16 +306,12 @@ public Builder setAccessToken(String access_token) { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -328,16 +320,12 @@ public BackendService getBackendServiceResource() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public Builder setBackendServiceResource(BackendService backendServiceResource) { this.backendServiceResource = backendServiceResource; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertDiskHttpRequest.java index e7d188878..96d740429 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertDiskHttpRequest.java @@ -28,7 +28,8 @@ * Request object for method compute.disks.insert. Creates a persistent disk in the specified * project using the data in the request. You can create a disk with a sourceImage, a * sourceSnapshot, or create an empty 500 GB data disk by omitting all properties. You can also - * create a disk that is larger than the default size by specifying the sizeGb property. + * create a disk that is larger than the default size by specifying the sizeGb property. (== + * suppress_warning http-rest-shadowed ==) */ public final class InsertDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertExternalVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertExternalVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertExternalVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertExternalVpnGatewayHttpRequest.java index 269175805..10a291a4a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertExternalVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertExternalVpnGatewayHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.externalVpnGateways.insert. Creates a ExternalVpnGateway in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class InsertExternalVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertFirewallHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertFirewallHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertFirewallHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertFirewallHttpRequest.java index 366c3bbe8..d597bb70a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertFirewallHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertFirewallHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.firewalls.insert. Creates a firewall rule in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertFirewallHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertForwardingRuleHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertForwardingRuleHttpRequest.java similarity index 79% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertForwardingRuleHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertForwardingRuleHttpRequest.java index 817ff6bc9..e0dfc5fb1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertForwardingRuleHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertForwardingRuleHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.forwardingRules.insert. Creates a ForwardingRule resource in - * the specified project and region using the data included in the request. + * the specified project and region using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertForwardingRuleHttpRequest implements ApiMessage { private final String access_token; @@ -147,31 +148,15 @@ public String getFields() { /** * Represents a Forwarding Rule resource. * - *

A forwardingRules resource represents a regional forwarding rule. + *

A forwarding rule and its corresponding IP address represent the frontend configuration of a + * Google Cloud Platform load balancer. Forwarding rules can also reference target instances and + * Cloud VPN Classic gateways (targetVpnGateway). * - *

Regional external forwarding rules can reference any of the following resources: + *

For more information, read Forwarding rule concepts and Using protocol forwarding. * - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool for a - * Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer using - * Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - A target - * TCP proxy for a TCP Proxy load balancer using Standard Tier. - * - *

Regional internal forwarding rules can reference the backend service of an internal TCP/UDP - * load balancer. - * - *

For regional internal forwarding rules, the following applies: - If the loadBalancingScheme - * for the load balancer is INTERNAL, then the forwarding rule references a regional internal - * backend service. - If the loadBalancingScheme for the load balancer is INTERNAL_MANAGED, then - * the forwarding rule must reference a regional target HTTP(S) proxy. - * - *

For more information, read Using Forwarding rules. - * - *

A globalForwardingRules resource represents a global forwarding rule. - * - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== resource_for - * beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== resource_for - * beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== + * resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) */ public ForwardingRule getForwardingRuleResource() { return forwardingRuleResource; @@ -345,29 +330,13 @@ public Builder setFields(String fields) { /** * Represents a Forwarding Rule resource. * - *

A forwardingRules resource represents a regional forwarding rule. - * - *

Regional external forwarding rules can reference any of the following resources: - * - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool for - * a Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer using - * Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - A - * target TCP proxy for a TCP Proxy load balancer using Standard Tier. - * - *

Regional internal forwarding rules can reference the backend service of an internal - * TCP/UDP load balancer. + *

A forwarding rule and its corresponding IP address represent the frontend configuration of + * a Google Cloud Platform load balancer. Forwarding rules can also reference target instances + * and Cloud VPN Classic gateways (targetVpnGateway). * - *

For regional internal forwarding rules, the following applies: - If the - * loadBalancingScheme for the load balancer is INTERNAL, then the forwarding rule references a - * regional internal backend service. - If the loadBalancingScheme for the load balancer is - * INTERNAL_MANAGED, then the forwarding rule must reference a regional target HTTP(S) proxy. + *

For more information, read Forwarding rule concepts and Using protocol forwarding. * - *

For more information, read Using Forwarding rules. - * - *

A globalForwardingRules resource represents a global forwarding rule. - * - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== * resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) */ @@ -378,29 +347,13 @@ public ForwardingRule getForwardingRuleResource() { /** * Represents a Forwarding Rule resource. * - *

A forwardingRules resource represents a regional forwarding rule. - * - *

Regional external forwarding rules can reference any of the following resources: - * - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool for - * a Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer using - * Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - A - * target TCP proxy for a TCP Proxy load balancer using Standard Tier. - * - *

Regional internal forwarding rules can reference the backend service of an internal - * TCP/UDP load balancer. - * - *

For regional internal forwarding rules, the following applies: - If the - * loadBalancingScheme for the load balancer is INTERNAL, then the forwarding rule references a - * regional internal backend service. - If the loadBalancingScheme for the load balancer is - * INTERNAL_MANAGED, then the forwarding rule must reference a regional target HTTP(S) proxy. - * - *

For more information, read Using Forwarding rules. + *

A forwarding rule and its corresponding IP address represent the frontend configuration of + * a Google Cloud Platform load balancer. Forwarding rules can also reference target instances + * and Cloud VPN Classic gateways (targetVpnGateway). * - *

A globalForwardingRules resource represents a global forwarding rule. + *

For more information, read Forwarding rule concepts and Using protocol forwarding. * - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== * resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) */ diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertGlobalAddressHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertGlobalAddressHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertGlobalAddressHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertGlobalAddressHttpRequest.java index c8cc60c15..8544884e2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertGlobalAddressHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertGlobalAddressHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.globalAddresses.insert. Creates an address resource in the - * specified project by using the data included in the request. + * specified project by using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertGlobalAddressHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertGlobalForwardingRuleHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertGlobalForwardingRuleHttpRequest.java similarity index 80% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertGlobalForwardingRuleHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertGlobalForwardingRuleHttpRequest.java index 53971d309..1b670da6a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertGlobalForwardingRuleHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertGlobalForwardingRuleHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.globalForwardingRules.insert. Creates a GlobalForwardingRule - * resource in the specified project using the data included in the request. + * resource in the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertGlobalForwardingRuleHttpRequest implements ApiMessage { private final String access_token; @@ -147,31 +148,15 @@ public String getFields() { /** * Represents a Forwarding Rule resource. * - *

A forwardingRules resource represents a regional forwarding rule. + *

A forwarding rule and its corresponding IP address represent the frontend configuration of a + * Google Cloud Platform load balancer. Forwarding rules can also reference target instances and + * Cloud VPN Classic gateways (targetVpnGateway). * - *

Regional external forwarding rules can reference any of the following resources: + *

For more information, read Forwarding rule concepts and Using protocol forwarding. * - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool for a - * Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer using - * Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - A target - * TCP proxy for a TCP Proxy load balancer using Standard Tier. - * - *

Regional internal forwarding rules can reference the backend service of an internal TCP/UDP - * load balancer. - * - *

For regional internal forwarding rules, the following applies: - If the loadBalancingScheme - * for the load balancer is INTERNAL, then the forwarding rule references a regional internal - * backend service. - If the loadBalancingScheme for the load balancer is INTERNAL_MANAGED, then - * the forwarding rule must reference a regional target HTTP(S) proxy. - * - *

For more information, read Using Forwarding rules. - * - *

A globalForwardingRules resource represents a global forwarding rule. - * - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== resource_for - * beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== resource_for - * beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== + * resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) */ public ForwardingRule getForwardingRuleResource() { return forwardingRuleResource; @@ -345,29 +330,13 @@ public Builder setFields(String fields) { /** * Represents a Forwarding Rule resource. * - *

A forwardingRules resource represents a regional forwarding rule. - * - *

Regional external forwarding rules can reference any of the following resources: - * - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool for - * a Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer using - * Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - A - * target TCP proxy for a TCP Proxy load balancer using Standard Tier. - * - *

Regional internal forwarding rules can reference the backend service of an internal - * TCP/UDP load balancer. + *

A forwarding rule and its corresponding IP address represent the frontend configuration of + * a Google Cloud Platform load balancer. Forwarding rules can also reference target instances + * and Cloud VPN Classic gateways (targetVpnGateway). * - *

For regional internal forwarding rules, the following applies: - If the - * loadBalancingScheme for the load balancer is INTERNAL, then the forwarding rule references a - * regional internal backend service. - If the loadBalancingScheme for the load balancer is - * INTERNAL_MANAGED, then the forwarding rule must reference a regional target HTTP(S) proxy. + *

For more information, read Forwarding rule concepts and Using protocol forwarding. * - *

For more information, read Using Forwarding rules. - * - *

A globalForwardingRules resource represents a global forwarding rule. - * - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== * resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) */ @@ -378,29 +347,13 @@ public ForwardingRule getForwardingRuleResource() { /** * Represents a Forwarding Rule resource. * - *

A forwardingRules resource represents a regional forwarding rule. - * - *

Regional external forwarding rules can reference any of the following resources: - * - *

- A target instance - A Cloud VPN Classic gateway (targetVpnGateway), - A target pool for - * a Network Load Balancer - A global target HTTP(S) proxy for an HTTP(S) load balancer using - * Standard Tier - A target SSL proxy for a SSL Proxy load balancer using Standard Tier - A - * target TCP proxy for a TCP Proxy load balancer using Standard Tier. - * - *

Regional internal forwarding rules can reference the backend service of an internal - * TCP/UDP load balancer. - * - *

For regional internal forwarding rules, the following applies: - If the - * loadBalancingScheme for the load balancer is INTERNAL, then the forwarding rule references a - * regional internal backend service. - If the loadBalancingScheme for the load balancer is - * INTERNAL_MANAGED, then the forwarding rule must reference a regional target HTTP(S) proxy. - * - *

For more information, read Using Forwarding rules. + *

A forwarding rule and its corresponding IP address represent the frontend configuration of + * a Google Cloud Platform load balancer. Forwarding rules can also reference target instances + * and Cloud VPN Classic gateways (targetVpnGateway). * - *

A globalForwardingRules resource represents a global forwarding rule. + *

For more information, read Forwarding rule concepts and Using protocol forwarding. * - *

Global forwarding rules are only used by load balancers that use Premium Tier. (== - * resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== + *

(== resource_for beta.forwardingRules ==) (== resource_for v1.forwardingRules ==) (== * resource_for beta.globalForwardingRules ==) (== resource_for v1.globalForwardingRules ==) (== * resource_for beta.regionForwardingRules ==) (== resource_for v1.regionForwardingRules ==) */ diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertHealthCheckHttpRequest.java index 652259b03..b7168b13d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertHealthCheckHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.healthChecks.insert. Creates a HealthCheck resource in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class InsertHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHttpHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertHttpHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHttpHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertHttpHealthCheckHttpRequest.java index 303059108..309dc74dc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHttpHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertHttpHealthCheckHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.httpHealthChecks.insert. Creates a HttpHealthCheck resource in - * the specified project using the data included in the request. + * the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertHttpHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHttpsHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertHttpsHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHttpsHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertHttpsHealthCheckHttpRequest.java index d5b7e29f1..a88e6528a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertHttpsHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertHttpsHealthCheckHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.httpsHealthChecks.insert. Creates a HttpsHealthCheck resource - * in the specified project using the data included in the request. + * in the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertHttpsHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertImageHttpRequest.java index b71e94391..b80b20afb 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertImageHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.images.insert. Creates an image in the specified project using - * the data included in the request. + * the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertImageHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupHttpRequest.java index 6921b3123..99be41fa8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instanceGroups.insert. Creates an instance group in the - * specified project using the parameters that are included in the request. + * specified project using the parameters that are included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertInstanceGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupManagerHttpRequest.java index de03a2ce2..079217ecb 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertInstanceGroupManagerHttpRequest.java @@ -32,7 +32,7 @@ * separately verify the status of the individual instances with the listmanagedinstances method. * *

A managed instance group can have up to 1000 VM instances per group. Please contact Cloud - * Support if you need an increase in this limit. + * Support if you need an increase in this limit. (== suppress_warning http-rest-shadowed ==) */ public final class InsertInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertInstanceHttpRequest.java index 886b81adc..4848614c0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.insert. Creates an instance resource in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertInstanceTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertInstanceTemplateHttpRequest.java index f53bdf0c7..2df2970a6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInstanceTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertInstanceTemplateHttpRequest.java @@ -28,7 +28,8 @@ * Request object for method compute.instanceTemplates.insert. Creates an instance template in the * specified project using the data that is included in the request. If you are creating a new * template to update an existing instance group, your new instance template must use the same - * network or, if applicable, the same subnetwork as the original template. + * network or, if applicable, the same subnetwork as the original template. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertInstanceTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInterconnectAttachmentHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertInterconnectAttachmentHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInterconnectAttachmentHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertInterconnectAttachmentHttpRequest.java index c75fd457e..a7f24502d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInterconnectAttachmentHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertInterconnectAttachmentHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.interconnectAttachments.insert. Creates an - * InterconnectAttachment in the specified project using the data included in the request. + * InterconnectAttachment in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) */ public final class InsertInterconnectAttachmentHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInterconnectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertInterconnectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInterconnectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertInterconnectHttpRequest.java index 3f941402d..a9ee4b15a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertInterconnectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertInterconnectHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.interconnects.insert. Creates a Interconnect in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertInterconnectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertLicenseHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertLicenseHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertLicenseHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertLicenseHttpRequest.java index 79a6387f2..787c47b36 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertLicenseHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertLicenseHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.licenses.insert. Create a License resource in the specified - * project. + * project. (== suppress_warning http-rest-shadowed ==) */ public final class InsertLicenseHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNetworkEndpointGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertNetworkEndpointGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNetworkEndpointGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertNetworkEndpointGroupHttpRequest.java index f27e4af31..921a69a61 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNetworkEndpointGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertNetworkEndpointGroupHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.networkEndpointGroups.insert. Creates a network endpoint group - * in the specified project using the parameters that are included in the request. + * in the specified project using the parameters that are included in the request. (== + * suppress_warning http-rest-shadowed ==) */ public final class InsertNetworkEndpointGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertNetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertNetworkHttpRequest.java index d4824d3b4..a8f82792f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertNetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.networks.insert. Creates a network in the specified project - * using the data included in the request. + * using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertNetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertNodeGroupHttpRequest.java index 7c70d1f2d..eef6de13d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertNodeGroupHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.nodeGroups.insert. Creates a NodeGroup resource in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class InsertNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNodeTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertNodeTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNodeTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertNodeTemplateHttpRequest.java index ec531ff48..d41d26ced 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertNodeTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertNodeTemplateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.nodeTemplates.insert. Creates a NodeTemplate resource in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class InsertNodeTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionAutoscalerHttpRequest.java index 2eacc6c7b..4e6aa4643 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionAutoscalerHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionAutoscalers.insert. Creates an autoscaler in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class InsertRegionAutoscalerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionBackendServiceHttpRequest.java similarity index 89% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionBackendServiceHttpRequest.java index 4d124e00f..c051d7abd 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionBackendServiceHttpRequest.java @@ -28,7 +28,7 @@ * Request object for method compute.regionBackendServices.insert. Creates a regional BackendService * resource in the specified project using the data included in the request. There are several * restrictions and guidelines to keep in mind when creating a regional backend service. Read - * Restrictions and Guidelines for more information. + * Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed ==) */ public final class InsertRegionBackendServiceHttpRequest implements ApiMessage { private final String access_token; @@ -139,16 +139,12 @@ public String getAccessToken() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services are - * used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -310,16 +306,12 @@ public Builder setAccessToken(String access_token) { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -328,16 +320,12 @@ public BackendService getBackendServiceResource() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public Builder setBackendServiceResource(BackendService backendServiceResource) { this.backendServiceResource = backendServiceResource; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionCommitmentHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionCommitmentHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionCommitmentHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionCommitmentHttpRequest.java index 63f2eec34..1caf8c167 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionCommitmentHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionCommitmentHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionCommitments.insert. Creates a commitment in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertRegionCommitmentHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionDiskHttpRequest.java index f3bb99ff8..e26610cf0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionDiskHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionDisks.insert. Creates a persistent regional disk in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class InsertRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionHealthCheckHttpRequest.java index 1999e029e..8e173d8cc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionHealthCheckHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionHealthChecks.insert. Creates a HealthCheck resource in - * the specified project using the data included in the request. + * the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertRegionHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionInstanceGroupManagerHttpRequest.java index cbe087d5d..2b07d2007 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionInstanceGroupManagerHttpRequest.java @@ -32,7 +32,8 @@ * created. You must separately verify the status of the individual instances with the * listmanagedinstances method. * - *

A regional managed instance group can contain up to 2000 instances. + *

A regional managed instance group can contain up to 2000 instances. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionSslCertificateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionSslCertificateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionSslCertificateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionSslCertificateHttpRequest.java index a241ce1ee..03db5bb42 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionSslCertificateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionSslCertificateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionSslCertificates.insert. Creates a SslCertificate resource - * in the specified project and region using the data included in the request + * in the specified project and region using the data included in the request (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertRegionSslCertificateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpProxyHttpRequest.java index c916da456..82a37ea56 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionTargetHttpProxies.insert. Creates a TargetHttpProxy - * resource in the specified project and region using the data included in the request. + * resource in the specified project and region using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) */ public final class InsertRegionTargetHttpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpsProxyHttpRequest.java index 57eb80786..33273c6c3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionTargetHttpsProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionTargetHttpsProxies.insert. Creates a TargetHttpsProxy - * resource in the specified project and region using the data included in the request. + * resource in the specified project and region using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) */ public final class InsertRegionTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRegionUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRegionUrlMapHttpRequest.java index 6501fca78..b56f81f99 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRegionUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRegionUrlMapHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionUrlMaps.insert. Creates a UrlMap resource in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class InsertRegionUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertReservationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertReservationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertReservationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertReservationHttpRequest.java index f11c12d01..08fafafc0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertReservationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertReservationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.reservations.insert. Creates a new reservation. For more - * information, read Reserving zonal resources. + * information, read Reserving zonal resources. (== suppress_warning http-rest-shadowed ==) */ public final class InsertReservationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertResourcePolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertResourcePolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertResourcePolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertResourcePolicyHttpRequest.java index b41421647..8d23f3de4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertResourcePolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertResourcePolicyHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.resourcePolicies.insert. Creates a new resource policy. */ +/** + * Request object for method compute.resourcePolicies.insert. Creates a new resource policy. (== + * suppress_warning http-rest-shadowed ==) + */ public final class InsertResourcePolicyHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRouteHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRouteHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRouteHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRouteHttpRequest.java index 8ad83c6e7..989939467 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRouteHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRouteHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.routes.insert. Creates a Route resource in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertRouteHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRouterHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertRouterHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRouterHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertRouterHttpRequest.java index 3ee4a3169..2d8aa242c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertRouterHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertRouterHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.routers.insert. Creates a Router resource in the specified - * project and region using the data included in the request. + * project and region using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertRouterHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSecurityPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertSecurityPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSecurityPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertSecurityPolicyHttpRequest.java index a338ed41e..0148ffb6a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSecurityPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertSecurityPolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.securityPolicies.insert. Creates a new policy in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertSecurityPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSslCertificateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertSslCertificateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSslCertificateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertSslCertificateHttpRequest.java index 8669c6d00..cc6514f7c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSslCertificateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertSslCertificateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.sslCertificates.insert. Creates a SslCertificate resource in - * the specified project using the data included in the request. + * the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertSslCertificateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSslPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertSslPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSslPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertSslPolicyHttpRequest.java index 9f9070ed0..1f453d900 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSslPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertSslPolicyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.sslPolicies.insert. Returns the specified SSL policy resource. - * Gets a list of available SSL policies by making a list() request. + * Gets a list of available SSL policies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertSslPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertSubnetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertSubnetworkHttpRequest.java index 87b950996..cfdafc5b1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertSubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertSubnetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.subnetworks.insert. Creates a subnetwork in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertSubnetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertTargetHttpProxyHttpRequest.java index 71b53df65..18b1ceb3a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetHttpProxies.insert. Creates a TargetHttpProxy resource in - * the specified project using the data included in the request. + * the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertTargetHttpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertTargetHttpsProxyHttpRequest.java index 8916685aa..4b1f4b2e5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertTargetHttpsProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetHttpsProxies.insert. Creates a TargetHttpsProxy resource - * in the specified project using the data included in the request. + * in the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertTargetInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertTargetInstanceHttpRequest.java index 6ff38dd32..b497ed00b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertTargetInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetInstances.insert. Creates a TargetInstance resource in - * the specified project and zone using the data included in the request. + * the specified project and zone using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertTargetInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertTargetPoolHttpRequest.java index f38ab1c34..0d6606e84 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertTargetPoolHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetPools.insert. Creates a target pool in the specified - * project and region using the data included in the request. + * project and region using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertTargetPoolHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetSslProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertTargetSslProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetSslProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertTargetSslProxyHttpRequest.java index 9821335bc..fa0d68a52 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetSslProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertTargetSslProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetSslProxies.insert. Creates a TargetSslProxy resource in - * the specified project using the data included in the request. + * the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertTargetSslProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetTcpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertTargetTcpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetTcpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertTargetTcpProxyHttpRequest.java index d0d38f411..2bd189c70 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetTcpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertTargetTcpProxyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetTcpProxies.insert. Creates a TargetTcpProxy resource in - * the specified project using the data included in the request. + * the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertTargetTcpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertTargetVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertTargetVpnGatewayHttpRequest.java index 6222c67ad..bd4d57e55 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertTargetVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertTargetVpnGatewayHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetVpnGateways.insert. Creates a target VPN gateway in the - * specified project and region using the data included in the request. + * specified project and region using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertTargetVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertUrlMapHttpRequest.java index 5c6b88b75..490bc772f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertUrlMapHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.urlMaps.insert. Creates a UrlMap resource in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class InsertUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertVpnGatewayHttpRequest.java index 7b15057a2..341ddc48e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertVpnGatewayHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.vpnGateways.insert. Creates a VPN gateway in the specified - * project and region using the data included in the request. + * project and region using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertVpnTunnelHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InsertVpnTunnelHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertVpnTunnelHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InsertVpnTunnelHttpRequest.java index 105dea4d2..8dfc0cf59 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InsertVpnTunnelHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InsertVpnTunnelHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.vpnTunnels.insert. Creates a VpnTunnel resource in the - * specified project and region using the data included in the request. + * specified project and region using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class InsertVpnTunnelHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Instance.java b/src/main/java/com/google/cloud/compute/v1/Instance.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Instance.java rename to src/main/java/com/google/cloud/compute/v1/Instance.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/InstanceAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceClient.java b/src/main/java/com/google/cloud/compute/v1/InstanceClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceClient.java rename to src/main/java/com/google/cloud/compute/v1/InstanceClient.java index 87615d56a..4ea81b3b9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceClient.java +++ b/src/main/java/com/google/cloud/compute/v1/InstanceClient.java @@ -155,7 +155,8 @@ public InstanceStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds an access config to an instance's network interface. + * Adds an access config to an instance's network interface. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -191,7 +192,8 @@ public final Operation addAccessConfigInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds an access config to an instance's network interface. + * Adds an access config to an instance's network interface. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -225,7 +227,8 @@ public final Operation addAccessConfigInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds an access config to an instance's network interface. + * Adds an access config to an instance's network interface. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -253,7 +256,8 @@ public final Operation addAccessConfigInstance(AddAccessConfigInstanceHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds an access config to an instance's network interface. + * Adds an access config to an instance's network interface. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -282,6 +286,7 @@ public final Operation addAccessConfigInstance(AddAccessConfigInstanceHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves aggregated list of all of the instances in your project across all regions and zones. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -309,6 +314,7 @@ public final AggregatedListInstancesPagedResponse aggregatedListInstances(Projec // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves aggregated list of all of the instances in your project across all regions and zones. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -334,6 +340,7 @@ public final AggregatedListInstancesPagedResponse aggregatedListInstances(String // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves aggregated list of all of the instances in your project across all regions and zones. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -361,6 +368,7 @@ public final AggregatedListInstancesPagedResponse aggregatedListInstances( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves aggregated list of all of the instances in your project across all regions and zones. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -388,6 +396,7 @@ public final AggregatedListInstancesPagedResponse aggregatedListInstances( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves aggregated list of all of the instances in your project across all regions and zones. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -422,7 +431,8 @@ public final AggregatedListInstancesPagedResponse aggregatedListInstances( /** * Attaches an existing Disk resource to an instance. You must first create the disk before you * can attach it. It is not possible to create and attach a disk at the same time. For more - * information, read Adding a persistent disk to your instance. + * information, read Adding a persistent disk to your instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -458,7 +468,8 @@ public final Operation attachDiskInstance( /** * Attaches an existing Disk resource to an instance. You must first create the disk before you * can attach it. It is not possible to create and attach a disk at the same time. For more - * information, read Adding a persistent disk to your instance. + * information, read Adding a persistent disk to your instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -494,7 +505,8 @@ public final Operation attachDiskInstance( /** * Attaches an existing Disk resource to an instance. You must first create the disk before you * can attach it. It is not possible to create and attach a disk at the same time. For more - * information, read Adding a persistent disk to your instance. + * information, read Adding a persistent disk to your instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -524,7 +536,8 @@ public final Operation attachDiskInstance(AttachDiskInstanceHttpRequest request) /** * Attaches an existing Disk resource to an instance. You must first create the disk before you * can attach it. It is not possible to create and attach a disk at the same time. For more - * information, read Adding a persistent disk to your instance. + * information, read Adding a persistent disk to your instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -553,7 +566,7 @@ public final Operation attachDiskInstance(AttachDiskInstanceHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Deletes the specified Instance resource. For more information, see Stopping or Deleting an - * Instance. + * Instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -580,7 +593,7 @@ public final Operation deleteInstance(ProjectZoneInstanceName instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Deletes the specified Instance resource. For more information, see Stopping or Deleting an - * Instance. + * Instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -605,7 +618,7 @@ public final Operation deleteInstance(String instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Deletes the specified Instance resource. For more information, see Stopping or Deleting an - * Instance. + * Instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -630,7 +643,7 @@ public final Operation deleteInstance(DeleteInstanceHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Deletes the specified Instance resource. For more information, see Stopping or Deleting an - * Instance. + * Instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -653,7 +666,8 @@ public final UnaryCallable deleteInstanceC // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes an access config from an instance's network interface. + * Deletes an access config from an instance's network interface. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -686,7 +700,8 @@ public final Operation deleteAccessConfigInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes an access config from an instance's network interface. + * Deletes an access config from an instance's network interface. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -719,7 +734,8 @@ public final Operation deleteAccessConfigInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes an access config from an instance's network interface. + * Deletes an access config from an instance's network interface. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -747,7 +763,8 @@ public final Operation deleteAccessConfigInstance(DeleteAccessConfigInstanceHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes an access config from an instance's network interface. + * Deletes an access config from an instance's network interface. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -775,7 +792,7 @@ public final Operation deleteAccessConfigInstance(DeleteAccessConfigInstanceHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Detaches a disk from an instance. + * Detaches a disk from an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -805,7 +822,7 @@ public final Operation detachDiskInstance(ProjectZoneInstanceName instance, Stri // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Detaches a disk from an instance. + * Detaches a disk from an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -835,7 +852,7 @@ public final Operation detachDiskInstance(String instance, String deviceName) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Detaches a disk from an instance. + * Detaches a disk from an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -861,7 +878,7 @@ public final Operation detachDiskInstance(DetachDiskInstanceHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Detaches a disk from an instance. + * Detaches a disk from an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -888,7 +905,7 @@ public final Operation detachDiskInstance(DetachDiskInstanceHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Instance resource. Gets a list of available instances by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -915,7 +932,7 @@ public final Instance getInstance(ProjectZoneInstanceName instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Instance resource. Gets a list of available instances by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -940,7 +957,7 @@ public final Instance getInstance(String instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Instance resource. Gets a list of available instances by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -965,7 +982,7 @@ public final Instance getInstance(GetInstanceHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Instance resource. Gets a list of available instances by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -988,7 +1005,7 @@ public final UnaryCallable getInstanceCallable // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified guest attributes entry. + * Returns the specified guest attributes entry. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1021,7 +1038,7 @@ public final GuestAttributes getGuestAttributesInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified guest attributes entry. + * Returns the specified guest attributes entry. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1054,7 +1071,7 @@ public final GuestAttributes getGuestAttributesInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified guest attributes entry. + * Returns the specified guest attributes entry. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1083,7 +1100,7 @@ public final GuestAttributes getGuestAttributesInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified guest attributes entry. + * Returns the specified guest attributes entry. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1112,7 +1129,7 @@ public final GuestAttributes getGuestAttributesInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1139,7 +1156,7 @@ public final Policy getIamPolicyInstance(ProjectZoneInstanceResourceName resourc // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1164,7 +1181,7 @@ public final Policy getIamPolicyInstance(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1189,7 +1206,7 @@ public final Policy getIamPolicyInstance(GetIamPolicyInstanceHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1213,7 +1230,8 @@ public final Policy getIamPolicyInstance(GetIamPolicyInstanceHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the last 1 MB of serial port output from the specified instance. + * Returns the last 1 MB of serial port output from the specified instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1249,7 +1267,8 @@ public final SerialPortOutput getSerialPortOutputInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the last 1 MB of serial port output from the specified instance. + * Returns the last 1 MB of serial port output from the specified instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1285,7 +1304,8 @@ public final SerialPortOutput getSerialPortOutputInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the last 1 MB of serial port output from the specified instance. + * Returns the last 1 MB of serial port output from the specified instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1314,7 +1334,8 @@ public final SerialPortOutput getSerialPortOutputInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the last 1 MB of serial port output from the specified instance. + * Returns the last 1 MB of serial port output from the specified instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1342,7 +1363,8 @@ public final SerialPortOutput getSerialPortOutputInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the Shielded Instance Identity of an instance + * Returns the Shielded Instance Identity of an instance (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1369,7 +1391,8 @@ public final ShieldedInstanceIdentity getShieldedInstanceIdentityInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the Shielded Instance Identity of an instance + * Returns the Shielded Instance Identity of an instance (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1393,7 +1416,8 @@ public final ShieldedInstanceIdentity getShieldedInstanceIdentityInstance(String // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the Shielded Instance Identity of an instance + * Returns the Shielded Instance Identity of an instance (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1418,7 +1442,8 @@ public final ShieldedInstanceIdentity getShieldedInstanceIdentityInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the Shielded Instance Identity of an instance + * Returns the Shielded Instance Identity of an instance (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1444,6 +1469,7 @@ public final ShieldedInstanceIdentity getShieldedInstanceIdentityInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an instance resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1476,6 +1502,7 @@ public final Operation insertInstance(ProjectZoneName zone, Instance instanceRes // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an instance resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1508,6 +1535,7 @@ public final Operation insertInstance(String zone, Instance instanceResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an instance resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1534,6 +1562,7 @@ public final Operation insertInstance(InsertInstanceHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an instance resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1558,7 +1587,8 @@ public final UnaryCallable insertInstanceC // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instances contained within the specified zone. + * Retrieves the list of instances contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1585,7 +1615,8 @@ public final ListInstancesPagedResponse listInstances(ProjectZoneName zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instances contained within the specified zone. + * Retrieves the list of instances contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1609,7 +1640,8 @@ public final ListInstancesPagedResponse listInstances(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instances contained within the specified zone. + * Retrieves the list of instances contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1635,7 +1667,8 @@ public final ListInstancesPagedResponse listInstances(ListInstancesHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instances contained within the specified zone. + * Retrieves the list of instances contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1661,7 +1694,8 @@ public final ListInstancesPagedResponse listInstances(ListInstancesHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instances contained within the specified zone. + * Retrieves the list of instances contained within the specified zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1694,7 +1728,8 @@ public final UnaryCallable listInstances // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of referrers to instances contained within the specified zone. For more - * information, read Viewing Referrers to VM Instances. + * information, read Viewing Referrers to VM Instances. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1724,7 +1759,8 @@ public final ListReferrersInstancesPagedResponse listReferrersInstances( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of referrers to instances contained within the specified zone. For more - * information, read Viewing Referrers to VM Instances. + * information, read Viewing Referrers to VM Instances. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1751,7 +1787,8 @@ public final ListReferrersInstancesPagedResponse listReferrersInstances(String i // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of referrers to instances contained within the specified zone. For more - * information, read Viewing Referrers to VM Instances. + * information, read Viewing Referrers to VM Instances. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1779,7 +1816,8 @@ public final ListReferrersInstancesPagedResponse listReferrersInstances( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of referrers to instances contained within the specified zone. For more - * information, read Viewing Referrers to VM Instances. + * information, read Viewing Referrers to VM Instances. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1806,7 +1844,8 @@ public final ListReferrersInstancesPagedResponse listReferrersInstances( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of referrers to instances contained within the specified zone. For more - * information, read Viewing Referrers to VM Instances. + * information, read Viewing Referrers to VM Instances. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1840,7 +1879,7 @@ public final ListReferrersInstancesPagedResponse listReferrersInstances( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Performs a reset on the instance. This is a hard reset the VM does not do a graceful shutdown. - * For more information, see Resetting an instance. + * For more information, see Resetting an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1867,7 +1906,7 @@ public final Operation resetInstance(ProjectZoneInstanceName instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Performs a reset on the instance. This is a hard reset the VM does not do a graceful shutdown. - * For more information, see Resetting an instance. + * For more information, see Resetting an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1892,7 +1931,7 @@ public final Operation resetInstance(String instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Performs a reset on the instance. This is a hard reset the VM does not do a graceful shutdown. - * For more information, see Resetting an instance. + * For more information, see Resetting an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1917,7 +1956,7 @@ public final Operation resetInstance(ResetInstanceHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Performs a reset on the instance. This is a hard reset the VM does not do a graceful shutdown. - * For more information, see Resetting an instance. + * For more information, see Resetting an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1940,7 +1979,7 @@ public final UnaryCallable resetInstanceCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets deletion protection on the instance. + * Sets deletion protection on the instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1970,7 +2009,7 @@ public final Operation setDeletionProtectionInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets deletion protection on the instance. + * Sets deletion protection on the instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2000,7 +2039,7 @@ public final Operation setDeletionProtectionInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets deletion protection on the instance. + * Sets deletion protection on the instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2027,7 +2066,7 @@ public final Operation setDeletionProtectionInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets deletion protection on the instance. + * Sets deletion protection on the instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2053,7 +2092,8 @@ public final Operation setDeletionProtectionInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the auto-delete flag for a disk attached to an instance. + * Sets the auto-delete flag for a disk attached to an instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -2087,7 +2127,8 @@ public final Operation setDiskAutoDeleteInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the auto-delete flag for a disk attached to an instance. + * Sets the auto-delete flag for a disk attached to an instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -2121,7 +2162,8 @@ public final Operation setDiskAutoDeleteInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the auto-delete flag for a disk attached to an instance. + * Sets the auto-delete flag for a disk attached to an instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -2149,7 +2191,8 @@ public final Operation setDiskAutoDeleteInstance(SetDiskAutoDeleteInstanceHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the auto-delete flag for a disk attached to an instance. + * Sets the auto-delete flag for a disk attached to an instance. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -2177,7 +2220,8 @@ public final Operation setDiskAutoDeleteInstance(SetDiskAutoDeleteInstanceHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2207,7 +2251,8 @@ public final Policy setIamPolicyInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2237,7 +2282,8 @@ public final Policy setIamPolicyInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2263,7 +2309,8 @@ public final Policy setIamPolicyInstance(SetIamPolicyInstanceHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2290,7 +2337,7 @@ public final Policy setIamPolicyInstance(SetIamPolicyInstanceHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets labels on an instance. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2322,7 +2369,7 @@ public final Operation setLabelsInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets labels on an instance. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2353,7 +2400,7 @@ public final Operation setLabelsInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets labels on an instance. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2380,7 +2427,7 @@ public final Operation setLabelsInstance(SetLabelsInstanceHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets labels on an instance. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2406,7 +2453,7 @@ public final UnaryCallable setLabelsIns // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the number and/or type of accelerator for a stopped instance to the values specified in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2439,7 +2486,7 @@ public final Operation setMachineResourcesInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the number and/or type of accelerator for a stopped instance to the values specified in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2472,7 +2519,7 @@ public final Operation setMachineResourcesInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the number and/or type of accelerator for a stopped instance to the values specified in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2500,7 +2547,7 @@ public final Operation setMachineResourcesInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the number and/or type of accelerator for a stopped instance to the values specified in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2527,6 +2574,7 @@ public final Operation setMachineResourcesInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the machine type for a stopped instance to the machine type specified in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2558,6 +2606,7 @@ public final Operation setMachineTypeInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the machine type for a stopped instance to the machine type specified in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2588,6 +2637,7 @@ public final Operation setMachineTypeInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the machine type for a stopped instance to the machine type specified in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2614,6 +2664,7 @@ public final Operation setMachineTypeInstance(SetMachineTypeInstanceHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the machine type for a stopped instance to the machine type specified in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2639,7 +2690,8 @@ public final Operation setMachineTypeInstance(SetMachineTypeInstanceHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets metadata for the specified instance to the data included in the request. + * Sets metadata for the specified instance to the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2669,7 +2721,8 @@ public final Operation setMetadataInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets metadata for the specified instance to the data included in the request. + * Sets metadata for the specified instance to the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2698,7 +2751,8 @@ public final Operation setMetadataInstance(String instance, Metadata metadataRes // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets metadata for the specified instance to the data included in the request. + * Sets metadata for the specified instance to the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2724,7 +2778,8 @@ public final Operation setMetadataInstance(SetMetadataInstanceHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets metadata for the specified instance to the data included in the request. + * Sets metadata for the specified instance to the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2751,7 +2806,8 @@ public final Operation setMetadataInstance(SetMetadataInstanceHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the minimum CPU platform that this instance should use. This method can only be called - * on a stopped instance. For more information, read Specifying a Minimum CPU Platform. + * on a stopped instance. For more information, read Specifying a Minimum CPU Platform. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2783,7 +2839,8 @@ public final Operation setMinCpuPlatformInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the minimum CPU platform that this instance should use. This method can only be called - * on a stopped instance. For more information, read Specifying a Minimum CPU Platform. + * on a stopped instance. For more information, read Specifying a Minimum CPU Platform. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2815,7 +2872,8 @@ public final Operation setMinCpuPlatformInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the minimum CPU platform that this instance should use. This method can only be called - * on a stopped instance. For more information, read Specifying a Minimum CPU Platform. + * on a stopped instance. For more information, read Specifying a Minimum CPU Platform. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2842,7 +2900,8 @@ public final Operation setMinCpuPlatformInstance(SetMinCpuPlatformInstanceHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Changes the minimum CPU platform that this instance should use. This method can only be called - * on a stopped instance. For more information, read Specifying a Minimum CPU Platform. + * on a stopped instance. For more information, read Specifying a Minimum CPU Platform. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2868,7 +2927,7 @@ public final Operation setMinCpuPlatformInstance(SetMinCpuPlatformInstanceHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets an instance's scheduling options. + * Sets an instance's scheduling options. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2898,7 +2957,7 @@ public final Operation setSchedulingInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets an instance's scheduling options. + * Sets an instance's scheduling options. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2927,7 +2986,7 @@ public final Operation setSchedulingInstance(String instance, Scheduling schedul // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets an instance's scheduling options. + * Sets an instance's scheduling options. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2953,7 +3012,7 @@ public final Operation setSchedulingInstance(SetSchedulingInstanceHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets an instance's scheduling options. + * Sets an instance's scheduling options. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2980,7 +3039,7 @@ public final Operation setSchedulingInstance(SetSchedulingInstanceHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the service account on the instance. For more information, read Changing the service - * account and access scopes for an instance. + * account and access scopes for an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3012,7 +3071,7 @@ public final Operation setServiceAccountInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the service account on the instance. For more information, read Changing the service - * account and access scopes for an instance. + * account and access scopes for an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3044,7 +3103,7 @@ public final Operation setServiceAccountInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the service account on the instance. For more information, read Changing the service - * account and access scopes for an instance. + * account and access scopes for an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3071,7 +3130,7 @@ public final Operation setServiceAccountInstance(SetServiceAccountInstanceHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the service account on the instance. For more information, read Changing the service - * account and access scopes for an instance. + * account and access scopes for an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3099,7 +3158,7 @@ public final Operation setServiceAccountInstance(SetServiceAccountInstanceHttpRe /** * Sets the Shielded Instance integrity policy for an instance. You can only use this method on a * running instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3140,7 +3199,7 @@ public final Operation setShieldedInstanceIntegrityPolicyInstance( /** * Sets the Shielded Instance integrity policy for an instance. You can only use this method on a * running instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3181,7 +3240,7 @@ public final Operation setShieldedInstanceIntegrityPolicyInstance( /** * Sets the Shielded Instance integrity policy for an instance. You can only use this method on a * running instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3212,7 +3271,7 @@ public final Operation setShieldedInstanceIntegrityPolicyInstance( /** * Sets the Shielded Instance integrity policy for an instance. You can only use this method on a * running instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3240,7 +3299,8 @@ public final Operation setShieldedInstanceIntegrityPolicyInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets network tags for the specified instance to the data included in the request. + * Sets network tags for the specified instance to the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3269,7 +3329,8 @@ public final Operation setTagsInstance(ProjectZoneInstanceName instance, Tags ta // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets network tags for the specified instance to the data included in the request. + * Sets network tags for the specified instance to the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3298,7 +3359,8 @@ public final Operation setTagsInstance(String instance, Tags tagsResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets network tags for the specified instance to the data included in the request. + * Sets network tags for the specified instance to the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3324,7 +3386,8 @@ public final Operation setTagsInstance(SetTagsInstanceHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets network tags for the specified instance to the data included in the request. + * Sets network tags for the specified instance to the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3349,7 +3412,7 @@ public final UnaryCallable setTagsInstanc // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Simulates a maintenance event on the instance. + * Simulates a maintenance event on the instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3375,7 +3438,7 @@ public final Operation simulateMaintenanceEventInstance(ProjectZoneInstanceName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Simulates a maintenance event on the instance. + * Simulates a maintenance event on the instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3399,7 +3462,7 @@ public final Operation simulateMaintenanceEventInstance(String instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Simulates a maintenance event on the instance. + * Simulates a maintenance event on the instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3424,7 +3487,7 @@ public final Operation simulateMaintenanceEventInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Simulates a maintenance event on the instance. + * Simulates a maintenance event on the instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3449,7 +3512,7 @@ public final Operation simulateMaintenanceEventInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Starts an instance that was stopped using the instances().stop method. For more information, - * see Restart an instance. + * see Restart an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3476,7 +3539,7 @@ public final Operation startInstance(ProjectZoneInstanceName instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Starts an instance that was stopped using the instances().stop method. For more information, - * see Restart an instance. + * see Restart an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3501,7 +3564,7 @@ public final Operation startInstance(String instance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Starts an instance that was stopped using the instances().stop method. For more information, - * see Restart an instance. + * see Restart an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3526,7 +3589,7 @@ public final Operation startInstance(StartInstanceHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Starts an instance that was stopped using the instances().stop method. For more information, - * see Restart an instance. + * see Restart an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3550,7 +3613,7 @@ public final UnaryCallable startInstanceCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Starts an instance that was stopped using the instances().stop method. For more information, - * see Restart an instance. + * see Restart an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3583,7 +3646,7 @@ public final Operation startWithEncryptionKeyInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Starts an instance that was stopped using the instances().stop method. For more information, - * see Restart an instance. + * see Restart an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3616,7 +3679,7 @@ public final Operation startWithEncryptionKeyInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Starts an instance that was stopped using the instances().stop method. For more information, - * see Restart an instance. + * see Restart an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3644,7 +3707,7 @@ public final Operation startWithEncryptionKeyInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Starts an instance that was stopped using the instances().stop method. For more information, - * see Restart an instance. + * see Restart an instance. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3673,7 +3736,8 @@ public final Operation startWithEncryptionKeyInstance( * Stops a running instance, shutting it down cleanly, and allows you to restart the instance at a * later time. Stopped instances do not incur VM usage charges while they are stopped. However, * resources that the VM is using, such as persistent disks and static IP addresses, will continue - * to be charged until they are deleted. For more information, see Stopping an instance. + * to be charged until they are deleted. For more information, see Stopping an instance. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3702,7 +3766,8 @@ public final Operation stopInstance(ProjectZoneInstanceName instance) { * Stops a running instance, shutting it down cleanly, and allows you to restart the instance at a * later time. Stopped instances do not incur VM usage charges while they are stopped. However, * resources that the VM is using, such as persistent disks and static IP addresses, will continue - * to be charged until they are deleted. For more information, see Stopping an instance. + * to be charged until they are deleted. For more information, see Stopping an instance. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3729,7 +3794,8 @@ public final Operation stopInstance(String instance) { * Stops a running instance, shutting it down cleanly, and allows you to restart the instance at a * later time. Stopped instances do not incur VM usage charges while they are stopped. However, * resources that the VM is using, such as persistent disks and static IP addresses, will continue - * to be charged until they are deleted. For more information, see Stopping an instance. + * to be charged until they are deleted. For more information, see Stopping an instance. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3756,7 +3822,8 @@ public final Operation stopInstance(StopInstanceHttpRequest request) { * Stops a running instance, shutting it down cleanly, and allows you to restart the instance at a * later time. Stopped instances do not incur VM usage charges while they are stopped. However, * resources that the VM is using, such as persistent disks and static IP addresses, will continue - * to be charged until they are deleted. For more information, see Stopping an instance. + * to be charged until they are deleted. For more information, see Stopping an instance. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3779,7 +3846,8 @@ public final UnaryCallable stopInstanceCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -3810,7 +3878,8 @@ public final TestPermissionsResponse testIamPermissionsInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -3840,7 +3909,8 @@ public final TestPermissionsResponse testIamPermissionsInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -3867,7 +3937,8 @@ public final TestPermissionsResponse testIamPermissionsInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -3895,7 +3966,7 @@ public final TestPermissionsResponse testIamPermissionsInstance( /** * Updates the specified access config from an instance's network interface with the data included * in the request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3933,7 +4004,7 @@ public final Operation updateAccessConfigInstance( /** * Updates the specified access config from an instance's network interface with the data included * in the request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3969,7 +4040,7 @@ public final Operation updateAccessConfigInstance( /** * Updates the specified access config from an instance's network interface with the data included * in the request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -3999,7 +4070,7 @@ public final Operation updateAccessConfigInstance(UpdateAccessConfigInstanceHttp /** * Updates the specified access config from an instance's network interface with the data included * in the request. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4029,7 +4100,7 @@ public final Operation updateAccessConfigInstance(UpdateAccessConfigInstanceHttp /** * Updates the Display config for a VM instance. You can only use this method on a stopped VM * instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4069,7 +4140,7 @@ public final Operation updateDisplayDeviceInstance( /** * Updates the Display config for a VM instance. You can only use this method on a stopped VM * instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4107,7 +4178,7 @@ public final Operation updateDisplayDeviceInstance( /** * Updates the Display config for a VM instance. You can only use this method on a stopped VM * instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4138,7 +4209,7 @@ public final Operation updateDisplayDeviceInstance( /** * Updates the Display config for a VM instance. You can only use this method on a stopped VM * instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4166,7 +4237,8 @@ public final Operation updateDisplayDeviceInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an instance's network interface. This method follows PATCH semantics. + * Updates an instance's network interface. This method follows PATCH semantics. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4208,7 +4280,8 @@ public final Operation updateNetworkInterfaceInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an instance's network interface. This method follows PATCH semantics. + * Updates an instance's network interface. This method follows PATCH semantics. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4250,7 +4323,8 @@ public final Operation updateNetworkInterfaceInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an instance's network interface. This method follows PATCH semantics. + * Updates an instance's network interface. This method follows PATCH semantics. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4281,7 +4355,8 @@ public final Operation updateNetworkInterfaceInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an instance's network interface. This method follows PATCH semantics. + * Updates an instance's network interface. This method follows PATCH semantics. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4313,7 +4388,7 @@ public final Operation updateNetworkInterfaceInstance( /** * Updates the Shielded Instance config for an instance. You can only use this method on a stopped * instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4353,7 +4428,7 @@ public final Operation updateShieldedInstanceConfigInstance( /** * Updates the Shielded Instance config for an instance. You can only use this method on a stopped * instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4393,7 +4468,7 @@ public final Operation updateShieldedInstanceConfigInstance( /** * Updates the Shielded Instance config for an instance. You can only use this method on a stopped * instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -4424,7 +4499,7 @@ public final Operation updateShieldedInstanceConfigInstance( /** * Updates the Shielded Instance config for an instance. You can only use this method on a stopped * instance. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroup.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroup.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroup.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroup.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupClient.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupClient.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupClient.java index d001114fb..89a8a349e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupClient.java +++ b/src/main/java/com/google/cloud/compute/v1/InstanceGroupClient.java @@ -157,7 +157,8 @@ public InstanceGroupStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds a list of instances to the specified instance group. All of the instances in the instance - * group must be in the same network/subnetwork. Read Adding instances for more information. + * group must be in the same network/subnetwork. Read Adding instances for more information. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -189,7 +190,8 @@ public final Operation addInstancesInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds a list of instances to the specified instance group. All of the instances in the instance - * group must be in the same network/subnetwork. Read Adding instances for more information. + * group must be in the same network/subnetwork. Read Adding instances for more information. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -221,7 +223,8 @@ public final Operation addInstancesInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds a list of instances to the specified instance group. All of the instances in the instance - * group must be in the same network/subnetwork. Read Adding instances for more information. + * group must be in the same network/subnetwork. Read Adding instances for more information. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -248,7 +251,8 @@ public final Operation addInstancesInstanceGroup(AddInstancesInstanceGroupHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds a list of instances to the specified instance group. All of the instances in the instance - * group must be in the same network/subnetwork. Read Adding instances for more information. + * group must be in the same network/subnetwork. Read Adding instances for more information. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -274,7 +278,8 @@ public final Operation addInstancesInstanceGroup(AddInstancesInstanceGroupHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups and sorts them by zone. + * Retrieves the list of instance groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -302,7 +307,8 @@ public final AggregatedListInstanceGroupsPagedResponse aggregatedListInstanceGro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups and sorts them by zone. + * Retrieves the list of instance groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -328,7 +334,8 @@ public final AggregatedListInstanceGroupsPagedResponse aggregatedListInstanceGro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups and sorts them by zone. + * Retrieves the list of instance groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -355,7 +362,8 @@ public final AggregatedListInstanceGroupsPagedResponse aggregatedListInstanceGro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups and sorts them by zone. + * Retrieves the list of instance groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -382,7 +390,8 @@ public final AggregatedListInstanceGroupsPagedResponse aggregatedListInstanceGro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups and sorts them by zone. + * Retrieves the list of instance groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -417,7 +426,7 @@ public final AggregatedListInstanceGroupsPagedResponse aggregatedListInstanceGro /** * Deletes the specified instance group. The instances in the group are not deleted. Note that * instance group must not belong to a backend service. Read Deleting an instance group for more - * information. + * information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -445,7 +454,7 @@ public final Operation deleteInstanceGroup(ProjectZoneInstanceGroupName instance /** * Deletes the specified instance group. The instances in the group are not deleted. Note that * instance group must not belong to a backend service. Read Deleting an instance group for more - * information. + * information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -471,7 +480,7 @@ public final Operation deleteInstanceGroup(String instanceGroup) { /** * Deletes the specified instance group. The instances in the group are not deleted. Note that * instance group must not belong to a backend service. Read Deleting an instance group for more - * information. + * information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -497,7 +506,7 @@ public final Operation deleteInstanceGroup(DeleteInstanceGroupHttpRequest reques /** * Deletes the specified instance group. The instances in the group are not deleted. Note that * instance group must not belong to a backend service. Read Deleting an instance group for more - * information. + * information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -522,7 +531,7 @@ public final Operation deleteInstanceGroup(DeleteInstanceGroupHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified instance group. Gets a list of available instance groups by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -549,7 +558,7 @@ public final InstanceGroup getInstanceGroup(ProjectZoneInstanceGroupName instanc // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified instance group. Gets a list of available instance groups by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -574,7 +583,7 @@ public final InstanceGroup getInstanceGroup(String instanceGroup) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified instance group. Gets a list of available instance groups by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -599,7 +608,7 @@ public final InstanceGroup getInstanceGroup(GetInstanceGroupHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified instance group. Gets a list of available instance groups by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -624,7 +633,7 @@ public final InstanceGroup getInstanceGroup(GetInstanceGroupHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an instance group in the specified project using the parameters that are included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -662,7 +671,7 @@ public final Operation insertInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an instance group in the specified project using the parameters that are included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -699,7 +708,7 @@ public final Operation insertInstanceGroup(String zone, InstanceGroup instanceGr // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an instance group in the specified project using the parameters that are included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -726,7 +735,7 @@ public final Operation insertInstanceGroup(InsertInstanceGroupHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an instance group in the specified project using the parameters that are included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -752,7 +761,8 @@ public final Operation insertInstanceGroup(InsertInstanceGroupHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups that are located in the specified project and zone. + * Retrieves the list of instance groups that are located in the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -779,7 +789,8 @@ public final ListInstanceGroupsPagedResponse listInstanceGroups(ProjectZoneName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups that are located in the specified project and zone. + * Retrieves the list of instance groups that are located in the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -804,7 +815,8 @@ public final ListInstanceGroupsPagedResponse listInstanceGroups(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups that are located in the specified project and zone. + * Retrieves the list of instance groups that are located in the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -831,7 +843,8 @@ public final ListInstanceGroupsPagedResponse listInstanceGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups that are located in the specified project and zone. + * Retrieves the list of instance groups that are located in the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -857,7 +870,8 @@ public final ListInstanceGroupsPagedResponse listInstanceGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance groups that are located in the specified project and zone. + * Retrieves the list of instance groups that are located in the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -890,7 +904,8 @@ public final ListInstanceGroupsPagedResponse listInstanceGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the instances in the specified instance group. + * Lists the instances in the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -924,7 +939,8 @@ public final ListInstancesInstanceGroupsPagedResponse listInstancesInstanceGroup // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the instances in the specified instance group. + * Lists the instances in the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -958,7 +974,8 @@ public final ListInstancesInstanceGroupsPagedResponse listInstancesInstanceGroup // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the instances in the specified instance group. + * Lists the instances in the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -987,7 +1004,8 @@ public final ListInstancesInstanceGroupsPagedResponse listInstancesInstanceGroup // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the instances in the specified instance group. + * Lists the instances in the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1016,7 +1034,8 @@ public final ListInstancesInstanceGroupsPagedResponse listInstancesInstanceGroup // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the instances in the specified instance group. + * Lists the instances in the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1056,7 +1075,7 @@ public final ListInstancesInstanceGroupsPagedResponse listInstancesInstanceGroup * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration before the VM instance is removed or - * deleted. + * deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1094,7 +1113,7 @@ public final Operation removeInstancesInstanceGroup( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration before the VM instance is removed or - * deleted. + * deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1132,7 +1151,7 @@ public final Operation removeInstancesInstanceGroup( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration before the VM instance is removed or - * deleted. + * deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1164,7 +1183,7 @@ public final Operation removeInstancesInstanceGroup( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration before the VM instance is removed or - * deleted. + * deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1190,7 +1209,8 @@ public final Operation removeInstancesInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the named ports for the specified instance group. + * Sets the named ports for the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1222,7 +1242,8 @@ public final Operation setNamedPortsInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the named ports for the specified instance group. + * Sets the named ports for the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1254,7 +1275,8 @@ public final Operation setNamedPortsInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the named ports for the specified instance group. + * Sets the named ports for the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1280,7 +1302,8 @@ public final Operation setNamedPortsInstanceGroup(SetNamedPortsInstanceGroupHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the named ports for the specified instance group. + * Sets the named ports for the specified instance group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupList.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManager.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManager.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManager.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManager.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerActionsSummary.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerActionsSummary.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerActionsSummary.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerActionsSummary.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerAutoHealingPolicy.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerAutoHealingPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerAutoHealingPolicy.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerAutoHealingPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerClient.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerClient.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerClient.java index 1e033bedb..b3fc16dc6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerClient.java +++ b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerClient.java @@ -169,7 +169,8 @@ public InstanceGroupManagerStub getStub() { * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -215,7 +216,8 @@ public final Operation abandonInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -260,7 +262,8 @@ public final Operation abandonInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -299,7 +302,8 @@ public final Operation abandonInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -325,7 +329,8 @@ public final Operation abandonInstancesInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of managed instance groups and groups them by zone. + * Retrieves the list of managed instance groups and groups them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -353,7 +358,8 @@ public final AggregatedListInstanceGroupManagersPagedResponse aggregatedListInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of managed instance groups and groups them by zone. + * Retrieves the list of managed instance groups and groups them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -379,7 +385,8 @@ public final AggregatedListInstanceGroupManagersPagedResponse aggregatedListInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of managed instance groups and groups them by zone. + * Retrieves the list of managed instance groups and groups them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -406,7 +413,8 @@ public final AggregatedListInstanceGroupManagersPagedResponse aggregatedListInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of managed instance groups and groups them by zone. + * Retrieves the list of managed instance groups and groups them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -434,7 +442,8 @@ public final AggregatedListInstanceGroupManagersPagedResponse aggregatedListInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of managed instance groups and groups them by zone. + * Retrieves the list of managed instance groups and groups them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -470,7 +479,7 @@ public final AggregatedListInstanceGroupManagersPagedResponse aggregatedListInst /** * Deletes the specified managed instance group and all of the instances in that group. Note that * the instance group must not belong to a backend service. Read Deleting an instance group for - * more information. + * more information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -500,7 +509,7 @@ public final Operation deleteInstanceGroupManager( /** * Deletes the specified managed instance group and all of the instances in that group. Note that * the instance group must not belong to a backend service. Read Deleting an instance group for - * more information. + * more information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -528,7 +537,7 @@ public final Operation deleteInstanceGroupManager(String instanceGroupManager) { /** * Deletes the specified managed instance group and all of the instances in that group. Note that * the instance group must not belong to a backend service. Read Deleting an instance group for - * more information. + * more information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -554,7 +563,7 @@ public final Operation deleteInstanceGroupManager(DeleteInstanceGroupManagerHttp /** * Deletes the specified managed instance group and all of the instances in that group. Note that * the instance group must not belong to a backend service. Read Deleting an instance group for - * more information. + * more information. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -589,7 +598,8 @@ public final Operation deleteInstanceGroupManager(DeleteInstanceGroupManagerHttp * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -634,7 +644,8 @@ public final Operation deleteInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -678,7 +689,8 @@ public final Operation deleteInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -716,7 +728,8 @@ public final Operation deleteInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -743,7 +756,7 @@ public final Operation deleteInstancesInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns all of the details about the specified managed instance group. Gets a list of available - * managed instance groups by making a list() request. + * managed instance groups by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -772,7 +785,7 @@ public final InstanceGroupManager getInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns all of the details about the specified managed instance group. Gets a list of available - * managed instance groups by making a list() request. + * managed instance groups by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -799,7 +812,7 @@ public final InstanceGroupManager getInstanceGroupManager(String instanceGroupMa // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns all of the details about the specified managed instance group. Gets a list of available - * managed instance groups by making a list() request. + * managed instance groups by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -825,7 +838,7 @@ public final InstanceGroupManager getInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns all of the details about the specified managed instance group. Gets a list of available - * managed instance groups by making a list() request. + * managed instance groups by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -856,7 +869,7 @@ public final InstanceGroupManager getInstanceGroupManager( * with the listmanagedinstances method. * *

A managed instance group can have up to 1000 VM instances per group. Please contact Cloud - * Support if you need an increase in this limit. + * Support if you need an increase in this limit. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -900,7 +913,7 @@ public final Operation insertInstanceGroupManager( * with the listmanagedinstances method. * *

A managed instance group can have up to 1000 VM instances per group. Please contact Cloud - * Support if you need an increase in this limit. + * Support if you need an increase in this limit. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -944,7 +957,7 @@ public final Operation insertInstanceGroupManager( * with the listmanagedinstances method. * *

A managed instance group can have up to 1000 VM instances per group. Please contact Cloud - * Support if you need an increase in this limit. + * Support if you need an increase in this limit. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -977,7 +990,7 @@ public final Operation insertInstanceGroupManager(InsertInstanceGroupManagerHttp * with the listmanagedinstances method. * *

A managed instance group can have up to 1000 VM instances per group. Please contact Cloud - * Support if you need an increase in this limit. + * Support if you need an increase in this limit. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1004,7 +1017,7 @@ public final Operation insertInstanceGroupManager(InsertInstanceGroupManagerHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of managed instance groups that are contained within the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1033,7 +1046,7 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of managed instance groups that are contained within the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1059,7 +1072,7 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of managed instance groups that are contained within the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1087,7 +1100,7 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of managed instance groups that are contained within the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1115,7 +1128,7 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of managed instance groups that are contained within the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1151,7 +1164,8 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers( * Lists all of the instances in the managed instance group. Each instance in the list has a * currentAction, which indicates the action that the managed instance group is performing on the * instance. For example, if the group is still creating an instance, the currentAction is - * CREATING. If a previous action failed, the list displays the errors for that failed action. + * CREATING. If a previous action failed, the list displays the errors for that failed action. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1183,7 +1197,8 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers( * Lists all of the instances in the managed instance group. Each instance in the list has a * currentAction, which indicates the action that the managed instance group is performing on the * instance. For example, if the group is still creating an instance, the currentAction is - * CREATING. If a previous action failed, the list displays the errors for that failed action. + * CREATING. If a previous action failed, the list displays the errors for that failed action. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1213,7 +1228,8 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers( * Lists all of the instances in the managed instance group. Each instance in the list has a * currentAction, which indicates the action that the managed instance group is performing on the * instance. For example, if the group is still creating an instance, the currentAction is - * CREATING. If a previous action failed, the list displays the errors for that failed action. + * CREATING. If a previous action failed, the list displays the errors for that failed action. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1242,7 +1258,8 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers( * Lists all of the instances in the managed instance group. Each instance in the list has a * currentAction, which indicates the action that the managed instance group is performing on the * instance. For example, if the group is still creating an instance, the currentAction is - * CREATING. If a previous action failed, the list displays the errors for that failed action. + * CREATING. If a previous action failed, the list displays the errors for that failed action. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1272,7 +1289,7 @@ public final ListInstanceGroupManagersPagedResponse listInstanceGroupManagers( * operation is marked as DONE when the group is patched even if the instances in the group are * still in the process of being patched. You must separately verify the status of the individual * instances with the listManagedInstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1322,7 +1339,7 @@ public final Operation patchInstanceGroupManager( * operation is marked as DONE when the group is patched even if the instances in the group are * still in the process of being patched. You must separately verify the status of the individual * instances with the listManagedInstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1371,7 +1388,7 @@ public final Operation patchInstanceGroupManager( * operation is marked as DONE when the group is patched even if the instances in the group are * still in the process of being patched. You must separately verify the status of the individual * instances with the listManagedInstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1403,7 +1420,7 @@ public final Operation patchInstanceGroupManager(PatchInstanceGroupManagerHttpRe * operation is marked as DONE when the group is patched even if the instances in the group are * still in the process of being patched. You must separately verify the status of the individual * instances with the listManagedInstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1441,7 +1458,8 @@ public final Operation patchInstanceGroupManager(PatchInstanceGroupManagerHttpRe * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1485,7 +1503,8 @@ public final Operation recreateInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1528,7 +1547,8 @@ public final Operation recreateInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1565,7 +1585,8 @@ public final Operation recreateInstancesInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1608,7 +1629,7 @@ public final Operation recreateInstancesInstanceGroupManager( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1658,7 +1679,7 @@ public final Operation resizeInstanceGroupManager( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1706,7 +1727,7 @@ public final Operation resizeInstanceGroupManager(Integer size, String instanceG * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1749,7 +1770,7 @@ public final Operation resizeInstanceGroupManager(ResizeInstanceGroupManagerHttp * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1776,7 +1797,8 @@ public final Operation resizeInstanceGroupManager(ResizeInstanceGroupManagerHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Specifies the instance template to use when creating new instances in this group. The templates - * for existing instances in the group do not change unless you recreate them. + * for existing instances in the group do not change unless you recreate them. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1811,7 +1833,8 @@ public final Operation setInstanceTemplateInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Specifies the instance template to use when creating new instances in this group. The templates - * for existing instances in the group do not change unless you recreate them. + * for existing instances in the group do not change unless you recreate them. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1845,7 +1868,8 @@ public final Operation setInstanceTemplateInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Specifies the instance template to use when creating new instances in this group. The templates - * for existing instances in the group do not change unless you recreate them. + * for existing instances in the group do not change unless you recreate them. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1873,7 +1897,8 @@ public final Operation setInstanceTemplateInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Specifies the instance template to use when creating new instances in this group. The templates - * for existing instances in the group do not change unless you recreate them. + * for existing instances in the group do not change unless you recreate them. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1903,7 +1928,7 @@ public final Operation setInstanceTemplateInstanceGroupManager( * The target pools automatically apply to all of the instances in the managed instance group. * This operation is marked DONE when you make the request even if the instances have not yet been * added to their target pools. The change might take some time to apply to all of the instances - * in the group depending on the size of the group. + * in the group depending on the size of the group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1941,7 +1966,7 @@ public final Operation setTargetPoolsInstanceGroupManager( * The target pools automatically apply to all of the instances in the managed instance group. * This operation is marked DONE when you make the request even if the instances have not yet been * added to their target pools. The change might take some time to apply to all of the instances - * in the group depending on the size of the group. + * in the group depending on the size of the group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1978,7 +2003,7 @@ public final Operation setTargetPoolsInstanceGroupManager( * The target pools automatically apply to all of the instances in the managed instance group. * This operation is marked DONE when you make the request even if the instances have not yet been * added to their target pools. The change might take some time to apply to all of the instances - * in the group depending on the size of the group. + * in the group depending on the size of the group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -2009,7 +2034,7 @@ public final Operation setTargetPoolsInstanceGroupManager( * The target pools automatically apply to all of the instances in the managed instance group. * This operation is marked DONE when you make the request even if the instances have not yet been * added to their target pools. The change might take some time to apply to all of the instances - * in the group depending on the size of the group. + * in the group depending on the size of the group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerList.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerSettings.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerSettings.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerStatus.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerStatus.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerUpdatePolicy.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerUpdatePolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerUpdatePolicy.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerUpdatePolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerVersion.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerVersion.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerVersion.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagerVersion.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersAbandonInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersAbandonInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersAbandonInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersAbandonInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersDeleteInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersDeleteInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersDeleteInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersDeleteInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersListManagedInstancesResponse.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersListManagedInstancesResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersListManagedInstancesResponse.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersListManagedInstancesResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersRecreateInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersRecreateInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersRecreateInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersRecreateInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersScopedList.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersScopedList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersSetInstanceTemplateRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersSetInstanceTemplateRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersSetInstanceTemplateRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersSetInstanceTemplateRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersSetTargetPoolsRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersSetTargetPoolsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersSetTargetPoolsRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupManagersSetTargetPoolsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupSettings.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupSettings.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsAddInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupsAddInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsAddInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupsAddInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsListInstances.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupsListInstances.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsListInstances.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupsListInstances.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsListInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupsListInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsListInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupsListInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsRemoveInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupsRemoveInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsRemoveInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupsRemoveInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsScopedList.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsSetNamedPortsRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceGroupsSetNamedPortsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceGroupsSetNamedPortsRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceGroupsSetNamedPortsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceList.java b/src/main/java/com/google/cloud/compute/v1/InstanceList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceListReferrers.java b/src/main/java/com/google/cloud/compute/v1/InstanceListReferrers.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceListReferrers.java rename to src/main/java/com/google/cloud/compute/v1/InstanceListReferrers.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceMoveRequest.java b/src/main/java/com/google/cloud/compute/v1/InstanceMoveRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceMoveRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstanceMoveRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceProperties.java b/src/main/java/com/google/cloud/compute/v1/InstanceProperties.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceProperties.java rename to src/main/java/com/google/cloud/compute/v1/InstanceProperties.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceReference.java b/src/main/java/com/google/cloud/compute/v1/InstanceReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceReference.java rename to src/main/java/com/google/cloud/compute/v1/InstanceReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceSettings.java b/src/main/java/com/google/cloud/compute/v1/InstanceSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceSettings.java rename to src/main/java/com/google/cloud/compute/v1/InstanceSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplate.java b/src/main/java/com/google/cloud/compute/v1/InstanceTemplate.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplate.java rename to src/main/java/com/google/cloud/compute/v1/InstanceTemplate.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplateClient.java b/src/main/java/com/google/cloud/compute/v1/InstanceTemplateClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplateClient.java rename to src/main/java/com/google/cloud/compute/v1/InstanceTemplateClient.java index fed90a2df..ea9e629ba 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplateClient.java +++ b/src/main/java/com/google/cloud/compute/v1/InstanceTemplateClient.java @@ -158,7 +158,7 @@ public InstanceTemplateStub getStub() { /** * Deletes the specified instance template. Deleting an instance template is permanent and cannot * be undone. It is not possible to delete templates that are already in use by a managed instance - * group. + * group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -187,7 +187,7 @@ public final Operation deleteInstanceTemplate( /** * Deletes the specified instance template. Deleting an instance template is permanent and cannot * be undone. It is not possible to delete templates that are already in use by a managed instance - * group. + * group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -215,7 +215,7 @@ public final Operation deleteInstanceTemplate(String instanceTemplate) { /** * Deletes the specified instance template. Deleting an instance template is permanent and cannot * be undone. It is not possible to delete templates that are already in use by a managed instance - * group. + * group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -241,7 +241,7 @@ public final Operation deleteInstanceTemplate(DeleteInstanceTemplateHttpRequest /** * Deletes the specified instance template. Deleting an instance template is permanent and cannot * be undone. It is not possible to delete templates that are already in use by a managed instance - * group. + * group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -266,7 +266,7 @@ public final Operation deleteInstanceTemplate(DeleteInstanceTemplateHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified instance template. Gets a list of available instance templates by making - * a list() request. + * a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -294,7 +294,7 @@ public final InstanceTemplate getInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified instance template. Gets a list of available instance templates by making - * a list() request. + * a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -319,7 +319,7 @@ public final InstanceTemplate getInstanceTemplate(String instanceTemplate) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified instance template. Gets a list of available instance templates by making - * a list() request. + * a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -344,7 +344,7 @@ public final InstanceTemplate getInstanceTemplate(GetInstanceTemplateHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified instance template. Gets a list of available instance templates by making - * a list() request. + * a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -369,7 +369,7 @@ public final InstanceTemplate getInstanceTemplate(GetInstanceTemplateHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -397,7 +397,7 @@ public final Policy getIamPolicyInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -422,7 +422,7 @@ public final Policy getIamPolicyInstanceTemplate(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -448,7 +448,7 @@ public final Policy getIamPolicyInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -475,7 +475,7 @@ public final Policy getIamPolicyInstanceTemplate( * Creates an instance template in the specified project using the data that is included in the * request. If you are creating a new template to update an existing instance group, your new * instance template must use the same network or, if applicable, the same subnetwork as the - * original template. + * original template. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -511,7 +511,7 @@ public final Operation insertInstanceTemplate( * Creates an instance template in the specified project using the data that is included in the * request. If you are creating a new template to update an existing instance group, your new * instance template must use the same network or, if applicable, the same subnetwork as the - * original template. + * original template. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -547,7 +547,7 @@ public final Operation insertInstanceTemplate( * Creates an instance template in the specified project using the data that is included in the * request. If you are creating a new template to update an existing instance group, your new * instance template must use the same network or, if applicable, the same subnetwork as the - * original template. + * original template. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -576,7 +576,7 @@ public final Operation insertInstanceTemplate(InsertInstanceTemplateHttpRequest * Creates an instance template in the specified project using the data that is included in the * request. If you are creating a new template to update an existing instance group, your new * instance template must use the same network or, if applicable, the same subnetwork as the - * original template. + * original template. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -602,7 +602,8 @@ public final Operation insertInstanceTemplate(InsertInstanceTemplateHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of instance templates that are contained within the specified project. + * Retrieves a list of instance templates that are contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -629,7 +630,8 @@ public final ListInstanceTemplatesPagedResponse listInstanceTemplates(ProjectNam // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of instance templates that are contained within the specified project. + * Retrieves a list of instance templates that are contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -654,7 +656,8 @@ public final ListInstanceTemplatesPagedResponse listInstanceTemplates(String pro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of instance templates that are contained within the specified project. + * Retrieves a list of instance templates that are contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -681,7 +684,8 @@ public final ListInstanceTemplatesPagedResponse listInstanceTemplates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of instance templates that are contained within the specified project. + * Retrieves a list of instance templates that are contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -707,7 +711,8 @@ public final ListInstanceTemplatesPagedResponse listInstanceTemplates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of instance templates that are contained within the specified project. + * Retrieves a list of instance templates that are contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -740,7 +745,8 @@ public final ListInstanceTemplatesPagedResponse listInstanceTemplates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -771,7 +777,8 @@ public final Policy setIamPolicyInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -801,7 +808,8 @@ public final Policy setIamPolicyInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -828,7 +836,8 @@ public final Policy setIamPolicyInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -854,7 +863,8 @@ public final Policy setIamPolicyInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -885,7 +895,8 @@ public final TestPermissionsResponse testIamPermissionsInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -915,7 +926,8 @@ public final TestPermissionsResponse testIamPermissionsInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -942,7 +954,8 @@ public final TestPermissionsResponse testIamPermissionsInstanceTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplateList.java b/src/main/java/com/google/cloud/compute/v1/InstanceTemplateList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplateList.java rename to src/main/java/com/google/cloud/compute/v1/InstanceTemplateList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplateSettings.java b/src/main/java/com/google/cloud/compute/v1/InstanceTemplateSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceTemplateSettings.java rename to src/main/java/com/google/cloud/compute/v1/InstanceTemplateSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceWithNamedPorts.java b/src/main/java/com/google/cloud/compute/v1/InstanceWithNamedPorts.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstanceWithNamedPorts.java rename to src/main/java/com/google/cloud/compute/v1/InstanceWithNamedPorts.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesScopedList.java b/src/main/java/com/google/cloud/compute/v1/InstancesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/InstancesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetLabelsRequest.java b/src/main/java/com/google/cloud/compute/v1/InstancesSetLabelsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetLabelsRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstancesSetLabelsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetMachineResourcesRequest.java b/src/main/java/com/google/cloud/compute/v1/InstancesSetMachineResourcesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetMachineResourcesRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstancesSetMachineResourcesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetMachineTypeRequest.java b/src/main/java/com/google/cloud/compute/v1/InstancesSetMachineTypeRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetMachineTypeRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstancesSetMachineTypeRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetMinCpuPlatformRequest.java b/src/main/java/com/google/cloud/compute/v1/InstancesSetMinCpuPlatformRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetMinCpuPlatformRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstancesSetMinCpuPlatformRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetServiceAccountRequest.java b/src/main/java/com/google/cloud/compute/v1/InstancesSetServiceAccountRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesSetServiceAccountRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstancesSetServiceAccountRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesStartWithEncryptionKeyRequest.java b/src/main/java/com/google/cloud/compute/v1/InstancesStartWithEncryptionKeyRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InstancesStartWithEncryptionKeyRequest.java rename to src/main/java/com/google/cloud/compute/v1/InstancesStartWithEncryptionKeyRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Int64RangeMatch.java b/src/main/java/com/google/cloud/compute/v1/Int64RangeMatch.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Int64RangeMatch.java rename to src/main/java/com/google/cloud/compute/v1/Int64RangeMatch.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Interconnect.java b/src/main/java/com/google/cloud/compute/v1/Interconnect.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Interconnect.java rename to src/main/java/com/google/cloud/compute/v1/Interconnect.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachment.java b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachment.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachment.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectAttachment.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentClient.java b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentClient.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentClient.java index 1f54f1278..8a8287625 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentClient.java +++ b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentClient.java @@ -157,7 +157,8 @@ public InterconnectAttachmentStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of interconnect attachments. + * Retrieves an aggregated list of interconnect attachments. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -185,7 +186,8 @@ public InterconnectAttachmentStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of interconnect attachments. + * Retrieves an aggregated list of interconnect attachments. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -211,7 +213,8 @@ public InterconnectAttachmentStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of interconnect attachments. + * Retrieves an aggregated list of interconnect attachments. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -239,7 +242,8 @@ public InterconnectAttachmentStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of interconnect attachments. + * Retrieves an aggregated list of interconnect attachments. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -267,7 +271,8 @@ public InterconnectAttachmentStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of interconnect attachments. + * Retrieves an aggregated list of interconnect attachments. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -301,7 +306,7 @@ public InterconnectAttachmentStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified interconnect attachment. + * Deletes the specified interconnect attachment. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -329,7 +334,7 @@ public final Operation deleteInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified interconnect attachment. + * Deletes the specified interconnect attachment. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -355,7 +360,7 @@ public final Operation deleteInterconnectAttachment(String interconnectAttachmen // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified interconnect attachment. + * Deletes the specified interconnect attachment. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -380,7 +385,7 @@ public final Operation deleteInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified interconnect attachment. + * Deletes the specified interconnect attachment. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -404,7 +409,7 @@ public final Operation deleteInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified interconnect attachment. + * Returns the specified interconnect attachment. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -432,7 +437,7 @@ public final InterconnectAttachment getInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified interconnect attachment. + * Returns the specified interconnect attachment. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -458,7 +463,7 @@ public final InterconnectAttachment getInterconnectAttachment(String interconnec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified interconnect attachment. + * Returns the specified interconnect attachment. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -483,7 +488,7 @@ public final InterconnectAttachment getInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified interconnect attachment. + * Returns the specified interconnect attachment. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -508,7 +513,7 @@ public final InterconnectAttachment getInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an InterconnectAttachment in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -543,7 +548,7 @@ public final Operation insertInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an InterconnectAttachment in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -578,7 +583,7 @@ public final Operation insertInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an InterconnectAttachment in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -606,7 +611,7 @@ public final Operation insertInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates an InterconnectAttachment in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -632,7 +637,8 @@ public final Operation insertInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect attachments contained within the specified region. + * Retrieves the list of interconnect attachments contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -660,7 +666,8 @@ public final ListInterconnectAttachmentsPagedResponse listInterconnectAttachment // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect attachments contained within the specified region. + * Retrieves the list of interconnect attachments contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -685,7 +692,8 @@ public final ListInterconnectAttachmentsPagedResponse listInterconnectAttachment // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect attachments contained within the specified region. + * Retrieves the list of interconnect attachments contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -712,7 +720,8 @@ public final ListInterconnectAttachmentsPagedResponse listInterconnectAttachment // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect attachments contained within the specified region. + * Retrieves the list of interconnect attachments contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -739,7 +748,8 @@ public final ListInterconnectAttachmentsPagedResponse listInterconnectAttachment // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect attachments contained within the specified region. + * Retrieves the list of interconnect attachments contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -773,7 +783,8 @@ public final ListInterconnectAttachmentsPagedResponse listInterconnectAttachment // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified interconnect attachment with the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -817,7 +828,8 @@ public final Operation patchInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified interconnect attachment with the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -860,7 +872,8 @@ public final Operation patchInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified interconnect attachment with the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -890,7 +903,8 @@ public final Operation patchInterconnectAttachment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified interconnect attachment with the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentList.java b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentList.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentPartnerMetadata.java b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentPartnerMetadata.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentPartnerMetadata.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentPartnerMetadata.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentPrivateInfo.java b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentPrivateInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentPrivateInfo.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentPrivateInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentSettings.java b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentSettings.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentsScopedList.java b/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectAttachmentsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectCircuitInfo.java b/src/main/java/com/google/cloud/compute/v1/InterconnectCircuitInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectCircuitInfo.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectCircuitInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectClient.java b/src/main/java/com/google/cloud/compute/v1/InterconnectClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectClient.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectClient.java index 15cbb213b..003212733 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectClient.java +++ b/src/main/java/com/google/cloud/compute/v1/InterconnectClient.java @@ -154,7 +154,7 @@ public InterconnectStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified interconnect. + * Deletes the specified interconnect. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -180,7 +180,7 @@ public final Operation deleteInterconnect(ProjectGlobalInterconnectName intercon // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified interconnect. + * Deletes the specified interconnect. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -204,7 +204,7 @@ public final Operation deleteInterconnect(String interconnect) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified interconnect. + * Deletes the specified interconnect. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -228,7 +228,7 @@ public final Operation deleteInterconnect(DeleteInterconnectHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified interconnect. + * Deletes the specified interconnect. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -253,7 +253,7 @@ public final Operation deleteInterconnect(DeleteInterconnectHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified interconnect. Get a list of available interconnects by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -280,7 +280,7 @@ public final Interconnect getInterconnect(ProjectGlobalInterconnectName intercon // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified interconnect. Get a list of available interconnects by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -305,7 +305,7 @@ public final Interconnect getInterconnect(String interconnect) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified interconnect. Get a list of available interconnects by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -330,7 +330,7 @@ public final Interconnect getInterconnect(GetInterconnectHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified interconnect. Get a list of available interconnects by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -353,7 +353,8 @@ public final UnaryCallable getIntercon // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the interconnectDiagnostics for the specified interconnect. + * Returns the interconnectDiagnostics for the specified interconnect. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -380,7 +381,8 @@ public final InterconnectsGetDiagnosticsResponse getDiagnosticsInterconnect( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the interconnectDiagnostics for the specified interconnect. + * Returns the interconnectDiagnostics for the specified interconnect. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -404,7 +406,8 @@ public final InterconnectsGetDiagnosticsResponse getDiagnosticsInterconnect(Stri // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the interconnectDiagnostics for the specified interconnect. + * Returns the interconnectDiagnostics for the specified interconnect. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -429,7 +432,8 @@ public final InterconnectsGetDiagnosticsResponse getDiagnosticsInterconnect( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the interconnectDiagnostics for the specified interconnect. + * Returns the interconnectDiagnostics for the specified interconnect. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -454,7 +458,8 @@ public final InterconnectsGetDiagnosticsResponse getDiagnosticsInterconnect( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a Interconnect in the specified project using the data included in the request. + * Creates a Interconnect in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -487,7 +492,8 @@ public final Operation insertInterconnect( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a Interconnect in the specified project using the data included in the request. + * Creates a Interconnect in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -519,7 +525,8 @@ public final Operation insertInterconnect(String project, Interconnect interconn // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a Interconnect in the specified project using the data included in the request. + * Creates a Interconnect in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -545,7 +552,8 @@ public final Operation insertInterconnect(InsertInterconnectHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a Interconnect in the specified project using the data included in the request. + * Creates a Interconnect in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -571,7 +579,8 @@ public final Operation insertInterconnect(InsertInterconnectHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect available to the specified project. + * Retrieves the list of interconnect available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -598,7 +607,8 @@ public final ListInterconnectsPagedResponse listInterconnects(ProjectName projec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect available to the specified project. + * Retrieves the list of interconnect available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -623,7 +633,8 @@ public final ListInterconnectsPagedResponse listInterconnects(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect available to the specified project. + * Retrieves the list of interconnect available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -650,7 +661,8 @@ public final ListInterconnectsPagedResponse listInterconnects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect available to the specified project. + * Retrieves the list of interconnect available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -676,7 +688,8 @@ public final ListInterconnectsPagedResponse listInterconnects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect available to the specified project. + * Retrieves the list of interconnect available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -710,7 +723,8 @@ public final ListInterconnectsPagedResponse listInterconnects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified interconnect with the data included in the request. This method supports - * PATCH semantics and uses the JSON merge patch format and processing rules. + * PATCH semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -752,7 +766,8 @@ public final Operation patchInterconnect( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified interconnect with the data included in the request. This method supports - * PATCH semantics and uses the JSON merge patch format and processing rules. + * PATCH semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -792,7 +807,8 @@ public final Operation patchInterconnect( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified interconnect with the data included in the request. This method supports - * PATCH semantics and uses the JSON merge patch format and processing rules. + * PATCH semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -821,7 +837,8 @@ public final Operation patchInterconnect(PatchInterconnectHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates the specified interconnect with the data included in the request. This method supports - * PATCH semantics and uses the JSON merge patch format and processing rules. + * PATCH semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnostics.java b/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnostics.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnostics.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectDiagnostics.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsARPEntry.java b/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsARPEntry.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsARPEntry.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsARPEntry.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkLACPStatus.java b/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkLACPStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkLACPStatus.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkLACPStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkOpticalPower.java b/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkOpticalPower.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkOpticalPower.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkOpticalPower.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkStatus.java b/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkStatus.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectDiagnosticsLinkStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectList.java b/src/main/java/com/google/cloud/compute/v1/InterconnectList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectList.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocation.java b/src/main/java/com/google/cloud/compute/v1/InterconnectLocation.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocation.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectLocation.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationClient.java b/src/main/java/com/google/cloud/compute/v1/InterconnectLocationClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationClient.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectLocationClient.java index 20c15d5e0..bb0170042 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationClient.java +++ b/src/main/java/com/google/cloud/compute/v1/InterconnectLocationClient.java @@ -157,7 +157,7 @@ public InterconnectLocationStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the details for the specified interconnect location. Gets a list of available - * interconnect locations by making a list() request. + * interconnect locations by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -186,7 +186,7 @@ public final InterconnectLocation getInterconnectLocation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the details for the specified interconnect location. Gets a list of available - * interconnect locations by making a list() request. + * interconnect locations by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -213,7 +213,7 @@ public final InterconnectLocation getInterconnectLocation(String interconnectLoc // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the details for the specified interconnect location. Gets a list of available - * interconnect locations by making a list() request. + * interconnect locations by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -239,7 +239,7 @@ public final InterconnectLocation getInterconnectLocation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the details for the specified interconnect location. Gets a list of available - * interconnect locations by making a list() request. + * interconnect locations by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -263,7 +263,8 @@ public final InterconnectLocation getInterconnectLocation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect locations available to the specified project. + * Retrieves the list of interconnect locations available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -291,7 +292,8 @@ public final ListInterconnectLocationsPagedResponse listInterconnectLocations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect locations available to the specified project. + * Retrieves the list of interconnect locations available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -316,7 +318,8 @@ public final ListInterconnectLocationsPagedResponse listInterconnectLocations(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect locations available to the specified project. + * Retrieves the list of interconnect locations available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -343,7 +346,8 @@ public final ListInterconnectLocationsPagedResponse listInterconnectLocations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect locations available to the specified project. + * Retrieves the list of interconnect locations available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -370,7 +374,8 @@ public final ListInterconnectLocationsPagedResponse listInterconnectLocations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of interconnect locations available to the specified project. + * Retrieves the list of interconnect locations available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationList.java b/src/main/java/com/google/cloud/compute/v1/InterconnectLocationList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationList.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectLocationList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationRegionInfo.java b/src/main/java/com/google/cloud/compute/v1/InterconnectLocationRegionInfo.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationRegionInfo.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectLocationRegionInfo.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationSettings.java b/src/main/java/com/google/cloud/compute/v1/InterconnectLocationSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectLocationSettings.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectLocationSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectOutageNotification.java b/src/main/java/com/google/cloud/compute/v1/InterconnectOutageNotification.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectOutageNotification.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectOutageNotification.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectSettings.java b/src/main/java/com/google/cloud/compute/v1/InterconnectSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectSettings.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectsGetDiagnosticsResponse.java b/src/main/java/com/google/cloud/compute/v1/InterconnectsGetDiagnosticsResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InterconnectsGetDiagnosticsResponse.java rename to src/main/java/com/google/cloud/compute/v1/InterconnectsGetDiagnosticsResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InvalidateCacheUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/InvalidateCacheUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InvalidateCacheUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/InvalidateCacheUrlMapHttpRequest.java index 8af7797ce..a5ac24ca2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/InvalidateCacheUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/InvalidateCacheUrlMapHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.urlMaps.invalidateCache. Initiates a cache invalidation - * operation, invalidating the specified path, scoped to the specified UrlMap. + * operation, invalidating the specified path, scoped to the specified UrlMap. (== suppress_warning + * http-rest-shadowed ==) */ public final class InvalidateCacheUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Items.java b/src/main/java/com/google/cloud/compute/v1/Items.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Items.java rename to src/main/java/com/google/cloud/compute/v1/Items.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/License.java b/src/main/java/com/google/cloud/compute/v1/License.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/License.java rename to src/main/java/com/google/cloud/compute/v1/License.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseClient.java b/src/main/java/com/google/cloud/compute/v1/LicenseClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseClient.java rename to src/main/java/com/google/cloud/compute/v1/LicenseClient.java index 79494c4bd..75de0a9cc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseClient.java +++ b/src/main/java/com/google/cloud/compute/v1/LicenseClient.java @@ -153,7 +153,7 @@ public LicenseStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified license. + * Deletes the specified license. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -179,7 +179,7 @@ public final Operation deleteLicense(ProjectGlobalLicenseName license) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified license. + * Deletes the specified license. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -203,7 +203,7 @@ public final Operation deleteLicense(String license) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified license. + * Deletes the specified license. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -227,7 +227,7 @@ public final Operation deleteLicense(DeleteLicenseHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified license. + * Deletes the specified license. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -250,7 +250,7 @@ public final UnaryCallable deleteLicenseCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified License resource. + * Returns the specified License resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -276,7 +276,7 @@ public final License getLicense(ProjectGlobalLicenseName license) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified License resource. + * Returns the specified License resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -299,7 +299,7 @@ public final License getLicense(String license) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified License resource. + * Returns the specified License resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -323,7 +323,7 @@ public final License getLicense(GetLicenseHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified License resource. + * Returns the specified License resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -347,7 +347,7 @@ public final UnaryCallable getLicenseCallable() // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -374,7 +374,7 @@ public final Policy getIamPolicyLicense(ProjectGlobalLicenseResourceName resourc // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -399,7 +399,7 @@ public final Policy getIamPolicyLicense(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -424,7 +424,7 @@ public final Policy getIamPolicyLicense(GetIamPolicyLicenseHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -447,7 +447,7 @@ public final UnaryCallable getIamPolicyL // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Create a License resource in the specified project. + * Create a License resource in the specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -476,7 +476,7 @@ public final Operation insertLicense(ProjectName project, License licenseResourc // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Create a License resource in the specified project. + * Create a License resource in the specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -505,7 +505,7 @@ public final Operation insertLicense(String project, License licenseResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Create a License resource in the specified project. + * Create a License resource in the specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -531,7 +531,7 @@ public final Operation insertLicense(InsertLicenseHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Create a License resource in the specified project. + * Create a License resource in the specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -560,7 +560,7 @@ public final UnaryCallable insertLicenseCal * licenses that belong to other projects, including licenses attached to publicly-available * images, like Debian 9. If you want to get a list of publicly-available licenses, use this * method to make a request to the respective image project, such as debian-cloud or - * windows-cloud. + * windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -591,7 +591,7 @@ public final ListLicensesPagedResponse listLicenses(ProjectName project) { * licenses that belong to other projects, including licenses attached to publicly-available * images, like Debian 9. If you want to get a list of publicly-available licenses, use this * method to make a request to the respective image project, such as debian-cloud or - * windows-cloud. + * windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -620,7 +620,7 @@ public final ListLicensesPagedResponse listLicenses(String project) { * licenses that belong to other projects, including licenses attached to publicly-available * images, like Debian 9. If you want to get a list of publicly-available licenses, use this * method to make a request to the respective image project, such as debian-cloud or - * windows-cloud. + * windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -650,7 +650,7 @@ public final ListLicensesPagedResponse listLicenses(ListLicensesHttpRequest requ * licenses that belong to other projects, including licenses attached to publicly-available * images, like Debian 9. If you want to get a list of publicly-available licenses, use this * method to make a request to the respective image project, such as debian-cloud or - * windows-cloud. + * windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -680,7 +680,7 @@ public final ListLicensesPagedResponse listLicenses(ListLicensesHttpRequest requ * licenses that belong to other projects, including licenses attached to publicly-available * images, like Debian 9. If you want to get a list of publicly-available licenses, use this * method to make a request to the respective image project, such as debian-cloud or - * windows-cloud. + * windows-cloud. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -712,7 +712,8 @@ public final UnaryCallable listLi // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -743,7 +744,8 @@ public final Policy setIamPolicyLicense( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -773,7 +775,8 @@ public final Policy setIamPolicyLicense( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -799,7 +802,8 @@ public final Policy setIamPolicyLicense(SetIamPolicyLicenseHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -824,7 +828,8 @@ public final UnaryCallable setIamPolicyL // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -855,7 +860,8 @@ public final TestPermissionsResponse testIamPermissionsLicense( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -885,7 +891,8 @@ public final TestPermissionsResponse testIamPermissionsLicense( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -912,7 +919,8 @@ public final TestPermissionsResponse testIamPermissionsLicense( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCode.java b/src/main/java/com/google/cloud/compute/v1/LicenseCode.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCode.java rename to src/main/java/com/google/cloud/compute/v1/LicenseCode.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCodeClient.java b/src/main/java/com/google/cloud/compute/v1/LicenseCodeClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCodeClient.java rename to src/main/java/com/google/cloud/compute/v1/LicenseCodeClient.java index 137900682..f1247c9a9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCodeClient.java +++ b/src/main/java/com/google/cloud/compute/v1/LicenseCodeClient.java @@ -146,7 +146,7 @@ public LicenseCodeStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Return a specified license code. License codes are mirrored across all projects that have - * permissions to read the License Code. + * permissions to read the License Code. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -173,7 +173,7 @@ public final LicenseCode getLicenseCode(ProjectGlobalLicenseCodeName licenseCode // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Return a specified license code. License codes are mirrored across all projects that have - * permissions to read the License Code. + * permissions to read the License Code. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -198,7 +198,7 @@ public final LicenseCode getLicenseCode(String licenseCode) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Return a specified license code. License codes are mirrored across all projects that have - * permissions to read the License Code. + * permissions to read the License Code. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -223,7 +223,7 @@ public final LicenseCode getLicenseCode(GetLicenseCodeHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Return a specified license code. License codes are mirrored across all projects that have - * permissions to read the License Code. + * permissions to read the License Code. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -246,7 +246,8 @@ public final UnaryCallable getLicenseCod // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -277,7 +278,8 @@ public final TestPermissionsResponse testIamPermissionsLicenseCode( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -307,7 +309,8 @@ public final TestPermissionsResponse testIamPermissionsLicenseCode( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -334,7 +337,8 @@ public final TestPermissionsResponse testIamPermissionsLicenseCode( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCodeLicenseAlias.java b/src/main/java/com/google/cloud/compute/v1/LicenseCodeLicenseAlias.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCodeLicenseAlias.java rename to src/main/java/com/google/cloud/compute/v1/LicenseCodeLicenseAlias.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCodeSettings.java b/src/main/java/com/google/cloud/compute/v1/LicenseCodeSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseCodeSettings.java rename to src/main/java/com/google/cloud/compute/v1/LicenseCodeSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseResourceRequirements.java b/src/main/java/com/google/cloud/compute/v1/LicenseResourceRequirements.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseResourceRequirements.java rename to src/main/java/com/google/cloud/compute/v1/LicenseResourceRequirements.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseSettings.java b/src/main/java/com/google/cloud/compute/v1/LicenseSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicenseSettings.java rename to src/main/java/com/google/cloud/compute/v1/LicenseSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicensesListResponse.java b/src/main/java/com/google/cloud/compute/v1/LicensesListResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LicensesListResponse.java rename to src/main/java/com/google/cloud/compute/v1/LicensesListResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAcceleratorTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListAcceleratorTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAcceleratorTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListAcceleratorTypesHttpRequest.java index ba1eb0667..9109f981d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAcceleratorTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListAcceleratorTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.acceleratorTypes.list. Retrieves a list of accelerator types - * available to the specified project. + * available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListAcceleratorTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAddressesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListAddressesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAddressesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListAddressesHttpRequest.java index 470f654a7..650aeeb29 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAddressesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListAddressesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.addresses.list. Retrieves a list of addresses contained within - * the specified region. + * the specified region. (== suppress_warning http-rest-shadowed ==) */ public final class ListAddressesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAutoscalersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListAutoscalersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAutoscalersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListAutoscalersHttpRequest.java index 9436d55b1..85210e600 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAutoscalersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListAutoscalersHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.autoscalers.list. Retrieves a list of autoscalers contained - * within the specified zone. + * within the specified zone. (== suppress_warning http-rest-shadowed ==) */ public final class ListAutoscalersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAvailableFeaturesSslPoliciesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListAvailableFeaturesSslPoliciesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAvailableFeaturesSslPoliciesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListAvailableFeaturesSslPoliciesHttpRequest.java index 3270c8a07..1fbf196ee 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListAvailableFeaturesSslPoliciesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListAvailableFeaturesSslPoliciesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.sslPolicies.listAvailableFeatures. Lists all features that can - * be specified in the SSL policy when using custom profile. + * be specified in the SSL policy when using custom profile. (== suppress_warning http-rest-shadowed + * ==) */ public final class ListAvailableFeaturesSslPoliciesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListBackendBucketsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListBackendBucketsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListBackendBucketsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListBackendBucketsHttpRequest.java index ef90569f9..8515e23c7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListBackendBucketsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListBackendBucketsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendBuckets.list. Retrieves the list of BackendBucket - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListBackendBucketsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListBackendServicesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListBackendServicesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListBackendServicesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListBackendServicesHttpRequest.java index e5c96ff43..b70788855 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListBackendServicesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListBackendServicesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendServices.list. Retrieves the list of BackendService - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListBackendServicesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListDiskTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListDiskTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListDiskTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListDiskTypesHttpRequest.java index 719d520a2..1e3424a03 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListDiskTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListDiskTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.diskTypes.list. Retrieves a list of disk types available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListDiskTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListDisksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListDisksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListDisksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListDisksHttpRequest.java index 3e268e5f6..c41be0073 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListDisksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListDisksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.disks.list. Retrieves a list of persistent disks contained - * within the specified zone. + * within the specified zone. (== suppress_warning http-rest-shadowed ==) */ public final class ListDisksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListExternalVpnGatewaysHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListExternalVpnGatewaysHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListExternalVpnGatewaysHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListExternalVpnGatewaysHttpRequest.java index f1eae71f8..4d8a5a1cd 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListExternalVpnGatewaysHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListExternalVpnGatewaysHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.externalVpnGateways.list. Retrieves the list of - * ExternalVpnGateway available to the specified project. + * ExternalVpnGateway available to the specified project. (== suppress_warning http-rest-shadowed + * ==) */ public final class ListExternalVpnGatewaysHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListFirewallsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListFirewallsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListFirewallsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListFirewallsHttpRequest.java index ed4f6d5ab..8db46535f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListFirewallsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListFirewallsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.firewalls.list. Retrieves the list of firewall rules available - * to the specified project. + * to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListFirewallsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListForwardingRulesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListForwardingRulesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListForwardingRulesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListForwardingRulesHttpRequest.java index bcca21ba1..6e2fbc423 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListForwardingRulesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListForwardingRulesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.forwardingRules.list. Retrieves a list of ForwardingRule - * resources available to the specified project and region. + * resources available to the specified project and region. (== suppress_warning http-rest-shadowed + * ==) */ public final class ListForwardingRulesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalAddressesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListGlobalAddressesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalAddressesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListGlobalAddressesHttpRequest.java index b1b6861c6..69679e9c2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalAddressesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListGlobalAddressesHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.globalAddresses.list. Retrieves a list of global addresses. */ +/** + * Request object for method compute.globalAddresses.list. Retrieves a list of global addresses. (== + * suppress_warning http-rest-shadowed ==) + */ public final class ListGlobalAddressesHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalForwardingRulesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListGlobalForwardingRulesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalForwardingRulesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListGlobalForwardingRulesHttpRequest.java index b00bb4c4d..59fdab58b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalForwardingRulesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListGlobalForwardingRulesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.globalForwardingRules.list. Retrieves a list of - * GlobalForwardingRule resources available to the specified project. + * GlobalForwardingRule resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListGlobalForwardingRulesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalOperationsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListGlobalOperationsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalOperationsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListGlobalOperationsHttpRequest.java index 4bdf92d5b..c90def490 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListGlobalOperationsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListGlobalOperationsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.globalOperations.list. Retrieves a list of Operation resources - * contained within the specified project. + * contained within the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListGlobalOperationsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHealthChecksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListHealthChecksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHealthChecksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListHealthChecksHttpRequest.java index d8f8b0795..1061172c1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHealthChecksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListHealthChecksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.healthChecks.list. Retrieves the list of HealthCheck resources - * available to the specified project. + * available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListHealthChecksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHttpHealthChecksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListHttpHealthChecksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHttpHealthChecksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListHttpHealthChecksHttpRequest.java index 7d775366e..bdf98993e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHttpHealthChecksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListHttpHealthChecksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.httpHealthChecks.list. Retrieves the list of HttpHealthCheck - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListHttpHealthChecksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHttpsHealthChecksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListHttpsHealthChecksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHttpsHealthChecksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListHttpsHealthChecksHttpRequest.java index 248e4704e..4b58dcf4d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListHttpsHealthChecksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListHttpsHealthChecksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.httpsHealthChecks.list. Retrieves the list of HttpsHealthCheck - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListHttpsHealthChecksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListImagesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListImagesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListImagesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListImagesHttpRequest.java index c736080b1..4b8e47670 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListImagesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListImagesHttpRequest.java @@ -29,7 +29,8 @@ * the specified project. Custom images are images you create that belong to your project. This * method does not get any images that belong to other projects, including publicly-available * images, like Debian 8. If you want to get a list of publicly-available images, use this method to - * make a request to the respective image project, such as debian-cloud or windows-cloud. + * make a request to the respective image project, such as debian-cloud or windows-cloud. (== + * suppress_warning http-rest-shadowed ==) */ public final class ListImagesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupManagersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupManagersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupManagersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInstanceGroupManagersHttpRequest.java index 343402096..55e2aa133 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupManagersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupManagersHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instanceGroupManagers.list. Retrieves a list of managed - * instance groups that are contained within the specified project and zone. + * instance groups that are contained within the specified project and zone. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListInstanceGroupManagersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInstanceGroupsHttpRequest.java index 48e553018..6f5ca17c5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInstanceGroupsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instanceGroups.list. Retrieves the list of instance groups that - * are located in the specified project and zone. + * are located in the specified project and zone. (== suppress_warning http-rest-shadowed ==) */ public final class ListInstanceGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceTemplatesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInstanceTemplatesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceTemplatesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInstanceTemplatesHttpRequest.java index b3528c0be..ebcbcc920 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstanceTemplatesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInstanceTemplatesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instanceTemplates.list. Retrieves a list of instance templates - * that are contained within the specified project. + * that are contained within the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListInstanceTemplatesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInstancesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInstancesHttpRequest.java index 6e5919bce..b3113cbe1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInstancesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.list. Retrieves the list of instances contained - * within the specified zone. + * within the specified zone. (== suppress_warning http-rest-shadowed ==) */ public final class ListInstancesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesInstanceGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInstancesInstanceGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesInstanceGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInstancesInstanceGroupsHttpRequest.java index 1addc46ec..b0a1fa204 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesInstanceGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInstancesInstanceGroupsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instanceGroups.listInstances. Lists the instances in the - * specified instance group. + * specified instance group. (== suppress_warning http-rest-shadowed ==) */ public final class ListInstancesInstanceGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesRegionInstanceGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInstancesRegionInstanceGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesRegionInstanceGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInstancesRegionInstanceGroupsHttpRequest.java index 91a1c5d22..5c62b0403 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInstancesRegionInstanceGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInstancesRegionInstanceGroupsHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.regionInstanceGroups.listInstances. Lists the instances in the * specified instance group and displays information about the named ports. Depending on the - * specified options, this method can list all instances or only the instances that are running. + * specified options, this method can list all instances or only the instances that are running. (== + * suppress_warning http-rest-shadowed ==) */ public final class ListInstancesRegionInstanceGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectAttachmentsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInterconnectAttachmentsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectAttachmentsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInterconnectAttachmentsHttpRequest.java index 65bfd7afa..e56a84a4a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectAttachmentsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInterconnectAttachmentsHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.interconnectAttachments.list. Retrieves the list of - * interconnect attachments contained within the specified region. + * interconnect attachments contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListInterconnectAttachmentsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectLocationsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInterconnectLocationsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectLocationsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInterconnectLocationsHttpRequest.java index 242702692..4e396cfd3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectLocationsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInterconnectLocationsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.interconnectLocations.list. Retrieves the list of interconnect - * locations available to the specified project. + * locations available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListInterconnectLocationsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListInterconnectsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListInterconnectsHttpRequest.java index de986d2f1..91f251a76 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListInterconnectsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListInterconnectsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.interconnects.list. Retrieves the list of interconnect - * available to the specified project. + * available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListInterconnectsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListLicensesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListLicensesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListLicensesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListLicensesHttpRequest.java index 158ae2f92..ea8970afc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListLicensesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListLicensesHttpRequest.java @@ -29,7 +29,7 @@ * specified project. This method does not get any licenses that belong to other projects, including * licenses attached to publicly-available images, like Debian 9. If you want to get a list of * publicly-available licenses, use this method to make a request to the respective image project, - * such as debian-cloud or windows-cloud. + * such as debian-cloud or windows-cloud. (== suppress_warning http-rest-shadowed ==) */ public final class ListLicensesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListMachineTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListMachineTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListMachineTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListMachineTypesHttpRequest.java index aac72e1fa..6f0c0db78 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListMachineTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListMachineTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.machineTypes.list. Retrieves a list of machine types available - * to the specified project. + * to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListMachineTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesInstanceGroupManagersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesInstanceGroupManagersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesInstanceGroupManagersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListManagedInstancesInstanceGroupManagersHttpRequest.java index 4dbb8a262..6ad852284 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesInstanceGroupManagersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesInstanceGroupManagersHttpRequest.java @@ -29,7 +29,8 @@ * instances in the managed instance group. Each instance in the list has a currentAction, which * indicates the action that the managed instance group is performing on the instance. For example, * if the group is still creating an instance, the currentAction is CREATING. If a previous action - * failed, the list displays the errors for that failed action. + * failed, the list displays the errors for that failed action. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListManagedInstancesInstanceGroupManagersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesRegionInstanceGroupManagersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesRegionInstanceGroupManagersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesRegionInstanceGroupManagersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListManagedInstancesRegionInstanceGroupManagersHttpRequest.java index b6837268c..aedbccb1d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesRegionInstanceGroupManagersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListManagedInstancesRegionInstanceGroupManagersHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.regionInstanceGroupManagers.listManagedInstances. Lists the * instances in the managed instance group and instances that are scheduled to be created. The list - * includes any current actions that the group has scheduled for its instances. + * includes any current actions that the group has scheduled for its instances. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListManagedInstancesRegionInstanceGroupManagersHttpRequest implements ApiMessage { diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointGroupsHttpRequest.java index 2d351ba28..8590dc172 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointGroupsHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.networkEndpointGroups.list. Retrieves the list of network - * endpoint groups that are located in the specified project and zone. + * endpoint groups that are located in the specified project and zone. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListNetworkEndpointGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointsNetworkEndpointGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointsNetworkEndpointGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointsNetworkEndpointGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointsNetworkEndpointGroupsHttpRequest.java index 1754ce6be..6b7be0c67 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointsNetworkEndpointGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListNetworkEndpointsNetworkEndpointGroupsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.networkEndpointGroups.listNetworkEndpoints. Lists the network - * endpoints in the specified network endpoint group. + * endpoints in the specified network endpoint group. (== suppress_warning http-rest-shadowed ==) */ public final class ListNetworkEndpointsNetworkEndpointGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListNetworksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListNetworksHttpRequest.java index d56298aee..128a5f312 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNetworksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListNetworksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.networks.list. Retrieves the list of networks available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListNetworksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListNodeGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListNodeGroupsHttpRequest.java index 598059bd1..e86ac7357 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListNodeGroupsHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.nodeGroups.list. Retrieves a list of node groups available to - * the specified project. Note: use nodeGroups.listNodes for more details about each group. + * the specified project. Note: use nodeGroups.listNodes for more details about each group. (== + * suppress_warning http-rest-shadowed ==) */ public final class ListNodeGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeTemplatesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListNodeTemplatesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeTemplatesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListNodeTemplatesHttpRequest.java index 07a640aa8..af2fb0a2f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeTemplatesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListNodeTemplatesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeTemplates.list. Retrieves a list of node templates - * available to the specified project. + * available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListNodeTemplatesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListNodeTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListNodeTypesHttpRequest.java index 492e41541..380f744f4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodeTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListNodeTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeTypes.list. Retrieves a list of node types available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListNodeTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodesNodeGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListNodesNodeGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodesNodeGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListNodesNodeGroupsHttpRequest.java index ce85c5d24..bdb59dfa6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListNodesNodeGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListNodesNodeGroupsHttpRequest.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Request object for method compute.nodeGroups.listNodes. Lists nodes in the node group. */ +/** + * Request object for method compute.nodeGroups.listNodes. Lists nodes in the node group. (== + * suppress_warning http-rest-shadowed ==) + */ public final class ListNodesNodeGroupsHttpRequest implements ApiMessage { private final String access_token; private final String callback; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListReferrersInstancesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListReferrersInstancesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListReferrersInstancesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListReferrersInstancesHttpRequest.java index 755fa7b2b..c712e4ad3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListReferrersInstancesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListReferrersInstancesHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.instances.listReferrers. Retrieves the list of referrers to * instances contained within the specified zone. For more information, read Viewing Referrers to VM - * Instances. + * Instances. (== suppress_warning http-rest-shadowed ==) */ public final class ListReferrersInstancesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionAutoscalersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionAutoscalersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionAutoscalersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionAutoscalersHttpRequest.java index ddbfd5bee..0255edc52 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionAutoscalersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionAutoscalersHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionAutoscalers.list. Retrieves a list of autoscalers - * contained within the specified region. + * contained within the specified region. (== suppress_warning http-rest-shadowed ==) */ public final class ListRegionAutoscalersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionBackendServicesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionBackendServicesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionBackendServicesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionBackendServicesHttpRequest.java index 18519f8fb..b179684c7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionBackendServicesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionBackendServicesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionBackendServices.list. Retrieves the list of regional - * BackendService resources available to the specified project in the given region. + * BackendService resources available to the specified project in the given region. (== + * suppress_warning http-rest-shadowed ==) */ public final class ListRegionBackendServicesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionCommitmentsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionCommitmentsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionCommitmentsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionCommitmentsHttpRequest.java index 997c1df47..0910c23ec 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionCommitmentsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionCommitmentsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionCommitments.list. Retrieves a list of commitments - * contained within the specified region. + * contained within the specified region. (== suppress_warning http-rest-shadowed ==) */ public final class ListRegionCommitmentsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionDiskTypesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionDiskTypesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionDiskTypesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionDiskTypesHttpRequest.java index d5cbb0690..e61d9e486 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionDiskTypesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionDiskTypesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionDiskTypes.list. Retrieves a list of regional disk types - * available to the specified project. + * available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListRegionDiskTypesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionDisksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionDisksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionDisksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionDisksHttpRequest.java index 38b4f6239..6d632cfc5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionDisksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionDisksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionDisks.list. Retrieves the list of persistent disks - * contained within the specified region. + * contained within the specified region. (== suppress_warning http-rest-shadowed ==) */ public final class ListRegionDisksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionHealthChecksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionHealthChecksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionHealthChecksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionHealthChecksHttpRequest.java index e56d558fd..5480601a5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionHealthChecksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionHealthChecksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionHealthChecks.list. Retrieves the list of HealthCheck - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListRegionHealthChecksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupManagersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupManagersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupManagersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupManagersHttpRequest.java index 7c1bad6a0..9258f49be 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupManagersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupManagersHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionInstanceGroupManagers.list. Retrieves the list of managed - * instance groups that are contained within the specified region. + * instance groups that are contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListRegionInstanceGroupManagersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupsHttpRequest.java index eb9042a25..05beb84ac 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionInstanceGroupsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionInstanceGroups.list. Retrieves the list of instance group - * resources contained within the specified region. + * resources contained within the specified region. (== suppress_warning http-rest-shadowed ==) */ public final class ListRegionInstanceGroupsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionOperationsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionOperationsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionOperationsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionOperationsHttpRequest.java index ca4c270bf..a6b7b039c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionOperationsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionOperationsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionOperations.list. Retrieves a list of Operation resources - * contained within the specified region. + * contained within the specified region. (== suppress_warning http-rest-shadowed ==) */ public final class ListRegionOperationsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionSslCertificatesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionSslCertificatesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionSslCertificatesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionSslCertificatesHttpRequest.java index cc43eaba8..5b2aa9592 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionSslCertificatesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionSslCertificatesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionSslCertificates.list. Retrieves the list of - * SslCertificate resources available to the specified project in the specified region. + * SslCertificate resources available to the specified project in the specified region. (== + * suppress_warning http-rest-shadowed ==) */ public final class ListRegionSslCertificatesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpProxiesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpProxiesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpProxiesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpProxiesHttpRequest.java index 0282731f6..01846ee0c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpProxiesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpProxiesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionTargetHttpProxies.list. Retrieves the list of - * TargetHttpProxy resources available to the specified project in the specified region. + * TargetHttpProxy resources available to the specified project in the specified region. (== + * suppress_warning http-rest-shadowed ==) */ public final class ListRegionTargetHttpProxiesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpsProxiesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpsProxiesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpsProxiesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpsProxiesHttpRequest.java index 99be7a09a..6674d952d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpsProxiesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionTargetHttpsProxiesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionTargetHttpsProxies.list. Retrieves the list of - * TargetHttpsProxy resources available to the specified project in the specified region. + * TargetHttpsProxy resources available to the specified project in the specified region. (== + * suppress_warning http-rest-shadowed ==) */ public final class ListRegionTargetHttpsProxiesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionUrlMapsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionUrlMapsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionUrlMapsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionUrlMapsHttpRequest.java index 6600ccdd3..428484846 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionUrlMapsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionUrlMapsHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.regionUrlMaps.list. Retrieves the list of UrlMap resources - * available to the specified project in the specified region. + * available to the specified project in the specified region. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListRegionUrlMapsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRegionsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRegionsHttpRequest.java index 62265b20f..acfde0b82 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRegionsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRegionsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regions.list. Retrieves the list of region resources available - * to the specified project. + * to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListRegionsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListReservationsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListReservationsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListReservationsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListReservationsHttpRequest.java index 79a9c2cf8..018f5bcb1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListReservationsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListReservationsHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.reservations.list. A list of all the reservations that have - * been configured for the specified project in specified zone. + * been configured for the specified project in specified zone. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListReservationsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListResourcePoliciesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListResourcePoliciesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListResourcePoliciesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListResourcePoliciesHttpRequest.java index 2a11e604d..fbe685fd8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListResourcePoliciesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListResourcePoliciesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.resourcePolicies.list. A list all the resource policies that - * have been configured for the specified project in specified region. + * have been configured for the specified project in specified region. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListResourcePoliciesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRoutersHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRoutersHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRoutersHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRoutersHttpRequest.java index ad5d693db..2fd6af74c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRoutersHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRoutersHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.routers.list. Retrieves a list of Router resources available to - * the specified project. + * the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListRoutersHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRoutesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListRoutesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRoutesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListRoutesHttpRequest.java index 89d9a96ff..d25f4e5a6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListRoutesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListRoutesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.routes.list. Retrieves the list of Route resources available to - * the specified project. + * the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListRoutesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSecurityPoliciesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListSecurityPoliciesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSecurityPoliciesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListSecurityPoliciesHttpRequest.java index 2a5ae874d..d4831db3b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSecurityPoliciesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListSecurityPoliciesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.securityPolicies.list. List all the policies that have been - * configured for the specified project. + * configured for the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListSecurityPoliciesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSnapshotsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListSnapshotsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSnapshotsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListSnapshotsHttpRequest.java index 5bcf493ae..04b8e2255 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSnapshotsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListSnapshotsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.snapshots.list. Retrieves the list of Snapshot resources - * contained within the specified project. + * contained within the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListSnapshotsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSslCertificatesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListSslCertificatesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSslCertificatesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListSslCertificatesHttpRequest.java index 36e6b17f8..4d80b8cdf 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSslCertificatesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListSslCertificatesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.sslCertificates.list. Retrieves the list of SslCertificate - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListSslCertificatesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSslPoliciesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListSslPoliciesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSslPoliciesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListSslPoliciesHttpRequest.java index 5a3b5430f..d38ac4bd7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSslPoliciesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListSslPoliciesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.sslPolicies.list. Lists all the SSL policies that have been - * configured for the specified project. + * configured for the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListSslPoliciesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSubnetworksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListSubnetworksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSubnetworksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListSubnetworksHttpRequest.java index 69c59a26f..b179e867d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListSubnetworksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListSubnetworksHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.subnetworks.list. Retrieves a list of subnetworks available to - * the specified project. + * the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListSubnetworksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetHttpProxiesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListTargetHttpProxiesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetHttpProxiesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListTargetHttpProxiesHttpRequest.java index 7d7c5afe7..b53e8e183 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetHttpProxiesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListTargetHttpProxiesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetHttpProxies.list. Retrieves the list of TargetHttpProxy - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListTargetHttpProxiesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetHttpsProxiesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListTargetHttpsProxiesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetHttpsProxiesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListTargetHttpsProxiesHttpRequest.java index 4512e92d3..e225f6dab 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetHttpsProxiesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListTargetHttpsProxiesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetHttpsProxies.list. Retrieves the list of TargetHttpsProxy - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListTargetHttpsProxiesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetInstancesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListTargetInstancesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetInstancesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListTargetInstancesHttpRequest.java index 90ae849b1..e170d7e64 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetInstancesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListTargetInstancesHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.targetInstances.list. Retrieves a list of TargetInstance - * resources available to the specified project and zone. + * resources available to the specified project and zone. (== suppress_warning http-rest-shadowed + * ==) */ public final class ListTargetInstancesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetPoolsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListTargetPoolsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetPoolsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListTargetPoolsHttpRequest.java index 0541c655b..db9c3c77b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetPoolsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListTargetPoolsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetPools.list. Retrieves a list of target pools available to - * the specified project and region. + * the specified project and region. (== suppress_warning http-rest-shadowed ==) */ public final class ListTargetPoolsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetSslProxiesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListTargetSslProxiesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetSslProxiesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListTargetSslProxiesHttpRequest.java index 282c4c75e..9d6a70933 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetSslProxiesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListTargetSslProxiesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetSslProxies.list. Retrieves the list of TargetSslProxy - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListTargetSslProxiesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetTcpProxiesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListTargetTcpProxiesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetTcpProxiesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListTargetTcpProxiesHttpRequest.java index f5d262d5c..d4812f242 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetTcpProxiesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListTargetTcpProxiesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetTcpProxies.list. Retrieves the list of TargetTcpProxy - * resources available to the specified project. + * resources available to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListTargetTcpProxiesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetVpnGatewaysHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListTargetVpnGatewaysHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetVpnGatewaysHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListTargetVpnGatewaysHttpRequest.java index 8bf5a2f8f..69cff04da 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListTargetVpnGatewaysHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListTargetVpnGatewaysHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetVpnGateways.list. Retrieves a list of target VPN gateways - * available to the specified project and region. + * available to the specified project and region. (== suppress_warning http-rest-shadowed ==) */ public final class ListTargetVpnGatewaysHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListUrlMapsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListUrlMapsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListUrlMapsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListUrlMapsHttpRequest.java index 3bd5834c3..acbf46d1e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListUrlMapsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListUrlMapsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.urlMaps.list. Retrieves the list of UrlMap resources available - * to the specified project. + * to the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListUrlMapsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListUsableSubnetworksHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListUsableSubnetworksHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListUsableSubnetworksHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListUsableSubnetworksHttpRequest.java index b4efb4a5d..f13888947 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListUsableSubnetworksHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListUsableSubnetworksHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.subnetworks.listUsable. Retrieves an aggregated list of all * usable subnetworks in the project. The list contains all of the subnetworks in the project and - * the subnetworks that were shared by a Shared VPC host project. + * the subnetworks that were shared by a Shared VPC host project. (== suppress_warning + * http-rest-shadowed ==) */ public final class ListUsableSubnetworksHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListVpnGatewaysHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListVpnGatewaysHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListVpnGatewaysHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListVpnGatewaysHttpRequest.java index ea1a0801f..89b351f26 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListVpnGatewaysHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListVpnGatewaysHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.vpnGateways.list. Retrieves a list of VPN gateways available to - * the specified project and region. + * the specified project and region. (== suppress_warning http-rest-shadowed ==) */ public final class ListVpnGatewaysHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListVpnTunnelsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListVpnTunnelsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListVpnTunnelsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListVpnTunnelsHttpRequest.java index 7bb88743c..7c0cd3f06 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListVpnTunnelsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListVpnTunnelsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.vpnTunnels.list. Retrieves a list of VpnTunnel resources - * contained in the specified project and region. + * contained in the specified project and region. (== suppress_warning http-rest-shadowed ==) */ public final class ListVpnTunnelsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListXpnHostsProjectsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListXpnHostsProjectsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListXpnHostsProjectsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListXpnHostsProjectsHttpRequest.java index 9d6b1be3e..dc346e311 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListXpnHostsProjectsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListXpnHostsProjectsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.projects.listXpnHosts. Lists all shared VPC host projects - * visible to the user in an organization. + * visible to the user in an organization. (== suppress_warning http-rest-shadowed ==) */ public final class ListXpnHostsProjectsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListZoneOperationsHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListZoneOperationsHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListZoneOperationsHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListZoneOperationsHttpRequest.java index 1b22deab4..544ea01d0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListZoneOperationsHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListZoneOperationsHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.zoneOperations.list. Retrieves a list of Operation resources - * contained within the specified zone. + * contained within the specified zone. (== suppress_warning http-rest-shadowed ==) */ public final class ListZoneOperationsHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListZonesHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ListZonesHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListZonesHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ListZonesHttpRequest.java index 98b757280..166986831 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ListZonesHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ListZonesHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.zones.list. Retrieves the list of Zone resources available to - * the specified project. + * the specified project. (== suppress_warning http-rest-shadowed ==) */ public final class ListZonesHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfig.java b/src/main/java/com/google/cloud/compute/v1/LogConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfig.java rename to src/main/java/com/google/cloud/compute/v1/LogConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfigCloudAuditOptions.java b/src/main/java/com/google/cloud/compute/v1/LogConfigCloudAuditOptions.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfigCloudAuditOptions.java rename to src/main/java/com/google/cloud/compute/v1/LogConfigCloudAuditOptions.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptions.java b/src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptions.java similarity index 70% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptions.java rename to src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptions.java index dabaee2b1..413663326 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptions.java +++ b/src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptions.java @@ -17,6 +17,7 @@ import com.google.api.core.BetaApi; import com.google.api.gax.httpjson.ApiMessage; +import java.util.LinkedList; import java.util.List; import java.util.Objects; import javax.annotation.Generated; @@ -40,27 +41,34 @@ * fields. * *

Examples: counter { metric: "/debug_access_count" field: "iam_principal" } ==> increment - * counter /iam/policy/backend_debug_access_count {iam_principal=[value of IAMContext.principal]} + * counter /iam/policy/debug_access_count {iam_principal=[value of IAMContext.principal]} * - *

At this time we do not support multiple field names (though this may be supported in the - * future). + *

TODO(b/141846426): Consider supporting "authority" and "iam_principal" fields in the same + * counter. */ public final class LogConfigCounterOptions implements ApiMessage { + private final List customFields; private final String field; private final String metric; private LogConfigCounterOptions() { + this.customFields = null; this.field = null; this.metric = null; } - private LogConfigCounterOptions(String field, String metric) { + private LogConfigCounterOptions( + List customFields, String field, String metric) { + this.customFields = customFields; this.field = field; this.metric = metric; } @Override public Object getFieldValue(String fieldName) { + if ("customFields".equals(fieldName)) { + return customFields; + } if ("field".equals(fieldName)) { return field; } @@ -88,6 +96,11 @@ public List getFieldMask() { return null; } + /** Custom fields. */ + public List getCustomFieldsList() { + return customFields; + } + /** The field value to attribute. */ public String getField() { return field; @@ -121,6 +134,7 @@ public static LogConfigCounterOptions getDefaultInstance() { } public static class Builder { + private List customFields; private String field; private String metric; @@ -128,6 +142,9 @@ public static class Builder { public Builder mergeFrom(LogConfigCounterOptions other) { if (other == LogConfigCounterOptions.getDefaultInstance()) return this; + if (other.getCustomFieldsList() != null) { + this.customFields = other.customFields; + } if (other.getField() != null) { this.field = other.field; } @@ -138,10 +155,34 @@ public Builder mergeFrom(LogConfigCounterOptions other) { } Builder(LogConfigCounterOptions source) { + this.customFields = source.customFields; this.field = source.field; this.metric = source.metric; } + /** Custom fields. */ + public List getCustomFieldsList() { + return customFields; + } + + /** Custom fields. */ + public Builder addAllCustomFields(List customFields) { + if (this.customFields == null) { + this.customFields = new LinkedList<>(); + } + this.customFields.addAll(customFields); + return this; + } + + /** Custom fields. */ + public Builder addCustomFields(LogConfigCounterOptionsCustomField customFields) { + if (this.customFields == null) { + this.customFields = new LinkedList<>(); + } + this.customFields.add(customFields); + return this; + } + /** The field value to attribute. */ public String getField() { return field; @@ -166,11 +207,12 @@ public Builder setMetric(String metric) { public LogConfigCounterOptions build() { - return new LogConfigCounterOptions(field, metric); + return new LogConfigCounterOptions(customFields, field, metric); } public Builder clone() { Builder newBuilder = new Builder(); + newBuilder.addAllCustomFields(this.customFields); newBuilder.setField(this.field); newBuilder.setMetric(this.metric); return newBuilder; @@ -179,7 +221,16 @@ public Builder clone() { @Override public String toString() { - return "LogConfigCounterOptions{" + "field=" + field + ", " + "metric=" + metric + "}"; + return "LogConfigCounterOptions{" + + "customFields=" + + customFields + + ", " + + "field=" + + field + + ", " + + "metric=" + + metric + + "}"; } @Override @@ -189,7 +240,8 @@ public boolean equals(Object o) { } if (o instanceof LogConfigCounterOptions) { LogConfigCounterOptions that = (LogConfigCounterOptions) o; - return Objects.equals(this.field, that.getField()) + return Objects.equals(this.customFields, that.getCustomFieldsList()) + && Objects.equals(this.field, that.getField()) && Objects.equals(this.metric, that.getMetric()); } return false; @@ -197,6 +249,6 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(field, metric); + return Objects.hash(customFields, field, metric); } } diff --git a/src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptionsCustomField.java b/src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptionsCustomField.java new file mode 100644 index 000000000..92c071276 --- /dev/null +++ b/src/main/java/com/google/cloud/compute/v1/LogConfigCounterOptionsCustomField.java @@ -0,0 +1,194 @@ +/* + * Copyright 2019 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. + */ +package com.google.cloud.compute.v1; + +import com.google.api.core.BetaApi; +import com.google.api.gax.httpjson.ApiMessage; +import java.util.List; +import java.util.Objects; +import javax.annotation.Generated; +import javax.annotation.Nullable; + +@Generated("by GAPIC") +@BetaApi +/** + * Custom fields. These can be used to create a counter with arbitrary field/value pairs. See: + * go/rpcsp-custom-fields. + */ +public final class LogConfigCounterOptionsCustomField implements ApiMessage { + private final String name; + private final String value; + + private LogConfigCounterOptionsCustomField() { + this.name = null; + this.value = null; + } + + private LogConfigCounterOptionsCustomField(String name, String value) { + this.name = name; + this.value = value; + } + + @Override + public Object getFieldValue(String fieldName) { + if ("name".equals(fieldName)) { + return name; + } + if ("value".equals(fieldName)) { + return value; + } + return null; + } + + @Nullable + @Override + public ApiMessage getApiMessageRequestBody() { + return null; + } + + @Nullable + @Override + /** + * The fields that should be serialized (even if they have empty values). If the containing + * message object has a non-null fieldmask, then all the fields in the field mask (and only those + * fields in the field mask) will be serialized. If the containing object does not have a + * fieldmask, then only non-empty fields will be serialized. + */ + public List getFieldMask() { + return null; + } + + /** Name is the field name. */ + public String getName() { + return name; + } + + /** + * Value is the field value. It is important that in contrast to the CounterOptions.field, the + * value here is a constant that is not derived from the IAMContext. + */ + public String getValue() { + return value; + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(LogConfigCounterOptionsCustomField prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + public static LogConfigCounterOptionsCustomField getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final LogConfigCounterOptionsCustomField DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new LogConfigCounterOptionsCustomField(); + } + + public static class Builder { + private String name; + private String value; + + Builder() {} + + public Builder mergeFrom(LogConfigCounterOptionsCustomField other) { + if (other == LogConfigCounterOptionsCustomField.getDefaultInstance()) return this; + if (other.getName() != null) { + this.name = other.name; + } + if (other.getValue() != null) { + this.value = other.value; + } + return this; + } + + Builder(LogConfigCounterOptionsCustomField source) { + this.name = source.name; + this.value = source.value; + } + + /** Name is the field name. */ + public String getName() { + return name; + } + + /** Name is the field name. */ + public Builder setName(String name) { + this.name = name; + return this; + } + + /** + * Value is the field value. It is important that in contrast to the CounterOptions.field, the + * value here is a constant that is not derived from the IAMContext. + */ + public String getValue() { + return value; + } + + /** + * Value is the field value. It is important that in contrast to the CounterOptions.field, the + * value here is a constant that is not derived from the IAMContext. + */ + public Builder setValue(String value) { + this.value = value; + return this; + } + + public LogConfigCounterOptionsCustomField build() { + + return new LogConfigCounterOptionsCustomField(name, value); + } + + public Builder clone() { + Builder newBuilder = new Builder(); + newBuilder.setName(this.name); + newBuilder.setValue(this.value); + return newBuilder; + } + } + + @Override + public String toString() { + return "LogConfigCounterOptionsCustomField{" + "name=" + name + ", " + "value=" + value + "}"; + } + + @Override + public boolean equals(Object o) { + if (o == this) { + return true; + } + if (o instanceof LogConfigCounterOptionsCustomField) { + LogConfigCounterOptionsCustomField that = (LogConfigCounterOptionsCustomField) o; + return Objects.equals(this.name, that.getName()) + && Objects.equals(this.value, that.getValue()); + } + return false; + } + + @Override + public int hashCode() { + return Objects.hash(name, value); + } +} diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfigDataAccessOptions.java b/src/main/java/com/google/cloud/compute/v1/LogConfigDataAccessOptions.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/LogConfigDataAccessOptions.java rename to src/main/java/com/google/cloud/compute/v1/LogConfigDataAccessOptions.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineType.java b/src/main/java/com/google/cloud/compute/v1/MachineType.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineType.java rename to src/main/java/com/google/cloud/compute/v1/MachineType.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/MachineTypeAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/MachineTypeAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeClient.java b/src/main/java/com/google/cloud/compute/v1/MachineTypeClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeClient.java rename to src/main/java/com/google/cloud/compute/v1/MachineTypeClient.java index af0a215b6..9ef79f487 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeClient.java +++ b/src/main/java/com/google/cloud/compute/v1/MachineTypeClient.java @@ -154,7 +154,7 @@ public MachineTypeStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of machine types. + * Retrieves an aggregated list of machine types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +182,7 @@ public final AggregatedListMachineTypesPagedResponse aggregatedListMachineTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of machine types. + * Retrieves an aggregated list of machine types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -207,7 +207,7 @@ public final AggregatedListMachineTypesPagedResponse aggregatedListMachineTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of machine types. + * Retrieves an aggregated list of machine types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -234,7 +234,7 @@ public final AggregatedListMachineTypesPagedResponse aggregatedListMachineTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of machine types. + * Retrieves an aggregated list of machine types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -261,7 +261,7 @@ public final AggregatedListMachineTypesPagedResponse aggregatedListMachineTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of machine types. + * Retrieves an aggregated list of machine types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -295,7 +295,7 @@ public final AggregatedListMachineTypesPagedResponse aggregatedListMachineTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified machine type. Gets a list of available machine types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -322,7 +322,7 @@ public final MachineType getMachineType(ProjectZoneMachineTypeName machineType) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified machine type. Gets a list of available machine types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -347,7 +347,7 @@ public final MachineType getMachineType(String machineType) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified machine type. Gets a list of available machine types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -372,7 +372,7 @@ public final MachineType getMachineType(GetMachineTypeHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified machine type. Gets a list of available machine types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -395,7 +395,8 @@ public final UnaryCallable getMachineTyp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of machine types available to the specified project. + * Retrieves a list of machine types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -422,7 +423,8 @@ public final ListMachineTypesPagedResponse listMachineTypes(ProjectZoneName zone // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of machine types available to the specified project. + * Retrieves a list of machine types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -447,7 +449,8 @@ public final ListMachineTypesPagedResponse listMachineTypes(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of machine types available to the specified project. + * Retrieves a list of machine types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -473,7 +476,8 @@ public final ListMachineTypesPagedResponse listMachineTypes(ListMachineTypesHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of machine types available to the specified project. + * Retrieves a list of machine types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -499,7 +503,8 @@ public final ListMachineTypesPagedResponse listMachineTypes(ListMachineTypesHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of machine types available to the specified project. + * Retrieves a list of machine types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeList.java b/src/main/java/com/google/cloud/compute/v1/MachineTypeList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeList.java rename to src/main/java/com/google/cloud/compute/v1/MachineTypeList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeSettings.java b/src/main/java/com/google/cloud/compute/v1/MachineTypeSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypeSettings.java rename to src/main/java/com/google/cloud/compute/v1/MachineTypeSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypesScopedList.java b/src/main/java/com/google/cloud/compute/v1/MachineTypesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MachineTypesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/MachineTypesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ManagedInstance.java b/src/main/java/com/google/cloud/compute/v1/ManagedInstance.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ManagedInstance.java rename to src/main/java/com/google/cloud/compute/v1/ManagedInstance.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ManagedInstanceLastAttempt.java b/src/main/java/com/google/cloud/compute/v1/ManagedInstanceLastAttempt.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ManagedInstanceLastAttempt.java rename to src/main/java/com/google/cloud/compute/v1/ManagedInstanceLastAttempt.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ManagedInstanceVersion.java b/src/main/java/com/google/cloud/compute/v1/ManagedInstanceVersion.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ManagedInstanceVersion.java rename to src/main/java/com/google/cloud/compute/v1/ManagedInstanceVersion.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Metadata.java b/src/main/java/com/google/cloud/compute/v1/Metadata.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Metadata.java rename to src/main/java/com/google/cloud/compute/v1/Metadata.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MetadataFilter.java b/src/main/java/com/google/cloud/compute/v1/MetadataFilter.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MetadataFilter.java rename to src/main/java/com/google/cloud/compute/v1/MetadataFilter.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MetadataFilterLabelMatch.java b/src/main/java/com/google/cloud/compute/v1/MetadataFilterLabelMatch.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MetadataFilterLabelMatch.java rename to src/main/java/com/google/cloud/compute/v1/MetadataFilterLabelMatch.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MoveDiskProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/MoveDiskProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MoveDiskProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/MoveDiskProjectHttpRequest.java index 55c1336dc..271f56a8a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MoveDiskProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/MoveDiskProjectHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.projects.moveDisk. Moves a persistent disk from one zone to - * another. + * another. (== suppress_warning http-rest-shadowed ==) */ public final class MoveDiskProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MoveInstanceProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/MoveInstanceProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MoveInstanceProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/MoveInstanceProjectHttpRequest.java index e24e80e64..30575a04e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/MoveInstanceProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/MoveInstanceProjectHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.projects.moveInstance. Moves an instance and its attached - * persistent disks from one zone to another. + * persistent disks from one zone to another. (== suppress_warning http-rest-shadowed ==) */ public final class MoveInstanceProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NamedPort.java b/src/main/java/com/google/cloud/compute/v1/NamedPort.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NamedPort.java rename to src/main/java/com/google/cloud/compute/v1/NamedPort.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Network.java b/src/main/java/com/google/cloud/compute/v1/Network.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Network.java rename to src/main/java/com/google/cloud/compute/v1/Network.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkClient.java b/src/main/java/com/google/cloud/compute/v1/NetworkClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkClient.java rename to src/main/java/com/google/cloud/compute/v1/NetworkClient.java index 23de4e2c1..a9bfa873c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkClient.java +++ b/src/main/java/com/google/cloud/compute/v1/NetworkClient.java @@ -154,7 +154,7 @@ public NetworkStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a peering to the specified network. + * Adds a peering to the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -185,7 +185,7 @@ public final Operation addPeeringNetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a peering to the specified network. + * Adds a peering to the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -215,7 +215,7 @@ public final Operation addPeeringNetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a peering to the specified network. + * Adds a peering to the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -241,7 +241,7 @@ public final Operation addPeeringNetwork(AddPeeringNetworkHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds a peering to the specified network. + * Adds a peering to the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -266,7 +266,7 @@ public final UnaryCallable addPeeringNe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified network. + * Deletes the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -292,7 +292,7 @@ public final Operation deleteNetwork(ProjectGlobalNetworkName network) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified network. + * Deletes the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -316,7 +316,7 @@ public final Operation deleteNetwork(String network) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified network. + * Deletes the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -340,7 +340,7 @@ public final Operation deleteNetwork(DeleteNetworkHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified network. + * Deletes the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -364,6 +364,7 @@ public final UnaryCallable deleteNetworkCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified network. Gets a list of available networks by making a list() request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -390,6 +391,7 @@ public final Network getNetwork(ProjectGlobalNetworkName network) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified network. Gets a list of available networks by making a list() request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -413,6 +415,7 @@ public final Network getNetwork(String network) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified network. Gets a list of available networks by making a list() request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -437,6 +440,7 @@ public final Network getNetwork(GetNetworkHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified network. Gets a list of available networks by making a list() request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -459,7 +463,8 @@ public final UnaryCallable getNetworkCallable() // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a network in the specified project using the data included in the request. + * Creates a network in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -491,7 +496,8 @@ public final Operation insertNetwork(ProjectName project, Network networkResourc // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a network in the specified project using the data included in the request. + * Creates a network in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -523,7 +529,8 @@ public final Operation insertNetwork(String project, Network networkResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a network in the specified project using the data included in the request. + * Creates a network in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -549,7 +556,8 @@ public final Operation insertNetwork(InsertNetworkHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a network in the specified project using the data included in the request. + * Creates a network in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -574,7 +582,8 @@ public final UnaryCallable insertNetworkCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of networks available to the specified project. + * Retrieves the list of networks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -601,7 +610,8 @@ public final ListNetworksPagedResponse listNetworks(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of networks available to the specified project. + * Retrieves the list of networks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -626,7 +636,8 @@ public final ListNetworksPagedResponse listNetworks(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of networks available to the specified project. + * Retrieves the list of networks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -652,7 +663,8 @@ public final ListNetworksPagedResponse listNetworks(ListNetworksHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of networks available to the specified project. + * Retrieves the list of networks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -678,7 +690,8 @@ public final ListNetworksPagedResponse listNetworks(ListNetworksHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of networks available to the specified project. + * Retrieves the list of networks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -711,7 +724,7 @@ public final UnaryCallable listNetworksCal // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified network with the data included in the request. Only the following fields - * can be modified: routingConfig.routingMode. + * can be modified: routingConfig.routingMode. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -751,7 +764,7 @@ public final Operation patchNetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified network with the data included in the request. Only the following fields - * can be modified: routingConfig.routingMode. + * can be modified: routingConfig.routingMode. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -791,7 +804,7 @@ public final Operation patchNetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified network with the data included in the request. Only the following fields - * can be modified: routingConfig.routingMode. + * can be modified: routingConfig.routingMode. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -820,7 +833,7 @@ public final Operation patchNetwork(PatchNetworkHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified network with the data included in the request. Only the following fields - * can be modified: routingConfig.routingMode. + * can be modified: routingConfig.routingMode. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -847,7 +860,7 @@ public final UnaryCallable patchNetworkCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes a peering from the specified network. + * Removes a peering from the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -878,7 +891,7 @@ public final Operation removePeeringNetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes a peering from the specified network. + * Removes a peering from the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -908,7 +921,7 @@ public final Operation removePeeringNetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes a peering from the specified network. + * Removes a peering from the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -934,7 +947,7 @@ public final Operation removePeeringNetwork(RemovePeeringNetworkHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes a peering from the specified network. + * Removes a peering from the specified network. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -960,7 +973,8 @@ public final Operation removePeeringNetwork(RemovePeeringNetworkHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Switches the network mode from auto subnet mode to custom subnet mode. + * Switches the network mode from auto subnet mode to custom subnet mode. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -986,7 +1000,8 @@ public final Operation switchToCustomModeNetwork(ProjectGlobalNetworkName networ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Switches the network mode from auto subnet mode to custom subnet mode. + * Switches the network mode from auto subnet mode to custom subnet mode. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1010,7 +1025,8 @@ public final Operation switchToCustomModeNetwork(String network) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Switches the network mode from auto subnet mode to custom subnet mode. + * Switches the network mode from auto subnet mode to custom subnet mode. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1034,7 +1050,8 @@ public final Operation switchToCustomModeNetwork(SwitchToCustomModeNetworkHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Switches the network mode from auto subnet mode to custom subnet mode. + * Switches the network mode from auto subnet mode to custom subnet mode. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1060,7 +1077,7 @@ public final Operation switchToCustomModeNetwork(SwitchToCustomModeNetworkHttpRe /** * Updates the specified network peering with the data included in the request Only the following * fields can be modified: NetworkPeering.export_custom_routes, and - * NetworkPeering.import_custom_routes + * NetworkPeering.import_custom_routes (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1100,7 +1117,7 @@ public final Operation updatePeeringNetwork( /** * Updates the specified network peering with the data included in the request Only the following * fields can be modified: NetworkPeering.export_custom_routes, and - * NetworkPeering.import_custom_routes + * NetworkPeering.import_custom_routes (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1140,7 +1157,7 @@ public final Operation updatePeeringNetwork( /** * Updates the specified network peering with the data included in the request Only the following * fields can be modified: NetworkPeering.export_custom_routes, and - * NetworkPeering.import_custom_routes + * NetworkPeering.import_custom_routes (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1170,7 +1187,7 @@ public final Operation updatePeeringNetwork(UpdatePeeringNetworkHttpRequest requ /** * Updates the specified network peering with the data included in the request Only the following * fields can be modified: NetworkPeering.export_custom_routes, and - * NetworkPeering.import_custom_routes + * NetworkPeering.import_custom_routes (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpoint.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpoint.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpoint.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpoint.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroup.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroup.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroup.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroup.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupClient.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupClient.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupClient.java index 6f7546c32..f1dca6745 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupClient.java +++ b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupClient.java @@ -157,7 +157,8 @@ public NetworkEndpointGroupStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of network endpoint groups and sorts them by zone. + * Retrieves the list of network endpoint groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -185,7 +186,8 @@ public final AggregatedListNetworkEndpointGroupsPagedResponse aggregatedListNetw // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of network endpoint groups and sorts them by zone. + * Retrieves the list of network endpoint groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -211,7 +213,8 @@ public final AggregatedListNetworkEndpointGroupsPagedResponse aggregatedListNetw // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of network endpoint groups and sorts them by zone. + * Retrieves the list of network endpoint groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -238,7 +241,8 @@ public final AggregatedListNetworkEndpointGroupsPagedResponse aggregatedListNetw // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of network endpoint groups and sorts them by zone. + * Retrieves the list of network endpoint groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -266,7 +270,8 @@ public final AggregatedListNetworkEndpointGroupsPagedResponse aggregatedListNetw // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of network endpoint groups and sorts them by zone. + * Retrieves the list of network endpoint groups and sorts them by zone. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -300,7 +305,8 @@ public final AggregatedListNetworkEndpointGroupsPagedResponse aggregatedListNetw // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Attach a list of network endpoints to the specified network endpoint group. + * Attach a list of network endpoints to the specified network endpoint group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -335,7 +341,8 @@ public final Operation attachNetworkEndpointsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Attach a list of network endpoints to the specified network endpoint group. + * Attach a list of network endpoints to the specified network endpoint group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -369,7 +376,8 @@ public final Operation attachNetworkEndpointsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Attach a list of network endpoints to the specified network endpoint group. + * Attach a list of network endpoints to the specified network endpoint group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -396,7 +404,8 @@ public final Operation attachNetworkEndpointsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Attach a list of network endpoints to the specified network endpoint group. + * Attach a list of network endpoints to the specified network endpoint group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -424,7 +433,8 @@ public final Operation attachNetworkEndpointsNetworkEndpointGroup( /** * Deletes the specified network endpoint group. The network endpoints in the NEG and the VM * instances they belong to are not terminated when the NEG is deleted. Note that the NEG cannot - * be deleted if there are backend services referencing it. + * be deleted if there are backend services referencing it. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -455,7 +465,8 @@ public final Operation deleteNetworkEndpointGroup( /** * Deletes the specified network endpoint group. The network endpoints in the NEG and the VM * instances they belong to are not terminated when the NEG is deleted. Note that the NEG cannot - * be deleted if there are backend services referencing it. + * be deleted if there are backend services referencing it. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -484,7 +495,8 @@ public final Operation deleteNetworkEndpointGroup(String networkEndpointGroup) { /** * Deletes the specified network endpoint group. The network endpoints in the NEG and the VM * instances they belong to are not terminated when the NEG is deleted. Note that the NEG cannot - * be deleted if there are backend services referencing it. + * be deleted if there are backend services referencing it. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -510,7 +522,8 @@ public final Operation deleteNetworkEndpointGroup(DeleteNetworkEndpointGroupHttp /** * Deletes the specified network endpoint group. The network endpoints in the NEG and the VM * instances they belong to are not terminated when the NEG is deleted. Note that the NEG cannot - * be deleted if there are backend services referencing it. + * be deleted if there are backend services referencing it. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -534,7 +547,8 @@ public final Operation deleteNetworkEndpointGroup(DeleteNetworkEndpointGroupHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Detach a list of network endpoints from the specified network endpoint group. + * Detach a list of network endpoints from the specified network endpoint group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -569,7 +583,8 @@ public final Operation detachNetworkEndpointsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Detach a list of network endpoints from the specified network endpoint group. + * Detach a list of network endpoints from the specified network endpoint group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -603,7 +618,8 @@ public final Operation detachNetworkEndpointsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Detach a list of network endpoints from the specified network endpoint group. + * Detach a list of network endpoints from the specified network endpoint group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -630,7 +646,8 @@ public final Operation detachNetworkEndpointsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Detach a list of network endpoints from the specified network endpoint group. + * Detach a list of network endpoints from the specified network endpoint group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -657,7 +674,7 @@ public final Operation detachNetworkEndpointsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified network endpoint group. Gets a list of available network endpoint groups - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -687,7 +704,7 @@ public final NetworkEndpointGroup getNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified network endpoint group. Gets a list of available network endpoint groups - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -715,7 +732,7 @@ public final NetworkEndpointGroup getNetworkEndpointGroup(String networkEndpoint // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified network endpoint group. Gets a list of available network endpoint groups - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -741,7 +758,7 @@ public final NetworkEndpointGroup getNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified network endpoint group. Gets a list of available network endpoint groups - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -766,7 +783,7 @@ public final NetworkEndpointGroup getNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a network endpoint group in the specified project using the parameters that are - * included in the request. + * included in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -798,7 +815,7 @@ public final Operation insertNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a network endpoint group in the specified project using the parameters that are - * included in the request. + * included in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -830,7 +847,7 @@ public final Operation insertNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a network endpoint group in the specified project using the parameters that are - * included in the request. + * included in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -857,7 +874,7 @@ public final Operation insertNetworkEndpointGroup(InsertNetworkEndpointGroupHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a network endpoint group in the specified project using the parameters that are - * included in the request. + * included in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -884,7 +901,7 @@ public final Operation insertNetworkEndpointGroup(InsertNetworkEndpointGroupHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of network endpoint groups that are located in the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -914,7 +931,7 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of network endpoint groups that are located in the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -941,7 +958,7 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of network endpoint groups that are located in the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -969,7 +986,7 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of network endpoint groups that are located in the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -997,7 +1014,7 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of network endpoint groups that are located in the specified project and - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1030,7 +1047,8 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the network endpoints in the specified network endpoint group. + * Lists the network endpoints in the specified network endpoint group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1067,7 +1085,8 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the network endpoints in the specified network endpoint group. + * Lists the network endpoints in the specified network endpoint group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1103,7 +1122,8 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the network endpoints in the specified network endpoint group. + * Lists the network endpoints in the specified network endpoint group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1133,7 +1153,8 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the network endpoints in the specified network endpoint group. + * Lists the network endpoints in the specified network endpoint group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1163,7 +1184,8 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists the network endpoints in the specified network endpoint group. + * Lists the network endpoints in the specified network endpoint group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1200,7 +1222,8 @@ public final ListNetworkEndpointGroupsPagedResponse listNetworkEndpointGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1231,7 +1254,8 @@ public final TestPermissionsResponse testIamPermissionsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1261,7 +1285,8 @@ public final TestPermissionsResponse testIamPermissionsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1288,7 +1313,8 @@ public final TestPermissionsResponse testIamPermissionsNetworkEndpointGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupList.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupList.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupSettings.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupSettings.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsAttachEndpointsRequest.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsAttachEndpointsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsAttachEndpointsRequest.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsAttachEndpointsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsDetachEndpointsRequest.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsDetachEndpointsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsDetachEndpointsRequest.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsDetachEndpointsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsListEndpointsRequest.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsListEndpointsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsListEndpointsRequest.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsListEndpointsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsListNetworkEndpoints.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsListNetworkEndpoints.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsListNetworkEndpoints.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsListNetworkEndpoints.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsScopedList.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointGroupsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointWithHealthStatus.java b/src/main/java/com/google/cloud/compute/v1/NetworkEndpointWithHealthStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkEndpointWithHealthStatus.java rename to src/main/java/com/google/cloud/compute/v1/NetworkEndpointWithHealthStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkInterface.java b/src/main/java/com/google/cloud/compute/v1/NetworkInterface.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkInterface.java rename to src/main/java/com/google/cloud/compute/v1/NetworkInterface.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkList.java b/src/main/java/com/google/cloud/compute/v1/NetworkList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkList.java rename to src/main/java/com/google/cloud/compute/v1/NetworkList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkPeering.java b/src/main/java/com/google/cloud/compute/v1/NetworkPeering.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkPeering.java rename to src/main/java/com/google/cloud/compute/v1/NetworkPeering.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkRoutingConfig.java b/src/main/java/com/google/cloud/compute/v1/NetworkRoutingConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkRoutingConfig.java rename to src/main/java/com/google/cloud/compute/v1/NetworkRoutingConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkSettings.java b/src/main/java/com/google/cloud/compute/v1/NetworkSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworkSettings.java rename to src/main/java/com/google/cloud/compute/v1/NetworkSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworksAddPeeringRequest.java b/src/main/java/com/google/cloud/compute/v1/NetworksAddPeeringRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworksAddPeeringRequest.java rename to src/main/java/com/google/cloud/compute/v1/NetworksAddPeeringRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworksRemovePeeringRequest.java b/src/main/java/com/google/cloud/compute/v1/NetworksRemovePeeringRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworksRemovePeeringRequest.java rename to src/main/java/com/google/cloud/compute/v1/NetworksRemovePeeringRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworksUpdatePeeringRequest.java b/src/main/java/com/google/cloud/compute/v1/NetworksUpdatePeeringRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NetworksUpdatePeeringRequest.java rename to src/main/java/com/google/cloud/compute/v1/NetworksUpdatePeeringRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroup.java b/src/main/java/com/google/cloud/compute/v1/NodeGroup.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroup.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroup.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupClient.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupClient.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupClient.java index 0b4ea84bc..54e5cc6dc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupClient.java +++ b/src/main/java/com/google/cloud/compute/v1/NodeGroupClient.java @@ -154,7 +154,7 @@ public NodeGroupStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds specified number of nodes to the node group. + * Adds specified number of nodes to the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -185,7 +185,7 @@ public final Operation addNodesNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds specified number of nodes to the node group. + * Adds specified number of nodes to the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -215,7 +215,7 @@ public final Operation addNodesNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds specified number of nodes to the node group. + * Adds specified number of nodes to the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -241,7 +241,7 @@ public final Operation addNodesNodeGroup(AddNodesNodeGroupHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds specified number of nodes to the node group. + * Adds specified number of nodes to the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -267,7 +267,7 @@ public final UnaryCallable addNodesNode // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves an aggregated list of node groups. Note: use nodeGroups.listNodes for more details - * about each group. + * about each group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -295,7 +295,7 @@ public final AggregatedListNodeGroupsPagedResponse aggregatedListNodeGroups(Proj // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves an aggregated list of node groups. Note: use nodeGroups.listNodes for more details - * about each group. + * about each group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -321,7 +321,7 @@ public final AggregatedListNodeGroupsPagedResponse aggregatedListNodeGroups(Stri // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves an aggregated list of node groups. Note: use nodeGroups.listNodes for more details - * about each group. + * about each group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -349,7 +349,7 @@ public final AggregatedListNodeGroupsPagedResponse aggregatedListNodeGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves an aggregated list of node groups. Note: use nodeGroups.listNodes for more details - * about each group. + * about each group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -377,7 +377,7 @@ public final AggregatedListNodeGroupsPagedResponse aggregatedListNodeGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves an aggregated list of node groups. Note: use nodeGroups.listNodes for more details - * about each group. + * about each group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -410,7 +410,7 @@ public final AggregatedListNodeGroupsPagedResponse aggregatedListNodeGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified NodeGroup resource. + * Deletes the specified NodeGroup resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -436,7 +436,7 @@ public final Operation deleteNodeGroup(ProjectZoneNodeGroupName nodeGroup) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified NodeGroup resource. + * Deletes the specified NodeGroup resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -460,7 +460,7 @@ public final Operation deleteNodeGroup(String nodeGroup) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified NodeGroup resource. + * Deletes the specified NodeGroup resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -484,7 +484,7 @@ public final Operation deleteNodeGroup(DeleteNodeGroupHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified NodeGroup resource. + * Deletes the specified NodeGroup resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -507,7 +507,7 @@ public final UnaryCallable deleteNodeGrou // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes specified nodes from the node group. + * Deletes specified nodes from the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -538,7 +538,7 @@ public final Operation deleteNodesNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes specified nodes from the node group. + * Deletes specified nodes from the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -568,7 +568,7 @@ public final Operation deleteNodesNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes specified nodes from the node group. + * Deletes specified nodes from the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -594,7 +594,7 @@ public final Operation deleteNodesNodeGroup(DeleteNodesNodeGroupHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes specified nodes from the node group. + * Deletes specified nodes from the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -621,7 +621,8 @@ public final Operation deleteNodesNodeGroup(DeleteNodesNodeGroupHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified NodeGroup. Get a list of available NodeGroups by making a list() request. - * Note: the "nodes" field should not be used. Use nodeGroups.listNodes instead. + * Note: the "nodes" field should not be used. Use nodeGroups.listNodes instead. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -648,7 +649,8 @@ public final NodeGroup getNodeGroup(ProjectZoneNodeGroupName nodeGroup) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified NodeGroup. Get a list of available NodeGroups by making a list() request. - * Note: the "nodes" field should not be used. Use nodeGroups.listNodes instead. + * Note: the "nodes" field should not be used. Use nodeGroups.listNodes instead. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -673,7 +675,8 @@ public final NodeGroup getNodeGroup(String nodeGroup) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified NodeGroup. Get a list of available NodeGroups by making a list() request. - * Note: the "nodes" field should not be used. Use nodeGroups.listNodes instead. + * Note: the "nodes" field should not be used. Use nodeGroups.listNodes instead. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -698,7 +701,8 @@ public final NodeGroup getNodeGroup(GetNodeGroupHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified NodeGroup. Get a list of available NodeGroups by making a list() request. - * Note: the "nodes" field should not be used. Use nodeGroups.listNodes instead. + * Note: the "nodes" field should not be used. Use nodeGroups.listNodes instead. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -722,7 +726,7 @@ public final UnaryCallable getNodeGroupCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -749,7 +753,7 @@ public final Policy getIamPolicyNodeGroup(ProjectZoneNodeGroupResourceName resou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -774,7 +778,7 @@ public final Policy getIamPolicyNodeGroup(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -799,7 +803,7 @@ public final Policy getIamPolicyNodeGroup(GetIamPolicyNodeGroupHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -824,6 +828,7 @@ public final Policy getIamPolicyNodeGroup(GetIamPolicyNodeGroupHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a NodeGroup resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -862,6 +867,7 @@ public final Operation insertNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a NodeGroup resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -900,6 +906,7 @@ public final Operation insertNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a NodeGroup resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -928,6 +935,7 @@ public final Operation insertNodeGroup(InsertNodeGroupHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a NodeGroup resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -955,7 +963,8 @@ public final UnaryCallable insertNodeGrou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of node groups available to the specified project. Note: use - * nodeGroups.listNodes for more details about each group. + * nodeGroups.listNodes for more details about each group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -983,7 +992,8 @@ public final ListNodeGroupsPagedResponse listNodeGroups(ProjectZoneName zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of node groups available to the specified project. Note: use - * nodeGroups.listNodes for more details about each group. + * nodeGroups.listNodes for more details about each group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1009,7 +1019,8 @@ public final ListNodeGroupsPagedResponse listNodeGroups(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of node groups available to the specified project. Note: use - * nodeGroups.listNodes for more details about each group. + * nodeGroups.listNodes for more details about each group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1036,7 +1047,8 @@ public final ListNodeGroupsPagedResponse listNodeGroups(ListNodeGroupsHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of node groups available to the specified project. Note: use - * nodeGroups.listNodes for more details about each group. + * nodeGroups.listNodes for more details about each group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1063,7 +1075,8 @@ public final ListNodeGroupsPagedResponse listNodeGroups(ListNodeGroupsHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves a list of node groups available to the specified project. Note: use - * nodeGroups.listNodes for more details about each group. + * nodeGroups.listNodes for more details about each group. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1095,7 +1108,7 @@ public final UnaryCallable listNodeGro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists nodes in the node group. + * Lists nodes in the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1123,7 +1136,7 @@ public final ListNodesNodeGroupsPagedResponse listNodesNodeGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists nodes in the node group. + * Lists nodes in the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1148,7 +1161,7 @@ public final ListNodesNodeGroupsPagedResponse listNodesNodeGroups(String nodeGro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists nodes in the node group. + * Lists nodes in the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1175,7 +1188,7 @@ public final ListNodesNodeGroupsPagedResponse listNodesNodeGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists nodes in the node group. + * Lists nodes in the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1201,7 +1214,7 @@ public final ListNodesNodeGroupsPagedResponse listNodesNodeGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists nodes in the node group. + * Lists nodes in the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1234,7 +1247,8 @@ public final ListNodesNodeGroupsPagedResponse listNodesNodeGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1265,7 +1279,8 @@ public final Policy setIamPolicyNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1295,7 +1310,8 @@ public final Policy setIamPolicyNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1321,7 +1337,8 @@ public final Policy setIamPolicyNodeGroup(SetIamPolicyNodeGroupHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1347,7 +1364,7 @@ public final Policy setIamPolicyNodeGroup(SetIamPolicyNodeGroupHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the node template of the node group. + * Updates the node template of the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1378,7 +1395,7 @@ public final Operation setNodeTemplateNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the node template of the node group. + * Updates the node template of the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1408,7 +1425,7 @@ public final Operation setNodeTemplateNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the node template of the node group. + * Updates the node template of the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1434,7 +1451,7 @@ public final Operation setNodeTemplateNodeGroup(SetNodeTemplateNodeGroupHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the node template of the node group. + * Updates the node template of the node group. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1460,7 +1477,8 @@ public final Operation setNodeTemplateNodeGroup(SetNodeTemplateNodeGroupHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1491,7 +1509,8 @@ public final TestPermissionsResponse testIamPermissionsNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1521,7 +1540,8 @@ public final TestPermissionsResponse testIamPermissionsNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1548,7 +1568,8 @@ public final TestPermissionsResponse testIamPermissionsNodeGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupList.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupList.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupNode.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupNode.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupNode.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupNode.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupSettings.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupSettings.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsAddNodesRequest.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupsAddNodesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsAddNodesRequest.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupsAddNodesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsDeleteNodesRequest.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupsDeleteNodesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsDeleteNodesRequest.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupsDeleteNodesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsListNodes.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupsListNodes.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsListNodes.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupsListNodes.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsScopedList.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsSetNodeTemplateRequest.java b/src/main/java/com/google/cloud/compute/v1/NodeGroupsSetNodeTemplateRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeGroupsSetNodeTemplateRequest.java rename to src/main/java/com/google/cloud/compute/v1/NodeGroupsSetNodeTemplateRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplate.java b/src/main/java/com/google/cloud/compute/v1/NodeTemplate.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplate.java rename to src/main/java/com/google/cloud/compute/v1/NodeTemplate.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/NodeTemplateAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/NodeTemplateAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateClient.java b/src/main/java/com/google/cloud/compute/v1/NodeTemplateClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateClient.java rename to src/main/java/com/google/cloud/compute/v1/NodeTemplateClient.java index 2ad6e1ec0..f1ef7e2c5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateClient.java +++ b/src/main/java/com/google/cloud/compute/v1/NodeTemplateClient.java @@ -154,7 +154,7 @@ public NodeTemplateStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node templates. + * Retrieves an aggregated list of node templates. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +182,7 @@ public final AggregatedListNodeTemplatesPagedResponse aggregatedListNodeTemplate // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node templates. + * Retrieves an aggregated list of node templates. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -208,7 +208,7 @@ public final AggregatedListNodeTemplatesPagedResponse aggregatedListNodeTemplate // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node templates. + * Retrieves an aggregated list of node templates. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -235,7 +235,7 @@ public final AggregatedListNodeTemplatesPagedResponse aggregatedListNodeTemplate // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node templates. + * Retrieves an aggregated list of node templates. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -262,7 +262,7 @@ public final AggregatedListNodeTemplatesPagedResponse aggregatedListNodeTemplate // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node templates. + * Retrieves an aggregated list of node templates. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -295,7 +295,7 @@ public final AggregatedListNodeTemplatesPagedResponse aggregatedListNodeTemplate // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified NodeTemplate resource. + * Deletes the specified NodeTemplate resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -321,7 +321,7 @@ public final Operation deleteNodeTemplate(ProjectRegionNodeTemplateName nodeTemp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified NodeTemplate resource. + * Deletes the specified NodeTemplate resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -345,7 +345,7 @@ public final Operation deleteNodeTemplate(String nodeTemplate) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified NodeTemplate resource. + * Deletes the specified NodeTemplate resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -369,7 +369,7 @@ public final Operation deleteNodeTemplate(DeleteNodeTemplateHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified NodeTemplate resource. + * Deletes the specified NodeTemplate resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -394,7 +394,7 @@ public final Operation deleteNodeTemplate(DeleteNodeTemplateHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified node template. Gets a list of available node templates by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -421,7 +421,7 @@ public final NodeTemplate getNodeTemplate(ProjectRegionNodeTemplateName nodeTemp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified node template. Gets a list of available node templates by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -446,7 +446,7 @@ public final NodeTemplate getNodeTemplate(String nodeTemplate) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified node template. Gets a list of available node templates by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -471,7 +471,7 @@ public final NodeTemplate getNodeTemplate(GetNodeTemplateHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified node template. Gets a list of available node templates by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -495,7 +495,7 @@ public final UnaryCallable getNodeTemp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -522,7 +522,7 @@ public final Policy getIamPolicyNodeTemplate(ProjectRegionNodeTemplateResourceNa // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -547,7 +547,7 @@ public final Policy getIamPolicyNodeTemplate(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -572,7 +572,7 @@ public final Policy getIamPolicyNodeTemplate(GetIamPolicyNodeTemplateHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -597,7 +597,7 @@ public final Policy getIamPolicyNodeTemplate(GetIamPolicyNodeTemplateHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a NodeTemplate resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -631,7 +631,7 @@ public final Operation insertNodeTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a NodeTemplate resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -664,7 +664,7 @@ public final Operation insertNodeTemplate(String region, NodeTemplate nodeTempla // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a NodeTemplate resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -691,7 +691,7 @@ public final Operation insertNodeTemplate(InsertNodeTemplateHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a NodeTemplate resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -717,7 +717,8 @@ public final Operation insertNodeTemplate(InsertNodeTemplateHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node templates available to the specified project. + * Retrieves a list of node templates available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -744,7 +745,8 @@ public final ListNodeTemplatesPagedResponse listNodeTemplates(ProjectRegionName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node templates available to the specified project. + * Retrieves a list of node templates available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -769,7 +771,8 @@ public final ListNodeTemplatesPagedResponse listNodeTemplates(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node templates available to the specified project. + * Retrieves a list of node templates available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -796,7 +799,8 @@ public final ListNodeTemplatesPagedResponse listNodeTemplates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node templates available to the specified project. + * Retrieves a list of node templates available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -822,7 +826,8 @@ public final ListNodeTemplatesPagedResponse listNodeTemplates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node templates available to the specified project. + * Retrieves a list of node templates available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -855,7 +860,8 @@ public final ListNodeTemplatesPagedResponse listNodeTemplates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -886,7 +892,8 @@ public final Policy setIamPolicyNodeTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -916,7 +923,8 @@ public final Policy setIamPolicyNodeTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -942,7 +950,8 @@ public final Policy setIamPolicyNodeTemplate(SetIamPolicyNodeTemplateHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -968,7 +977,8 @@ public final Policy setIamPolicyNodeTemplate(SetIamPolicyNodeTemplateHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -999,7 +1009,8 @@ public final TestPermissionsResponse testIamPermissionsNodeTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1029,7 +1040,8 @@ public final TestPermissionsResponse testIamPermissionsNodeTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1056,7 +1068,8 @@ public final TestPermissionsResponse testIamPermissionsNodeTemplate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateList.java b/src/main/java/com/google/cloud/compute/v1/NodeTemplateList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateList.java rename to src/main/java/com/google/cloud/compute/v1/NodeTemplateList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateNodeTypeFlexibility.java b/src/main/java/com/google/cloud/compute/v1/NodeTemplateNodeTypeFlexibility.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateNodeTypeFlexibility.java rename to src/main/java/com/google/cloud/compute/v1/NodeTemplateNodeTypeFlexibility.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateSettings.java b/src/main/java/com/google/cloud/compute/v1/NodeTemplateSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplateSettings.java rename to src/main/java/com/google/cloud/compute/v1/NodeTemplateSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplatesScopedList.java b/src/main/java/com/google/cloud/compute/v1/NodeTemplatesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTemplatesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/NodeTemplatesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeType.java b/src/main/java/com/google/cloud/compute/v1/NodeType.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeType.java rename to src/main/java/com/google/cloud/compute/v1/NodeType.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/NodeTypeAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/NodeTypeAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeClient.java b/src/main/java/com/google/cloud/compute/v1/NodeTypeClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeClient.java rename to src/main/java/com/google/cloud/compute/v1/NodeTypeClient.java index 89fc1be35..efa17cec1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeClient.java +++ b/src/main/java/com/google/cloud/compute/v1/NodeTypeClient.java @@ -153,7 +153,7 @@ public NodeTypeStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node types. + * Retrieves an aggregated list of node types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -180,7 +180,7 @@ public final AggregatedListNodeTypesPagedResponse aggregatedListNodeTypes(Projec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node types. + * Retrieves an aggregated list of node types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final AggregatedListNodeTypesPagedResponse aggregatedListNodeTypes(String // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node types. + * Retrieves an aggregated list of node types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -232,7 +232,7 @@ public final AggregatedListNodeTypesPagedResponse aggregatedListNodeTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node types. + * Retrieves an aggregated list of node types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -259,7 +259,7 @@ public final AggregatedListNodeTypesPagedResponse aggregatedListNodeTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of node types. + * Retrieves an aggregated list of node types. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -293,7 +293,7 @@ public final AggregatedListNodeTypesPagedResponse aggregatedListNodeTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified node type. Gets a list of available node types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -320,7 +320,7 @@ public final NodeType getNodeType(ProjectZoneNodeTypeName nodeType) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified node type. Gets a list of available node types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -345,7 +345,7 @@ public final NodeType getNodeType(String nodeType) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified node type. Gets a list of available node types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -370,7 +370,7 @@ public final NodeType getNodeType(GetNodeTypeHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified node type. Gets a list of available node types by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -393,7 +393,8 @@ public final UnaryCallable getNodeTypeCallable // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node types available to the specified project. + * Retrieves a list of node types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -420,7 +421,8 @@ public final ListNodeTypesPagedResponse listNodeTypes(ProjectZoneName zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node types available to the specified project. + * Retrieves a list of node types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -444,7 +446,8 @@ public final ListNodeTypesPagedResponse listNodeTypes(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node types available to the specified project. + * Retrieves a list of node types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -470,7 +473,8 @@ public final ListNodeTypesPagedResponse listNodeTypes(ListNodeTypesHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node types available to the specified project. + * Retrieves a list of node types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -496,7 +500,8 @@ public final ListNodeTypesPagedResponse listNodeTypes(ListNodeTypesHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of node types available to the specified project. + * Retrieves a list of node types available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeList.java b/src/main/java/com/google/cloud/compute/v1/NodeTypeList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeList.java rename to src/main/java/com/google/cloud/compute/v1/NodeTypeList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeSettings.java b/src/main/java/com/google/cloud/compute/v1/NodeTypeSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypeSettings.java rename to src/main/java/com/google/cloud/compute/v1/NodeTypeSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypesScopedList.java b/src/main/java/com/google/cloud/compute/v1/NodeTypesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/NodeTypesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/NodeTypesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Operation.java b/src/main/java/com/google/cloud/compute/v1/Operation.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Operation.java rename to src/main/java/com/google/cloud/compute/v1/Operation.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OperationAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/OperationAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OperationAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/OperationAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OperationList.java b/src/main/java/com/google/cloud/compute/v1/OperationList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OperationList.java rename to src/main/java/com/google/cloud/compute/v1/OperationList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OperationsScopedList.java b/src/main/java/com/google/cloud/compute/v1/OperationsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OperationsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/OperationsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OutlierDetection.java b/src/main/java/com/google/cloud/compute/v1/OutlierDetection.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OutlierDetection.java rename to src/main/java/com/google/cloud/compute/v1/OutlierDetection.java index fb691a124..9cd6a4ce4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/OutlierDetection.java +++ b/src/main/java/com/google/cloud/compute/v1/OutlierDetection.java @@ -24,7 +24,10 @@ @Generated("by GAPIC") @BetaApi -/** Settings controlling eviction of unhealthy hosts from the load balancing pool. */ +/** + * Settings controlling the eviction of unhealthy hosts from the load balancing pool for the backend + * service. + */ public final class OutlierDetection implements ApiMessage { private final Duration baseEjectionTime; private final Integer consecutiveErrors; @@ -134,8 +137,8 @@ public List getFieldMask() { } /** - * The base time that a host is ejected for. The real time is equal to the base time multiplied by - * the number of times the host has been ejected. Defaults to 30000ms or 30s. + * The base time that a host is ejected for. The real ejection time is equal to the base ejection + * time multiplied by the number of times the host has been ejected. Defaults to 30000ms or 30s. */ public Duration getBaseEjectionTime() { return baseEjectionTime; @@ -152,7 +155,7 @@ public Integer getConsecutiveErrors() { /** * The number of consecutive gateway failures (502, 503, 504 status or connection errors that are * mapped to one of those status codes) before a consecutive gateway failure ejection occurs. - * Defaults to 5. + * Defaults to 3. */ public Integer getConsecutiveGatewayFailure() { return consecutiveGatewayFailure; @@ -161,7 +164,7 @@ public Integer getConsecutiveGatewayFailure() { /** * The percentage chance that a host will be actually ejected when an outlier status is detected * through consecutive 5xx. This setting can be used to disable ejection or to ramp it up slowly. - * Defaults to 100. + * Defaults to 0. */ public Integer getEnforcingConsecutiveErrors() { return enforcingConsecutiveErrors; @@ -170,7 +173,7 @@ public Integer getEnforcingConsecutiveErrors() { /** * The percentage chance that a host will be actually ejected when an outlier status is detected * through consecutive gateway failures. This setting can be used to disable ejection or to ramp - * it up slowly. Defaults to 0. + * it up slowly. Defaults to 100. */ public Integer getEnforcingConsecutiveGatewayFailure() { return enforcingConsecutiveGatewayFailure; @@ -187,7 +190,7 @@ public Integer getEnforcingSuccessRate() { /** * Time interval between ejection sweep analysis. This can result in both new ejections as well as - * hosts being returned to service. Defaults to 10 seconds. + * hosts being returned to service. Defaults to 1 seconds. */ public Duration getInterval() { return interval; @@ -195,7 +198,7 @@ public Duration getInterval() { /** * Maximum percentage of hosts in the load balancing pool for the backend service that can be - * ejected. Defaults to 10%. + * ejected. Defaults to 50%. */ public Integer getMaxEjectionPercent() { return maxEjectionPercent; @@ -321,16 +324,18 @@ public Builder mergeFrom(OutlierDetection other) { } /** - * The base time that a host is ejected for. The real time is equal to the base time multiplied - * by the number of times the host has been ejected. Defaults to 30000ms or 30s. + * The base time that a host is ejected for. The real ejection time is equal to the base + * ejection time multiplied by the number of times the host has been ejected. Defaults to + * 30000ms or 30s. */ public Duration getBaseEjectionTime() { return baseEjectionTime; } /** - * The base time that a host is ejected for. The real time is equal to the base time multiplied - * by the number of times the host has been ejected. Defaults to 30000ms or 30s. + * The base time that a host is ejected for. The real ejection time is equal to the base + * ejection time multiplied by the number of times the host has been ejected. Defaults to + * 30000ms or 30s. */ public Builder setBaseEjectionTime(Duration baseEjectionTime) { this.baseEjectionTime = baseEjectionTime; @@ -357,7 +362,7 @@ public Builder setConsecutiveErrors(Integer consecutiveErrors) { /** * The number of consecutive gateway failures (502, 503, 504 status or connection errors that * are mapped to one of those status codes) before a consecutive gateway failure ejection - * occurs. Defaults to 5. + * occurs. Defaults to 3. */ public Integer getConsecutiveGatewayFailure() { return consecutiveGatewayFailure; @@ -366,7 +371,7 @@ public Integer getConsecutiveGatewayFailure() { /** * The number of consecutive gateway failures (502, 503, 504 status or connection errors that * are mapped to one of those status codes) before a consecutive gateway failure ejection - * occurs. Defaults to 5. + * occurs. Defaults to 3. */ public Builder setConsecutiveGatewayFailure(Integer consecutiveGatewayFailure) { this.consecutiveGatewayFailure = consecutiveGatewayFailure; @@ -376,7 +381,7 @@ public Builder setConsecutiveGatewayFailure(Integer consecutiveGatewayFailure) { /** * The percentage chance that a host will be actually ejected when an outlier status is detected * through consecutive 5xx. This setting can be used to disable ejection or to ramp it up - * slowly. Defaults to 100. + * slowly. Defaults to 0. */ public Integer getEnforcingConsecutiveErrors() { return enforcingConsecutiveErrors; @@ -385,7 +390,7 @@ public Integer getEnforcingConsecutiveErrors() { /** * The percentage chance that a host will be actually ejected when an outlier status is detected * through consecutive 5xx. This setting can be used to disable ejection or to ramp it up - * slowly. Defaults to 100. + * slowly. Defaults to 0. */ public Builder setEnforcingConsecutiveErrors(Integer enforcingConsecutiveErrors) { this.enforcingConsecutiveErrors = enforcingConsecutiveErrors; @@ -395,7 +400,7 @@ public Builder setEnforcingConsecutiveErrors(Integer enforcingConsecutiveErrors) /** * The percentage chance that a host will be actually ejected when an outlier status is detected * through consecutive gateway failures. This setting can be used to disable ejection or to ramp - * it up slowly. Defaults to 0. + * it up slowly. Defaults to 100. */ public Integer getEnforcingConsecutiveGatewayFailure() { return enforcingConsecutiveGatewayFailure; @@ -404,7 +409,7 @@ public Integer getEnforcingConsecutiveGatewayFailure() { /** * The percentage chance that a host will be actually ejected when an outlier status is detected * through consecutive gateway failures. This setting can be used to disable ejection or to ramp - * it up slowly. Defaults to 0. + * it up slowly. Defaults to 100. */ public Builder setEnforcingConsecutiveGatewayFailure( Integer enforcingConsecutiveGatewayFailure) { @@ -433,7 +438,7 @@ public Builder setEnforcingSuccessRate(Integer enforcingSuccessRate) { /** * Time interval between ejection sweep analysis. This can result in both new ejections as well - * as hosts being returned to service. Defaults to 10 seconds. + * as hosts being returned to service. Defaults to 1 seconds. */ public Duration getInterval() { return interval; @@ -441,7 +446,7 @@ public Duration getInterval() { /** * Time interval between ejection sweep analysis. This can result in both new ejections as well - * as hosts being returned to service. Defaults to 10 seconds. + * as hosts being returned to service. Defaults to 1 seconds. */ public Builder setInterval(Duration interval) { this.interval = interval; @@ -450,7 +455,7 @@ public Builder setInterval(Duration interval) { /** * Maximum percentage of hosts in the load balancing pool for the backend service that can be - * ejected. Defaults to 10%. + * ejected. Defaults to 50%. */ public Integer getMaxEjectionPercent() { return maxEjectionPercent; @@ -458,7 +463,7 @@ public Integer getMaxEjectionPercent() { /** * Maximum percentage of hosts in the load balancing pool for the backend service that can be - * ejected. Defaults to 10%. + * ejected. Defaults to 50%. */ public Builder setMaxEjectionPercent(Integer maxEjectionPercent) { this.maxEjectionPercent = maxEjectionPercent; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchAutoscalerHttpRequest.java index 22ce6909f..4c8570ae0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchAutoscalerHttpRequest.java @@ -28,7 +28,7 @@ /** * Request object for method compute.autoscalers.patch. Updates an autoscaler in the specified * project using the data included in the request. This method supports PATCH semantics and uses the - * JSON merge patch format and processing rules. + * JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchAutoscalerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchBackendBucketHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchBackendBucketHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchBackendBucketHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchBackendBucketHttpRequest.java index c2e143624..d38adff7c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchBackendBucketHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchBackendBucketHttpRequest.java @@ -28,7 +28,7 @@ /** * Request object for method compute.backendBuckets.patch. Updates the specified BackendBucket * resource with the data included in the request. This method supports PATCH semantics and uses the - * JSON merge patch format and processing rules. + * JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchBackendBucketHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchBackendServiceHttpRequest.java similarity index 90% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchBackendServiceHttpRequest.java index e3492d69b..88ea6b60d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchBackendServiceHttpRequest.java @@ -30,7 +30,7 @@ * resource with the data included in the request. There are several restrictions and guidelines to * keep in mind when updating a backend service. Read Restrictions and Guidelines for more * information. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchBackendServiceHttpRequest implements ApiMessage { private final String access_token; @@ -148,16 +148,12 @@ public String getBackendService() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services are - * used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -348,16 +344,12 @@ public Builder setBackendService(String backendService) { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -366,16 +358,12 @@ public BackendService getBackendServiceResource() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public Builder setBackendServiceResource(BackendService backendServiceResource) { this.backendServiceResource = backendServiceResource; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchFirewallHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchFirewallHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchFirewallHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchFirewallHttpRequest.java index f95ddb52c..a8cd8c63f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchFirewallHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchFirewallHttpRequest.java @@ -28,7 +28,7 @@ /** * Request object for method compute.firewalls.patch. Updates the specified firewall rule with the * data included in the request. This method supports PATCH semantics and uses the JSON merge patch - * format and processing rules. + * format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchFirewallHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchHealthCheckHttpRequest.java index cff18e7fb..8e8cbed8c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchHealthCheckHttpRequest.java @@ -28,7 +28,8 @@ /** * Request object for method compute.healthChecks.patch. Updates a HealthCheck resource in the * specified project using the data included in the request. This method supports PATCH semantics - * and uses the JSON merge patch format and processing rules. + * and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) */ public final class PatchHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHttpHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchHttpHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHttpHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchHttpHealthCheckHttpRequest.java index 4777ce866..280cfb858 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHttpHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchHttpHealthCheckHttpRequest.java @@ -28,7 +28,8 @@ /** * Request object for method compute.httpHealthChecks.patch. Updates a HttpHealthCheck resource in * the specified project using the data included in the request. This method supports PATCH - * semantics and uses the JSON merge patch format and processing rules. + * semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) */ public final class PatchHttpHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHttpsHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchHttpsHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHttpsHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchHttpsHealthCheckHttpRequest.java index 0ae292431..fc4a8d4c6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchHttpsHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchHttpsHealthCheckHttpRequest.java @@ -28,7 +28,8 @@ /** * Request object for method compute.httpsHealthChecks.patch. Updates a HttpsHealthCheck resource in * the specified project using the data included in the request. This method supports PATCH - * semantics and uses the JSON merge patch format and processing rules. + * semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) */ public final class PatchHttpsHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchInstanceGroupManagerHttpRequest.java index bf62134ec..3aa7a3232 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchInstanceGroupManagerHttpRequest.java @@ -31,7 +31,7 @@ * group is patched even if the instances in the group are still in the process of being patched. * You must separately verify the status of the individual instances with the listManagedInstances * method. This method supports PATCH semantics and uses the JSON merge patch format and processing - * rules. + * rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInterconnectAttachmentHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchInterconnectAttachmentHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInterconnectAttachmentHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchInterconnectAttachmentHttpRequest.java index e087ff920..58f942466 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInterconnectAttachmentHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchInterconnectAttachmentHttpRequest.java @@ -28,7 +28,8 @@ /** * Request object for method compute.interconnectAttachments.patch. Updates the specified * interconnect attachment with the data included in the request. This method supports PATCH - * semantics and uses the JSON merge patch format and processing rules. + * semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) */ public final class PatchInterconnectAttachmentHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInterconnectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchInterconnectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInterconnectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchInterconnectHttpRequest.java index d089f7c66..b851c0d0a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchInterconnectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchInterconnectHttpRequest.java @@ -28,7 +28,7 @@ /** * Request object for method compute.interconnects.patch. Updates the specified interconnect with * the data included in the request. This method supports PATCH semantics and uses the JSON merge - * patch format and processing rules. + * patch format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchInterconnectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchNetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchNetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchNetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchNetworkHttpRequest.java index cc499ea25..8ed93feff 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchNetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchNetworkHttpRequest.java @@ -28,6 +28,7 @@ /** * Request object for method compute.networks.patch. Patches the specified network with the data * included in the request. Only the following fields can be modified: routingConfig.routingMode. + * (== suppress_warning http-rest-shadowed ==) */ public final class PatchNetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchRegionAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchRegionAutoscalerHttpRequest.java index 4c9c85513..44c0f4511 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchRegionAutoscalerHttpRequest.java @@ -28,7 +28,7 @@ /** * Request object for method compute.regionAutoscalers.patch. Updates an autoscaler in the specified * project using the data included in the request. This method supports PATCH semantics and uses the - * JSON merge patch format and processing rules. + * JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchRegionAutoscalerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchRegionBackendServiceHttpRequest.java similarity index 90% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchRegionBackendServiceHttpRequest.java index 50ba6ec0a..d910cde38 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchRegionBackendServiceHttpRequest.java @@ -30,7 +30,7 @@ * BackendService resource with the data included in the request. There are several restrictions and * guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for * more information. This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. + * processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchRegionBackendServiceHttpRequest implements ApiMessage { private final String access_token; @@ -148,16 +148,12 @@ public String getBackendService() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services are - * used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -348,16 +344,12 @@ public Builder setBackendService(String backendService) { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -366,16 +358,12 @@ public BackendService getBackendServiceResource() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public Builder setBackendServiceResource(BackendService backendServiceResource) { this.backendServiceResource = backendServiceResource; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchRegionHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchRegionHealthCheckHttpRequest.java index df69c1ef8..d5ba08922 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchRegionHealthCheckHttpRequest.java @@ -28,7 +28,8 @@ /** * Request object for method compute.regionHealthChecks.patch. Updates a HealthCheck resource in the * specified project using the data included in the request. This method supports PATCH semantics - * and uses the JSON merge patch format and processing rules. + * and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) */ public final class PatchRegionHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchRegionInstanceGroupManagerHttpRequest.java index 8c608d3f6..1cd10edb5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchRegionInstanceGroupManagerHttpRequest.java @@ -31,7 +31,7 @@ * when the group is patched even if the instances in the group are still in the process of being * patched. You must separately verify the status of the individual instances with the * listmanagedinstances method. This method supports PATCH semantics and uses the JSON merge patch - * format and processing rules. + * format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchRegionUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchRegionUrlMapHttpRequest.java index 97f701fad..ade78edbc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRegionUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchRegionUrlMapHttpRequest.java @@ -28,7 +28,7 @@ /** * Request object for method compute.regionUrlMaps.patch. Patches the specified UrlMap resource with * the data included in the request. This method supports PATCH semantics and uses JSON merge patch - * format and processing rules. + * format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchRegionUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRouterHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchRouterHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRouterHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchRouterHttpRequest.java index 49d493a4e..97fc83e93 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRouterHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchRouterHttpRequest.java @@ -28,7 +28,7 @@ /** * Request object for method compute.routers.patch. Patches the specified Router resource with the * data included in the request. This method supports PATCH semantics and uses JSON merge patch - * format and processing rules. + * format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchRouterHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRuleSecurityPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchRuleSecurityPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRuleSecurityPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchRuleSecurityPolicyHttpRequest.java index bbbd459e4..d1b842fdb 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchRuleSecurityPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchRuleSecurityPolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.securityPolicies.patchRule. Patches a rule at the specified - * priority. + * priority. (== suppress_warning http-rest-shadowed ==) */ public final class PatchRuleSecurityPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSecurityPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchSecurityPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSecurityPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchSecurityPolicyHttpRequest.java index 500460a17..003874660 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSecurityPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchSecurityPolicyHttpRequest.java @@ -27,7 +27,7 @@ @BetaApi /** * Request object for method compute.securityPolicies.patch. Patches the specified policy with the - * data included in the request. + * data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class PatchSecurityPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSslPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchSslPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSslPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchSslPolicyHttpRequest.java index 4ca533678..2f9f10642 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSslPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchSslPolicyHttpRequest.java @@ -27,7 +27,7 @@ @BetaApi /** * Request object for method compute.sslPolicies.patch. Patches the specified SSL policy with the - * data included in the request. + * data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class PatchSslPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchSubnetworkHttpRequest.java similarity index 87% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchSubnetworkHttpRequest.java index 4f1d09e8a..87a0cde93 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchSubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchSubnetworkHttpRequest.java @@ -29,11 +29,12 @@ * Request object for method compute.subnetworks.patch. Patches the specified subnetwork with the * data included in the request. Only certain fields can up updated with a patch request as * indicated in the field descriptions. You must specify the current fingeprint of the subnetwork - * resource being patched. + * resource being patched. (== suppress_warning http-rest-shadowed ==) */ public final class PatchSubnetworkHttpRequest implements ApiMessage { private final String access_token; private final String callback; + private final Integer drainTimeoutSeconds; private final List fieldMask; private final String fields; private final String key; @@ -47,6 +48,7 @@ public final class PatchSubnetworkHttpRequest implements ApiMessage { private PatchSubnetworkHttpRequest() { this.access_token = null; this.callback = null; + this.drainTimeoutSeconds = null; this.fieldMask = null; this.fields = null; this.key = null; @@ -61,6 +63,7 @@ private PatchSubnetworkHttpRequest() { private PatchSubnetworkHttpRequest( String access_token, String callback, + Integer drainTimeoutSeconds, List fieldMask, String fields, String key, @@ -72,6 +75,7 @@ private PatchSubnetworkHttpRequest( String userIp) { this.access_token = access_token; this.callback = callback; + this.drainTimeoutSeconds = drainTimeoutSeconds; this.fieldMask = fieldMask; this.fields = fields; this.key = key; @@ -91,6 +95,9 @@ public Object getFieldValue(String fieldName) { if ("callback".equals(fieldName)) { return callback; } + if ("drainTimeoutSeconds".equals(fieldName)) { + return drainTimeoutSeconds; + } if ("fieldMask".equals(fieldName)) { return fieldMask; } @@ -137,6 +144,18 @@ public String getCallback() { return callback; } + /** + * The drain timeout specifies the upper bound in seconds on the amount of time allowed to drain + * connections from the current ACTIVE subnetwork to the current BACKUP subnetwork. The drain + * timeout is only applicable when the following conditions are true: - the subnetwork being + * patched has purpose = INTERNAL_HTTPS_LOAD_BALANCER - the subnetwork being patched has role = + * BACKUP - the patch request is setting the role to ACTIVE. Note that after this patch operation + * the roles of the ACTIVE and BACKUP subnetworks will be swapped. + */ + public Integer getDrainTimeoutSeconds() { + return drainTimeoutSeconds; + } + /** * The fields that should be serialized (even if they have empty values). If the containing * message object has a non-null fieldmask, then all the fields in the field mask (and only those @@ -238,6 +257,7 @@ public static PatchSubnetworkHttpRequest getDefaultInstance() { public static class Builder { private String access_token; private String callback; + private Integer drainTimeoutSeconds; private List fieldMask; private String fields; private String key; @@ -258,6 +278,9 @@ public Builder mergeFrom(PatchSubnetworkHttpRequest other) { if (other.getCallback() != null) { this.callback = other.callback; } + if (other.getDrainTimeoutSeconds() != null) { + this.drainTimeoutSeconds = other.drainTimeoutSeconds; + } if (other.getFieldMask() != null) { this.fieldMask = other.fieldMask; } @@ -291,6 +314,7 @@ public Builder mergeFrom(PatchSubnetworkHttpRequest other) { Builder(PatchSubnetworkHttpRequest source) { this.access_token = source.access_token; this.callback = source.callback; + this.drainTimeoutSeconds = source.drainTimeoutSeconds; this.fieldMask = source.fieldMask; this.fields = source.fields; this.key = source.key; @@ -324,6 +348,31 @@ public Builder setCallback(String callback) { return this; } + /** + * The drain timeout specifies the upper bound in seconds on the amount of time allowed to drain + * connections from the current ACTIVE subnetwork to the current BACKUP subnetwork. The drain + * timeout is only applicable when the following conditions are true: - the subnetwork being + * patched has purpose = INTERNAL_HTTPS_LOAD_BALANCER - the subnetwork being patched has role = + * BACKUP - the patch request is setting the role to ACTIVE. Note that after this patch + * operation the roles of the ACTIVE and BACKUP subnetworks will be swapped. + */ + public Integer getDrainTimeoutSeconds() { + return drainTimeoutSeconds; + } + + /** + * The drain timeout specifies the upper bound in seconds on the amount of time allowed to drain + * connections from the current ACTIVE subnetwork to the current BACKUP subnetwork. The drain + * timeout is only applicable when the following conditions are true: - the subnetwork being + * patched has purpose = INTERNAL_HTTPS_LOAD_BALANCER - the subnetwork being patched has role = + * BACKUP - the patch request is setting the role to ACTIVE. Note that after this patch + * operation the roles of the ACTIVE and BACKUP subnetworks will be swapped. + */ + public Builder setDrainTimeoutSeconds(Integer drainTimeoutSeconds) { + this.drainTimeoutSeconds = drainTimeoutSeconds; + return this; + } + /** * The fields that should be serialized (even if they have empty values). If the containing * message object has a non-null fieldmask, then all the fields in the field mask (and only @@ -519,6 +568,7 @@ public PatchSubnetworkHttpRequest build() { return new PatchSubnetworkHttpRequest( access_token, callback, + drainTimeoutSeconds, fieldMask, fields, key, @@ -534,6 +584,7 @@ public Builder clone() { Builder newBuilder = new Builder(); newBuilder.setAccessToken(this.access_token); newBuilder.setCallback(this.callback); + newBuilder.setDrainTimeoutSeconds(this.drainTimeoutSeconds); newBuilder.addAllFieldMask(this.fieldMask); newBuilder.setFields(this.fields); newBuilder.setKey(this.key); @@ -556,6 +607,9 @@ public String toString() { + "callback=" + callback + ", " + + "drainTimeoutSeconds=" + + drainTimeoutSeconds + + ", " + "fieldMask=" + fieldMask + ", " @@ -594,6 +648,7 @@ public boolean equals(Object o) { PatchSubnetworkHttpRequest that = (PatchSubnetworkHttpRequest) o; return Objects.equals(this.access_token, that.getAccessToken()) && Objects.equals(this.callback, that.getCallback()) + && Objects.equals(this.drainTimeoutSeconds, that.getDrainTimeoutSeconds()) && Objects.equals(this.fieldMask, that.getFieldMask()) && Objects.equals(this.fields, that.getFields()) && Objects.equals(this.key, that.getKey()) @@ -612,6 +667,7 @@ public int hashCode() { return Objects.hash( access_token, callback, + drainTimeoutSeconds, fieldMask, fields, key, diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PatchUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PatchUrlMapHttpRequest.java index 1f911f391..7c049c42f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PatchUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PatchUrlMapHttpRequest.java @@ -28,7 +28,7 @@ /** * Request object for method compute.urlMaps.patch. Patches the specified UrlMap resource with the * data included in the request. This method supports PATCH semantics and uses the JSON merge patch - * format and processing rules. + * format and processing rules. (== suppress_warning http-rest-shadowed ==) */ public final class PatchUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PathMatcher.java b/src/main/java/com/google/cloud/compute/v1/PathMatcher.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PathMatcher.java rename to src/main/java/com/google/cloud/compute/v1/PathMatcher.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PathRule.java b/src/main/java/com/google/cloud/compute/v1/PathRule.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PathRule.java rename to src/main/java/com/google/cloud/compute/v1/PathRule.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Policy.java b/src/main/java/com/google/cloud/compute/v1/Policy.java similarity index 76% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Policy.java rename to src/main/java/com/google/cloud/compute/v1/Policy.java index d09063ddc..f7bbd057d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Policy.java +++ b/src/main/java/com/google/cloud/compute/v1/Policy.java @@ -29,22 +29,28 @@ * Defines an Identity and Access Management (IAM) policy. It is used to specify access control * policies for Cloud Platform resources. * - *

A `Policy` consists of a list of `bindings`. A `binding` binds a list of `members` to a - * `role`, where the members can be user accounts, Google groups, Google domains, and service - * accounts. A `role` is a named list of permissions defined by IAM. + *

A `Policy` is a collection of `bindings`. A `binding` binds one or more `members` to a single + * `role`. Members can be user accounts, service accounts, Google groups, and domains (such as G + * Suite). A `role` is a named list of permissions (defined by IAM or configured by users). A + * `binding` can optionally specify a `condition`, which is a logic expression that further + * constrains the role binding based on attributes about the request and/or target resource. * *

**JSON Example** * - *

{ "bindings": [ { "role": "roles/owner", "members": [ "user:mike{@literal @}example.com", - * "group:admins{@literal @}example.com", "domain:google.com", - * "serviceAccount:my-other-app{@literal @}appspot.gserviceaccount.com" ] }, { "role": - * "roles/viewer", "members": ["user:sean{@literal @}example.com"] } ] } + *

{ "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ + * "user:mike{@literal @}example.com", "group:admins{@literal @}example.com", "domain:google.com", + * "serviceAccount:my-project-id{@literal @}appspot.gserviceaccount.com" ] }, { "role": + * "roles/resourcemanager.organizationViewer", "members": ["user:eve{@literal @}example.com"], + * "condition": { "title": "expirable access", "description": "Does not grant access after Sep + * 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", } } ] } * *

**YAML Example** * *

bindings: - members: - user:mike{@literal @}example.com - group:admins{@literal @}example.com - * - domain:google.com - serviceAccount:my-other-app{@literal @}appspot.gserviceaccount.com role: - * roles/owner - members: - user:sean{@literal @}example.com role: roles/viewer + * - domain:google.com - serviceAccount:my-project-id{@literal @}appspot.gserviceaccount.com role: + * roles/resourcemanager.organizationAdmin - members: - user:eve{@literal @}example.com role: + * roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not + * grant access after Sep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z') * *

For a description of IAM and its features, see the [IAM developer's * guide](https://cloud.google.com/iam/docs). @@ -128,7 +134,8 @@ public List getAuditConfigsList() { } /** - * Associates a list of `members` to a `role`. `bindings` with no members will result in an error. + * Associates a list of `members` to a `role`. Optionally may specify a `condition` that + * determines when binding is in effect. `bindings` with no members will result in an error. */ public List getBindingsList() { return bindings; @@ -143,7 +150,8 @@ public List getBindingsList() { * to the same version of the policy. * *

If no `etag` is provided in the call to `setIamPolicy`, then the existing policy is - * overwritten. + * overwritten. Due to blind-set semantics of an etag-less policy, 'setIamPolicy' will not fail + * even if either of incoming or stored policy does not meet the version requirements. */ public String getEtag() { return etag; @@ -169,8 +177,13 @@ public List getRulesList() { * *

Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. * - *

Policies with any conditional bindings must specify version 3. Policies without any - * conditional bindings may specify any valid value or leave the field unset. + *

Operations affecting conditional bindings must specify version 3. This can be either setting + * a conditional policy, modifying a conditional binding, or removing a conditional binding from + * the stored conditional policy. Operations on non-conditional policies may specify any valid + * value or leave the field unset. + * + *

If no etag is provided in the call to `setIamPolicy`, any version compliance checks on the + * incoming and/or stored policy is skipped. */ public Integer getVersion() { return version; @@ -264,16 +277,16 @@ public Builder addAuditConfigs(AuditConfig auditConfigs) { } /** - * Associates a list of `members` to a `role`. `bindings` with no members will result in an - * error. + * Associates a list of `members` to a `role`. Optionally may specify a `condition` that + * determines when binding is in effect. `bindings` with no members will result in an error. */ public List getBindingsList() { return bindings; } /** - * Associates a list of `members` to a `role`. `bindings` with no members will result in an - * error. + * Associates a list of `members` to a `role`. Optionally may specify a `condition` that + * determines when binding is in effect. `bindings` with no members will result in an error. */ public Builder addAllBindings(List bindings) { if (this.bindings == null) { @@ -284,8 +297,8 @@ public Builder addAllBindings(List bindings) { } /** - * Associates a list of `members` to a `role`. `bindings` with no members will result in an - * error. + * Associates a list of `members` to a `role`. Optionally may specify a `condition` that + * determines when binding is in effect. `bindings` with no members will result in an error. */ public Builder addBindings(Binding bindings) { if (this.bindings == null) { @@ -304,7 +317,8 @@ public Builder addBindings(Binding bindings) { * be applied to the same version of the policy. * *

If no `etag` is provided in the call to `setIamPolicy`, then the existing policy is - * overwritten. + * overwritten. Due to blind-set semantics of an etag-less policy, 'setIamPolicy' will not fail + * even if either of incoming or stored policy does not meet the version requirements. */ public String getEtag() { return etag; @@ -319,7 +333,8 @@ public String getEtag() { * be applied to the same version of the policy. * *

If no `etag` is provided in the call to `setIamPolicy`, then the existing policy is - * overwritten. + * overwritten. Due to blind-set semantics of an etag-less policy, 'setIamPolicy' will not fail + * even if either of incoming or stored policy does not meet the version requirements. */ public Builder setEtag(String etag) { this.etag = etag; @@ -384,8 +399,13 @@ public Builder addRules(Rule rules) { * *

Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. * - *

Policies with any conditional bindings must specify version 3. Policies without any - * conditional bindings may specify any valid value or leave the field unset. + *

Operations affecting conditional bindings must specify version 3. This can be either + * setting a conditional policy, modifying a conditional binding, or removing a conditional + * binding from the stored conditional policy. Operations on non-conditional policies may + * specify any valid value or leave the field unset. + * + *

If no etag is provided in the call to `setIamPolicy`, any version compliance checks on the + * incoming and/or stored policy is skipped. */ public Integer getVersion() { return version; @@ -396,8 +416,13 @@ public Integer getVersion() { * *

Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. * - *

Policies with any conditional bindings must specify version 3. Policies without any - * conditional bindings may specify any valid value or leave the field unset. + *

Operations affecting conditional bindings must specify version 3. This can be either + * setting a conditional policy, modifying a conditional binding, or removing a conditional + * binding from the stored conditional policy. Operations on non-conditional policies may + * specify any valid value or leave the field unset. + * + *

If no etag is provided in the call to `setIamPolicy`, any version compliance checks on the + * incoming and/or stored policy is skipped. */ public Builder setVersion(Integer version) { this.version = version; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PreviewRouterHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/PreviewRouterHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PreviewRouterHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/PreviewRouterHttpRequest.java index 8573a1108..a104f832b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/PreviewRouterHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/PreviewRouterHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.routers.preview. Preview fields auto-generated during router - * create and update operations. Calling this method does NOT create or update the router. + * create and update operations. Calling this method does NOT create or update the router. (== + * suppress_warning http-rest-shadowed ==) */ public final class PreviewRouterHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Project.java b/src/main/java/com/google/cloud/compute/v1/Project.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Project.java rename to src/main/java/com/google/cloud/compute/v1/Project.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectClient.java b/src/main/java/com/google/cloud/compute/v1/ProjectClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectClient.java rename to src/main/java/com/google/cloud/compute/v1/ProjectClient.java index 8c5edcda2..e89fb2621 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectClient.java +++ b/src/main/java/com/google/cloud/compute/v1/ProjectClient.java @@ -153,7 +153,7 @@ public ProjectStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Disable this project as a shared VPC host project. + * Disable this project as a shared VPC host project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -179,7 +179,7 @@ public final Operation disableXpnHostProject(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Disable this project as a shared VPC host project. + * Disable this project as a shared VPC host project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -203,7 +203,7 @@ public final Operation disableXpnHostProject(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Disable this project as a shared VPC host project. + * Disable this project as a shared VPC host project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -227,7 +227,7 @@ public final Operation disableXpnHostProject(DisableXpnHostProjectHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Disable this project as a shared VPC host project. + * Disable this project as a shared VPC host project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -252,6 +252,7 @@ public final Operation disableXpnHostProject(DisableXpnHostProjectHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Disable a service resource (also known as service project) associated with this host project. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -283,6 +284,7 @@ public final Operation disableXpnResourceProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Disable a service resource (also known as service project) associated with this host project. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -313,6 +315,7 @@ public final Operation disableXpnResourceProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Disable a service resource (also known as service project) associated with this host project. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -339,6 +342,7 @@ public final Operation disableXpnResourceProject(DisableXpnResourceProjectHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Disable a service resource (also known as service project) associated with this host project. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -364,7 +368,7 @@ public final Operation disableXpnResourceProject(DisableXpnResourceProjectHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Enable this project as a shared VPC host project. + * Enable this project as a shared VPC host project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -390,7 +394,7 @@ public final Operation enableXpnHostProject(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Enable this project as a shared VPC host project. + * Enable this project as a shared VPC host project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -414,7 +418,7 @@ public final Operation enableXpnHostProject(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Enable this project as a shared VPC host project. + * Enable this project as a shared VPC host project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -438,7 +442,7 @@ public final Operation enableXpnHostProject(EnableXpnHostProjectHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Enable this project as a shared VPC host project. + * Enable this project as a shared VPC host project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -463,7 +467,8 @@ public final Operation enableXpnHostProject(EnableXpnHostProjectHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Enable service resource (a.k.a service project) for a host project, so that subnets in the host - * project can be used by instances in the service project. + * project can be used by instances in the service project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -495,7 +500,8 @@ public final Operation enableXpnResourceProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Enable service resource (a.k.a service project) for a host project, so that subnets in the host - * project can be used by instances in the service project. + * project can be used by instances in the service project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -526,7 +532,8 @@ public final Operation enableXpnResourceProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Enable service resource (a.k.a service project) for a host project, so that subnets in the host - * project can be used by instances in the service project. + * project can be used by instances in the service project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -553,7 +560,8 @@ public final Operation enableXpnResourceProject(EnableXpnResourceProjectHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Enable service resource (a.k.a service project) for a host project, so that subnets in the host - * project can be used by instances in the service project. + * project can be used by instances in the service project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -579,7 +587,7 @@ public final Operation enableXpnResourceProject(EnableXpnResourceProjectHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified Project resource. + * Returns the specified Project resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -605,7 +613,7 @@ public final Project getProject(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified Project resource. + * Returns the specified Project resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -628,7 +636,7 @@ public final Project getProject(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified Project resource. + * Returns the specified Project resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -652,7 +660,7 @@ public final Project getProject(GetProjectHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified Project resource. + * Returns the specified Project resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -676,6 +684,7 @@ public final UnaryCallable getProjectCallable() // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the shared VPC host project that this project links to. May be empty if no link exists. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -702,6 +711,7 @@ public final Project getXpnHostProject(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the shared VPC host project that this project links to. May be empty if no link exists. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -726,6 +736,7 @@ public final Project getXpnHostProject(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the shared VPC host project that this project links to. May be empty if no link exists. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -750,6 +761,7 @@ public final Project getXpnHostProject(GetXpnHostProjectHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the shared VPC host project that this project links to. May be empty if no link exists. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -772,7 +784,8 @@ public final UnaryCallable getXpnHostProj // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets service resources (a.k.a service project) associated with this host project. + * Gets service resources (a.k.a service project) associated with this host project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -799,7 +812,8 @@ public final GetXpnResourcesProjectsPagedResponse getXpnResourcesProjects(Projec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets service resources (a.k.a service project) associated with this host project. + * Gets service resources (a.k.a service project) associated with this host project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -824,7 +838,8 @@ public final GetXpnResourcesProjectsPagedResponse getXpnResourcesProjects(String // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets service resources (a.k.a service project) associated with this host project. + * Gets service resources (a.k.a service project) associated with this host project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -851,7 +866,8 @@ public final GetXpnResourcesProjectsPagedResponse getXpnResourcesProjects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets service resources (a.k.a service project) associated with this host project. + * Gets service resources (a.k.a service project) associated with this host project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -878,7 +894,8 @@ public final GetXpnResourcesProjectsPagedResponse getXpnResourcesProjects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets service resources (a.k.a service project) associated with this host project. + * Gets service resources (a.k.a service project) associated with this host project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -911,7 +928,8 @@ public final GetXpnResourcesProjectsPagedResponse getXpnResourcesProjects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all shared VPC host projects visible to the user in an organization. + * Lists all shared VPC host projects visible to the user in an organization. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -942,7 +960,8 @@ public final ListXpnHostsProjectsPagedResponse listXpnHostsProjects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all shared VPC host projects visible to the user in an organization. + * Lists all shared VPC host projects visible to the user in an organization. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -973,7 +992,8 @@ public final ListXpnHostsProjectsPagedResponse listXpnHostsProjects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all shared VPC host projects visible to the user in an organization. + * Lists all shared VPC host projects visible to the user in an organization. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1002,7 +1022,8 @@ public final ListXpnHostsProjectsPagedResponse listXpnHostsProjects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all shared VPC host projects visible to the user in an organization. + * Lists all shared VPC host projects visible to the user in an organization. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1030,7 +1051,8 @@ public final ListXpnHostsProjectsPagedResponse listXpnHostsProjects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all shared VPC host projects visible to the user in an organization. + * Lists all shared VPC host projects visible to the user in an organization. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1065,7 +1087,7 @@ public final ListXpnHostsProjectsPagedResponse listXpnHostsProjects( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Moves a persistent disk from one zone to another. + * Moves a persistent disk from one zone to another. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1095,7 +1117,7 @@ public final Operation moveDiskProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Moves a persistent disk from one zone to another. + * Moves a persistent disk from one zone to another. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1124,7 +1146,7 @@ public final Operation moveDiskProject(String project, DiskMoveRequest diskMoveR // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Moves a persistent disk from one zone to another. + * Moves a persistent disk from one zone to another. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1150,7 +1172,7 @@ public final Operation moveDiskProject(MoveDiskProjectHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Moves a persistent disk from one zone to another. + * Moves a persistent disk from one zone to another. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1175,7 +1197,8 @@ public final UnaryCallable moveDiskProjec // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Moves an instance and its attached persistent disks from one zone to another. + * Moves an instance and its attached persistent disks from one zone to another. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1205,7 +1228,8 @@ public final Operation moveInstanceProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Moves an instance and its attached persistent disks from one zone to another. + * Moves an instance and its attached persistent disks from one zone to another. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1235,7 +1259,8 @@ public final Operation moveInstanceProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Moves an instance and its attached persistent disks from one zone to another. + * Moves an instance and its attached persistent disks from one zone to another. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1261,7 +1286,8 @@ public final Operation moveInstanceProject(MoveInstanceProjectHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Moves an instance and its attached persistent disks from one zone to another. + * Moves an instance and its attached persistent disks from one zone to another. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1288,7 +1314,7 @@ public final Operation moveInstanceProject(MoveInstanceProjectHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets metadata common to all instances within the specified project using the data included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1319,7 +1345,7 @@ public final Operation setCommonInstanceMetadataProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets metadata common to all instances within the specified project using the data included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1350,7 +1376,7 @@ public final Operation setCommonInstanceMetadataProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets metadata common to all instances within the specified project using the data included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1378,7 +1404,7 @@ public final Operation setCommonInstanceMetadataProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets metadata common to all instances within the specified project using the data included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1405,7 +1431,8 @@ public final Operation setCommonInstanceMetadataProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the default network tier of the project. The default network tier is used when an - * address/forwardingRule/instance is created without specifying the network tier field. + * address/forwardingRule/instance is created without specifying the network tier field. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1438,7 +1465,8 @@ public final Operation setDefaultNetworkTierProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the default network tier of the project. The default network tier is used when an - * address/forwardingRule/instance is created without specifying the network tier field. + * address/forwardingRule/instance is created without specifying the network tier field. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1471,7 +1499,8 @@ public final Operation setDefaultNetworkTierProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the default network tier of the project. The default network tier is used when an - * address/forwardingRule/instance is created without specifying the network tier field. + * address/forwardingRule/instance is created without specifying the network tier field. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1499,7 +1528,8 @@ public final Operation setDefaultNetworkTierProject( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the default network tier of the project. The default network tier is used when an - * address/forwardingRule/instance is created without specifying the network tier field. + * address/forwardingRule/instance is created without specifying the network tier field. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1527,6 +1557,7 @@ public final Operation setDefaultNetworkTierProject( /** * Enables the usage export feature and sets the usage export bucket where reports are stored. If * you provide an empty request body using this method, the usage export feature will be disabled. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1559,6 +1590,7 @@ public final Operation setUsageExportBucketProject( /** * Enables the usage export feature and sets the usage export bucket where reports are stored. If * you provide an empty request body using this method, the usage export feature will be disabled. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1591,6 +1623,7 @@ public final Operation setUsageExportBucketProject( /** * Enables the usage export feature and sets the usage export bucket where reports are stored. If * you provide an empty request body using this method, the usage export feature will be disabled. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1619,6 +1652,7 @@ public final Operation setUsageExportBucketProject( /** * Enables the usage export feature and sets the usage export bucket where reports are stored. If * you provide an empty request body using this method, the usage export feature will be disabled. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalAddressName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalAddressName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalAddressName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalAddressName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalBackendBucketName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalBackendBucketName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalBackendBucketName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalBackendBucketName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalBackendServiceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalBackendServiceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalBackendServiceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalBackendServiceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalExternalVpnGatewayName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalExternalVpnGatewayName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalExternalVpnGatewayName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalExternalVpnGatewayName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalExternalVpnGatewayResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalExternalVpnGatewayResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalExternalVpnGatewayResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalExternalVpnGatewayResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalFirewallName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalFirewallName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalFirewallName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalFirewallName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalForwardingRuleName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalForwardingRuleName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalForwardingRuleName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalForwardingRuleName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHealthCheckName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHealthCheckName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHealthCheckName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalHealthCheckName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHttpHealthCheckName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHttpHealthCheckName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHttpHealthCheckName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalHttpHealthCheckName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHttpsHealthCheckName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHttpsHealthCheckName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalHttpsHealthCheckName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalHttpsHealthCheckName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageFamilyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageFamilyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageFamilyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageFamilyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalImageResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInstanceTemplateName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInstanceTemplateName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInstanceTemplateName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalInstanceTemplateName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInstanceTemplateResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInstanceTemplateResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInstanceTemplateResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalInstanceTemplateResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInterconnectLocationName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInterconnectLocationName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInterconnectLocationName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalInterconnectLocationName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInterconnectName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInterconnectName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalInterconnectName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalInterconnectName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseCodeName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseCodeName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseCodeName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseCodeName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseCodeResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseCodeResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseCodeResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseCodeResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalLicenseResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalNetworkName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalNetworkName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalNetworkName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalNetworkName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalOperationName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalOperationName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalOperationName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalOperationName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalRouteName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalRouteName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalRouteName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalRouteName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSecurityPolicyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSecurityPolicyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSecurityPolicyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalSecurityPolicyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSnapshotName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSnapshotName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSnapshotName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalSnapshotName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSnapshotResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSnapshotResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSnapshotResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalSnapshotResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSslCertificateName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSslCertificateName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSslCertificateName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalSslCertificateName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSslPolicyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSslPolicyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalSslPolicyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalSslPolicyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetHttpProxyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetHttpProxyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetHttpProxyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetHttpProxyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetHttpsProxyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetHttpsProxyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetHttpsProxyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetHttpsProxyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetSslProxyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetSslProxyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetSslProxyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetSslProxyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetTcpProxyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetTcpProxyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetTcpProxyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalTargetTcpProxyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalUrlMapName.java b/src/main/java/com/google/cloud/compute/v1/ProjectGlobalUrlMapName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectGlobalUrlMapName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectGlobalUrlMapName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectName.java b/src/main/java/com/google/cloud/compute/v1/ProjectName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionAddressName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionAddressName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionAddressName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionAddressName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionAutoscalerName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionAutoscalerName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionAutoscalerName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionAutoscalerName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionBackendServiceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionBackendServiceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionBackendServiceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionBackendServiceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionCommitmentName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionCommitmentName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionCommitmentName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionCommitmentName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskTypeName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskTypeName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskTypeName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionDiskTypeName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionForwardingRuleName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionForwardingRuleName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionForwardingRuleName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionForwardingRuleName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionHealthCheckName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionHealthCheckName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionHealthCheckName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionHealthCheckName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionInstanceGroupManagerName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionInstanceGroupManagerName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionInstanceGroupManagerName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionInstanceGroupManagerName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionInstanceGroupName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionInstanceGroupName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionInstanceGroupName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionInstanceGroupName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionInterconnectAttachmentName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionInterconnectAttachmentName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionInterconnectAttachmentName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionInterconnectAttachmentName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionNodeTemplateName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionNodeTemplateName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionNodeTemplateName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionNodeTemplateName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionNodeTemplateResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionNodeTemplateResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionNodeTemplateResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionNodeTemplateResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionOperationName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionOperationName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionOperationName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionOperationName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionResourcePolicyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionResourcePolicyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionResourcePolicyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionResourcePolicyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionResourcePolicyResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionResourcePolicyResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionResourcePolicyResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionResourcePolicyResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionRouterName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionRouterName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionRouterName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionRouterName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionSslCertificateName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionSslCertificateName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionSslCertificateName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionSslCertificateName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionSubnetworkName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionSubnetworkName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionSubnetworkName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionSubnetworkName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionSubnetworkResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionSubnetworkResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionSubnetworkResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionSubnetworkResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetHttpProxyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetHttpProxyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetHttpProxyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetHttpProxyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetHttpsProxyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetHttpsProxyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetHttpsProxyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetHttpsProxyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetPoolName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetPoolName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetPoolName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetPoolName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetVpnGatewayName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetVpnGatewayName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetVpnGatewayName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionTargetVpnGatewayName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionUrlMapName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionUrlMapName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionUrlMapName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionUrlMapName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnGatewayName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnGatewayName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnGatewayName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnGatewayName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnGatewayResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnGatewayResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnGatewayResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnGatewayResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnTunnelName.java b/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnTunnelName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnTunnelName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectRegionVpnTunnelName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectSettings.java b/src/main/java/com/google/cloud/compute/v1/ProjectSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectSettings.java rename to src/main/java/com/google/cloud/compute/v1/ProjectSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectTargetHttpProxyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectTargetHttpProxyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectTargetHttpProxyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectTargetHttpProxyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectTargetHttpsProxyName.java b/src/main/java/com/google/cloud/compute/v1/ProjectTargetHttpsProxyName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectTargetHttpsProxyName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectTargetHttpsProxyName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneAcceleratorTypeName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneAcceleratorTypeName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneAcceleratorTypeName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneAcceleratorTypeName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneAutoscalerName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneAutoscalerName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneAutoscalerName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneAutoscalerName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskTypeName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskTypeName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskTypeName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneDiskTypeName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceGroupManagerName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceGroupManagerName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceGroupManagerName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceGroupManagerName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceGroupName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceGroupName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceGroupName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceGroupName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneInstanceResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneMachineTypeName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneMachineTypeName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneMachineTypeName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneMachineTypeName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNetworkEndpointGroupName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneNetworkEndpointGroupName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNetworkEndpointGroupName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneNetworkEndpointGroupName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNetworkEndpointGroupResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneNetworkEndpointGroupResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNetworkEndpointGroupResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneNetworkEndpointGroupResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeGroupName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeGroupName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeGroupName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeGroupName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeGroupResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeGroupResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeGroupResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeGroupResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeTypeName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeTypeName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeTypeName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneNodeTypeName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneOperationName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneOperationName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneOperationName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneOperationName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneReservationName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneReservationName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneReservationName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneReservationName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneReservationResourceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneReservationResourceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneReservationResourceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneReservationResourceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneTargetInstanceName.java b/src/main/java/com/google/cloud/compute/v1/ProjectZoneTargetInstanceName.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectZoneTargetInstanceName.java rename to src/main/java/com/google/cloud/compute/v1/ProjectZoneTargetInstanceName.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsDisableXpnResourceRequest.java b/src/main/java/com/google/cloud/compute/v1/ProjectsDisableXpnResourceRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsDisableXpnResourceRequest.java rename to src/main/java/com/google/cloud/compute/v1/ProjectsDisableXpnResourceRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsEnableXpnResourceRequest.java b/src/main/java/com/google/cloud/compute/v1/ProjectsEnableXpnResourceRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsEnableXpnResourceRequest.java rename to src/main/java/com/google/cloud/compute/v1/ProjectsEnableXpnResourceRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsGetXpnResources.java b/src/main/java/com/google/cloud/compute/v1/ProjectsGetXpnResources.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsGetXpnResources.java rename to src/main/java/com/google/cloud/compute/v1/ProjectsGetXpnResources.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsListXpnHostsRequest.java b/src/main/java/com/google/cloud/compute/v1/ProjectsListXpnHostsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsListXpnHostsRequest.java rename to src/main/java/com/google/cloud/compute/v1/ProjectsListXpnHostsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsSetDefaultNetworkTierRequest.java b/src/main/java/com/google/cloud/compute/v1/ProjectsSetDefaultNetworkTierRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ProjectsSetDefaultNetworkTierRequest.java rename to src/main/java/com/google/cloud/compute/v1/ProjectsSetDefaultNetworkTierRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Quota.java b/src/main/java/com/google/cloud/compute/v1/Quota.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Quota.java rename to src/main/java/com/google/cloud/compute/v1/Quota.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RawDisk.java b/src/main/java/com/google/cloud/compute/v1/RawDisk.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RawDisk.java rename to src/main/java/com/google/cloud/compute/v1/RawDisk.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RecreateInstancesInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RecreateInstancesInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RecreateInstancesInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RecreateInstancesInstanceGroupManagerHttpRequest.java index d1d1a08dd..2f0d54f13 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RecreateInstancesInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RecreateInstancesInstanceGroupManagerHttpRequest.java @@ -35,7 +35,8 @@ * to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== suppress_warning + * http-rest-shadowed ==) */ public final class RecreateInstancesInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RecreateInstancesRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RecreateInstancesRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RecreateInstancesRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RecreateInstancesRegionInstanceGroupManagerHttpRequest.java index f24131f85..cd19c8f25 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RecreateInstancesRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RecreateInstancesRegionInstanceGroupManagerHttpRequest.java @@ -36,7 +36,8 @@ * to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== suppress_warning + * http-rest-shadowed ==) */ public final class RecreateInstancesRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Reference.java b/src/main/java/com/google/cloud/compute/v1/Reference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Reference.java rename to src/main/java/com/google/cloud/compute/v1/Reference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Region.java b/src/main/java/com/google/cloud/compute/v1/Region.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Region.java rename to src/main/java/com/google/cloud/compute/v1/Region.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerClient.java b/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionAutoscalerClient.java index f4c089df5..ad2b46d8f 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerClient.java @@ -156,7 +156,7 @@ public RegionAutoscalerStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified autoscaler. + * Deletes the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +182,7 @@ public final Operation deleteRegionAutoscaler(ProjectRegionAutoscalerName autosc // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified autoscaler. + * Deletes the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -206,7 +206,7 @@ public final Operation deleteRegionAutoscaler(String autoscaler) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified autoscaler. + * Deletes the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -230,7 +230,7 @@ public final Operation deleteRegionAutoscaler(DeleteRegionAutoscalerHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified autoscaler. + * Deletes the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -254,7 +254,7 @@ public final Operation deleteRegionAutoscaler(DeleteRegionAutoscalerHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified autoscaler. + * Returns the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -280,7 +280,7 @@ public final Autoscaler getRegionAutoscaler(ProjectRegionAutoscalerName autoscal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified autoscaler. + * Returns the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -304,7 +304,7 @@ public final Autoscaler getRegionAutoscaler(String autoscaler) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified autoscaler. + * Returns the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -328,7 +328,7 @@ public final Autoscaler getRegionAutoscaler(GetRegionAutoscalerHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified autoscaler. + * Returns the specified autoscaler. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -352,7 +352,8 @@ public final Autoscaler getRegionAutoscaler(GetRegionAutoscalerHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an autoscaler in the specified project using the data included in the request. + * Creates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -389,7 +390,8 @@ public final Operation insertRegionAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an autoscaler in the specified project using the data included in the request. + * Creates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -425,7 +427,8 @@ public final Operation insertRegionAutoscaler(String region, Autoscaler autoscal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an autoscaler in the specified project using the data included in the request. + * Creates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -451,7 +454,8 @@ public final Operation insertRegionAutoscaler(InsertRegionAutoscalerHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates an autoscaler in the specified project using the data included in the request. + * Creates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -477,7 +481,8 @@ public final Operation insertRegionAutoscaler(InsertRegionAutoscalerHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified region. + * Retrieves a list of autoscalers contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -504,7 +509,8 @@ public final ListRegionAutoscalersPagedResponse listRegionAutoscalers(ProjectReg // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified region. + * Retrieves a list of autoscalers contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -529,7 +535,8 @@ public final ListRegionAutoscalersPagedResponse listRegionAutoscalers(String reg // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified region. + * Retrieves a list of autoscalers contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -556,7 +563,8 @@ public final ListRegionAutoscalersPagedResponse listRegionAutoscalers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified region. + * Retrieves a list of autoscalers contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -582,7 +590,8 @@ public final ListRegionAutoscalersPagedResponse listRegionAutoscalers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of autoscalers contained within the specified region. + * Retrieves a list of autoscalers contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -616,7 +625,8 @@ public final ListRegionAutoscalersPagedResponse listRegionAutoscalers( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates an autoscaler in the specified project using the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -666,7 +676,8 @@ public final Operation patchRegionAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates an autoscaler in the specified project using the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -713,7 +724,8 @@ public final Operation patchRegionAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates an autoscaler in the specified project using the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -744,7 +756,8 @@ public final Operation patchRegionAutoscaler(PatchRegionAutoscalerHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates an autoscaler in the specified project using the data included in the request. This - * method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * method supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -774,7 +787,8 @@ public final Operation patchRegionAutoscaler(PatchRegionAutoscalerHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an autoscaler in the specified project using the data included in the request. + * Updates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -823,7 +837,8 @@ public final Operation updateRegionAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an autoscaler in the specified project using the data included in the request. + * Updates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -869,7 +884,8 @@ public final Operation updateRegionAutoscaler( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an autoscaler in the specified project using the data included in the request. + * Updates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -899,7 +915,8 @@ public final Operation updateRegionAutoscaler(UpdateRegionAutoscalerHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates an autoscaler in the specified project using the data included in the request. + * Updates an autoscaler in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerList.java b/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerList.java rename to src/main/java/com/google/cloud/compute/v1/RegionAutoscalerList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionAutoscalerSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionAutoscalerSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionBackendServiceClient.java b/src/main/java/com/google/cloud/compute/v1/RegionBackendServiceClient.java similarity index 89% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionBackendServiceClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionBackendServiceClient.java index 52aac61b4..059b23bf6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionBackendServiceClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionBackendServiceClient.java @@ -156,7 +156,8 @@ public RegionBackendServiceStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified regional BackendService resource. + * Deletes the specified regional BackendService resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -183,7 +184,8 @@ public final Operation deleteRegionBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified regional BackendService resource. + * Deletes the specified regional BackendService resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -209,7 +211,8 @@ public final Operation deleteRegionBackendService(String backendService) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified regional BackendService resource. + * Deletes the specified regional BackendService resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -233,7 +236,8 @@ public final Operation deleteRegionBackendService(DeleteRegionBackendServiceHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified regional BackendService resource. + * Deletes the specified regional BackendService resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -257,7 +261,8 @@ public final Operation deleteRegionBackendService(DeleteRegionBackendServiceHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified regional BackendService resource. + * Returns the specified regional BackendService resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -284,7 +289,8 @@ public final BackendService getRegionBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified regional BackendService resource. + * Returns the specified regional BackendService resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -308,7 +314,8 @@ public final BackendService getRegionBackendService(String backendService) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified regional BackendService resource. + * Returns the specified regional BackendService resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -332,7 +339,8 @@ public final BackendService getRegionBackendService(GetRegionBackendServiceHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified regional BackendService resource. + * Returns the specified regional BackendService resource. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -356,7 +364,8 @@ public final BackendService getRegionBackendService(GetRegionBackendServiceHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets the most recent health check results for this regional BackendService. + * Gets the most recent health check results for this regional BackendService. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -387,7 +396,8 @@ public final BackendServiceGroupHealth getHealthRegionBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets the most recent health check results for this regional BackendService. + * Gets the most recent health check results for this regional BackendService. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -417,7 +427,8 @@ public final BackendServiceGroupHealth getHealthRegionBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets the most recent health check results for this regional BackendService. + * Gets the most recent health check results for this regional BackendService. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -444,7 +455,8 @@ public final BackendServiceGroupHealth getHealthRegionBackendService( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets the most recent health check results for this regional BackendService. + * Gets the most recent health check results for this regional BackendService. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -472,7 +484,8 @@ public final BackendServiceGroupHealth getHealthRegionBackendService( /** * Creates a regional BackendService resource in the specified project using the data included in * the request. There are several restrictions and guidelines to keep in mind when creating a - * regional backend service. Read Restrictions and Guidelines for more information. + * regional backend service. Read Restrictions and Guidelines for more information. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -486,14 +499,10 @@ public final BackendServiceGroupHealth getHealthRegionBackendService( * * @param region Name of the region scoping this request. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @BetaApi @@ -512,7 +521,8 @@ public final Operation insertRegionBackendService( /** * Creates a regional BackendService resource in the specified project using the data included in * the request. There are several restrictions and guidelines to keep in mind when creating a - * regional backend service. Read Restrictions and Guidelines for more information. + * regional backend service. Read Restrictions and Guidelines for more information. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -526,14 +536,10 @@ public final Operation insertRegionBackendService( * * @param region Name of the region scoping this request. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @BetaApi @@ -552,7 +558,8 @@ public final Operation insertRegionBackendService( /** * Creates a regional BackendService resource in the specified project using the data included in * the request. There are several restrictions and guidelines to keep in mind when creating a - * regional backend service. Read Restrictions and Guidelines for more information. + * regional backend service. Read Restrictions and Guidelines for more information. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -580,7 +587,8 @@ public final Operation insertRegionBackendService(InsertRegionBackendServiceHttp /** * Creates a regional BackendService resource in the specified project using the data included in * the request. There are several restrictions and guidelines to keep in mind when creating a - * regional backend service. Read Restrictions and Guidelines for more information. + * regional backend service. Read Restrictions and Guidelines for more information. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -607,7 +615,7 @@ public final Operation insertRegionBackendService(InsertRegionBackendServiceHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of regional BackendService resources available to the specified project in - * the given region. + * the given region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -636,7 +644,7 @@ public final ListRegionBackendServicesPagedResponse listRegionBackendServices( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of regional BackendService resources available to the specified project in - * the given region. + * the given region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -662,7 +670,7 @@ public final ListRegionBackendServicesPagedResponse listRegionBackendServices(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of regional BackendService resources available to the specified project in - * the given region. + * the given region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -690,7 +698,7 @@ public final ListRegionBackendServicesPagedResponse listRegionBackendServices( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of regional BackendService resources available to the specified project in - * the given region. + * the given region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -718,7 +726,7 @@ public final ListRegionBackendServicesPagedResponse listRegionBackendServices( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of regional BackendService resources available to the specified project in - * the given region. + * the given region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -754,7 +762,8 @@ public final ListRegionBackendServicesPagedResponse listRegionBackendServices( * Updates the specified regional BackendService resource with the data included in the request. * There are several restrictions and guidelines to keep in mind when updating a backend service. * Read Restrictions and Guidelines for more information. This method supports PATCH semantics and - * uses the JSON merge patch format and processing rules. + * uses the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -769,14 +778,10 @@ public final ListRegionBackendServicesPagedResponse listRegionBackendServices( * * @param backendService Name of the BackendService resource to patch. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @param fieldMask The fields that should be serialized (even if they have empty values). If the * containing message object has a non-null fieldmask, then all the fields in the field mask * (and only those fields in the field mask) will be serialized. If the containing object does @@ -803,7 +808,8 @@ public final Operation patchRegionBackendService( * Updates the specified regional BackendService resource with the data included in the request. * There are several restrictions and guidelines to keep in mind when updating a backend service. * Read Restrictions and Guidelines for more information. This method supports PATCH semantics and - * uses the JSON merge patch format and processing rules. + * uses the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -818,14 +824,10 @@ public final Operation patchRegionBackendService( * * @param backendService Name of the BackendService resource to patch. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @param fieldMask The fields that should be serialized (even if they have empty values). If the * containing message object has a non-null fieldmask, then all the fields in the field mask * (and only those fields in the field mask) will be serialized. If the containing object does @@ -850,7 +852,8 @@ public final Operation patchRegionBackendService( * Updates the specified regional BackendService resource with the data included in the request. * There are several restrictions and guidelines to keep in mind when updating a backend service. * Read Restrictions and Guidelines for more information. This method supports PATCH semantics and - * uses the JSON merge patch format and processing rules. + * uses the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -881,7 +884,8 @@ public final Operation patchRegionBackendService(PatchRegionBackendServiceHttpRe * Updates the specified regional BackendService resource with the data included in the request. * There are several restrictions and guidelines to keep in mind when updating a backend service. * Read Restrictions and Guidelines for more information. This method supports PATCH semantics and - * uses the JSON merge patch format and processing rules. + * uses the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -911,7 +915,8 @@ public final Operation patchRegionBackendService(PatchRegionBackendServiceHttpRe /** * Updates the specified regional BackendService resource with the data included in the request. * There are several restrictions and guidelines to keep in mind when updating a backend service. - * Read Restrictions and Guidelines for more information. + * Read Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -926,14 +931,10 @@ public final Operation patchRegionBackendService(PatchRegionBackendServiceHttpRe * * @param backendService Name of the BackendService resource to update. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @param fieldMask The fields that should be serialized (even if they have empty values). If the * containing message object has a non-null fieldmask, then all the fields in the field mask * (and only those fields in the field mask) will be serialized. If the containing object does @@ -959,7 +960,8 @@ public final Operation updateRegionBackendService( /** * Updates the specified regional BackendService resource with the data included in the request. * There are several restrictions and guidelines to keep in mind when updating a backend service. - * Read Restrictions and Guidelines for more information. + * Read Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -974,14 +976,10 @@ public final Operation updateRegionBackendService( * * @param backendService Name of the BackendService resource to update. * @param backendServiceResource Represents a Backend Service resource. - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. + *

For more information, read Backend Services. + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) * @param fieldMask The fields that should be serialized (even if they have empty values). If the * containing message object has a non-null fieldmask, then all the fields in the field mask * (and only those fields in the field mask) will be serialized. If the containing object does @@ -1005,7 +1003,8 @@ public final Operation updateRegionBackendService( /** * Updates the specified regional BackendService resource with the data included in the request. * There are several restrictions and guidelines to keep in mind when updating a backend service. - * Read Restrictions and Guidelines for more information. + * Read Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1035,7 +1034,8 @@ public final Operation updateRegionBackendService(UpdateRegionBackendServiceHttp /** * Updates the specified regional BackendService resource with the data included in the request. * There are several restrictions and guidelines to keep in mind when updating a backend service. - * Read Restrictions and Guidelines for more information. + * Read Restrictions and Guidelines for more information. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionBackendServiceSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionBackendServiceSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionBackendServiceSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionBackendServiceSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionClient.java b/src/main/java/com/google/cloud/compute/v1/RegionClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionClient.java index ce62712d5..dcf7ae654 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionClient.java @@ -154,7 +154,7 @@ public RegionStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Region resource. Gets a list of available regions by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -181,7 +181,7 @@ public final Region getRegion(ProjectRegionName region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Region resource. Gets a list of available regions by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final Region getRegion(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Region resource. Gets a list of available regions by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -230,7 +230,7 @@ public final Region getRegion(GetRegionHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Region resource. Gets a list of available regions by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -253,7 +253,8 @@ public final UnaryCallable getRegionCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of region resources available to the specified project. + * Retrieves the list of region resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -280,7 +281,8 @@ public final ListRegionsPagedResponse listRegions(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of region resources available to the specified project. + * Retrieves the list of region resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -305,7 +307,8 @@ public final ListRegionsPagedResponse listRegions(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of region resources available to the specified project. + * Retrieves the list of region resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -331,7 +334,8 @@ public final ListRegionsPagedResponse listRegions(ListRegionsHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of region resources available to the specified project. + * Retrieves the list of region resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -357,7 +361,8 @@ public final ListRegionsPagedResponse listRegions(ListRegionsHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of region resources available to the specified project. + * Retrieves the list of region resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionCommitmentClient.java b/src/main/java/com/google/cloud/compute/v1/RegionCommitmentClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionCommitmentClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionCommitmentClient.java index 7733538fb..1ecf8ce4e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionCommitmentClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionCommitmentClient.java @@ -156,7 +156,7 @@ public RegionCommitmentStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of commitments. + * Retrieves an aggregated list of commitments. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -184,7 +184,7 @@ public final AggregatedListRegionCommitmentsPagedResponse aggregatedListRegionCo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of commitments. + * Retrieves an aggregated list of commitments. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -210,7 +210,7 @@ public final AggregatedListRegionCommitmentsPagedResponse aggregatedListRegionCo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of commitments. + * Retrieves an aggregated list of commitments. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -237,7 +237,7 @@ public final AggregatedListRegionCommitmentsPagedResponse aggregatedListRegionCo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of commitments. + * Retrieves an aggregated list of commitments. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -264,7 +264,7 @@ public final AggregatedListRegionCommitmentsPagedResponse aggregatedListRegionCo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of commitments. + * Retrieves an aggregated list of commitments. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -298,7 +298,7 @@ public final AggregatedListRegionCommitmentsPagedResponse aggregatedListRegionCo // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified commitment resource. Gets a list of available commitments by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -325,7 +325,7 @@ public final Commitment getRegionCommitment(ProjectRegionCommitmentName commitme // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified commitment resource. Gets a list of available commitments by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -350,7 +350,7 @@ public final Commitment getRegionCommitment(String commitment) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified commitment resource. Gets a list of available commitments by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -375,7 +375,7 @@ public final Commitment getRegionCommitment(GetRegionCommitmentHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified commitment resource. Gets a list of available commitments by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -399,7 +399,8 @@ public final Commitment getRegionCommitment(GetRegionCommitmentHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a commitment in the specified project using the data included in the request. + * Creates a commitment in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -434,7 +435,8 @@ public final Operation insertRegionCommitment( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a commitment in the specified project using the data included in the request. + * Creates a commitment in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -468,7 +470,8 @@ public final Operation insertRegionCommitment(String region, Commitment commitme // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a commitment in the specified project using the data included in the request. + * Creates a commitment in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -494,7 +497,8 @@ public final Operation insertRegionCommitment(InsertRegionCommitmentHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a commitment in the specified project using the data included in the request. + * Creates a commitment in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -520,7 +524,8 @@ public final Operation insertRegionCommitment(InsertRegionCommitmentHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of commitments contained within the specified region. + * Retrieves a list of commitments contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -547,7 +552,8 @@ public final ListRegionCommitmentsPagedResponse listRegionCommitments(ProjectReg // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of commitments contained within the specified region. + * Retrieves a list of commitments contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -572,7 +578,8 @@ public final ListRegionCommitmentsPagedResponse listRegionCommitments(String reg // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of commitments contained within the specified region. + * Retrieves a list of commitments contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -599,7 +606,8 @@ public final ListRegionCommitmentsPagedResponse listRegionCommitments( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of commitments contained within the specified region. + * Retrieves a list of commitments contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -625,7 +633,8 @@ public final ListRegionCommitmentsPagedResponse listRegionCommitments( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of commitments contained within the specified region. + * Retrieves a list of commitments contained within the specified region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionCommitmentSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionCommitmentSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionCommitmentSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionCommitmentSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskClient.java b/src/main/java/com/google/cloud/compute/v1/RegionDiskClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionDiskClient.java index 25c531b05..6d50fb37e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionDiskClient.java @@ -155,7 +155,8 @@ public RegionDiskStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds existing resource policies to a regional disk. You can only add one policy which will be - * applied to this disk for scheduling snapshot creation. + * applied to this disk for scheduling snapshot creation. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -188,7 +189,8 @@ public final Operation addResourcePoliciesRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds existing resource policies to a regional disk. You can only add one policy which will be - * applied to this disk for scheduling snapshot creation. + * applied to this disk for scheduling snapshot creation. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -221,7 +223,8 @@ public final Operation addResourcePoliciesRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds existing resource policies to a regional disk. You can only add one policy which will be - * applied to this disk for scheduling snapshot creation. + * applied to this disk for scheduling snapshot creation. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -249,7 +252,8 @@ public final Operation addResourcePoliciesRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Adds existing resource policies to a regional disk. You can only add one policy which will be - * applied to this disk for scheduling snapshot creation. + * applied to this disk for scheduling snapshot creation. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -275,7 +279,7 @@ public final Operation addResourcePoliciesRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a snapshot of this regional disk. + * Creates a snapshot of this regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -308,7 +312,7 @@ public final Operation createSnapshotRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a snapshot of this regional disk. + * Creates a snapshot of this regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -340,7 +344,7 @@ public final Operation createSnapshotRegionDisk(String disk, Snapshot snapshotRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a snapshot of this regional disk. + * Creates a snapshot of this regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -366,7 +370,7 @@ public final Operation createSnapshotRegionDisk(CreateSnapshotRegionDiskHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a snapshot of this regional disk. + * Creates a snapshot of this regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -394,7 +398,8 @@ public final Operation createSnapshotRegionDisk(CreateSnapshotRegionDiskHttpRequ /** * Deletes the specified regional persistent disk. Deleting a regional disk removes all the * replicas of its data permanently and is irreversible. However, deleting a disk does not delete - * any snapshots previously made from the disk. You must separately delete snapshots. + * any snapshots previously made from the disk. You must separately delete snapshots. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -422,7 +427,8 @@ public final Operation deleteRegionDisk(ProjectRegionDiskName disk) { /** * Deletes the specified regional persistent disk. Deleting a regional disk removes all the * replicas of its data permanently and is irreversible. However, deleting a disk does not delete - * any snapshots previously made from the disk. You must separately delete snapshots. + * any snapshots previously made from the disk. You must separately delete snapshots. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -448,7 +454,8 @@ public final Operation deleteRegionDisk(String disk) { /** * Deletes the specified regional persistent disk. Deleting a regional disk removes all the * replicas of its data permanently and is irreversible. However, deleting a disk does not delete - * any snapshots previously made from the disk. You must separately delete snapshots. + * any snapshots previously made from the disk. You must separately delete snapshots. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -474,7 +481,8 @@ public final Operation deleteRegionDisk(DeleteRegionDiskHttpRequest request) { /** * Deletes the specified regional persistent disk. Deleting a regional disk removes all the * replicas of its data permanently and is irreversible. However, deleting a disk does not delete - * any snapshots previously made from the disk. You must separately delete snapshots. + * any snapshots previously made from the disk. You must separately delete snapshots. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -497,7 +505,7 @@ public final UnaryCallable deleteRegionD // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns a specified regional persistent disk. + * Returns a specified regional persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -523,7 +531,7 @@ public final Disk getRegionDisk(ProjectRegionDiskName disk) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns a specified regional persistent disk. + * Returns a specified regional persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -546,7 +554,7 @@ public final Disk getRegionDisk(String disk) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns a specified regional persistent disk. + * Returns a specified regional persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -570,7 +578,7 @@ public final Disk getRegionDisk(GetRegionDiskHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns a specified regional persistent disk. + * Returns a specified regional persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -594,7 +602,7 @@ public final UnaryCallable getRegionDiskCallable // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a persistent regional disk in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -632,7 +640,7 @@ public final Operation insertRegionDisk(ProjectRegionName region, Disk diskResou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a persistent regional disk in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -670,7 +678,7 @@ public final Operation insertRegionDisk(String region, Disk diskResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a persistent regional disk in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -697,7 +705,7 @@ public final Operation insertRegionDisk(InsertRegionDiskHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a persistent regional disk in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -722,7 +730,8 @@ public final UnaryCallable insertRegionD // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of persistent disks contained within the specified region. + * Retrieves the list of persistent disks contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -749,7 +758,8 @@ public final ListRegionDisksPagedResponse listRegionDisks(ProjectRegionName regi // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of persistent disks contained within the specified region. + * Retrieves the list of persistent disks contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -774,7 +784,8 @@ public final ListRegionDisksPagedResponse listRegionDisks(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of persistent disks contained within the specified region. + * Retrieves the list of persistent disks contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -800,7 +811,8 @@ public final ListRegionDisksPagedResponse listRegionDisks(ListRegionDisksHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of persistent disks contained within the specified region. + * Retrieves the list of persistent disks contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -826,7 +838,8 @@ public final ListRegionDisksPagedResponse listRegionDisks(ListRegionDisksHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of persistent disks contained within the specified region. + * Retrieves the list of persistent disks contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -858,7 +871,7 @@ public final UnaryCallable listRegionDisks // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes resource policies from a regional disk. + * Removes resource policies from a regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -890,7 +903,7 @@ public final Operation removeResourcePoliciesRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes resource policies from a regional disk. + * Removes resource policies from a regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -922,7 +935,7 @@ public final Operation removeResourcePoliciesRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes resource policies from a regional disk. + * Removes resource policies from a regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -949,7 +962,7 @@ public final Operation removeResourcePoliciesRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes resource policies from a regional disk. + * Removes resource policies from a regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -975,7 +988,7 @@ public final Operation removeResourcePoliciesRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Resizes the specified regional persistent disk. + * Resizes the specified regional persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1005,7 +1018,7 @@ public final Operation resizeRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Resizes the specified regional persistent disk. + * Resizes the specified regional persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1035,7 +1048,7 @@ public final Operation resizeRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Resizes the specified regional persistent disk. + * Resizes the specified regional persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1061,7 +1074,7 @@ public final Operation resizeRegionDisk(ResizeRegionDiskHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Resizes the specified regional persistent disk. + * Resizes the specified regional persistent disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1086,7 +1099,7 @@ public final UnaryCallable resizeRegionD // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the labels on the target regional disk. + * Sets the labels on the target regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1117,7 +1130,7 @@ public final Operation setLabelsRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the labels on the target regional disk. + * Sets the labels on the target regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1147,7 +1160,7 @@ public final Operation setLabelsRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the labels on the target regional disk. + * Sets the labels on the target regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1173,7 +1186,7 @@ public final Operation setLabelsRegionDisk(SetLabelsRegionDiskHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the labels on the target regional disk. + * Sets the labels on the target regional disk. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1199,7 +1212,8 @@ public final Operation setLabelsRegionDisk(SetLabelsRegionDiskHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1230,7 +1244,8 @@ public final TestPermissionsResponse testIamPermissionsRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1260,7 +1275,8 @@ public final TestPermissionsResponse testIamPermissionsRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1287,7 +1303,8 @@ public final TestPermissionsResponse testIamPermissionsRegionDisk( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionDiskSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionDiskSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeClient.java b/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionDiskTypeClient.java index 963dec08d..724b5610a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeClient.java @@ -156,7 +156,7 @@ public RegionDiskTypeStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified regional disk type. Gets a list of available disk types by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -183,7 +183,7 @@ public final DiskType getRegionDiskType(ProjectRegionDiskTypeName diskType) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified regional disk type. Gets a list of available disk types by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -208,7 +208,7 @@ public final DiskType getRegionDiskType(String diskType) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified regional disk type. Gets a list of available disk types by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -233,7 +233,7 @@ public final DiskType getRegionDiskType(GetRegionDiskTypeHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified regional disk type. Gets a list of available disk types by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -256,7 +256,8 @@ public final UnaryCallable getRegionDisk // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of regional disk types available to the specified project. + * Retrieves a list of regional disk types available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -283,7 +284,8 @@ public final ListRegionDiskTypesPagedResponse listRegionDiskTypes(ProjectRegionN // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of regional disk types available to the specified project. + * Retrieves a list of regional disk types available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -308,7 +310,8 @@ public final ListRegionDiskTypesPagedResponse listRegionDiskTypes(String region) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of regional disk types available to the specified project. + * Retrieves a list of regional disk types available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -335,7 +338,8 @@ public final ListRegionDiskTypesPagedResponse listRegionDiskTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of regional disk types available to the specified project. + * Retrieves a list of regional disk types available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -361,7 +365,8 @@ public final ListRegionDiskTypesPagedResponse listRegionDiskTypes( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of regional disk types available to the specified project. + * Retrieves a list of regional disk types available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeList.java b/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeList.java rename to src/main/java/com/google/cloud/compute/v1/RegionDiskTypeList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDiskTypeSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionDiskTypeSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDisksAddResourcePoliciesRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionDisksAddResourcePoliciesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDisksAddResourcePoliciesRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionDisksAddResourcePoliciesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDisksRemoveResourcePoliciesRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionDisksRemoveResourcePoliciesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDisksRemoveResourcePoliciesRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionDisksRemoveResourcePoliciesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDisksResizeRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionDisksResizeRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionDisksResizeRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionDisksResizeRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionHealthCheckClient.java b/src/main/java/com/google/cloud/compute/v1/RegionHealthCheckClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionHealthCheckClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionHealthCheckClient.java index 9ded45bf8..fb0a1f8b6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionHealthCheckClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionHealthCheckClient.java @@ -156,7 +156,7 @@ public RegionHealthCheckStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HealthCheck resource. + * Deletes the specified HealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +182,7 @@ public final Operation deleteRegionHealthCheck(ProjectRegionHealthCheckName heal // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HealthCheck resource. + * Deletes the specified HealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -206,7 +206,7 @@ public final Operation deleteRegionHealthCheck(String healthCheck) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HealthCheck resource. + * Deletes the specified HealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -230,7 +230,7 @@ public final Operation deleteRegionHealthCheck(DeleteRegionHealthCheckHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified HealthCheck resource. + * Deletes the specified HealthCheck resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -255,7 +255,7 @@ public final Operation deleteRegionHealthCheck(DeleteRegionHealthCheckHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HealthCheck resource. Gets a list of available health checks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -282,7 +282,7 @@ public final HealthCheck getRegionHealthCheck(ProjectRegionHealthCheckName healt // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HealthCheck resource. Gets a list of available health checks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -307,7 +307,7 @@ public final HealthCheck getRegionHealthCheck(String healthCheck) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HealthCheck resource. Gets a list of available health checks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -332,7 +332,7 @@ public final HealthCheck getRegionHealthCheck(GetRegionHealthCheckHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified HealthCheck resource. Gets a list of available health checks by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -357,6 +357,7 @@ public final HealthCheck getRegionHealthCheck(GetRegionHealthCheckHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -391,6 +392,7 @@ public final Operation insertRegionHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -424,6 +426,7 @@ public final Operation insertRegionHealthCheck(String region, HealthCheck health // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -450,6 +453,7 @@ public final Operation insertRegionHealthCheck(InsertRegionHealthCheckHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -475,7 +479,8 @@ public final Operation insertRegionHealthCheck(InsertRegionHealthCheckHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -503,7 +508,8 @@ public final ListRegionHealthChecksPagedResponse listRegionHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -528,7 +534,8 @@ public final ListRegionHealthChecksPagedResponse listRegionHealthChecks(String r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -555,7 +562,8 @@ public final ListRegionHealthChecksPagedResponse listRegionHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -581,7 +589,8 @@ public final ListRegionHealthChecksPagedResponse listRegionHealthChecks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of HealthCheck resources available to the specified project. + * Retrieves the list of HealthCheck resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -616,6 +625,7 @@ public final ListRegionHealthChecksPagedResponse listRegionHealthChecks( /** * Updates a HealthCheck resource in the specified project using the data included in the request. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -659,6 +669,7 @@ public final Operation patchRegionHealthCheck( /** * Updates a HealthCheck resource in the specified project using the data included in the request. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -700,6 +711,7 @@ public final Operation patchRegionHealthCheck( /** * Updates a HealthCheck resource in the specified project using the data included in the request. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -729,6 +741,7 @@ public final Operation patchRegionHealthCheck(PatchRegionHealthCheckHttpRequest /** * Updates a HealthCheck resource in the specified project using the data included in the request. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -757,6 +770,7 @@ public final Operation patchRegionHealthCheck(PatchRegionHealthCheckHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -799,6 +813,7 @@ public final Operation updateRegionHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -839,6 +854,7 @@ public final Operation updateRegionHealthCheck( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -867,6 +883,7 @@ public final Operation updateRegionHealthCheck(UpdateRegionHealthCheckHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Updates a HealthCheck resource in the specified project using the data included in the request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionHealthCheckSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionHealthCheckSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionHealthCheckSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionHealthCheckSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupClient.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupClient.java index 318f5a7fd..dd9d979f6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupClient.java @@ -156,7 +156,7 @@ public RegionInstanceGroupStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified instance group resource. + * Returns the specified instance group resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +182,7 @@ public final InstanceGroup getRegionInstanceGroup(ProjectRegionInstanceGroupName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified instance group resource. + * Returns the specified instance group resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -206,7 +206,7 @@ public final InstanceGroup getRegionInstanceGroup(String instanceGroup) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified instance group resource. + * Returns the specified instance group resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -230,7 +230,7 @@ public final InstanceGroup getRegionInstanceGroup(GetRegionInstanceGroupHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified instance group resource. + * Returns the specified instance group resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -254,7 +254,8 @@ public final InstanceGroup getRegionInstanceGroup(GetRegionInstanceGroupHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance group resources contained within the specified region. + * Retrieves the list of instance group resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -282,7 +283,8 @@ public final ListRegionInstanceGroupsPagedResponse listRegionInstanceGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance group resources contained within the specified region. + * Retrieves the list of instance group resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -307,7 +309,8 @@ public final ListRegionInstanceGroupsPagedResponse listRegionInstanceGroups(Stri // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance group resources contained within the specified region. + * Retrieves the list of instance group resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -334,7 +337,8 @@ public final ListRegionInstanceGroupsPagedResponse listRegionInstanceGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance group resources contained within the specified region. + * Retrieves the list of instance group resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -361,7 +365,8 @@ public final ListRegionInstanceGroupsPagedResponse listRegionInstanceGroups( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of instance group resources contained within the specified region. + * Retrieves the list of instance group resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -396,7 +401,7 @@ public final ListRegionInstanceGroupsPagedResponse listRegionInstanceGroups( /** * Lists the instances in the specified instance group and displays information about the named * ports. Depending on the specified options, this method can list all instances or only the - * instances that are running. + * instances that are running. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -432,7 +437,7 @@ public final ListInstancesRegionInstanceGroupsPagedResponse listInstancesRegionI /** * Lists the instances in the specified instance group and displays information about the named * ports. Depending on the specified options, this method can list all instances or only the - * instances that are running. + * instances that are running. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -468,7 +473,7 @@ public final ListInstancesRegionInstanceGroupsPagedResponse listInstancesRegionI /** * Lists the instances in the specified instance group and displays information about the named * ports. Depending on the specified options, this method can list all instances or only the - * instances that are running. + * instances that are running. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -499,7 +504,7 @@ public final ListInstancesRegionInstanceGroupsPagedResponse listInstancesRegionI /** * Lists the instances in the specified instance group and displays information about the named * ports. Depending on the specified options, this method can list all instances or only the - * instances that are running. + * instances that are running. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -531,7 +536,7 @@ public final ListInstancesRegionInstanceGroupsPagedResponse listInstancesRegionI /** * Lists the instances in the specified instance group and displays information about the named * ports. Depending on the specified options, this method can list all instances or only the - * instances that are running. + * instances that are running. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -567,7 +572,8 @@ public final ListInstancesRegionInstanceGroupsPagedResponse listInstancesRegionI // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the named ports for the specified regional instance group. + * Sets the named ports for the specified regional instance group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -599,7 +605,8 @@ public final Operation setNamedPortsRegionInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the named ports for the specified regional instance group. + * Sets the named ports for the specified regional instance group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -631,7 +638,8 @@ public final Operation setNamedPortsRegionInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the named ports for the specified regional instance group. + * Sets the named ports for the specified regional instance group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -658,7 +666,8 @@ public final Operation setNamedPortsRegionInstanceGroup( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the named ports for the specified regional instance group. + * Sets the named ports for the specified regional instance group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupList.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupList.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClient.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClient.java index dcbf1002f..9fb677944 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClient.java @@ -171,7 +171,8 @@ public RegionInstanceGroupManagerStub getStub() { * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -217,7 +218,8 @@ public final Operation abandonInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -262,7 +264,8 @@ public final Operation abandonInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -301,7 +304,8 @@ public final Operation abandonInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -327,7 +331,8 @@ public final Operation abandonInstancesRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified managed instance group and all of the instances in that group. + * Deletes the specified managed instance group and all of the instances in that group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -355,7 +360,8 @@ public final Operation deleteRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified managed instance group and all of the instances in that group. + * Deletes the specified managed instance group and all of the instances in that group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -381,7 +387,8 @@ public final Operation deleteRegionInstanceGroupManager(String instanceGroupMana // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified managed instance group and all of the instances in that group. + * Deletes the specified managed instance group and all of the instances in that group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -406,7 +413,8 @@ public final Operation deleteRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified managed instance group and all of the instances in that group. + * Deletes the specified managed instance group and all of the instances in that group. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -441,7 +449,8 @@ public final Operation deleteRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -486,7 +495,8 @@ public final Operation deleteInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -530,7 +540,8 @@ public final Operation deleteInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -568,7 +579,8 @@ public final Operation deleteInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -594,7 +606,8 @@ public final Operation deleteInstancesRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns all of the details about the specified managed instance group. + * Returns all of the details about the specified managed instance group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -622,7 +635,8 @@ public final InstanceGroupManager getRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns all of the details about the specified managed instance group. + * Returns all of the details about the specified managed instance group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -648,7 +662,8 @@ public final InstanceGroupManager getRegionInstanceGroupManager(String instanceG // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns all of the details about the specified managed instance group. + * Returns all of the details about the specified managed instance group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -673,7 +688,8 @@ public final InstanceGroupManager getRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns all of the details about the specified managed instance group. + * Returns all of the details about the specified managed instance group. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -703,7 +719,8 @@ public final InstanceGroupManager getRegionInstanceGroupManager( * have not yet been created. You must separately verify the status of the individual instances * with the listmanagedinstances method. * - *

A regional managed instance group can contain up to 2000 instances. + *

A regional managed instance group can contain up to 2000 instances. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -746,7 +763,8 @@ public final Operation insertRegionInstanceGroupManager( * have not yet been created. You must separately verify the status of the individual instances * with the listmanagedinstances method. * - *

A regional managed instance group can contain up to 2000 instances. + *

A regional managed instance group can contain up to 2000 instances. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -789,7 +807,8 @@ public final Operation insertRegionInstanceGroupManager( * have not yet been created. You must separately verify the status of the individual instances * with the listmanagedinstances method. * - *

A regional managed instance group can contain up to 2000 instances. + *

A regional managed instance group can contain up to 2000 instances. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -822,7 +841,8 @@ public final Operation insertRegionInstanceGroupManager( * have not yet been created. You must separately verify the status of the individual instances * with the listmanagedinstances method. * - *

A regional managed instance group can contain up to 2000 instances. + *

A regional managed instance group can contain up to 2000 instances. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -849,6 +869,7 @@ public final Operation insertRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of managed instance groups that are contained within the specified region. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -877,6 +898,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of managed instance groups that are contained within the specified region. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -903,6 +925,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of managed instance groups that are contained within the specified region. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -930,6 +953,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of managed instance groups that are contained within the specified region. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -957,6 +981,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of managed instance groups that are contained within the specified region. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -992,6 +1017,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou /** * Lists the instances in the managed instance group and instances that are scheduled to be * created. The list includes any current actions that the group has scheduled for its instances. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1022,6 +1048,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou /** * Lists the instances in the managed instance group and instances that are scheduled to be * created. The list includes any current actions that the group has scheduled for its instances. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1050,6 +1077,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou /** * Lists the instances in the managed instance group and instances that are scheduled to be * created. The list includes any current actions that the group has scheduled for its instances. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1077,6 +1105,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou /** * Lists the instances in the managed instance group and instances that are scheduled to be * created. The list includes any current actions that the group has scheduled for its instances. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1106,7 +1135,7 @@ public final ListRegionInstanceGroupManagersPagedResponse listRegionInstanceGrou * operation is marked as DONE when the group is patched even if the instances in the group are * still in the process of being patched. You must separately verify the status of the individual * instances with the listmanagedinstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1156,7 +1185,7 @@ public final Operation patchRegionInstanceGroupManager( * operation is marked as DONE when the group is patched even if the instances in the group are * still in the process of being patched. You must separately verify the status of the individual * instances with the listmanagedinstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1205,7 +1234,7 @@ public final Operation patchRegionInstanceGroupManager( * operation is marked as DONE when the group is patched even if the instances in the group are * still in the process of being patched. You must separately verify the status of the individual * instances with the listmanagedinstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1238,7 +1267,7 @@ public final Operation patchRegionInstanceGroupManager( * operation is marked as DONE when the group is patched even if the instances in the group are * still in the process of being patched. You must separately verify the status of the individual * instances with the listmanagedinstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. + * the JSON merge patch format and processing rules. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1276,7 +1305,8 @@ public final Operation patchRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1320,7 +1350,8 @@ public final Operation recreateInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1363,7 +1394,8 @@ public final Operation recreateInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1400,7 +1432,8 @@ public final Operation recreateInstancesRegionInstanceGroupManager( * up to 60 seconds after the connection draining duration has elapsed before the VM instance is * removed or deleted. * - *

You can specify a maximum of 1000 instances with this method per request. + *

You can specify a maximum of 1000 instances with this method per request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1436,7 +1469,7 @@ public final Operation recreateInstancesRegionInstanceGroupManager( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1477,7 +1510,7 @@ public final Operation resizeRegionInstanceGroupManager( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1517,7 +1550,7 @@ public final Operation resizeRegionInstanceGroupManager( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1554,7 +1587,7 @@ public final Operation resizeRegionInstanceGroupManager( * *

If the group is part of a backend service that has enabled connection draining, it can take * up to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1581,7 +1614,7 @@ public final Operation resizeRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the instance template to use when creating new instances or recreating instances in this - * group. Existing instances are not affected. + * group. Existing instances are not affected. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1616,7 +1649,7 @@ public final Operation setInstanceTemplateRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the instance template to use when creating new instances or recreating instances in this - * group. Existing instances are not affected. + * group. Existing instances are not affected. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1650,7 +1683,7 @@ public final Operation setInstanceTemplateRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the instance template to use when creating new instances or recreating instances in this - * group. Existing instances are not affected. + * group. Existing instances are not affected. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1678,7 +1711,7 @@ public final Operation setInstanceTemplateRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the instance template to use when creating new instances or recreating instances in this - * group. Existing instances are not affected. + * group. Existing instances are not affected. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1705,7 +1738,7 @@ public final Operation setInstanceTemplateRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Modifies the target pools to which all new instances in this group are assigned. Existing - * instances in the group are not affected. + * instances in the group are not affected. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1740,7 +1773,7 @@ public final Operation setTargetPoolsRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Modifies the target pools to which all new instances in this group are assigned. Existing - * instances in the group are not affected. + * instances in the group are not affected. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1774,7 +1807,7 @@ public final Operation setTargetPoolsRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Modifies the target pools to which all new instances in this group are assigned. Existing - * instances in the group are not affected. + * instances in the group are not affected. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1802,7 +1835,7 @@ public final Operation setTargetPoolsRegionInstanceGroupManager( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Modifies the target pools to which all new instances in this group are assigned. Existing - * instances in the group are not affected. + * instances in the group are not affected. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerList.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerList.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersAbandonInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersAbandonInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersAbandonInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersAbandonInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersDeleteInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersDeleteInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersDeleteInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersDeleteInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersListInstancesResponse.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersListInstancesResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersListInstancesResponse.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersListInstancesResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersRecreateRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersRecreateRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersRecreateRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersRecreateRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersSetTargetPoolsRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersSetTargetPoolsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersSetTargetPoolsRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersSetTargetPoolsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersSetTemplateRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersSetTemplateRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersSetTemplateRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupManagersSetTemplateRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsListInstances.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsListInstances.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsListInstances.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsListInstances.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsListInstancesRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsListInstancesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsListInstancesRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsListInstancesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsSetNamedPortsRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsSetNamedPortsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsSetNamedPortsRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionInstanceGroupsSetNamedPortsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionList.java b/src/main/java/com/google/cloud/compute/v1/RegionList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionList.java rename to src/main/java/com/google/cloud/compute/v1/RegionList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionOperationClient.java b/src/main/java/com/google/cloud/compute/v1/RegionOperationClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionOperationClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionOperationClient.java index 83a55f3f8..41eb9d7e9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionOperationClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionOperationClient.java @@ -156,7 +156,8 @@ public RegionOperationStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified region-specific Operations resource. + * Deletes the specified region-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +183,8 @@ public final void deleteRegionOperation(ProjectRegionOperationName operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified region-specific Operations resource. + * Deletes the specified region-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -206,7 +208,8 @@ public final void deleteRegionOperation(String operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified region-specific Operations resource. + * Deletes the specified region-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -230,7 +233,8 @@ public final void deleteRegionOperation(DeleteRegionOperationHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified region-specific Operations resource. + * Deletes the specified region-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -254,7 +258,8 @@ public final void deleteRegionOperation(DeleteRegionOperationHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the specified region-specific Operations resource. + * Retrieves the specified region-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -280,7 +285,8 @@ public final Operation getRegionOperation(ProjectRegionOperationName operation) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the specified region-specific Operations resource. + * Retrieves the specified region-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -304,7 +310,8 @@ public final Operation getRegionOperation(String operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the specified region-specific Operations resource. + * Retrieves the specified region-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -328,7 +335,8 @@ public final Operation getRegionOperation(GetRegionOperationHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the specified region-specific Operations resource. + * Retrieves the specified region-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -352,7 +360,8 @@ public final Operation getRegionOperation(GetRegionOperationHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified region. + * Retrieves a list of Operation resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -379,7 +388,8 @@ public final ListRegionOperationsPagedResponse listRegionOperations(ProjectRegio // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified region. + * Retrieves a list of Operation resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -404,7 +414,8 @@ public final ListRegionOperationsPagedResponse listRegionOperations(String regio // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified region. + * Retrieves a list of Operation resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -431,7 +442,8 @@ public final ListRegionOperationsPagedResponse listRegionOperations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified region. + * Retrieves a list of Operation resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -457,7 +469,8 @@ public final ListRegionOperationsPagedResponse listRegionOperations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified region. + * Retrieves a list of Operation resources contained within the specified region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionOperationSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionOperationSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionOperationSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionOperationSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSetLabelsRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionSetLabelsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSetLabelsRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionSetLabelsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSetPolicyRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionSetPolicyRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSetPolicyRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionSetPolicyRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSslCertificateClient.java b/src/main/java/com/google/cloud/compute/v1/RegionSslCertificateClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSslCertificateClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionSslCertificateClient.java index f27bd0395..61692069c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSslCertificateClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionSslCertificateClient.java @@ -156,7 +156,8 @@ public RegionSslCertificateStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified SslCertificate resource in the region. + * Deletes the specified SslCertificate resource in the region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -183,7 +184,8 @@ public final Operation deleteRegionSslCertificate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified SslCertificate resource in the region. + * Deletes the specified SslCertificate resource in the region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -209,7 +211,8 @@ public final Operation deleteRegionSslCertificate(String sslCertificate) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified SslCertificate resource in the region. + * Deletes the specified SslCertificate resource in the region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -233,7 +236,8 @@ public final Operation deleteRegionSslCertificate(DeleteRegionSslCertificateHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified SslCertificate resource in the region. + * Deletes the specified SslCertificate resource in the region. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -258,7 +262,7 @@ public final Operation deleteRegionSslCertificate(DeleteRegionSslCertificateHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SslCertificate resource in the specified region. Get a list of available - * SSL certificates by making a list() request. + * SSL certificates by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -286,7 +290,7 @@ public final SslCertificate getRegionSslCertificate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SslCertificate resource in the specified region. Get a list of available - * SSL certificates by making a list() request. + * SSL certificates by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -311,7 +315,7 @@ public final SslCertificate getRegionSslCertificate(String sslCertificate) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SslCertificate resource in the specified region. Get a list of available - * SSL certificates by making a list() request. + * SSL certificates by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -336,7 +340,7 @@ public final SslCertificate getRegionSslCertificate(GetRegionSslCertificateHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SslCertificate resource in the specified region. Get a list of available - * SSL certificates by making a list() request. + * SSL certificates by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -361,7 +365,7 @@ public final SslCertificate getRegionSslCertificate(GetRegionSslCertificateHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a SslCertificate resource in the specified project and region using the data included - * in the request + * in the request (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -396,7 +400,7 @@ public final Operation insertRegionSslCertificate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a SslCertificate resource in the specified project and region using the data included - * in the request + * in the request (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -431,7 +435,7 @@ public final Operation insertRegionSslCertificate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a SslCertificate resource in the specified project and region using the data included - * in the request + * in the request (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -458,7 +462,7 @@ public final Operation insertRegionSslCertificate(InsertRegionSslCertificateHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a SslCertificate resource in the specified project and region using the data included - * in the request + * in the request (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -485,7 +489,7 @@ public final Operation insertRegionSslCertificate(InsertRegionSslCertificateHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of SslCertificate resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -514,7 +518,7 @@ public final ListRegionSslCertificatesPagedResponse listRegionSslCertificates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of SslCertificate resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -540,7 +544,7 @@ public final ListRegionSslCertificatesPagedResponse listRegionSslCertificates(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of SslCertificate resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -568,7 +572,7 @@ public final ListRegionSslCertificatesPagedResponse listRegionSslCertificates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of SslCertificate resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -596,7 +600,7 @@ public final ListRegionSslCertificatesPagedResponse listRegionSslCertificates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of SslCertificate resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSslCertificateSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionSslCertificateSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionSslCertificateSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionSslCertificateSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClient.java b/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClient.java index bc64656db..16bfe5744 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClient.java @@ -156,7 +156,7 @@ public RegionTargetHttpProxyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpProxy resource. + * Deletes the specified TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -183,7 +183,7 @@ public final Operation deleteRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpProxy resource. + * Deletes the specified TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -209,7 +209,7 @@ public final Operation deleteRegionTargetHttpProxy(String targetHttpProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpProxy resource. + * Deletes the specified TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -234,7 +234,7 @@ public final Operation deleteRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpProxy resource. + * Deletes the specified TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -259,7 +259,8 @@ public final Operation deleteRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpProxy resource in the specified region. Gets a list of - * available target HTTP proxies by making a list() request. + * available target HTTP proxies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -287,7 +288,8 @@ public final TargetHttpProxy getRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpProxy resource in the specified region. Gets a list of - * available target HTTP proxies by making a list() request. + * available target HTTP proxies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -314,7 +316,8 @@ public final TargetHttpProxy getRegionTargetHttpProxy(String targetHttpProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpProxy resource in the specified region. Gets a list of - * available target HTTP proxies by making a list() request. + * available target HTTP proxies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -340,7 +343,8 @@ public final TargetHttpProxy getRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpProxy resource in the specified region. Gets a list of - * available target HTTP proxies by making a list() request. + * available target HTTP proxies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -365,7 +369,7 @@ public final TargetHttpProxy getRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpProxy resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -400,7 +404,7 @@ public final Operation insertRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpProxy resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -435,7 +439,7 @@ public final Operation insertRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpProxy resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -463,7 +467,7 @@ public final Operation insertRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpProxy resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -490,7 +494,7 @@ public final Operation insertRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -519,7 +523,7 @@ public final ListRegionTargetHttpProxiesPagedResponse listRegionTargetHttpProxie // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -545,7 +549,7 @@ public final ListRegionTargetHttpProxiesPagedResponse listRegionTargetHttpProxie // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -573,7 +577,7 @@ public final ListRegionTargetHttpProxiesPagedResponse listRegionTargetHttpProxie // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -601,7 +605,7 @@ public final ListRegionTargetHttpProxiesPagedResponse listRegionTargetHttpProxie // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -634,7 +638,7 @@ public final ListRegionTargetHttpProxiesPagedResponse listRegionTargetHttpProxie // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpProxy. + * Changes the URL map for TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -664,7 +668,7 @@ public final Operation setUrlMapRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpProxy. + * Changes the URL map for TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -694,7 +698,7 @@ public final Operation setUrlMapRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpProxy. + * Changes the URL map for TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -721,7 +725,7 @@ public final Operation setUrlMapRegionTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpProxy. + * Changes the URL map for TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxySettings.java b/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxySettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionTargetHttpProxySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxiesSetSslCertificatesRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxiesSetSslCertificatesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxiesSetSslCertificatesRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxiesSetSslCertificatesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClient.java b/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClient.java index ed9c835a7..01af8c28d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClient.java @@ -157,7 +157,7 @@ public RegionTargetHttpsProxyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpsProxy resource. + * Deletes the specified TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -184,7 +184,7 @@ public final Operation deleteRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpsProxy resource. + * Deletes the specified TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -210,7 +210,7 @@ public final Operation deleteRegionTargetHttpsProxy(String targetHttpsProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpsProxy resource. + * Deletes the specified TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -235,7 +235,7 @@ public final Operation deleteRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpsProxy resource. + * Deletes the specified TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -260,7 +260,8 @@ public final Operation deleteRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpsProxy resource in the specified region. Gets a list of - * available target HTTP proxies by making a list() request. + * available target HTTP proxies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -288,7 +289,8 @@ public final TargetHttpsProxy getRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpsProxy resource in the specified region. Gets a list of - * available target HTTP proxies by making a list() request. + * available target HTTP proxies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -315,7 +317,8 @@ public final TargetHttpsProxy getRegionTargetHttpsProxy(String targetHttpsProxy) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpsProxy resource in the specified region. Gets a list of - * available target HTTP proxies by making a list() request. + * available target HTTP proxies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -341,7 +344,8 @@ public final TargetHttpsProxy getRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpsProxy resource in the specified region. Gets a list of - * available target HTTP proxies by making a list() request. + * available target HTTP proxies by making a list() request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -366,7 +370,7 @@ public final TargetHttpsProxy getRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpsProxy resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -401,7 +405,7 @@ public final Operation insertRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpsProxy resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -436,7 +440,7 @@ public final Operation insertRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpsProxy resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -464,7 +468,7 @@ public final Operation insertRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpsProxy resource in the specified project and region using the data included - * in the request. + * in the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -491,7 +495,7 @@ public final Operation insertRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpsProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -520,7 +524,7 @@ public final ListRegionTargetHttpsProxiesPagedResponse listRegionTargetHttpsProx // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpsProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -547,7 +551,7 @@ public final ListRegionTargetHttpsProxiesPagedResponse listRegionTargetHttpsProx // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpsProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -575,7 +579,7 @@ public final ListRegionTargetHttpsProxiesPagedResponse listRegionTargetHttpsProx // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpsProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -603,7 +607,7 @@ public final ListRegionTargetHttpsProxiesPagedResponse listRegionTargetHttpsProx // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of TargetHttpsProxy resources available to the specified project in the - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -636,7 +640,7 @@ public final ListRegionTargetHttpsProxiesPagedResponse listRegionTargetHttpsProx // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Replaces SslCertificates for TargetHttpsProxy. + * Replaces SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -670,7 +674,7 @@ public final Operation setSslCertificatesRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Replaces SslCertificates for TargetHttpsProxy. + * Replaces SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -704,7 +708,7 @@ public final Operation setSslCertificatesRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Replaces SslCertificates for TargetHttpsProxy. + * Replaces SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -731,7 +735,7 @@ public final Operation setSslCertificatesRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Replaces SslCertificates for TargetHttpsProxy. + * Replaces SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -757,7 +761,7 @@ public final Operation setSslCertificatesRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpsProxy. + * Changes the URL map for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -787,7 +791,7 @@ public final Operation setUrlMapRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpsProxy. + * Changes the URL map for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -817,7 +821,7 @@ public final Operation setUrlMapRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpsProxy. + * Changes the URL map for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -844,7 +848,7 @@ public final Operation setUrlMapRegionTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpsProxy. + * Changes the URL map for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxySettings.java b/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxySettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionTargetHttpsProxySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionUrlMapClient.java b/src/main/java/com/google/cloud/compute/v1/RegionUrlMapClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionUrlMapClient.java rename to src/main/java/com/google/cloud/compute/v1/RegionUrlMapClient.java index 1838ab043..5bed2b575 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionUrlMapClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RegionUrlMapClient.java @@ -155,7 +155,7 @@ public RegionUrlMapStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified UrlMap resource. + * Deletes the specified UrlMap resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -185,7 +185,7 @@ public final Operation deleteRegionUrlMap(ProjectRegionUrlMapName urlMap, String // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified UrlMap resource. + * Deletes the specified UrlMap resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -215,7 +215,7 @@ public final Operation deleteRegionUrlMap(String urlMap, String requestId) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified UrlMap resource. + * Deletes the specified UrlMap resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -241,7 +241,7 @@ public final Operation deleteRegionUrlMap(DeleteRegionUrlMapHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified UrlMap resource. + * Deletes the specified UrlMap resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -268,7 +268,7 @@ public final Operation deleteRegionUrlMap(DeleteRegionUrlMapHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -295,7 +295,7 @@ public final UrlMap getRegionUrlMap(ProjectRegionUrlMapName urlMap) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -320,7 +320,7 @@ public final UrlMap getRegionUrlMap(String urlMap) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -345,7 +345,7 @@ public final UrlMap getRegionUrlMap(GetRegionUrlMapHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -368,7 +368,8 @@ public final UnaryCallable getRegionUrlMapCa // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a UrlMap resource in the specified project using the data included in the request. + * Creates a UrlMap resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -408,7 +409,8 @@ public final Operation insertRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a UrlMap resource in the specified project using the data included in the request. + * Creates a UrlMap resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -448,7 +450,8 @@ public final Operation insertRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a UrlMap resource in the specified project using the data included in the request. + * Creates a UrlMap resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -476,7 +479,8 @@ public final Operation insertRegionUrlMap(InsertRegionUrlMapHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a UrlMap resource in the specified project using the data included in the request. + * Creates a UrlMap resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -505,7 +509,7 @@ public final Operation insertRegionUrlMap(InsertRegionUrlMapHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of UrlMap resources available to the specified project in the specified - * region. + * region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -533,7 +537,7 @@ public final ListRegionUrlMapsPagedResponse listRegionUrlMaps(ProjectRegionName // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of UrlMap resources available to the specified project in the specified - * region. + * region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -559,7 +563,7 @@ public final ListRegionUrlMapsPagedResponse listRegionUrlMaps(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of UrlMap resources available to the specified project in the specified - * region. + * region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -587,7 +591,7 @@ public final ListRegionUrlMapsPagedResponse listRegionUrlMaps( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of UrlMap resources available to the specified project in the specified - * region. + * region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -614,7 +618,7 @@ public final ListRegionUrlMapsPagedResponse listRegionUrlMaps( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of UrlMap resources available to the specified project in the specified - * region. + * region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -647,7 +651,8 @@ public final UnaryCallable listRegionU // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified UrlMap resource with the data included in the request. This method - * supports PATCH semantics and uses JSON merge patch format and processing rules. + * supports PATCH semantics and uses JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -697,7 +702,8 @@ public final Operation patchRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified UrlMap resource with the data included in the request. This method - * supports PATCH semantics and uses JSON merge patch format and processing rules. + * supports PATCH semantics and uses JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -744,7 +750,8 @@ public final Operation patchRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified UrlMap resource with the data included in the request. This method - * supports PATCH semantics and uses JSON merge patch format and processing rules. + * supports PATCH semantics and uses JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -775,7 +782,8 @@ public final Operation patchRegionUrlMap(PatchRegionUrlMapHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified UrlMap resource with the data included in the request. This method - * supports PATCH semantics and uses JSON merge patch format and processing rules. + * supports PATCH semantics and uses JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -804,7 +812,8 @@ public final UnaryCallable patchRegionU // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified UrlMap resource with the data included in the request. + * Updates the specified UrlMap resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -853,7 +862,8 @@ public final Operation updateRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified UrlMap resource with the data included in the request. + * Updates the specified UrlMap resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -899,7 +909,8 @@ public final Operation updateRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified UrlMap resource with the data included in the request. + * Updates the specified UrlMap resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -929,7 +940,8 @@ public final Operation updateRegionUrlMap(UpdateRegionUrlMapHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified UrlMap resource with the data included in the request. + * Updates the specified UrlMap resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -960,7 +972,8 @@ public final Operation updateRegionUrlMap(UpdateRegionUrlMapHttpRequest request) // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be - * run. Calling this method does NOT create the UrlMap. + * run. Calling this method does NOT create the UrlMap. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -992,7 +1005,8 @@ public final UrlMapsValidateResponse validateRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be - * run. Calling this method does NOT create the UrlMap. + * run. Calling this method does NOT create the UrlMap. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1023,7 +1037,8 @@ public final UrlMapsValidateResponse validateRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be - * run. Calling this method does NOT create the UrlMap. + * run. Calling this method does NOT create the UrlMap. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1051,7 +1066,8 @@ public final UrlMapsValidateResponse validateRegionUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be - * run. Calling this method does NOT create the UrlMap. + * run. Calling this method does NOT create the UrlMap. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionUrlMapSettings.java b/src/main/java/com/google/cloud/compute/v1/RegionUrlMapSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionUrlMapSettings.java rename to src/main/java/com/google/cloud/compute/v1/RegionUrlMapSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionUrlMapsValidateRequest.java b/src/main/java/com/google/cloud/compute/v1/RegionUrlMapsValidateRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RegionUrlMapsValidateRequest.java rename to src/main/java/com/google/cloud/compute/v1/RegionUrlMapsValidateRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveHealthCheckTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RemoveHealthCheckTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveHealthCheckTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RemoveHealthCheckTargetPoolHttpRequest.java index 5df06ae1b..803e02f37 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveHealthCheckTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RemoveHealthCheckTargetPoolHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetPools.removeHealthCheck. Removes health check URL from a - * target pool. + * target pool. (== suppress_warning http-rest-shadowed ==) */ public final class RemoveHealthCheckTargetPoolHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveInstanceTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RemoveInstanceTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveInstanceTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RemoveInstanceTargetPoolHttpRequest.java index 38f959f0e..8927b2554 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveInstanceTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RemoveInstanceTargetPoolHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetPools.removeInstance. Removes instance URL from a target - * pool. + * pool. (== suppress_warning http-rest-shadowed ==) */ public final class RemoveInstanceTargetPoolHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveInstancesInstanceGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RemoveInstancesInstanceGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveInstancesInstanceGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RemoveInstancesInstanceGroupHttpRequest.java index 96a5d5d27..d6df7b2cd 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveInstancesInstanceGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RemoveInstancesInstanceGroupHttpRequest.java @@ -30,7 +30,7 @@ * *

If the group is part of a backend service that has enabled connection draining, it can take up * to 60 seconds after the connection draining duration before the VM instance is removed or - * deleted. + * deleted. (== suppress_warning http-rest-shadowed ==) */ public final class RemoveInstancesInstanceGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemovePeeringNetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RemovePeeringNetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemovePeeringNetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RemovePeeringNetworkHttpRequest.java index e004a18f1..6f2db0336 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemovePeeringNetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RemovePeeringNetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.networks.removePeering. Removes a peering from the specified - * network. + * network. (== suppress_warning http-rest-shadowed ==) */ public final class RemovePeeringNetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesDiskHttpRequest.java index 301b7b0d4..5715b06ef 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.disks.removeResourcePolicies. Removes resource policies from a - * disk. + * disk. (== suppress_warning http-rest-shadowed ==) */ public final class RemoveResourcePoliciesDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesRegionDiskHttpRequest.java index 93fd8431f..1425e7d74 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RemoveResourcePoliciesRegionDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionDisks.removeResourcePolicies. Removes resource policies - * from a regional disk. + * from a regional disk. (== suppress_warning http-rest-shadowed ==) */ public final class RemoveResourcePoliciesRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveRuleSecurityPolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/RemoveRuleSecurityPolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveRuleSecurityPolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/RemoveRuleSecurityPolicyHttpRequest.java index 09d70e555..ee4d367dc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RemoveRuleSecurityPolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/RemoveRuleSecurityPolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.securityPolicies.removeRule. Deletes a rule at the specified - * priority. + * priority. (== suppress_warning http-rest-shadowed ==) */ public final class RemoveRuleSecurityPolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RequestMirrorPolicy.java b/src/main/java/com/google/cloud/compute/v1/RequestMirrorPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RequestMirrorPolicy.java rename to src/main/java/com/google/cloud/compute/v1/RequestMirrorPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Reservation.java b/src/main/java/com/google/cloud/compute/v1/Reservation.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Reservation.java rename to src/main/java/com/google/cloud/compute/v1/Reservation.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationAffinity.java b/src/main/java/com/google/cloud/compute/v1/ReservationAffinity.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationAffinity.java rename to src/main/java/com/google/cloud/compute/v1/ReservationAffinity.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/ReservationAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/ReservationAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationClient.java b/src/main/java/com/google/cloud/compute/v1/ReservationClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationClient.java rename to src/main/java/com/google/cloud/compute/v1/ReservationClient.java index 65f07edc2..2d2a88d81 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationClient.java +++ b/src/main/java/com/google/cloud/compute/v1/ReservationClient.java @@ -154,7 +154,7 @@ public ReservationStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of reservations. + * Retrieves an aggregated list of reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +182,7 @@ public final AggregatedListReservationsPagedResponse aggregatedListReservations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of reservations. + * Retrieves an aggregated list of reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -207,7 +207,7 @@ public final AggregatedListReservationsPagedResponse aggregatedListReservations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of reservations. + * Retrieves an aggregated list of reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -234,7 +234,7 @@ public final AggregatedListReservationsPagedResponse aggregatedListReservations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of reservations. + * Retrieves an aggregated list of reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -261,7 +261,7 @@ public final AggregatedListReservationsPagedResponse aggregatedListReservations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of reservations. + * Retrieves an aggregated list of reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -294,7 +294,7 @@ public final AggregatedListReservationsPagedResponse aggregatedListReservations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified reservation. + * Deletes the specified reservation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -320,7 +320,7 @@ public final Operation deleteReservation(ProjectZoneReservationName reservation) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified reservation. + * Deletes the specified reservation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -344,7 +344,7 @@ public final Operation deleteReservation(String reservation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified reservation. + * Deletes the specified reservation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -368,7 +368,7 @@ public final Operation deleteReservation(DeleteReservationHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified reservation. + * Deletes the specified reservation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -391,7 +391,8 @@ public final UnaryCallable deleteReserv // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves information about the specified reservation. + * Retrieves information about the specified reservation. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -417,7 +418,8 @@ public final Reservation getReservation(ProjectZoneReservationName reservation) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves information about the specified reservation. + * Retrieves information about the specified reservation. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -441,7 +443,8 @@ public final Reservation getReservation(String reservation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves information about the specified reservation. + * Retrieves information about the specified reservation. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -465,7 +468,8 @@ public final Reservation getReservation(GetReservationHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves information about the specified reservation. + * Retrieves information about the specified reservation. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -489,7 +493,7 @@ public final UnaryCallable getReservatio // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -516,7 +520,7 @@ public final Policy getIamPolicyReservation(ProjectZoneReservationResourceName r // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -541,7 +545,7 @@ public final Policy getIamPolicyReservation(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -566,7 +570,7 @@ public final Policy getIamPolicyReservation(GetIamPolicyReservationHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -590,7 +594,8 @@ public final Policy getIamPolicyReservation(GetIamPolicyReservationHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new reservation. For more information, read Reserving zonal resources. + * Creates a new reservation. For more information, read Reserving zonal resources. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -622,7 +627,8 @@ public final Operation insertReservation(ProjectZoneName zone, Reservation reser // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new reservation. For more information, read Reserving zonal resources. + * Creates a new reservation. For more information, read Reserving zonal resources. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -654,7 +660,8 @@ public final Operation insertReservation(String zone, Reservation reservationRes // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new reservation. For more information, read Reserving zonal resources. + * Creates a new reservation. For more information, read Reserving zonal resources. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -680,7 +687,8 @@ public final Operation insertReservation(InsertReservationHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new reservation. For more information, read Reserving zonal resources. + * Creates a new reservation. For more information, read Reserving zonal resources. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -706,7 +714,7 @@ public final UnaryCallable insertReserv // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list of all the reservations that have been configured for the specified project in specified - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -734,7 +742,7 @@ public final ListReservationsPagedResponse listReservations(ProjectZoneName zone // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list of all the reservations that have been configured for the specified project in specified - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -760,7 +768,7 @@ public final ListReservationsPagedResponse listReservations(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list of all the reservations that have been configured for the specified project in specified - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -787,7 +795,7 @@ public final ListReservationsPagedResponse listReservations(ListReservationsHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list of all the reservations that have been configured for the specified project in specified - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -814,7 +822,7 @@ public final ListReservationsPagedResponse listReservations(ListReservationsHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list of all the reservations that have been configured for the specified project in specified - * zone. + * zone. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -848,7 +856,7 @@ public final ListReservationsPagedResponse listReservations(ListReservationsHttp // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Resizes the reservation (applicable to standalone reservations only). For more information, - * read Modifying reservations. + * read Modifying reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -880,7 +888,7 @@ public final Operation resizeReservation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Resizes the reservation (applicable to standalone reservations only). For more information, - * read Modifying reservations. + * read Modifying reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -911,7 +919,7 @@ public final Operation resizeReservation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Resizes the reservation (applicable to standalone reservations only). For more information, - * read Modifying reservations. + * read Modifying reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -938,7 +946,7 @@ public final Operation resizeReservation(ResizeReservationHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Resizes the reservation (applicable to standalone reservations only). For more information, - * read Modifying reservations. + * read Modifying reservations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -963,7 +971,8 @@ public final UnaryCallable resizeReserv // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -994,7 +1003,8 @@ public final Policy setIamPolicyReservation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1024,7 +1034,8 @@ public final Policy setIamPolicyReservation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1050,7 +1061,8 @@ public final Policy setIamPolicyReservation(SetIamPolicyReservationHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1076,7 +1088,8 @@ public final Policy setIamPolicyReservation(SetIamPolicyReservationHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1107,7 +1120,8 @@ public final TestPermissionsResponse testIamPermissionsReservation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1137,7 +1151,8 @@ public final TestPermissionsResponse testIamPermissionsReservation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1164,7 +1179,8 @@ public final TestPermissionsResponse testIamPermissionsReservation( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationList.java b/src/main/java/com/google/cloud/compute/v1/ReservationList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationList.java rename to src/main/java/com/google/cloud/compute/v1/ReservationList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationSettings.java b/src/main/java/com/google/cloud/compute/v1/ReservationSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationSettings.java rename to src/main/java/com/google/cloud/compute/v1/ReservationSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationsResizeRequest.java b/src/main/java/com/google/cloud/compute/v1/ReservationsResizeRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationsResizeRequest.java rename to src/main/java/com/google/cloud/compute/v1/ReservationsResizeRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationsScopedList.java b/src/main/java/com/google/cloud/compute/v1/ReservationsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ReservationsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/ReservationsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResetInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ResetInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResetInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ResetInstanceHttpRequest.java index 78b208631..5f9a90462 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResetInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ResetInstanceHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.instances.reset. Performs a reset on the instance. This is a * hard reset the VM does not do a graceful shutdown. For more information, see Resetting an - * instance. + * instance. (== suppress_warning http-rest-shadowed ==) */ public final class ResetInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ResizeDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ResizeDiskHttpRequest.java index 2b0fdc3cb..c7e1e8fbe 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ResizeDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.disks.resize. Resizes the specified persistent disk. You can - * only increase the size of the disk. + * only increase the size of the disk. (== suppress_warning http-rest-shadowed ==) */ public final class ResizeDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ResizeInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ResizeInstanceGroupManagerHttpRequest.java index 6ad5f3f93..f97bfc3f6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ResizeInstanceGroupManagerHttpRequest.java @@ -43,7 +43,7 @@ * *

If the group is part of a backend service that has enabled connection draining, it can take up * to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) */ public final class ResizeInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ResizeRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ResizeRegionDiskHttpRequest.java index 046490da5..ef04b5951 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ResizeRegionDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionDisks.resize. Resizes the specified regional persistent - * disk. + * disk. (== suppress_warning http-rest-shadowed ==) */ public final class ResizeRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ResizeRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ResizeRegionInstanceGroupManagerHttpRequest.java index 9e9a49f98..2d729d502 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ResizeRegionInstanceGroupManagerHttpRequest.java @@ -35,7 +35,7 @@ * *

If the group is part of a backend service that has enabled connection draining, it can take up * to 60 seconds after the connection draining duration has elapsed before the VM instance is - * removed or deleted. + * removed or deleted. (== suppress_warning http-rest-shadowed ==) */ public final class ResizeRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeReservationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ResizeReservationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeReservationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ResizeReservationHttpRequest.java index 060da85fc..934cb10b8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResizeReservationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ResizeReservationHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.reservations.resize. Resizes the reservation (applicable to - * standalone reservations only). For more information, read Modifying reservations. + * standalone reservations only). For more information, read Modifying reservations. (== + * suppress_warning http-rest-shadowed ==) */ public final class ResizeReservationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourceCommitment.java b/src/main/java/com/google/cloud/compute/v1/ResourceCommitment.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourceCommitment.java rename to src/main/java/com/google/cloud/compute/v1/ResourceCommitment.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourceGroupReference.java b/src/main/java/com/google/cloud/compute/v1/ResourceGroupReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourceGroupReference.java rename to src/main/java/com/google/cloud/compute/v1/ResourceGroupReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePoliciesScopedList.java b/src/main/java/com/google/cloud/compute/v1/ResourcePoliciesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePoliciesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePoliciesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicy.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicy.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicyAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicyAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyClient.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicyClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyClient.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicyClient.java index e088dca6c..e3c161d42 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/ResourcePolicyClient.java @@ -155,7 +155,7 @@ public ResourcePolicyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of resource policies. + * Retrieves an aggregated list of resource policies. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -183,7 +183,7 @@ public final AggregatedListResourcePoliciesPagedResponse aggregatedListResourceP // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of resource policies. + * Retrieves an aggregated list of resource policies. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -209,7 +209,7 @@ public final AggregatedListResourcePoliciesPagedResponse aggregatedListResourceP // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of resource policies. + * Retrieves an aggregated list of resource policies. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -236,7 +236,7 @@ public final AggregatedListResourcePoliciesPagedResponse aggregatedListResourceP // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of resource policies. + * Retrieves an aggregated list of resource policies. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -263,7 +263,7 @@ public final AggregatedListResourcePoliciesPagedResponse aggregatedListResourceP // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of resource policies. + * Retrieves an aggregated list of resource policies. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -297,7 +297,7 @@ public final AggregatedListResourcePoliciesPagedResponse aggregatedListResourceP // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified resource policy. + * Deletes the specified resource policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -323,7 +323,7 @@ public final Operation deleteResourcePolicy(ProjectRegionResourcePolicyName reso // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified resource policy. + * Deletes the specified resource policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -347,7 +347,7 @@ public final Operation deleteResourcePolicy(String resourcePolicy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified resource policy. + * Deletes the specified resource policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -371,7 +371,7 @@ public final Operation deleteResourcePolicy(DeleteResourcePolicyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified resource policy. + * Deletes the specified resource policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -395,7 +395,8 @@ public final Operation deleteResourcePolicy(DeleteResourcePolicyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves all information of the specified resource policy. + * Retrieves all information of the specified resource policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -421,7 +422,8 @@ public final ResourcePolicy getResourcePolicy(ProjectRegionResourcePolicyName re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves all information of the specified resource policy. + * Retrieves all information of the specified resource policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -445,7 +447,8 @@ public final ResourcePolicy getResourcePolicy(String resourcePolicy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves all information of the specified resource policy. + * Retrieves all information of the specified resource policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -469,7 +472,8 @@ public final ResourcePolicy getResourcePolicy(GetResourcePolicyHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves all information of the specified resource policy. + * Retrieves all information of the specified resource policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -494,7 +498,7 @@ public final ResourcePolicy getResourcePolicy(GetResourcePolicyHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -521,7 +525,7 @@ public final Policy getIamPolicyResourcePolicy(ProjectRegionResourcePolicyResour // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -546,7 +550,7 @@ public final Policy getIamPolicyResourcePolicy(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -571,7 +575,7 @@ public final Policy getIamPolicyResourcePolicy(GetIamPolicyResourcePolicyHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -595,7 +599,7 @@ public final Policy getIamPolicyResourcePolicy(GetIamPolicyResourcePolicyHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new resource policy. + * Creates a new resource policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -625,7 +629,7 @@ public final Operation insertResourcePolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new resource policy. + * Creates a new resource policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -655,7 +659,7 @@ public final Operation insertResourcePolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new resource policy. + * Creates a new resource policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -681,7 +685,7 @@ public final Operation insertResourcePolicy(InsertResourcePolicyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new resource policy. + * Creates a new resource policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -708,7 +712,7 @@ public final Operation insertResourcePolicy(InsertResourcePolicyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list all the resource policies that have been configured for the specified project in - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -736,7 +740,7 @@ public final ListResourcePoliciesPagedResponse listResourcePolicies(ProjectRegio // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list all the resource policies that have been configured for the specified project in - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -762,7 +766,7 @@ public final ListResourcePoliciesPagedResponse listResourcePolicies(String regio // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list all the resource policies that have been configured for the specified project in - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -790,7 +794,7 @@ public final ListResourcePoliciesPagedResponse listResourcePolicies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list all the resource policies that have been configured for the specified project in - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -817,7 +821,7 @@ public final ListResourcePoliciesPagedResponse listResourcePolicies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * A list all the resource policies that have been configured for the specified project in - * specified region. + * specified region. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -850,7 +854,8 @@ public final ListResourcePoliciesPagedResponse listResourcePolicies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -881,7 +886,8 @@ public final Policy setIamPolicyResourcePolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -911,7 +917,8 @@ public final Policy setIamPolicyResourcePolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -937,7 +944,8 @@ public final Policy setIamPolicyResourcePolicy(SetIamPolicyResourcePolicyHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -963,7 +971,8 @@ public final Policy setIamPolicyResourcePolicy(SetIamPolicyResourcePolicyHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -994,7 +1003,8 @@ public final TestPermissionsResponse testIamPermissionsResourcePolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1024,7 +1034,8 @@ public final TestPermissionsResponse testIamPermissionsResourcePolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1051,7 +1062,8 @@ public final TestPermissionsResponse testIamPermissionsResourcePolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyDailyCycle.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicyDailyCycle.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyDailyCycle.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicyDailyCycle.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyHourlyCycle.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicyHourlyCycle.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyHourlyCycle.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicyHourlyCycle.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyList.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicyList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyList.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicyList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySettings.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySettings.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicy.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicy.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicyRetentionPolicy.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicyRetentionPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicyRetentionPolicy.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicyRetentionPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicySchedule.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicySchedule.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicySchedule.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicySchedule.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicySnapshotProperties.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicySnapshotProperties.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicySnapshotProperties.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicySnapshotSchedulePolicySnapshotProperties.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyWeeklyCycle.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicyWeeklyCycle.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyWeeklyCycle.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicyWeeklyCycle.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyWeeklyCycleDayOfWeek.java b/src/main/java/com/google/cloud/compute/v1/ResourcePolicyWeeklyCycleDayOfWeek.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ResourcePolicyWeeklyCycleDayOfWeek.java rename to src/main/java/com/google/cloud/compute/v1/ResourcePolicyWeeklyCycleDayOfWeek.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Route.java b/src/main/java/com/google/cloud/compute/v1/Route.java similarity index 92% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Route.java rename to src/main/java/com/google/cloud/compute/v1/Route.java index 89c5e811d..d68ed4777 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Route.java +++ b/src/main/java/com/google/cloud/compute/v1/Route.java @@ -41,6 +41,7 @@ public final class Route implements ApiMessage { private final String name; private final String network; private final String nextHopGateway; + private final String nextHopIlb; private final String nextHopInstance; private final String nextHopIp; private final String nextHopNetwork; @@ -60,6 +61,7 @@ private Route() { this.name = null; this.network = null; this.nextHopGateway = null; + this.nextHopIlb = null; this.nextHopInstance = null; this.nextHopIp = null; this.nextHopNetwork = null; @@ -80,6 +82,7 @@ private Route( String name, String network, String nextHopGateway, + String nextHopIlb, String nextHopInstance, String nextHopIp, String nextHopNetwork, @@ -97,6 +100,7 @@ private Route( this.name = name; this.network = network; this.nextHopGateway = nextHopGateway; + this.nextHopIlb = nextHopIlb; this.nextHopInstance = nextHopInstance; this.nextHopIp = nextHopIp; this.nextHopNetwork = nextHopNetwork; @@ -134,6 +138,9 @@ public Object getFieldValue(String fieldName) { if ("nextHopGateway".equals(fieldName)) { return nextHopGateway; } + if ("nextHopIlb".equals(fieldName)) { + return nextHopIlb; + } if ("nextHopInstance".equals(fieldName)) { return nextHopInstance; } @@ -236,6 +243,17 @@ public String getNextHopGateway() { return nextHopGateway; } + /** + * The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should handle matching + * packets. You can only specify the forwarding rule as a partial or full URL. For example, the + * following are all valid URLs: - + * https://www.googleapis.com/compute/v1/projects/project/regions/region/forwardingRules/forwardingRule + * - regions/region/forwardingRules/forwardingRule + */ + public String getNextHopIlb() { + return nextHopIlb; + } + /** * The URL to an instance that should handle matching packets. You can specify this as a full or * partial URL. For example: @@ -330,6 +348,7 @@ public static class Builder { private String name; private String network; private String nextHopGateway; + private String nextHopIlb; private String nextHopInstance; private String nextHopIp; private String nextHopNetwork; @@ -368,6 +387,9 @@ public Builder mergeFrom(Route other) { if (other.getNextHopGateway() != null) { this.nextHopGateway = other.nextHopGateway; } + if (other.getNextHopIlb() != null) { + this.nextHopIlb = other.nextHopIlb; + } if (other.getNextHopInstance() != null) { this.nextHopInstance = other.nextHopInstance; } @@ -407,6 +429,7 @@ public Builder mergeFrom(Route other) { this.name = source.name; this.network = source.network; this.nextHopGateway = source.nextHopGateway; + this.nextHopIlb = source.nextHopIlb; this.nextHopInstance = source.nextHopInstance; this.nextHopIp = source.nextHopIp; this.nextHopNetwork = source.nextHopNetwork; @@ -542,6 +565,29 @@ public Builder setNextHopGateway(String nextHopGateway) { return this; } + /** + * The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should handle matching + * packets. You can only specify the forwarding rule as a partial or full URL. For example, the + * following are all valid URLs: - + * https://www.googleapis.com/compute/v1/projects/project/regions/region/forwardingRules/forwardingRule + * - regions/region/forwardingRules/forwardingRule + */ + public String getNextHopIlb() { + return nextHopIlb; + } + + /** + * The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should handle matching + * packets. You can only specify the forwarding rule as a partial or full URL. For example, the + * following are all valid URLs: - + * https://www.googleapis.com/compute/v1/projects/project/regions/region/forwardingRules/forwardingRule + * - regions/region/forwardingRules/forwardingRule + */ + public Builder setNextHopIlb(String nextHopIlb) { + this.nextHopIlb = nextHopIlb; + return this; + } + /** * The URL to an instance that should handle matching packets. You can specify this as a full or * partial URL. For example: @@ -715,6 +761,7 @@ public Route build() { name, network, nextHopGateway, + nextHopIlb, nextHopInstance, nextHopIp, nextHopNetwork, @@ -736,6 +783,7 @@ public Builder clone() { newBuilder.setName(this.name); newBuilder.setNetwork(this.network); newBuilder.setNextHopGateway(this.nextHopGateway); + newBuilder.setNextHopIlb(this.nextHopIlb); newBuilder.setNextHopInstance(this.nextHopInstance); newBuilder.setNextHopIp(this.nextHopIp); newBuilder.setNextHopNetwork(this.nextHopNetwork); @@ -776,6 +824,9 @@ public String toString() { + "nextHopGateway=" + nextHopGateway + ", " + + "nextHopIlb=" + + nextHopIlb + + ", " + "nextHopInstance=" + nextHopInstance + ", " @@ -820,6 +871,7 @@ public boolean equals(Object o) { && Objects.equals(this.name, that.getName()) && Objects.equals(this.network, that.getNetwork()) && Objects.equals(this.nextHopGateway, that.getNextHopGateway()) + && Objects.equals(this.nextHopIlb, that.getNextHopIlb()) && Objects.equals(this.nextHopInstance, that.getNextHopInstance()) && Objects.equals(this.nextHopIp, that.getNextHopIp()) && Objects.equals(this.nextHopNetwork, that.getNextHopNetwork()) @@ -844,6 +896,7 @@ public int hashCode() { name, network, nextHopGateway, + nextHopIlb, nextHopInstance, nextHopIp, nextHopNetwork, diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouteClient.java b/src/main/java/com/google/cloud/compute/v1/RouteClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouteClient.java rename to src/main/java/com/google/cloud/compute/v1/RouteClient.java index a4eed2506..564ba7f56 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouteClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RouteClient.java @@ -153,7 +153,7 @@ public RouteStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Route resource. + * Deletes the specified Route resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -179,7 +179,7 @@ public final Operation deleteRoute(ProjectGlobalRouteName route) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Route resource. + * Deletes the specified Route resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -202,7 +202,7 @@ public final Operation deleteRoute(String route) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Route resource. + * Deletes the specified Route resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -226,7 +226,7 @@ public final Operation deleteRoute(DeleteRouteHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Route resource. + * Deletes the specified Route resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -250,7 +250,7 @@ public final UnaryCallable deleteRouteCallabl // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Route resource. Gets a list of available routes by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -275,7 +275,7 @@ public final Route getRoute(ProjectGlobalRouteName route) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Route resource. Gets a list of available routes by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -299,7 +299,7 @@ public final Route getRoute(String route) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Route resource. Gets a list of available routes by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -324,7 +324,7 @@ public final Route getRoute(GetRouteHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Route resource. Gets a list of available routes by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -347,7 +347,8 @@ public final UnaryCallable getRouteCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a Route resource in the specified project using the data included in the request. + * Creates a Route resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -379,7 +380,8 @@ public final Operation insertRoute(ProjectName project, Route routeResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a Route resource in the specified project using the data included in the request. + * Creates a Route resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -411,7 +413,8 @@ public final Operation insertRoute(String project, Route routeResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a Route resource in the specified project using the data included in the request. + * Creates a Route resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -437,7 +440,8 @@ public final Operation insertRoute(InsertRouteHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a Route resource in the specified project using the data included in the request. + * Creates a Route resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -462,7 +466,8 @@ public final UnaryCallable insertRouteCallabl // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Route resources available to the specified project. + * Retrieves the list of Route resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -489,7 +494,8 @@ public final ListRoutesPagedResponse listRoutes(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Route resources available to the specified project. + * Retrieves the list of Route resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -513,7 +519,8 @@ public final ListRoutesPagedResponse listRoutes(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Route resources available to the specified project. + * Retrieves the list of Route resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -539,7 +546,8 @@ public final ListRoutesPagedResponse listRoutes(ListRoutesHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Route resources available to the specified project. + * Retrieves the list of Route resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -565,7 +573,8 @@ public final ListRoutesPagedResponse listRoutes(ListRoutesHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Route resources available to the specified project. + * Retrieves the list of Route resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouteList.java b/src/main/java/com/google/cloud/compute/v1/RouteList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouteList.java rename to src/main/java/com/google/cloud/compute/v1/RouteList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouteSettings.java b/src/main/java/com/google/cloud/compute/v1/RouteSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouteSettings.java rename to src/main/java/com/google/cloud/compute/v1/RouteSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Router.java b/src/main/java/com/google/cloud/compute/v1/Router.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Router.java rename to src/main/java/com/google/cloud/compute/v1/Router.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterAdvertisedIpRange.java b/src/main/java/com/google/cloud/compute/v1/RouterAdvertisedIpRange.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterAdvertisedIpRange.java rename to src/main/java/com/google/cloud/compute/v1/RouterAdvertisedIpRange.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/RouterAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/RouterAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterBgp.java b/src/main/java/com/google/cloud/compute/v1/RouterBgp.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterBgp.java rename to src/main/java/com/google/cloud/compute/v1/RouterBgp.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterBgpPeer.java b/src/main/java/com/google/cloud/compute/v1/RouterBgpPeer.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterBgpPeer.java rename to src/main/java/com/google/cloud/compute/v1/RouterBgpPeer.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterClient.java b/src/main/java/com/google/cloud/compute/v1/RouterClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterClient.java rename to src/main/java/com/google/cloud/compute/v1/RouterClient.java index 46f6fdfe3..f1679bab2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterClient.java +++ b/src/main/java/com/google/cloud/compute/v1/RouterClient.java @@ -153,7 +153,7 @@ public RouterStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of routers. + * Retrieves an aggregated list of routers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -180,7 +180,7 @@ public final AggregatedListRoutersPagedResponse aggregatedListRouters(ProjectNam // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of routers. + * Retrieves an aggregated list of routers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final AggregatedListRoutersPagedResponse aggregatedListRouters(String pro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of routers. + * Retrieves an aggregated list of routers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -232,7 +232,7 @@ public final AggregatedListRoutersPagedResponse aggregatedListRouters( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of routers. + * Retrieves an aggregated list of routers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -258,7 +258,7 @@ public final AggregatedListRoutersPagedResponse aggregatedListRouters( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of routers. + * Retrieves an aggregated list of routers. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -291,7 +291,7 @@ public final AggregatedListRoutersPagedResponse aggregatedListRouters( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Router resource. + * Deletes the specified Router resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -317,7 +317,7 @@ public final Operation deleteRouter(ProjectRegionRouterName router) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Router resource. + * Deletes the specified Router resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -341,7 +341,7 @@ public final Operation deleteRouter(String router) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Router resource. + * Deletes the specified Router resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -365,7 +365,7 @@ public final Operation deleteRouter(DeleteRouterHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified Router resource. + * Deletes the specified Router resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -389,7 +389,7 @@ public final UnaryCallable deleteRouterCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Router resource. Gets a list of available routers by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -416,7 +416,7 @@ public final Router getRouter(ProjectRegionRouterName router) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Router resource. Gets a list of available routers by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -440,7 +440,7 @@ public final Router getRouter(String router) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Router resource. Gets a list of available routers by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -465,7 +465,7 @@ public final Router getRouter(GetRouterHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Router resource. Gets a list of available routers by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -488,7 +488,8 @@ public final UnaryCallable getRouterCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime Nat mapping information of VM endpoints. + * Retrieves runtime Nat mapping information of VM endpoints. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -516,7 +517,8 @@ public final GetNatMappingInfoRoutersPagedResponse getNatMappingInfoRouters( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime Nat mapping information of VM endpoints. + * Retrieves runtime Nat mapping information of VM endpoints. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -541,7 +543,8 @@ public final GetNatMappingInfoRoutersPagedResponse getNatMappingInfoRouters(Stri // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime Nat mapping information of VM endpoints. + * Retrieves runtime Nat mapping information of VM endpoints. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -568,7 +571,8 @@ public final GetNatMappingInfoRoutersPagedResponse getNatMappingInfoRouters( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime Nat mapping information of VM endpoints. + * Retrieves runtime Nat mapping information of VM endpoints. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -595,7 +599,8 @@ public final GetNatMappingInfoRoutersPagedResponse getNatMappingInfoRouters( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime Nat mapping information of VM endpoints. + * Retrieves runtime Nat mapping information of VM endpoints. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -628,7 +633,8 @@ public final GetNatMappingInfoRoutersPagedResponse getNatMappingInfoRouters( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime information of the specified router. + * Retrieves runtime information of the specified router. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -654,7 +660,8 @@ public final RouterStatusResponse getRouterStatusRouter(ProjectRegionRouterName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime information of the specified router. + * Retrieves runtime information of the specified router. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -678,7 +685,8 @@ public final RouterStatusResponse getRouterStatusRouter(String router) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime information of the specified router. + * Retrieves runtime information of the specified router. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -703,7 +711,8 @@ public final RouterStatusResponse getRouterStatusRouter( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves runtime information of the specified router. + * Retrieves runtime information of the specified router. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -728,7 +737,7 @@ public final RouterStatusResponse getRouterStatusRouter( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a Router resource in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -759,7 +768,7 @@ public final Operation insertRouter(ProjectRegionName region, Router routerResou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a Router resource in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -790,7 +799,7 @@ public final Operation insertRouter(String region, Router routerResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a Router resource in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -817,7 +826,7 @@ public final Operation insertRouter(InsertRouterHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a Router resource in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -842,7 +851,8 @@ public final UnaryCallable insertRouterCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Router resources available to the specified project. + * Retrieves a list of Router resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -869,7 +879,8 @@ public final ListRoutersPagedResponse listRouters(ProjectRegionName region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Router resources available to the specified project. + * Retrieves a list of Router resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -893,7 +904,8 @@ public final ListRoutersPagedResponse listRouters(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Router resources available to the specified project. + * Retrieves a list of Router resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -919,7 +931,8 @@ public final ListRoutersPagedResponse listRouters(ListRoutersHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Router resources available to the specified project. + * Retrieves a list of Router resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -945,7 +958,8 @@ public final ListRoutersPagedResponse listRouters(ListRoutersHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Router resources available to the specified project. + * Retrieves a list of Router resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -978,7 +992,8 @@ public final UnaryCallable listRoutersCallab // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified Router resource with the data included in the request. This method - * supports PATCH semantics and uses JSON merge patch format and processing rules. + * supports PATCH semantics and uses JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1016,7 +1031,8 @@ public final Operation patchRouter( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified Router resource with the data included in the request. This method - * supports PATCH semantics and uses JSON merge patch format and processing rules. + * supports PATCH semantics and uses JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1053,7 +1069,8 @@ public final Operation patchRouter(String router, Router routerResource, ListSample code: * @@ -1082,7 +1099,8 @@ public final Operation patchRouter(PatchRouterHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified Router resource with the data included in the request. This method - * supports PATCH semantics and uses JSON merge patch format and processing rules. + * supports PATCH semantics and uses JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1110,7 +1128,7 @@ public final UnaryCallable patchRouterCallabl // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Preview fields auto-generated during router create and update operations. Calling this method - * does NOT create or update the router. + * does NOT create or update the router. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1142,7 +1160,7 @@ public final RoutersPreviewResponse previewRouter( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Preview fields auto-generated during router create and update operations. Calling this method - * does NOT create or update the router. + * does NOT create or update the router. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1173,7 +1191,7 @@ public final RoutersPreviewResponse previewRouter(String router, Router routerRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Preview fields auto-generated during router create and update operations. Calling this method - * does NOT create or update the router. + * does NOT create or update the router. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1200,7 +1218,7 @@ public final RoutersPreviewResponse previewRouter(PreviewRouterHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Preview fields auto-generated during router create and update operations. Calling this method - * does NOT create or update the router. + * does NOT create or update the router. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1229,6 +1247,7 @@ public final RoutersPreviewResponse previewRouter(PreviewRouterHttpRequest reque * Updates the specified Router resource with the data included in the request. This method * conforms to PUT semantics, which requests that the state of the target resource be created or * replaced with the state defined by the representation enclosed in the request message payload. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1268,6 +1287,7 @@ public final Operation updateRouter( * Updates the specified Router resource with the data included in the request. This method * conforms to PUT semantics, which requests that the state of the target resource be created or * replaced with the state defined by the representation enclosed in the request message payload. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1307,6 +1327,7 @@ public final Operation updateRouter( * Updates the specified Router resource with the data included in the request. This method * conforms to PUT semantics, which requests that the state of the target resource be created or * replaced with the state defined by the representation enclosed in the request message payload. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1337,6 +1358,7 @@ public final Operation updateRouter(UpdateRouterHttpRequest request) { * Updates the specified Router resource with the data included in the request. This method * conforms to PUT semantics, which requests that the state of the target resource be created or * replaced with the state defined by the representation enclosed in the request message payload. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterInterface.java b/src/main/java/com/google/cloud/compute/v1/RouterInterface.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterInterface.java rename to src/main/java/com/google/cloud/compute/v1/RouterInterface.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterList.java b/src/main/java/com/google/cloud/compute/v1/RouterList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterList.java rename to src/main/java/com/google/cloud/compute/v1/RouterList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterNat.java b/src/main/java/com/google/cloud/compute/v1/RouterNat.java similarity index 91% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterNat.java rename to src/main/java/com/google/cloud/compute/v1/RouterNat.java index 8f4281ca3..9d9ebfec2 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterNat.java +++ b/src/main/java/com/google/cloud/compute/v1/RouterNat.java @@ -32,6 +32,7 @@ * would auto-allocate ephemeral IPs if no external IPs are provided. */ public final class RouterNat implements ApiMessage { + private final List drainNatIps; private final Integer icmpIdleTimeoutSec; private final RouterNatLogConfig logConfig; private final Integer minPortsPerVm; @@ -45,6 +46,7 @@ public final class RouterNat implements ApiMessage { private final Integer udpIdleTimeoutSec; private RouterNat() { + this.drainNatIps = null; this.icmpIdleTimeoutSec = null; this.logConfig = null; this.minPortsPerVm = null; @@ -59,6 +61,7 @@ private RouterNat() { } private RouterNat( + List drainNatIps, Integer icmpIdleTimeoutSec, RouterNatLogConfig logConfig, Integer minPortsPerVm, @@ -70,6 +73,7 @@ private RouterNat( Integer tcpEstablishedIdleTimeoutSec, Integer tcpTransitoryIdleTimeoutSec, Integer udpIdleTimeoutSec) { + this.drainNatIps = drainNatIps; this.icmpIdleTimeoutSec = icmpIdleTimeoutSec; this.logConfig = logConfig; this.minPortsPerVm = minPortsPerVm; @@ -85,6 +89,9 @@ private RouterNat( @Override public Object getFieldValue(String fieldName) { + if ("drainNatIps".equals(fieldName)) { + return drainNatIps; + } if ("icmpIdleTimeoutSec".equals(fieldName)) { return icmpIdleTimeoutSec; } @@ -139,6 +146,14 @@ public List getFieldMask() { return null; } + /** + * A list of URLs of the IP resources to be drained. These IPs must be valid static external IPs + * that have been assigned to the NAT. These IPs should be used for updating/patching a NAT only. + */ + public List getDrainNatIpsList() { + return drainNatIps; + } + /** Timeout (in seconds) for ICMP connections. Defaults to 30s if not set. */ public Integer getIcmpIdleTimeoutSec() { return icmpIdleTimeoutSec; @@ -243,6 +258,7 @@ public static RouterNat getDefaultInstance() { } public static class Builder { + private List drainNatIps; private Integer icmpIdleTimeoutSec; private RouterNatLogConfig logConfig; private Integer minPortsPerVm; @@ -259,6 +275,9 @@ public static class Builder { public Builder mergeFrom(RouterNat other) { if (other == RouterNat.getDefaultInstance()) return this; + if (other.getDrainNatIpsList() != null) { + this.drainNatIps = other.drainNatIps; + } if (other.getIcmpIdleTimeoutSec() != null) { this.icmpIdleTimeoutSec = other.icmpIdleTimeoutSec; } @@ -296,6 +315,7 @@ public Builder mergeFrom(RouterNat other) { } Builder(RouterNat source) { + this.drainNatIps = source.drainNatIps; this.icmpIdleTimeoutSec = source.icmpIdleTimeoutSec; this.logConfig = source.logConfig; this.minPortsPerVm = source.minPortsPerVm; @@ -309,6 +329,41 @@ public Builder mergeFrom(RouterNat other) { this.udpIdleTimeoutSec = source.udpIdleTimeoutSec; } + /** + * A list of URLs of the IP resources to be drained. These IPs must be valid static external IPs + * that have been assigned to the NAT. These IPs should be used for updating/patching a NAT + * only. + */ + public List getDrainNatIpsList() { + return drainNatIps; + } + + /** + * A list of URLs of the IP resources to be drained. These IPs must be valid static external IPs + * that have been assigned to the NAT. These IPs should be used for updating/patching a NAT + * only. + */ + public Builder addAllDrainNatIps(List drainNatIps) { + if (this.drainNatIps == null) { + this.drainNatIps = new LinkedList<>(); + } + this.drainNatIps.addAll(drainNatIps); + return this; + } + + /** + * A list of URLs of the IP resources to be drained. These IPs must be valid static external IPs + * that have been assigned to the NAT. These IPs should be used for updating/patching a NAT + * only. + */ + public Builder addDrainNatIps(String drainNatIps) { + if (this.drainNatIps == null) { + this.drainNatIps = new LinkedList<>(); + } + this.drainNatIps.add(drainNatIps); + return this; + } + /** Timeout (in seconds) for ICMP connections. Defaults to 30s if not set. */ public Integer getIcmpIdleTimeoutSec() { return icmpIdleTimeoutSec; @@ -519,6 +574,7 @@ public Builder setUdpIdleTimeoutSec(Integer udpIdleTimeoutSec) { public RouterNat build() { return new RouterNat( + drainNatIps, icmpIdleTimeoutSec, logConfig, minPortsPerVm, @@ -534,6 +590,7 @@ public RouterNat build() { public Builder clone() { Builder newBuilder = new Builder(); + newBuilder.addAllDrainNatIps(this.drainNatIps); newBuilder.setIcmpIdleTimeoutSec(this.icmpIdleTimeoutSec); newBuilder.setLogConfig(this.logConfig); newBuilder.setMinPortsPerVm(this.minPortsPerVm); @@ -552,6 +609,9 @@ public Builder clone() { @Override public String toString() { return "RouterNat{" + + "drainNatIps=" + + drainNatIps + + ", " + "icmpIdleTimeoutSec=" + icmpIdleTimeoutSec + ", " @@ -594,7 +654,8 @@ public boolean equals(Object o) { } if (o instanceof RouterNat) { RouterNat that = (RouterNat) o; - return Objects.equals(this.icmpIdleTimeoutSec, that.getIcmpIdleTimeoutSec()) + return Objects.equals(this.drainNatIps, that.getDrainNatIpsList()) + && Objects.equals(this.icmpIdleTimeoutSec, that.getIcmpIdleTimeoutSec()) && Objects.equals(this.logConfig, that.getLogConfig()) && Objects.equals(this.minPortsPerVm, that.getMinPortsPerVm()) && Objects.equals(this.name, that.getName()) @@ -614,6 +675,7 @@ public boolean equals(Object o) { @Override public int hashCode() { return Objects.hash( + drainNatIps, icmpIdleTimeoutSec, logConfig, minPortsPerVm, diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterNatLogConfig.java b/src/main/java/com/google/cloud/compute/v1/RouterNatLogConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterNatLogConfig.java rename to src/main/java/com/google/cloud/compute/v1/RouterNatLogConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterNatSubnetworkToNat.java b/src/main/java/com/google/cloud/compute/v1/RouterNatSubnetworkToNat.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterNatSubnetworkToNat.java rename to src/main/java/com/google/cloud/compute/v1/RouterNatSubnetworkToNat.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterSettings.java b/src/main/java/com/google/cloud/compute/v1/RouterSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterSettings.java rename to src/main/java/com/google/cloud/compute/v1/RouterSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatus.java b/src/main/java/com/google/cloud/compute/v1/RouterStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatus.java rename to src/main/java/com/google/cloud/compute/v1/RouterStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatusBgpPeerStatus.java b/src/main/java/com/google/cloud/compute/v1/RouterStatusBgpPeerStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatusBgpPeerStatus.java rename to src/main/java/com/google/cloud/compute/v1/RouterStatusBgpPeerStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatusNatStatus.java b/src/main/java/com/google/cloud/compute/v1/RouterStatusNatStatus.java similarity index 75% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatusNatStatus.java rename to src/main/java/com/google/cloud/compute/v1/RouterStatusNatStatus.java index 29d0fe85c..7a560fa59 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatusNatStatus.java +++ b/src/main/java/com/google/cloud/compute/v1/RouterStatusNatStatus.java @@ -28,6 +28,8 @@ /** Status of a NAT contained in this router. Next tag: 9 */ public final class RouterStatusNatStatus implements ApiMessage { private final List autoAllocatedNatIps; + private final List drainAutoAllocatedNatIps; + private final List drainUserAllocatedNatIps; private final Integer minExtraNatIpsNeeded; private final String name; private final Integer numVmEndpointsWithNatMappings; @@ -36,6 +38,8 @@ public final class RouterStatusNatStatus implements ApiMessage { private RouterStatusNatStatus() { this.autoAllocatedNatIps = null; + this.drainAutoAllocatedNatIps = null; + this.drainUserAllocatedNatIps = null; this.minExtraNatIpsNeeded = null; this.name = null; this.numVmEndpointsWithNatMappings = null; @@ -45,12 +49,16 @@ private RouterStatusNatStatus() { private RouterStatusNatStatus( List autoAllocatedNatIps, + List drainAutoAllocatedNatIps, + List drainUserAllocatedNatIps, Integer minExtraNatIpsNeeded, String name, Integer numVmEndpointsWithNatMappings, List userAllocatedNatIpResources, List userAllocatedNatIps) { this.autoAllocatedNatIps = autoAllocatedNatIps; + this.drainAutoAllocatedNatIps = drainAutoAllocatedNatIps; + this.drainUserAllocatedNatIps = drainUserAllocatedNatIps; this.minExtraNatIpsNeeded = minExtraNatIpsNeeded; this.name = name; this.numVmEndpointsWithNatMappings = numVmEndpointsWithNatMappings; @@ -63,6 +71,12 @@ public Object getFieldValue(String fieldName) { if ("autoAllocatedNatIps".equals(fieldName)) { return autoAllocatedNatIps; } + if ("drainAutoAllocatedNatIps".equals(fieldName)) { + return drainAutoAllocatedNatIps; + } + if ("drainUserAllocatedNatIps".equals(fieldName)) { + return drainUserAllocatedNatIps; + } if ("minExtraNatIpsNeeded".equals(fieldName)) { return minExtraNatIpsNeeded; } @@ -104,6 +118,22 @@ public List getAutoAllocatedNatIpsList() { return autoAllocatedNatIps; } + /** + * A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", + * ?179.12.26.133?]. + */ + public List getDrainAutoAllocatedNatIpsList() { + return drainAutoAllocatedNatIps; + } + + /** + * A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", + * ?179.12.26.133?]. + */ + public List getDrainUserAllocatedNatIpsList() { + return drainUserAllocatedNatIps; + } + /** * The number of extra IPs to allocate. This will be greater than 0 only if user-specified IPs are * NOT enough to allow all configured VMs to use NAT. This value is meaningful only when @@ -157,6 +187,8 @@ public static RouterStatusNatStatus getDefaultInstance() { public static class Builder { private List autoAllocatedNatIps; + private List drainAutoAllocatedNatIps; + private List drainUserAllocatedNatIps; private Integer minExtraNatIpsNeeded; private String name; private Integer numVmEndpointsWithNatMappings; @@ -170,6 +202,12 @@ public Builder mergeFrom(RouterStatusNatStatus other) { if (other.getAutoAllocatedNatIpsList() != null) { this.autoAllocatedNatIps = other.autoAllocatedNatIps; } + if (other.getDrainAutoAllocatedNatIpsList() != null) { + this.drainAutoAllocatedNatIps = other.drainAutoAllocatedNatIps; + } + if (other.getDrainUserAllocatedNatIpsList() != null) { + this.drainUserAllocatedNatIps = other.drainUserAllocatedNatIps; + } if (other.getMinExtraNatIpsNeeded() != null) { this.minExtraNatIpsNeeded = other.minExtraNatIpsNeeded; } @@ -190,6 +228,8 @@ public Builder mergeFrom(RouterStatusNatStatus other) { Builder(RouterStatusNatStatus source) { this.autoAllocatedNatIps = source.autoAllocatedNatIps; + this.drainAutoAllocatedNatIps = source.drainAutoAllocatedNatIps; + this.drainUserAllocatedNatIps = source.drainUserAllocatedNatIps; this.minExtraNatIpsNeeded = source.minExtraNatIpsNeeded; this.name = source.name; this.numVmEndpointsWithNatMappings = source.numVmEndpointsWithNatMappings; @@ -220,6 +260,70 @@ public Builder addAutoAllocatedNatIps(String autoAllocatedNatIps) { return this; } + /** + * A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", + * ?179.12.26.133?]. + */ + public List getDrainAutoAllocatedNatIpsList() { + return drainAutoAllocatedNatIps; + } + + /** + * A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", + * ?179.12.26.133?]. + */ + public Builder addAllDrainAutoAllocatedNatIps(List drainAutoAllocatedNatIps) { + if (this.drainAutoAllocatedNatIps == null) { + this.drainAutoAllocatedNatIps = new LinkedList<>(); + } + this.drainAutoAllocatedNatIps.addAll(drainAutoAllocatedNatIps); + return this; + } + + /** + * A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", + * ?179.12.26.133?]. + */ + public Builder addDrainAutoAllocatedNatIps(String drainAutoAllocatedNatIps) { + if (this.drainAutoAllocatedNatIps == null) { + this.drainAutoAllocatedNatIps = new LinkedList<>(); + } + this.drainAutoAllocatedNatIps.add(drainAutoAllocatedNatIps); + return this; + } + + /** + * A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", + * ?179.12.26.133?]. + */ + public List getDrainUserAllocatedNatIpsList() { + return drainUserAllocatedNatIps; + } + + /** + * A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", + * ?179.12.26.133?]. + */ + public Builder addAllDrainUserAllocatedNatIps(List drainUserAllocatedNatIps) { + if (this.drainUserAllocatedNatIps == null) { + this.drainUserAllocatedNatIps = new LinkedList<>(); + } + this.drainUserAllocatedNatIps.addAll(drainUserAllocatedNatIps); + return this; + } + + /** + * A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", + * ?179.12.26.133?]. + */ + public Builder addDrainUserAllocatedNatIps(String drainUserAllocatedNatIps) { + if (this.drainUserAllocatedNatIps == null) { + this.drainUserAllocatedNatIps = new LinkedList<>(); + } + this.drainUserAllocatedNatIps.add(drainUserAllocatedNatIps); + return this; + } + /** * The number of extra IPs to allocate. This will be greater than 0 only if user-specified IPs * are NOT enough to allow all configured VMs to use NAT. This value is meaningful only when @@ -311,6 +415,8 @@ public RouterStatusNatStatus build() { return new RouterStatusNatStatus( autoAllocatedNatIps, + drainAutoAllocatedNatIps, + drainUserAllocatedNatIps, minExtraNatIpsNeeded, name, numVmEndpointsWithNatMappings, @@ -321,6 +427,8 @@ public RouterStatusNatStatus build() { public Builder clone() { Builder newBuilder = new Builder(); newBuilder.addAllAutoAllocatedNatIps(this.autoAllocatedNatIps); + newBuilder.addAllDrainAutoAllocatedNatIps(this.drainAutoAllocatedNatIps); + newBuilder.addAllDrainUserAllocatedNatIps(this.drainUserAllocatedNatIps); newBuilder.setMinExtraNatIpsNeeded(this.minExtraNatIpsNeeded); newBuilder.setName(this.name); newBuilder.setNumVmEndpointsWithNatMappings(this.numVmEndpointsWithNatMappings); @@ -336,6 +444,12 @@ public String toString() { + "autoAllocatedNatIps=" + autoAllocatedNatIps + ", " + + "drainAutoAllocatedNatIps=" + + drainAutoAllocatedNatIps + + ", " + + "drainUserAllocatedNatIps=" + + drainUserAllocatedNatIps + + ", " + "minExtraNatIpsNeeded=" + minExtraNatIpsNeeded + ", " @@ -361,6 +475,8 @@ public boolean equals(Object o) { if (o instanceof RouterStatusNatStatus) { RouterStatusNatStatus that = (RouterStatusNatStatus) o; return Objects.equals(this.autoAllocatedNatIps, that.getAutoAllocatedNatIpsList()) + && Objects.equals(this.drainAutoAllocatedNatIps, that.getDrainAutoAllocatedNatIpsList()) + && Objects.equals(this.drainUserAllocatedNatIps, that.getDrainUserAllocatedNatIpsList()) && Objects.equals(this.minExtraNatIpsNeeded, that.getMinExtraNatIpsNeeded()) && Objects.equals(this.name, that.getName()) && Objects.equals( @@ -376,6 +492,8 @@ public boolean equals(Object o) { public int hashCode() { return Objects.hash( autoAllocatedNatIps, + drainAutoAllocatedNatIps, + drainUserAllocatedNatIps, minExtraNatIpsNeeded, name, numVmEndpointsWithNatMappings, diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatusResponse.java b/src/main/java/com/google/cloud/compute/v1/RouterStatusResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RouterStatusResponse.java rename to src/main/java/com/google/cloud/compute/v1/RouterStatusResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RoutersPreviewResponse.java b/src/main/java/com/google/cloud/compute/v1/RoutersPreviewResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RoutersPreviewResponse.java rename to src/main/java/com/google/cloud/compute/v1/RoutersPreviewResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RoutersScopedList.java b/src/main/java/com/google/cloud/compute/v1/RoutersScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/RoutersScopedList.java rename to src/main/java/com/google/cloud/compute/v1/RoutersScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Rule.java b/src/main/java/com/google/cloud/compute/v1/Rule.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Rule.java rename to src/main/java/com/google/cloud/compute/v1/Rule.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SSLHealthCheck.java b/src/main/java/com/google/cloud/compute/v1/SSLHealthCheck.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SSLHealthCheck.java rename to src/main/java/com/google/cloud/compute/v1/SSLHealthCheck.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Scheduling.java b/src/main/java/com/google/cloud/compute/v1/Scheduling.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Scheduling.java rename to src/main/java/com/google/cloud/compute/v1/Scheduling.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SchedulingNodeAffinity.java b/src/main/java/com/google/cloud/compute/v1/SchedulingNodeAffinity.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SchedulingNodeAffinity.java rename to src/main/java/com/google/cloud/compute/v1/SchedulingNodeAffinity.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ScratchDisks.java b/src/main/java/com/google/cloud/compute/v1/ScratchDisks.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ScratchDisks.java rename to src/main/java/com/google/cloud/compute/v1/ScratchDisks.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicy.java b/src/main/java/com/google/cloud/compute/v1/SecurityPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicy.java rename to src/main/java/com/google/cloud/compute/v1/SecurityPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyClient.java b/src/main/java/com/google/cloud/compute/v1/SecurityPolicyClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyClient.java rename to src/main/java/com/google/cloud/compute/v1/SecurityPolicyClient.java index ca5fca118..fbd2cceb4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/SecurityPolicyClient.java @@ -156,7 +156,7 @@ public SecurityPolicyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Inserts a rule into a security policy. + * Inserts a rule into a security policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -188,7 +188,7 @@ public final Operation addRuleSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Inserts a rule into a security policy. + * Inserts a rule into a security policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -219,7 +219,7 @@ public final Operation addRuleSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Inserts a rule into a security policy. + * Inserts a rule into a security policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -245,7 +245,7 @@ public final Operation addRuleSecurityPolicy(AddRuleSecurityPolicyHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Inserts a rule into a security policy. + * Inserts a rule into a security policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -271,7 +271,7 @@ public final Operation addRuleSecurityPolicy(AddRuleSecurityPolicyHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified policy. + * Deletes the specified policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -297,7 +297,7 @@ public final Operation deleteSecurityPolicy(ProjectGlobalSecurityPolicyName secu // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified policy. + * Deletes the specified policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -321,7 +321,7 @@ public final Operation deleteSecurityPolicy(String securityPolicy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified policy. + * Deletes the specified policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -345,7 +345,7 @@ public final Operation deleteSecurityPolicy(DeleteSecurityPolicyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified policy. + * Deletes the specified policy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -369,7 +369,8 @@ public final Operation deleteSecurityPolicy(DeleteSecurityPolicyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all of the ordered rules present in a single specified policy. + * List all of the ordered rules present in a single specified policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -395,7 +396,8 @@ public final SecurityPolicy getSecurityPolicy(ProjectGlobalSecurityPolicyName se // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all of the ordered rules present in a single specified policy. + * List all of the ordered rules present in a single specified policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -419,7 +421,8 @@ public final SecurityPolicy getSecurityPolicy(String securityPolicy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all of the ordered rules present in a single specified policy. + * List all of the ordered rules present in a single specified policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -443,7 +446,8 @@ public final SecurityPolicy getSecurityPolicy(GetSecurityPolicyHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all of the ordered rules present in a single specified policy. + * List all of the ordered rules present in a single specified policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -467,7 +471,7 @@ public final SecurityPolicy getSecurityPolicy(GetSecurityPolicyHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets a rule at the specified priority. + * Gets a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -497,7 +501,7 @@ public final SecurityPolicyRule getRuleSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets a rule at the specified priority. + * Gets a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -526,7 +530,7 @@ public final SecurityPolicyRule getRuleSecurityPolicy(Integer priority, String s // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets a rule at the specified priority. + * Gets a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -552,7 +556,7 @@ public final SecurityPolicyRule getRuleSecurityPolicy(GetRuleSecurityPolicyHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Gets a rule at the specified priority. + * Gets a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -578,7 +582,8 @@ public final SecurityPolicyRule getRuleSecurityPolicy(GetRuleSecurityPolicyHttpR // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new policy in the specified project using the data included in the request. + * Creates a new policy in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -611,7 +616,8 @@ public final Operation insertSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new policy in the specified project using the data included in the request. + * Creates a new policy in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -644,7 +650,8 @@ public final Operation insertSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new policy in the specified project using the data included in the request. + * Creates a new policy in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -670,7 +677,8 @@ public final Operation insertSecurityPolicy(InsertSecurityPolicyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new policy in the specified project using the data included in the request. + * Creates a new policy in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -696,7 +704,8 @@ public final Operation insertSecurityPolicy(InsertSecurityPolicyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all the policies that have been configured for the specified project. + * List all the policies that have been configured for the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -723,7 +732,8 @@ public final ListSecurityPoliciesPagedResponse listSecurityPolicies(ProjectName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all the policies that have been configured for the specified project. + * List all the policies that have been configured for the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -748,7 +758,8 @@ public final ListSecurityPoliciesPagedResponse listSecurityPolicies(String proje // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all the policies that have been configured for the specified project. + * List all the policies that have been configured for the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -775,7 +786,8 @@ public final ListSecurityPoliciesPagedResponse listSecurityPolicies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all the policies that have been configured for the specified project. + * List all the policies that have been configured for the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -801,7 +813,8 @@ public final ListSecurityPoliciesPagedResponse listSecurityPolicies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * List all the policies that have been configured for the specified project. + * List all the policies that have been configured for the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -834,7 +847,8 @@ public final ListSecurityPoliciesPagedResponse listSecurityPolicies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches the specified policy with the data included in the request. + * Patches the specified policy with the data included in the request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -875,7 +889,8 @@ public final Operation patchSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches the specified policy with the data included in the request. + * Patches the specified policy with the data included in the request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -914,7 +929,8 @@ public final Operation patchSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches the specified policy with the data included in the request. + * Patches the specified policy with the data included in the request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -942,7 +958,8 @@ public final Operation patchSecurityPolicy(PatchSecurityPolicyHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches the specified policy with the data included in the request. + * Patches the specified policy with the data included in the request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -970,7 +987,7 @@ public final Operation patchSecurityPolicy(PatchSecurityPolicyHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches a rule at the specified priority. + * Patches a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1006,7 +1023,7 @@ public final Operation patchRuleSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches a rule at the specified priority. + * Patches a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1040,7 +1057,7 @@ public final Operation patchRuleSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches a rule at the specified priority. + * Patches a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1068,7 +1085,7 @@ public final Operation patchRuleSecurityPolicy(PatchRuleSecurityPolicyHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches a rule at the specified priority. + * Patches a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1096,7 +1113,7 @@ public final Operation patchRuleSecurityPolicy(PatchRuleSecurityPolicyHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a rule at the specified priority. + * Deletes a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1126,7 +1143,7 @@ public final Operation removeRuleSecurityPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a rule at the specified priority. + * Deletes a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1155,7 +1172,7 @@ public final Operation removeRuleSecurityPolicy(Integer priority, String securit // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a rule at the specified priority. + * Deletes a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1181,7 +1198,7 @@ public final Operation removeRuleSecurityPolicy(RemoveRuleSecurityPolicyHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a rule at the specified priority. + * Deletes a rule at the specified priority. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyList.java b/src/main/java/com/google/cloud/compute/v1/SecurityPolicyList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyList.java rename to src/main/java/com/google/cloud/compute/v1/SecurityPolicyList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyReference.java b/src/main/java/com/google/cloud/compute/v1/SecurityPolicyReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyReference.java rename to src/main/java/com/google/cloud/compute/v1/SecurityPolicyReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRule.java b/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRule.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRule.java rename to src/main/java/com/google/cloud/compute/v1/SecurityPolicyRule.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRuleMatcher.java b/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRuleMatcher.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRuleMatcher.java rename to src/main/java/com/google/cloud/compute/v1/SecurityPolicyRuleMatcher.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRuleMatcherConfig.java b/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRuleMatcherConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicyRuleMatcherConfig.java rename to src/main/java/com/google/cloud/compute/v1/SecurityPolicyRuleMatcherConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicySettings.java b/src/main/java/com/google/cloud/compute/v1/SecurityPolicySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SecurityPolicySettings.java rename to src/main/java/com/google/cloud/compute/v1/SecurityPolicySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SerialPortOutput.java b/src/main/java/com/google/cloud/compute/v1/SerialPortOutput.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SerialPortOutput.java rename to src/main/java/com/google/cloud/compute/v1/SerialPortOutput.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ServerBinding.java b/src/main/java/com/google/cloud/compute/v1/ServerBinding.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ServerBinding.java rename to src/main/java/com/google/cloud/compute/v1/ServerBinding.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ServiceAccount.java b/src/main/java/com/google/cloud/compute/v1/ServiceAccount.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ServiceAccount.java rename to src/main/java/com/google/cloud/compute/v1/ServiceAccount.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetSslProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetSslProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetSslProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetSslProxyHttpRequest.java index 2bb4e14d3..f55d1da2c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetSslProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetSslProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetSslProxies.setBackendService. Changes the BackendService - * for TargetSslProxy. + * for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetBackendServiceTargetSslProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetTcpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetTcpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetTcpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetTcpProxyHttpRequest.java index 015ab7115..cd97a5dbd 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetTcpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetBackendServiceTargetTcpProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetTcpProxies.setBackendService. Changes the BackendService - * for TargetTcpProxy. + * for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetBackendServiceTargetTcpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackupTargetPoolHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetBackupTargetPoolHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackupTargetPoolHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetBackupTargetPoolHttpRequest.java index 2b05677fa..e8c5cbaa0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetBackupTargetPoolHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetBackupTargetPoolHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetPools.setBackup. Changes a backup target pool's - * configurations. + * configurations. (== suppress_warning http-rest-shadowed ==) */ public final class SetBackupTargetPoolHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetCommonInstanceMetadataProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetCommonInstanceMetadataProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetCommonInstanceMetadataProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetCommonInstanceMetadataProjectHttpRequest.java index 988964ee5..087d9dee1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetCommonInstanceMetadataProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetCommonInstanceMetadataProjectHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.projects.setCommonInstanceMetadata. Sets metadata common to all - * instances within the specified project using the data included in the request. + * instances within the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) */ public final class SetCommonInstanceMetadataProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDefaultNetworkTierProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetDefaultNetworkTierProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDefaultNetworkTierProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetDefaultNetworkTierProjectHttpRequest.java index 28a0d01d4..7859e427e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDefaultNetworkTierProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetDefaultNetworkTierProjectHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.projects.setDefaultNetworkTier. Sets the default network tier * of the project. The default network tier is used when an address/forwardingRule/instance is - * created without specifying the network tier field. + * created without specifying the network tier field. (== suppress_warning http-rest-shadowed ==) */ public final class SetDefaultNetworkTierProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDeletionProtectionInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetDeletionProtectionInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDeletionProtectionInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetDeletionProtectionInstanceHttpRequest.java index c5d163a1f..91343f255 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDeletionProtectionInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetDeletionProtectionInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.setDeletionProtection. Sets deletion protection on - * the instance. + * the instance. (== suppress_warning http-rest-shadowed ==) */ public final class SetDeletionProtectionInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDiskAutoDeleteInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetDiskAutoDeleteInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDiskAutoDeleteInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetDiskAutoDeleteInstanceHttpRequest.java index 16e481516..6ecd565c8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetDiskAutoDeleteInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetDiskAutoDeleteInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.setDiskAutoDelete. Sets the auto-delete flag for a - * disk attached to an instance. + * disk attached to an instance. (== suppress_warning http-rest-shadowed ==) */ public final class SetDiskAutoDeleteInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyDiskHttpRequest.java index 14d3b182b..643f03c86 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.disks.setIamPolicy. Sets the access control policy on the - * specified resource. Replaces any existing policy. + * specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicyDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyImageHttpRequest.java index 41420938e..5f2443fae 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyImageHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.images.setIamPolicy. Sets the access control policy on the - * specified resource. Replaces any existing policy. + * specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicyImageHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceHttpRequest.java index 7d32147b2..2a8d6af49 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.setIamPolicy. Sets the access control policy on the - * specified resource. Replaces any existing policy. + * specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicyInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceTemplateHttpRequest.java index a1d58cb9f..0bc5e94cc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyInstanceTemplateHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instanceTemplates.setIamPolicy. Sets the access control policy - * on the specified resource. Replaces any existing policy. + * on the specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed + * ==) */ public final class SetIamPolicyInstanceTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyLicenseHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyLicenseHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyLicenseHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyLicenseHttpRequest.java index 8c0c4aa36..d8d060cd9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyLicenseHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyLicenseHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.licenses.setIamPolicy. Sets the access control policy on the - * specified resource. Replaces any existing policy. + * specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicyLicenseHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeGroupHttpRequest.java index ec79033ec..e12467100 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeGroups.setIamPolicy. Sets the access control policy on the - * specified resource. Replaces any existing policy. + * specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicyNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeTemplateHttpRequest.java index 118c186c7..c1f8aef98 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyNodeTemplateHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeTemplates.setIamPolicy. Sets the access control policy on - * the specified resource. Replaces any existing policy. + * the specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicyNodeTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyReservationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyReservationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyReservationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyReservationHttpRequest.java index 3ca0ba34a..d8b9c4454 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyReservationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyReservationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.reservations.setIamPolicy. Sets the access control policy on - * the specified resource. Replaces any existing policy. + * the specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicyReservationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyResourcePolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyResourcePolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyResourcePolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicyResourcePolicyHttpRequest.java index 6088826f1..ec6870e07 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicyResourcePolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicyResourcePolicyHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.resourcePolicies.setIamPolicy. Sets the access control policy - * on the specified resource. Replaces any existing policy. + * on the specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed + * ==) */ public final class SetIamPolicyResourcePolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicySnapshotHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicySnapshotHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicySnapshotHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicySnapshotHttpRequest.java index cbded6e49..1a842571a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicySnapshotHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicySnapshotHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.snapshots.setIamPolicy. Sets the access control policy on the - * specified resource. Replaces any existing policy. + * specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicySnapshotHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicySubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetIamPolicySubnetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicySubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetIamPolicySubnetworkHttpRequest.java index c28a66d1f..8b61eb036 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetIamPolicySubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetIamPolicySubnetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.subnetworks.setIamPolicy. Sets the access control policy on the - * specified resource. Replaces any existing policy. + * specified resource. Replaces any existing policy. (== suppress_warning http-rest-shadowed ==) */ public final class SetIamPolicySubnetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateInstanceGroupManagerHttpRequest.java index a5d19eca3..207d51e8e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateInstanceGroupManagerHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.instanceGroupManagers.setInstanceTemplate. Specifies the * instance template to use when creating new instances in this group. The templates for existing - * instances in the group do not change unless you recreate them. + * instances in the group do not change unless you recreate them. (== suppress_warning + * http-rest-shadowed ==) */ public final class SetInstanceTemplateInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateRegionInstanceGroupManagerHttpRequest.java index 8891f7dab..b93d39711 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetInstanceTemplateRegionInstanceGroupManagerHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.regionInstanceGroupManagers.setInstanceTemplate. Sets the * instance template to use when creating new instances or recreating instances in this group. - * Existing instances are not affected. + * Existing instances are not affected. (== suppress_warning http-rest-shadowed ==) */ public final class SetInstanceTemplateRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetLabelsDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetLabelsDiskHttpRequest.java index 23eba0f84..44ea74050 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetLabelsDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.disks.setLabels. Sets the labels on a disk. To learn more about - * labels, read the Labeling Resources documentation. + * labels, read the Labeling Resources documentation. (== suppress_warning http-rest-shadowed ==) */ public final class SetLabelsDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsExternalVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetLabelsExternalVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsExternalVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetLabelsExternalVpnGatewayHttpRequest.java index 90f065b51..c7fd35d44 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsExternalVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetLabelsExternalVpnGatewayHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.externalVpnGateways.setLabels. Sets the labels on an - * ExternalVpnGateway. To learn more about labels, read the Labeling Resources documentation. + * ExternalVpnGateway. To learn more about labels, read the Labeling Resources documentation. (== + * suppress_warning http-rest-shadowed ==) */ public final class SetLabelsExternalVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetLabelsImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetLabelsImageHttpRequest.java index a0ef01cf7..1bbbe1001 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetLabelsImageHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.images.setLabels. Sets the labels on an image. To learn more - * about labels, read the Labeling Resources documentation. + * about labels, read the Labeling Resources documentation. (== suppress_warning http-rest-shadowed + * ==) */ public final class SetLabelsImageHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetLabelsInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetLabelsInstanceHttpRequest.java index 342573872..1684553e7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetLabelsInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.setLabels. Sets labels on an instance. To learn more - * about labels, read the Labeling Resources documentation. + * about labels, read the Labeling Resources documentation. (== suppress_warning http-rest-shadowed + * ==) */ public final class SetLabelsInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetLabelsRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetLabelsRegionDiskHttpRequest.java index 0228b0fb3..ca0ed88ff 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetLabelsRegionDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionDisks.setLabels. Sets the labels on the target regional - * disk. + * disk. (== suppress_warning http-rest-shadowed ==) */ public final class SetLabelsRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsSnapshotHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetLabelsSnapshotHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsSnapshotHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetLabelsSnapshotHttpRequest.java index 76bb502ba..c860e88ae 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsSnapshotHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetLabelsSnapshotHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.snapshots.setLabels. Sets the labels on a snapshot. To learn - * more about labels, read the Labeling Resources documentation. + * more about labels, read the Labeling Resources documentation. (== suppress_warning + * http-rest-shadowed ==) */ public final class SetLabelsSnapshotHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetLabelsVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetLabelsVpnGatewayHttpRequest.java index b03fc8f4f..4f3e1c7d4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetLabelsVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetLabelsVpnGatewayHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.vpnGateways.setLabels. Sets the labels on a VpnGateway. To - * learn more about labels, read the Labeling Resources documentation. + * learn more about labels, read the Labeling Resources documentation. (== suppress_warning + * http-rest-shadowed ==) */ public final class SetLabelsVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMachineResourcesInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetMachineResourcesInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMachineResourcesInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetMachineResourcesInstanceHttpRequest.java index b80488837..26051c020 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMachineResourcesInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetMachineResourcesInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.setMachineResources. Changes the number and/or type - * of accelerator for a stopped instance to the values specified in the request. + * of accelerator for a stopped instance to the values specified in the request. (== + * suppress_warning http-rest-shadowed ==) */ public final class SetMachineResourcesInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMachineTypeInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetMachineTypeInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMachineTypeInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetMachineTypeInstanceHttpRequest.java index 1f762b9ea..780588266 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMachineTypeInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetMachineTypeInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.setMachineType. Changes the machine type for a - * stopped instance to the machine type specified in the request. + * stopped instance to the machine type specified in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class SetMachineTypeInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMetadataInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetMetadataInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMetadataInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetMetadataInstanceHttpRequest.java index 0405b61fc..6962709e4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMetadataInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetMetadataInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.setMetadata. Sets metadata for the specified instance - * to the data included in the request. + * to the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class SetMetadataInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMinCpuPlatformInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetMinCpuPlatformInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMinCpuPlatformInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetMinCpuPlatformInstanceHttpRequest.java index 8fd28fcca..4dab976b0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetMinCpuPlatformInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetMinCpuPlatformInstanceHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.instances.setMinCpuPlatform. Changes the minimum CPU platform * that this instance should use. This method can only be called on a stopped instance. For more - * information, read Specifying a Minimum CPU Platform. + * information, read Specifying a Minimum CPU Platform. (== suppress_warning http-rest-shadowed ==) */ public final class SetMinCpuPlatformInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNamedPortsInstanceGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetNamedPortsInstanceGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNamedPortsInstanceGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetNamedPortsInstanceGroupHttpRequest.java index 76330fce4..790ebf983 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNamedPortsInstanceGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetNamedPortsInstanceGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instanceGroups.setNamedPorts. Sets the named ports for the - * specified instance group. + * specified instance group. (== suppress_warning http-rest-shadowed ==) */ public final class SetNamedPortsInstanceGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNamedPortsRegionInstanceGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetNamedPortsRegionInstanceGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNamedPortsRegionInstanceGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetNamedPortsRegionInstanceGroupHttpRequest.java index 97e36985d..fc3015411 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNamedPortsRegionInstanceGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetNamedPortsRegionInstanceGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionInstanceGroups.setNamedPorts. Sets the named ports for - * the specified regional instance group. + * the specified regional instance group. (== suppress_warning http-rest-shadowed ==) */ public final class SetNamedPortsRegionInstanceGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNodeTemplateNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetNodeTemplateNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNodeTemplateNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetNodeTemplateNodeGroupHttpRequest.java index 069176915..7d2458df5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetNodeTemplateNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetNodeTemplateNodeGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeGroups.setNodeTemplate. Updates the node template of the - * node group. + * node group. (== suppress_warning http-rest-shadowed ==) */ public final class SetNodeTemplateNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetPrivateIpGoogleAccessSubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetPrivateIpGoogleAccessSubnetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetPrivateIpGoogleAccessSubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetPrivateIpGoogleAccessSubnetworkHttpRequest.java index 6277f82b2..2c0778687 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetPrivateIpGoogleAccessSubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetPrivateIpGoogleAccessSubnetworkHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.subnetworks.setPrivateIpGoogleAccess. Set whether VMs in this * subnet can access Google services without assigning external IP addresses through Private Google - * Access. + * Access. (== suppress_warning http-rest-shadowed ==) */ public final class SetPrivateIpGoogleAccessSubnetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetSslProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetSslProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetSslProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetSslProxyHttpRequest.java index 0a2b610e0..50eaebf4c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetSslProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetSslProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetSslProxies.setProxyHeader. Changes the ProxyHeaderType - * for TargetSslProxy. + * for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetProxyHeaderTargetSslProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetTcpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetTcpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetTcpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetTcpProxyHttpRequest.java index fc59a5069..66326b55e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetTcpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetProxyHeaderTargetTcpProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetTcpProxies.setProxyHeader. Changes the ProxyHeaderType - * for TargetTcpProxy. + * for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetProxyHeaderTargetTcpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetQuicOverrideTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetQuicOverrideTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetQuicOverrideTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetQuicOverrideTargetHttpsProxyHttpRequest.java index ab5663f94..2a1f39132 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetQuicOverrideTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetQuicOverrideTargetHttpsProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetHttpsProxies.setQuicOverride. Sets the QUIC override - * policy for TargetHttpsProxy. + * policy for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetQuicOverrideTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSchedulingInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetSchedulingInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSchedulingInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetSchedulingInstanceHttpRequest.java index 96a3a90c3..05eea2090 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSchedulingInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetSchedulingInstanceHttpRequest.java @@ -26,6 +26,7 @@ @BetaApi /** * Request object for method compute.instances.setScheduling. Sets an instance's scheduling options. + * (== suppress_warning http-rest-shadowed ==) */ public final class SetSchedulingInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSecurityPolicyBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetSecurityPolicyBackendServiceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSecurityPolicyBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetSecurityPolicyBackendServiceHttpRequest.java index ec56df603..83ec2ebb7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSecurityPolicyBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetSecurityPolicyBackendServiceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.backendServices.setSecurityPolicy. Sets the security policy for - * the specified backend service. + * the specified backend service. (== suppress_warning http-rest-shadowed ==) */ public final class SetSecurityPolicyBackendServiceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetServiceAccountInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetServiceAccountInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetServiceAccountInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetServiceAccountInstanceHttpRequest.java index 83c24e14c..5f2005cb0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetServiceAccountInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetServiceAccountInstanceHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.instances.setServiceAccount. Sets the service account on the * instance. For more information, read Changing the service account and access scopes for an - * instance. + * instance. (== suppress_warning http-rest-shadowed ==) */ public final class SetServiceAccountInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetShieldedInstanceIntegrityPolicyInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetShieldedInstanceIntegrityPolicyInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetShieldedInstanceIntegrityPolicyInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetShieldedInstanceIntegrityPolicyInstanceHttpRequest.java index 2fe3ad0f0..52ea8e27c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetShieldedInstanceIntegrityPolicyInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetShieldedInstanceIntegrityPolicyInstanceHttpRequest.java @@ -29,6 +29,7 @@ * Request object for method compute.instances.setShieldedInstanceIntegrityPolicy. Sets the Shielded * Instance integrity policy for an instance. You can only use this method on a running instance. * This method supports PATCH semantics and uses the JSON merge patch format and processing rules. + * (== suppress_warning http-rest-shadowed ==) */ public final class SetShieldedInstanceIntegrityPolicyInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesRegionTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesRegionTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesRegionTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetSslCertificatesRegionTargetHttpsProxyHttpRequest.java index 238986a68..890df9bac 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesRegionTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesRegionTargetHttpsProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionTargetHttpsProxies.setSslCertificates. Replaces - * SslCertificates for TargetHttpsProxy. + * SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetSslCertificatesRegionTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetHttpsProxyHttpRequest.java index 90884fff1..69e24fa88 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetHttpsProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetHttpsProxies.setSslCertificates. Replaces SslCertificates - * for TargetHttpsProxy. + * for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetSslCertificatesTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetSslProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetSslProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetSslProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetSslProxyHttpRequest.java index 45b0b99f0..bacd079bd 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetSslProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetSslCertificatesTargetSslProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetSslProxies.setSslCertificates. Changes SslCertificates - * for TargetSslProxy. + * for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetSslCertificatesTargetSslProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetHttpsProxyHttpRequest.java index 2524a4f38..a5abbce2c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetHttpsProxyHttpRequest.java @@ -28,7 +28,7 @@ * Request object for method compute.targetHttpsProxies.setSslPolicy. Sets the SSL policy for * TargetHttpsProxy. The SSL policy specifies the server-side support for SSL features. This affects * connections between clients and the HTTPS proxy load balancer. They do not affect the connection - * between the load balancer and the backends. + * between the load balancer and the backends. (== suppress_warning http-rest-shadowed ==) */ public final class SetSslPolicyTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetSslProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetSslProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetSslProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetSslProxyHttpRequest.java index c17eded86..9de9c96dc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetSslProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetSslPolicyTargetSslProxyHttpRequest.java @@ -28,7 +28,7 @@ * Request object for method compute.targetSslProxies.setSslPolicy. Sets the SSL policy for * TargetSslProxy. The SSL policy specifies the server-side support for SSL features. This affects * connections between clients and the SSL proxy load balancer. They do not affect the connection - * between the load balancer and the backends. + * between the load balancer and the backends. (== suppress_warning http-rest-shadowed ==) */ public final class SetSslPolicyTargetSslProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTagsInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetTagsInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTagsInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetTagsInstanceHttpRequest.java index 2b2ad0d00..dc779aa5e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTagsInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetTagsInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.setTags. Sets network tags for the specified instance - * to the data included in the request. + * to the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class SetTagsInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetForwardingRuleHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetTargetForwardingRuleHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetForwardingRuleHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetTargetForwardingRuleHttpRequest.java index d28d1509e..aaf3409dc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetForwardingRuleHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetTargetForwardingRuleHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.forwardingRules.setTarget. Changes target URL for forwarding - * rule. The new target should be of the same type as the old target. + * rule. The new target should be of the same type as the old target. (== suppress_warning + * http-rest-shadowed ==) */ public final class SetTargetForwardingRuleHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetGlobalForwardingRuleHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetTargetGlobalForwardingRuleHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetGlobalForwardingRuleHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetTargetGlobalForwardingRuleHttpRequest.java index c2fd533ce..c7563e404 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetGlobalForwardingRuleHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetTargetGlobalForwardingRuleHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.globalForwardingRules.setTarget. Changes target URL for the - * GlobalForwardingRule resource. The new target should be of the same type as the old target. + * GlobalForwardingRule resource. The new target should be of the same type as the old target. (== + * suppress_warning http-rest-shadowed ==) */ public final class SetTargetGlobalForwardingRuleHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetTargetPoolsInstanceGroupManagerHttpRequest.java index d602d5de4..11bd7d8de 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsInstanceGroupManagerHttpRequest.java @@ -30,7 +30,7 @@ * automatically apply to all of the instances in the managed instance group. This operation is * marked DONE when you make the request even if the instances have not yet been added to their * target pools. The change might take some time to apply to all of the instances in the group - * depending on the size of the group. + * depending on the size of the group. (== suppress_warning http-rest-shadowed ==) */ public final class SetTargetPoolsInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsRegionInstanceGroupManagerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsRegionInstanceGroupManagerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsRegionInstanceGroupManagerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetTargetPoolsRegionInstanceGroupManagerHttpRequest.java index 2a24dc229..5e8abc7e6 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsRegionInstanceGroupManagerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetTargetPoolsRegionInstanceGroupManagerHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.regionInstanceGroupManagers.setTargetPools. Modifies the target * pools to which all new instances in this group are assigned. Existing instances in the group are - * not affected. + * not affected. (== suppress_warning http-rest-shadowed ==) */ public final class SetTargetPoolsRegionInstanceGroupManagerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpProxyHttpRequest.java index e1ca4fdb3..b9c82e714 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionTargetHttpProxies.setUrlMap. Changes the URL map for - * TargetHttpProxy. + * TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetUrlMapRegionTargetHttpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpsProxyHttpRequest.java index 3000ebfc9..bc90a695c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetUrlMapRegionTargetHttpsProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionTargetHttpsProxies.setUrlMap. Changes the URL map for - * TargetHttpsProxy. + * TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetUrlMapRegionTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpProxyHttpRequest.java index 896801d43..f2dfd7d12 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetHttpProxies.setUrlMap. Changes the URL map for - * TargetHttpProxy. + * TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetUrlMapTargetHttpProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpsProxyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpsProxyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpsProxyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpsProxyHttpRequest.java index c13f36ce9..e362f267a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpsProxyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetUrlMapTargetHttpsProxyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.targetHttpsProxies.setUrlMap. Changes the URL map for - * TargetHttpsProxy. + * TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) */ public final class SetUrlMapTargetHttpsProxyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUsageExportBucketProjectHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SetUsageExportBucketProjectHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUsageExportBucketProjectHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SetUsageExportBucketProjectHttpRequest.java index b539a186a..ca6c3a66c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SetUsageExportBucketProjectHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SetUsageExportBucketProjectHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.projects.setUsageExportBucket. Enables the usage export feature * and sets the usage export bucket where reports are stored. If you provide an empty request body - * using this method, the usage export feature will be disabled. + * using this method, the usage export feature will be disabled. (== suppress_warning + * http-rest-shadowed ==) */ public final class SetUsageExportBucketProjectHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceConfig.java b/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceConfig.java rename to src/main/java/com/google/cloud/compute/v1/ShieldedInstanceConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIdentity.java b/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIdentity.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIdentity.java rename to src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIdentity.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIdentityEntry.java b/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIdentityEntry.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIdentityEntry.java rename to src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIdentityEntry.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIntegrityPolicy.java b/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIntegrityPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIntegrityPolicy.java rename to src/main/java/com/google/cloud/compute/v1/ShieldedInstanceIntegrityPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SignedUrlKey.java b/src/main/java/com/google/cloud/compute/v1/SignedUrlKey.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SignedUrlKey.java rename to src/main/java/com/google/cloud/compute/v1/SignedUrlKey.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SimulateMaintenanceEventInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SimulateMaintenanceEventInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SimulateMaintenanceEventInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SimulateMaintenanceEventInstanceHttpRequest.java index 216374930..37a1c3376 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SimulateMaintenanceEventInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SimulateMaintenanceEventInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.simulateMaintenanceEvent. Simulates a maintenance - * event on the instance. + * event on the instance. (== suppress_warning http-rest-shadowed ==) */ public final class SimulateMaintenanceEventInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Snapshot.java b/src/main/java/com/google/cloud/compute/v1/Snapshot.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Snapshot.java rename to src/main/java/com/google/cloud/compute/v1/Snapshot.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SnapshotClient.java b/src/main/java/com/google/cloud/compute/v1/SnapshotClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SnapshotClient.java rename to src/main/java/com/google/cloud/compute/v1/SnapshotClient.java index 7e34ce322..e49bd25af 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SnapshotClient.java +++ b/src/main/java/com/google/cloud/compute/v1/SnapshotClient.java @@ -158,7 +158,7 @@ public SnapshotStub getStub() { * for deletion is needed for subsequent snapshots, the data will be moved to the next * corresponding snapshot. * - *

For more information, see Deleting snapshots. + *

For more information, see Deleting snapshots. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -189,7 +189,7 @@ public final Operation deleteSnapshot(ProjectGlobalSnapshotName snapshot) { * for deletion is needed for subsequent snapshots, the data will be moved to the next * corresponding snapshot. * - *

For more information, see Deleting snapshots. + *

For more information, see Deleting snapshots. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -218,7 +218,7 @@ public final Operation deleteSnapshot(String snapshot) { * for deletion is needed for subsequent snapshots, the data will be moved to the next * corresponding snapshot. * - *

For more information, see Deleting snapshots. + *

For more information, see Deleting snapshots. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -247,7 +247,7 @@ public final Operation deleteSnapshot(DeleteSnapshotHttpRequest request) { * for deletion is needed for subsequent snapshots, the data will be moved to the next * corresponding snapshot. * - *

For more information, see Deleting snapshots. + *

For more information, see Deleting snapshots. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -271,7 +271,7 @@ public final UnaryCallable deleteSnapshotC // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Snapshot resource. Gets a list of available snapshots by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -298,7 +298,7 @@ public final Snapshot getSnapshot(ProjectGlobalSnapshotName snapshot) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Snapshot resource. Gets a list of available snapshots by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -323,7 +323,7 @@ public final Snapshot getSnapshot(String snapshot) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Snapshot resource. Gets a list of available snapshots by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -348,7 +348,7 @@ public final Snapshot getSnapshot(GetSnapshotHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Snapshot resource. Gets a list of available snapshots by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -372,7 +372,7 @@ public final UnaryCallable getSnapshotCallable // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -399,7 +399,7 @@ public final Policy getIamPolicySnapshot(ProjectGlobalSnapshotResourceName resou // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -424,7 +424,7 @@ public final Policy getIamPolicySnapshot(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -449,7 +449,7 @@ public final Policy getIamPolicySnapshot(GetIamPolicySnapshotHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -473,7 +473,8 @@ public final Policy getIamPolicySnapshot(GetIamPolicySnapshotHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Snapshot resources contained within the specified project. + * Retrieves the list of Snapshot resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -500,7 +501,8 @@ public final ListSnapshotsPagedResponse listSnapshots(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Snapshot resources contained within the specified project. + * Retrieves the list of Snapshot resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -525,7 +527,8 @@ public final ListSnapshotsPagedResponse listSnapshots(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Snapshot resources contained within the specified project. + * Retrieves the list of Snapshot resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -551,7 +554,8 @@ public final ListSnapshotsPagedResponse listSnapshots(ListSnapshotsHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Snapshot resources contained within the specified project. + * Retrieves the list of Snapshot resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -577,7 +581,8 @@ public final ListSnapshotsPagedResponse listSnapshots(ListSnapshotsHttpRequest r // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Snapshot resources contained within the specified project. + * Retrieves the list of Snapshot resources contained within the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -609,7 +614,8 @@ public final UnaryCallable listSnapshots // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -640,7 +646,8 @@ public final Policy setIamPolicySnapshot( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -670,7 +677,8 @@ public final Policy setIamPolicySnapshot( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -696,7 +704,8 @@ public final Policy setIamPolicySnapshot(SetIamPolicySnapshotHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -723,7 +732,7 @@ public final Policy setIamPolicySnapshot(SetIamPolicySnapshotHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a snapshot. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -755,7 +764,7 @@ public final Operation setLabelsSnapshot( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a snapshot. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -786,7 +795,7 @@ public final Operation setLabelsSnapshot( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a snapshot. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -813,7 +822,7 @@ public final Operation setLabelsSnapshot(SetLabelsSnapshotHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a snapshot. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -838,7 +847,8 @@ public final UnaryCallable setLabelsSna // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -869,7 +879,8 @@ public final TestPermissionsResponse testIamPermissionsSnapshot( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -899,7 +910,8 @@ public final TestPermissionsResponse testIamPermissionsSnapshot( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -926,7 +938,8 @@ public final TestPermissionsResponse testIamPermissionsSnapshot( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SnapshotList.java b/src/main/java/com/google/cloud/compute/v1/SnapshotList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SnapshotList.java rename to src/main/java/com/google/cloud/compute/v1/SnapshotList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SnapshotSettings.java b/src/main/java/com/google/cloud/compute/v1/SnapshotSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SnapshotSettings.java rename to src/main/java/com/google/cloud/compute/v1/SnapshotSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SourceInstanceParams.java b/src/main/java/com/google/cloud/compute/v1/SourceInstanceParams.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SourceInstanceParams.java rename to src/main/java/com/google/cloud/compute/v1/SourceInstanceParams.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificate.java b/src/main/java/com/google/cloud/compute/v1/SslCertificate.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificate.java rename to src/main/java/com/google/cloud/compute/v1/SslCertificate.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/SslCertificateAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/SslCertificateAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateClient.java b/src/main/java/com/google/cloud/compute/v1/SslCertificateClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateClient.java rename to src/main/java/com/google/cloud/compute/v1/SslCertificateClient.java index cbf9a78f3..f84a11f30 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateClient.java +++ b/src/main/java/com/google/cloud/compute/v1/SslCertificateClient.java @@ -156,7 +156,7 @@ public SslCertificateStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all SslCertificate resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -185,7 +185,7 @@ public final AggregatedListSslCertificatesPagedResponse aggregatedListSslCertifi // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all SslCertificate resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -212,7 +212,7 @@ public final AggregatedListSslCertificatesPagedResponse aggregatedListSslCertifi // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all SslCertificate resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -240,7 +240,7 @@ public final AggregatedListSslCertificatesPagedResponse aggregatedListSslCertifi // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all SslCertificate resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -268,7 +268,7 @@ public final AggregatedListSslCertificatesPagedResponse aggregatedListSslCertifi // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all SslCertificate resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -301,7 +301,7 @@ public final AggregatedListSslCertificatesPagedResponse aggregatedListSslCertifi // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified SslCertificate resource. + * Deletes the specified SslCertificate resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -327,7 +327,7 @@ public final Operation deleteSslCertificate(ProjectGlobalSslCertificateName sslC // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified SslCertificate resource. + * Deletes the specified SslCertificate resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -351,7 +351,7 @@ public final Operation deleteSslCertificate(String sslCertificate) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified SslCertificate resource. + * Deletes the specified SslCertificate resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -375,7 +375,7 @@ public final Operation deleteSslCertificate(DeleteSslCertificateHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified SslCertificate resource. + * Deletes the specified SslCertificate resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -400,7 +400,7 @@ public final Operation deleteSslCertificate(DeleteSslCertificateHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SslCertificate resource. Gets a list of available SSL certificates by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -427,7 +427,7 @@ public final SslCertificate getSslCertificate(ProjectGlobalSslCertificateName ss // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SslCertificate resource. Gets a list of available SSL certificates by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -452,7 +452,7 @@ public final SslCertificate getSslCertificate(String sslCertificate) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SslCertificate resource. Gets a list of available SSL certificates by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -477,7 +477,7 @@ public final SslCertificate getSslCertificate(GetSslCertificateHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SslCertificate resource. Gets a list of available SSL certificates by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -502,7 +502,7 @@ public final SslCertificate getSslCertificate(GetSslCertificateHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a SslCertificate resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -537,7 +537,7 @@ public final Operation insertSslCertificate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a SslCertificate resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -572,7 +572,7 @@ public final Operation insertSslCertificate( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a SslCertificate resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -599,7 +599,7 @@ public final Operation insertSslCertificate(InsertSslCertificateHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a SslCertificate resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -625,7 +625,8 @@ public final Operation insertSslCertificate(InsertSslCertificateHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of SslCertificate resources available to the specified project. + * Retrieves the list of SslCertificate resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -652,7 +653,8 @@ public final ListSslCertificatesPagedResponse listSslCertificates(ProjectName pr // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of SslCertificate resources available to the specified project. + * Retrieves the list of SslCertificate resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -677,7 +679,8 @@ public final ListSslCertificatesPagedResponse listSslCertificates(String project // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of SslCertificate resources available to the specified project. + * Retrieves the list of SslCertificate resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -704,7 +707,8 @@ public final ListSslCertificatesPagedResponse listSslCertificates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of SslCertificate resources available to the specified project. + * Retrieves the list of SslCertificate resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -730,7 +734,8 @@ public final ListSslCertificatesPagedResponse listSslCertificates( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of SslCertificate resources available to the specified project. + * Retrieves the list of SslCertificate resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateList.java b/src/main/java/com/google/cloud/compute/v1/SslCertificateList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateList.java rename to src/main/java/com/google/cloud/compute/v1/SslCertificateList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateSettings.java b/src/main/java/com/google/cloud/compute/v1/SslCertificateSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificateSettings.java rename to src/main/java/com/google/cloud/compute/v1/SslCertificateSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificatesScopedList.java b/src/main/java/com/google/cloud/compute/v1/SslCertificatesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslCertificatesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/SslCertificatesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPoliciesList.java b/src/main/java/com/google/cloud/compute/v1/SslPoliciesList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPoliciesList.java rename to src/main/java/com/google/cloud/compute/v1/SslPoliciesList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPoliciesListAvailableFeaturesResponse.java b/src/main/java/com/google/cloud/compute/v1/SslPoliciesListAvailableFeaturesResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPoliciesListAvailableFeaturesResponse.java rename to src/main/java/com/google/cloud/compute/v1/SslPoliciesListAvailableFeaturesResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicy.java b/src/main/java/com/google/cloud/compute/v1/SslPolicy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicy.java rename to src/main/java/com/google/cloud/compute/v1/SslPolicy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicyClient.java b/src/main/java/com/google/cloud/compute/v1/SslPolicyClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicyClient.java rename to src/main/java/com/google/cloud/compute/v1/SslPolicyClient.java index cfe6092f2..c9481131b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/SslPolicyClient.java @@ -154,7 +154,8 @@ public SslPolicyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in - * use by any TargetHttpsProxy or TargetSslProxy resources. + * use by any TargetHttpsProxy or TargetSslProxy resources. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +183,8 @@ public final Operation deleteSslPolicy(ProjectGlobalSslPolicyName sslPolicy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in - * use by any TargetHttpsProxy or TargetSslProxy resources. + * use by any TargetHttpsProxy or TargetSslProxy resources. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -208,7 +210,8 @@ public final Operation deleteSslPolicy(String sslPolicy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in - * use by any TargetHttpsProxy or TargetSslProxy resources. + * use by any TargetHttpsProxy or TargetSslProxy resources. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -233,7 +236,8 @@ public final Operation deleteSslPolicy(DeleteSslPolicyHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in - * use by any TargetHttpsProxy or TargetSslProxy resources. + * use by any TargetHttpsProxy or TargetSslProxy resources. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -256,7 +260,8 @@ public final UnaryCallable deleteSslPolic // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all of the ordered rules present in a single specified policy. + * Lists all of the ordered rules present in a single specified policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -283,7 +288,8 @@ public final SslPolicy getSslPolicy(ProjectGlobalSslPolicyName sslPolicy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all of the ordered rules present in a single specified policy. + * Lists all of the ordered rules present in a single specified policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -308,7 +314,8 @@ public final SslPolicy getSslPolicy(String sslPolicy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all of the ordered rules present in a single specified policy. + * Lists all of the ordered rules present in a single specified policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -332,7 +339,8 @@ public final SslPolicy getSslPolicy(GetSslPolicyHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all of the ordered rules present in a single specified policy. + * Lists all of the ordered rules present in a single specified policy. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -356,7 +364,7 @@ public final UnaryCallable getSslPolicyCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SSL policy resource. Gets a list of available SSL policies by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -389,7 +397,7 @@ public final Operation insertSslPolicy(ProjectName project, SslPolicy sslPolicyR // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SSL policy resource. Gets a list of available SSL policies by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -422,7 +430,7 @@ public final Operation insertSslPolicy(String project, SslPolicy sslPolicyResour // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SSL policy resource. Gets a list of available SSL policies by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -449,7 +457,7 @@ public final Operation insertSslPolicy(InsertSslPolicyHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified SSL policy resource. Gets a list of available SSL policies by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -474,7 +482,8 @@ public final UnaryCallable insertSslPolic // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all the SSL policies that have been configured for the specified project. + * Lists all the SSL policies that have been configured for the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -501,7 +510,8 @@ public final ListSslPoliciesPagedResponse listSslPolicies(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all the SSL policies that have been configured for the specified project. + * Lists all the SSL policies that have been configured for the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -526,7 +536,8 @@ public final ListSslPoliciesPagedResponse listSslPolicies(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all the SSL policies that have been configured for the specified project. + * Lists all the SSL policies that have been configured for the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -552,7 +563,8 @@ public final ListSslPoliciesPagedResponse listSslPolicies(ListSslPoliciesHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all the SSL policies that have been configured for the specified project. + * Lists all the SSL policies that have been configured for the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -578,7 +590,8 @@ public final ListSslPoliciesPagedResponse listSslPolicies(ListSslPoliciesHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all the SSL policies that have been configured for the specified project. + * Lists all the SSL policies that have been configured for the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -611,7 +624,8 @@ public final ListSslPoliciesPagedResponse listSslPolicies(ListSslPoliciesHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all features that can be specified in the SSL policy when using custom profile. + * Lists all features that can be specified in the SSL policy when using custom profile. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -638,7 +652,8 @@ public final SslPoliciesListAvailableFeaturesResponse listAvailableFeaturesSslPo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all features that can be specified in the SSL policy when using custom profile. + * Lists all features that can be specified in the SSL policy when using custom profile. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -663,7 +678,8 @@ public final SslPoliciesListAvailableFeaturesResponse listAvailableFeaturesSslPo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all features that can be specified in the SSL policy when using custom profile. + * Lists all features that can be specified in the SSL policy when using custom profile. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -688,7 +704,8 @@ public final SslPoliciesListAvailableFeaturesResponse listAvailableFeaturesSslPo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all features that can be specified in the SSL policy when using custom profile. + * Lists all features that can be specified in the SSL policy when using custom profile. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -713,7 +730,8 @@ public final SslPoliciesListAvailableFeaturesResponse listAvailableFeaturesSslPo // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches the specified SSL policy with the data included in the request. + * Patches the specified SSL policy with the data included in the request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -753,7 +771,8 @@ public final Operation patchSslPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches the specified SSL policy with the data included in the request. + * Patches the specified SSL policy with the data included in the request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -793,7 +812,8 @@ public final Operation patchSslPolicy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches the specified SSL policy with the data included in the request. + * Patches the specified SSL policy with the data included in the request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -821,7 +841,8 @@ public final Operation patchSslPolicy(PatchSslPolicyHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Patches the specified SSL policy with the data included in the request. + * Patches the specified SSL policy with the data included in the request. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicyReference.java b/src/main/java/com/google/cloud/compute/v1/SslPolicyReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicyReference.java rename to src/main/java/com/google/cloud/compute/v1/SslPolicyReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicySettings.java b/src/main/java/com/google/cloud/compute/v1/SslPolicySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SslPolicySettings.java rename to src/main/java/com/google/cloud/compute/v1/SslPolicySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StartInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/StartInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StartInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/StartInstanceHttpRequest.java index 3d367937e..a2e868acf 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StartInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/StartInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.start. Starts an instance that was stopped using the - * instances().stop method. For more information, see Restart an instance. + * instances().stop method. For more information, see Restart an instance. (== suppress_warning + * http-rest-shadowed ==) */ public final class StartInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StartWithEncryptionKeyInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/StartWithEncryptionKeyInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StartWithEncryptionKeyInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/StartWithEncryptionKeyInstanceHttpRequest.java index b8789531e..3341c81e4 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StartWithEncryptionKeyInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/StartWithEncryptionKeyInstanceHttpRequest.java @@ -26,7 +26,8 @@ @BetaApi /** * Request object for method compute.instances.startWithEncryptionKey. Starts an instance that was - * stopped using the instances().stop method. For more information, see Restart an instance. + * stopped using the instances().stop method. For more information, see Restart an instance. (== + * suppress_warning http-rest-shadowed ==) */ public final class StartWithEncryptionKeyInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StopInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/StopInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StopInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/StopInstanceHttpRequest.java index 18be652a0..32b5dac12 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/StopInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/StopInstanceHttpRequest.java @@ -29,7 +29,7 @@ * cleanly, and allows you to restart the instance at a later time. Stopped instances do not incur * VM usage charges while they are stopped. However, resources that the VM is using, such as * persistent disks and static IP addresses, will continue to be charged until they are deleted. For - * more information, see Stopping an instance. + * more information, see Stopping an instance. (== suppress_warning http-rest-shadowed ==) */ public final class StopInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Subnetwork.java b/src/main/java/com/google/cloud/compute/v1/Subnetwork.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Subnetwork.java rename to src/main/java/com/google/cloud/compute/v1/Subnetwork.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/SubnetworkAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworkAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkClient.java b/src/main/java/com/google/cloud/compute/v1/SubnetworkClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkClient.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworkClient.java index e99236c73..c02b4e9ee 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkClient.java +++ b/src/main/java/com/google/cloud/compute/v1/SubnetworkClient.java @@ -153,7 +153,7 @@ public SubnetworkStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of subnetworks. + * Retrieves an aggregated list of subnetworks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -181,7 +181,7 @@ public final AggregatedListSubnetworksPagedResponse aggregatedListSubnetworks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of subnetworks. + * Retrieves an aggregated list of subnetworks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -206,7 +206,7 @@ public final AggregatedListSubnetworksPagedResponse aggregatedListSubnetworks(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of subnetworks. + * Retrieves an aggregated list of subnetworks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -233,7 +233,7 @@ public final AggregatedListSubnetworksPagedResponse aggregatedListSubnetworks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of subnetworks. + * Retrieves an aggregated list of subnetworks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -260,7 +260,7 @@ public final AggregatedListSubnetworksPagedResponse aggregatedListSubnetworks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of subnetworks. + * Retrieves an aggregated list of subnetworks. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -293,7 +293,7 @@ public final AggregatedListSubnetworksPagedResponse aggregatedListSubnetworks( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified subnetwork. + * Deletes the specified subnetwork. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -319,7 +319,7 @@ public final Operation deleteSubnetwork(ProjectRegionSubnetworkName subnetwork) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified subnetwork. + * Deletes the specified subnetwork. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -343,7 +343,7 @@ public final Operation deleteSubnetwork(String subnetwork) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified subnetwork. + * Deletes the specified subnetwork. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -367,7 +367,7 @@ public final Operation deleteSubnetwork(DeleteSubnetworkHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified subnetwork. + * Deletes the specified subnetwork. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -390,7 +390,8 @@ public final UnaryCallable deleteSubnetw // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Expands the IP CIDR range of the subnetwork to a specified value. + * Expands the IP CIDR range of the subnetwork to a specified value. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -422,7 +423,8 @@ public final Operation expandIpCidrRangeSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Expands the IP CIDR range of the subnetwork to a specified value. + * Expands the IP CIDR range of the subnetwork to a specified value. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -454,7 +456,8 @@ public final Operation expandIpCidrRangeSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Expands the IP CIDR range of the subnetwork to a specified value. + * Expands the IP CIDR range of the subnetwork to a specified value. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -481,7 +484,8 @@ public final Operation expandIpCidrRangeSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Expands the IP CIDR range of the subnetwork to a specified value. + * Expands the IP CIDR range of the subnetwork to a specified value. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -507,7 +511,8 @@ public final Operation expandIpCidrRangeSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified subnetwork. Gets a list of available subnetworks list() request. + * Returns the specified subnetwork. Gets a list of available subnetworks list() request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -533,7 +538,8 @@ public final Subnetwork getSubnetwork(ProjectRegionSubnetworkName subnetwork) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified subnetwork. Gets a list of available subnetworks list() request. + * Returns the specified subnetwork. Gets a list of available subnetworks list() request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -557,7 +563,8 @@ public final Subnetwork getSubnetwork(String subnetwork) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified subnetwork. Gets a list of available subnetworks list() request. + * Returns the specified subnetwork. Gets a list of available subnetworks list() request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -581,7 +588,8 @@ public final Subnetwork getSubnetwork(GetSubnetworkHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the specified subnetwork. Gets a list of available subnetworks list() request. + * Returns the specified subnetwork. Gets a list of available subnetworks list() request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -605,7 +613,7 @@ public final UnaryCallable getSubnetworkCa // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -632,7 +640,7 @@ public final Policy getIamPolicySubnetwork(ProjectRegionSubnetworkResourceName r // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -657,7 +665,7 @@ public final Policy getIamPolicySubnetwork(String resource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -682,7 +690,7 @@ public final Policy getIamPolicySubnetwork(GetIamPolicySubnetworkHttpRequest req // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the access control policy for a resource. May be empty if no such policy or resource - * exists. + * exists. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -706,7 +714,8 @@ public final Policy getIamPolicySubnetwork(GetIamPolicySubnetworkHttpRequest req // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a subnetwork in the specified project using the data included in the request. + * Creates a subnetwork in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -739,7 +748,8 @@ public final Operation insertSubnetwork(ProjectRegionName region, Subnetwork sub // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a subnetwork in the specified project using the data included in the request. + * Creates a subnetwork in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -772,7 +782,8 @@ public final Operation insertSubnetwork(String region, Subnetwork subnetworkReso // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a subnetwork in the specified project using the data included in the request. + * Creates a subnetwork in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -798,7 +809,8 @@ public final Operation insertSubnetwork(InsertSubnetworkHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a subnetwork in the specified project using the data included in the request. + * Creates a subnetwork in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -823,7 +835,8 @@ public final UnaryCallable insertSubnetw // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of subnetworks available to the specified project. + * Retrieves a list of subnetworks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -850,7 +863,8 @@ public final ListSubnetworksPagedResponse listSubnetworks(ProjectRegionName regi // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of subnetworks available to the specified project. + * Retrieves a list of subnetworks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -875,7 +889,8 @@ public final ListSubnetworksPagedResponse listSubnetworks(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of subnetworks available to the specified project. + * Retrieves a list of subnetworks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -901,7 +916,8 @@ public final ListSubnetworksPagedResponse listSubnetworks(ListSubnetworksHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of subnetworks available to the specified project. + * Retrieves a list of subnetworks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -927,7 +943,8 @@ public final ListSubnetworksPagedResponse listSubnetworks(ListSubnetworksHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of subnetworks available to the specified project. + * Retrieves a list of subnetworks available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -961,7 +978,7 @@ public final UnaryCallable listSubne /** * Retrieves an aggregated list of all usable subnetworks in the project. The list contains all of * the subnetworks in the project and the subnetworks that were shared by a Shared VPC host - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -990,7 +1007,7 @@ public final ListUsableSubnetworksPagedResponse listUsableSubnetworks(ProjectNam /** * Retrieves an aggregated list of all usable subnetworks in the project. The list contains all of * the subnetworks in the project and the subnetworks that were shared by a Shared VPC host - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1017,7 +1034,7 @@ public final ListUsableSubnetworksPagedResponse listUsableSubnetworks(String pro /** * Retrieves an aggregated list of all usable subnetworks in the project. The list contains all of * the subnetworks in the project and the subnetworks that were shared by a Shared VPC host - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1046,7 +1063,7 @@ public final ListUsableSubnetworksPagedResponse listUsableSubnetworks( /** * Retrieves an aggregated list of all usable subnetworks in the project. The list contains all of * the subnetworks in the project and the subnetworks that were shared by a Shared VPC host - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1074,7 +1091,7 @@ public final ListUsableSubnetworksPagedResponse listUsableSubnetworks( /** * Retrieves an aggregated list of all usable subnetworks in the project. The list contains all of * the subnetworks in the project and the subnetworks that were shared by a Shared VPC host - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1109,7 +1126,8 @@ public final ListUsableSubnetworksPagedResponse listUsableSubnetworks( /** * Patches the specified subnetwork with the data included in the request. Only certain fields can * up updated with a patch request as indicated in the field descriptions. You must specify the - * current fingeprint of the subnetwork resource being patched. + * current fingeprint of the subnetwork resource being patched. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1153,7 +1171,8 @@ public final Operation patchSubnetwork( /** * Patches the specified subnetwork with the data included in the request. Only certain fields can * up updated with a patch request as indicated in the field descriptions. You must specify the - * current fingeprint of the subnetwork resource being patched. + * current fingeprint of the subnetwork resource being patched. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1195,7 +1214,8 @@ public final Operation patchSubnetwork( /** * Patches the specified subnetwork with the data included in the request. Only certain fields can * up updated with a patch request as indicated in the field descriptions. You must specify the - * current fingeprint of the subnetwork resource being patched. + * current fingeprint of the subnetwork resource being patched. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1225,7 +1245,8 @@ public final Operation patchSubnetwork(PatchSubnetworkHttpRequest request) { /** * Patches the specified subnetwork with the data included in the request. Only certain fields can * up updated with a patch request as indicated in the field descriptions. You must specify the - * current fingeprint of the subnetwork resource being patched. + * current fingeprint of the subnetwork resource being patched. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1252,7 +1273,8 @@ public final UnaryCallable patchSubnetwor // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1283,7 +1305,8 @@ public final Policy setIamPolicySubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1313,7 +1336,8 @@ public final Policy setIamPolicySubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1339,7 +1363,8 @@ public final Policy setIamPolicySubnetwork(SetIamPolicySubnetworkHttpRequest req // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the access control policy on the specified resource. Replaces any existing policy. + * Sets the access control policy on the specified resource. Replaces any existing policy. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1366,7 +1391,7 @@ public final Policy setIamPolicySubnetwork(SetIamPolicySubnetworkHttpRequest req // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Set whether VMs in this subnet can access Google services without assigning external IP - * addresses through Private Google Access. + * addresses through Private Google Access. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1400,7 +1425,7 @@ public final Operation setPrivateIpGoogleAccessSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Set whether VMs in this subnet can access Google services without assigning external IP - * addresses through Private Google Access. + * addresses through Private Google Access. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1434,7 +1459,7 @@ public final Operation setPrivateIpGoogleAccessSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Set whether VMs in this subnet can access Google services without assigning external IP - * addresses through Private Google Access. + * addresses through Private Google Access. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1462,7 +1487,7 @@ public final Operation setPrivateIpGoogleAccessSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Set whether VMs in this subnet can access Google services without assigning external IP - * addresses through Private Google Access. + * addresses through Private Google Access. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1488,7 +1513,8 @@ public final Operation setPrivateIpGoogleAccessSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1519,7 +1545,8 @@ public final TestPermissionsResponse testIamPermissionsSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1549,7 +1576,8 @@ public final TestPermissionsResponse testIamPermissionsSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1576,7 +1604,8 @@ public final TestPermissionsResponse testIamPermissionsSubnetwork( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkList.java b/src/main/java/com/google/cloud/compute/v1/SubnetworkList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkList.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworkList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkLogConfig.java b/src/main/java/com/google/cloud/compute/v1/SubnetworkLogConfig.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkLogConfig.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworkLogConfig.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkSecondaryRange.java b/src/main/java/com/google/cloud/compute/v1/SubnetworkSecondaryRange.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkSecondaryRange.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworkSecondaryRange.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkSettings.java b/src/main/java/com/google/cloud/compute/v1/SubnetworkSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworkSettings.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworkSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworksExpandIpCidrRangeRequest.java b/src/main/java/com/google/cloud/compute/v1/SubnetworksExpandIpCidrRangeRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworksExpandIpCidrRangeRequest.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworksExpandIpCidrRangeRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworksScopedList.java b/src/main/java/com/google/cloud/compute/v1/SubnetworksScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworksScopedList.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworksScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworksSetPrivateIpGoogleAccessRequest.java b/src/main/java/com/google/cloud/compute/v1/SubnetworksSetPrivateIpGoogleAccessRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SubnetworksSetPrivateIpGoogleAccessRequest.java rename to src/main/java/com/google/cloud/compute/v1/SubnetworksSetPrivateIpGoogleAccessRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SwitchToCustomModeNetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/SwitchToCustomModeNetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SwitchToCustomModeNetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/SwitchToCustomModeNetworkHttpRequest.java index a067f8d4d..30e204f83 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/SwitchToCustomModeNetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/SwitchToCustomModeNetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.networks.switchToCustomMode. Switches the network mode from - * auto subnet mode to custom subnet mode. + * auto subnet mode to custom subnet mode. (== suppress_warning http-rest-shadowed ==) */ public final class SwitchToCustomModeNetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TCPHealthCheck.java b/src/main/java/com/google/cloud/compute/v1/TCPHealthCheck.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TCPHealthCheck.java rename to src/main/java/com/google/cloud/compute/v1/TCPHealthCheck.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Tags.java b/src/main/java/com/google/cloud/compute/v1/Tags.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Tags.java rename to src/main/java/com/google/cloud/compute/v1/Tags.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxiesScopedList.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpProxiesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxiesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpProxiesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxy.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpProxy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxy.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpProxy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpProxyAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyClient.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyClient.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpProxyClient.java index b90a806ce..4308b8566 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyClient.java @@ -157,7 +157,7 @@ public TargetHttpProxyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -186,7 +186,7 @@ public final AggregatedListTargetHttpProxiesPagedResponse aggregatedListTargetHt // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -213,7 +213,7 @@ public final AggregatedListTargetHttpProxiesPagedResponse aggregatedListTargetHt // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -241,7 +241,7 @@ public final AggregatedListTargetHttpProxiesPagedResponse aggregatedListTargetHt // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -269,7 +269,7 @@ public final AggregatedListTargetHttpProxiesPagedResponse aggregatedListTargetHt // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -303,7 +303,7 @@ public final AggregatedListTargetHttpProxiesPagedResponse aggregatedListTargetHt // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpProxy resource. + * Deletes the specified TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -329,7 +329,7 @@ public final Operation deleteTargetHttpProxy(ProjectGlobalTargetHttpProxyName ta // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpProxy resource. + * Deletes the specified TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -353,7 +353,7 @@ public final Operation deleteTargetHttpProxy(String targetHttpProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpProxy resource. + * Deletes the specified TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -377,7 +377,7 @@ public final Operation deleteTargetHttpProxy(DeleteTargetHttpProxyHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpProxy resource. + * Deletes the specified TargetHttpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -402,7 +402,7 @@ public final Operation deleteTargetHttpProxy(DeleteTargetHttpProxyHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpProxy resource. Gets a list of available target HTTP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -430,7 +430,7 @@ public final TargetHttpProxy getTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpProxy resource. Gets a list of available target HTTP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -455,7 +455,7 @@ public final TargetHttpProxy getTargetHttpProxy(String targetHttpProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpProxy resource. Gets a list of available target HTTP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -480,7 +480,7 @@ public final TargetHttpProxy getTargetHttpProxy(GetTargetHttpProxyHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpProxy resource. Gets a list of available target HTTP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -505,7 +505,7 @@ public final TargetHttpProxy getTargetHttpProxy(GetTargetHttpProxyHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -540,7 +540,7 @@ public final Operation insertTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -575,7 +575,7 @@ public final Operation insertTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -602,7 +602,7 @@ public final Operation insertTargetHttpProxy(InsertTargetHttpProxyHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -628,7 +628,8 @@ public final Operation insertTargetHttpProxy(InsertTargetHttpProxyHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpProxy resources available to the specified project. + * Retrieves the list of TargetHttpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -655,7 +656,8 @@ public final ListTargetHttpProxiesPagedResponse listTargetHttpProxies(ProjectNam // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpProxy resources available to the specified project. + * Retrieves the list of TargetHttpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -680,7 +682,8 @@ public final ListTargetHttpProxiesPagedResponse listTargetHttpProxies(String pro // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpProxy resources available to the specified project. + * Retrieves the list of TargetHttpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -707,7 +710,8 @@ public final ListTargetHttpProxiesPagedResponse listTargetHttpProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpProxy resources available to the specified project. + * Retrieves the list of TargetHttpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -733,7 +737,8 @@ public final ListTargetHttpProxiesPagedResponse listTargetHttpProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpProxy resources available to the specified project. + * Retrieves the list of TargetHttpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -766,7 +771,7 @@ public final ListTargetHttpProxiesPagedResponse listTargetHttpProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpProxy. + * Changes the URL map for TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -796,7 +801,7 @@ public final Operation setUrlMapTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpProxy. + * Changes the URL map for TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -826,7 +831,7 @@ public final Operation setUrlMapTargetHttpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpProxy. + * Changes the URL map for TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -852,7 +857,7 @@ public final Operation setUrlMapTargetHttpProxy(SetUrlMapTargetHttpProxyHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpProxy. + * Changes the URL map for TargetHttpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyList.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxyList.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpProxyList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxySettings.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpProxySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpProxySettings.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpProxySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesScopedList.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesSetQuicOverrideRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesSetQuicOverrideRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesSetQuicOverrideRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesSetQuicOverrideRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesSetSslCertificatesRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesSetSslCertificatesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesSetSslCertificatesRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpsProxiesSetSslCertificatesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxy.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxy.java similarity index 91% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxy.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpsProxy.java index 273afec83..b8505106b 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxy.java +++ b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxy.java @@ -177,12 +177,12 @@ public String getName() { } /** - * Specifies the QUIC override policy for this TargetHttpsProxy resource. This determines whether - * the load balancer will attempt to negotiate QUIC with clients or not. Can specify one of NONE, - * ENABLE, or DISABLE. Specify ENABLE to always enable QUIC, Enables QUIC when set to ENABLE, and - * disables QUIC when set to DISABLE. If NONE is specified, uses the QUIC policy with no user - * overrides, which is equivalent to DISABLE. Not specifying this field is equivalent to - * specifying NONE. + * Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting determines + * whether the load balancer attempts to negotiate QUIC with clients. You can specify NONE, + * ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is used. - + * When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - When + * quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the quic-override + * flag is not specified, NONE is implied. - */ public String getQuicOverride() { return quicOverride; @@ -212,7 +212,7 @@ public List getSslCertificatesList() { /** * URL of SslPolicy resource that will be associated with the TargetHttpsProxy resource. If not - * set, the TargetHttpsProxy resource will not have any SSL policy configured. + * set, the TargetHttpsProxy resource has no SSL policy configured. */ public String getSslPolicy() { return sslPolicy; @@ -395,24 +395,24 @@ public Builder setName(String name) { } /** - * Specifies the QUIC override policy for this TargetHttpsProxy resource. This determines - * whether the load balancer will attempt to negotiate QUIC with clients or not. Can specify one - * of NONE, ENABLE, or DISABLE. Specify ENABLE to always enable QUIC, Enables QUIC when set to - * ENABLE, and disables QUIC when set to DISABLE. If NONE is specified, uses the QUIC policy - * with no user overrides, which is equivalent to DISABLE. Not specifying this field is - * equivalent to specifying NONE. + * Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting + * determines whether the load balancer attempts to negotiate QUIC with clients. You can specify + * NONE, ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is + * used. - When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - + * When quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the + * quic-override flag is not specified, NONE is implied. - */ public String getQuicOverride() { return quicOverride; } /** - * Specifies the QUIC override policy for this TargetHttpsProxy resource. This determines - * whether the load balancer will attempt to negotiate QUIC with clients or not. Can specify one - * of NONE, ENABLE, or DISABLE. Specify ENABLE to always enable QUIC, Enables QUIC when set to - * ENABLE, and disables QUIC when set to DISABLE. If NONE is specified, uses the QUIC policy - * with no user overrides, which is equivalent to DISABLE. Not specifying this field is - * equivalent to specifying NONE. + * Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting + * determines whether the load balancer attempts to negotiate QUIC with clients. You can specify + * NONE, ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is + * used. - When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - + * When quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the + * quic-override flag is not specified, NONE is implied. - */ public Builder setQuicOverride(String quicOverride) { this.quicOverride = quicOverride; @@ -484,7 +484,7 @@ public Builder addSslCertificates(String sslCertificates) { /** * URL of SslPolicy resource that will be associated with the TargetHttpsProxy resource. If not - * set, the TargetHttpsProxy resource will not have any SSL policy configured. + * set, the TargetHttpsProxy resource has no SSL policy configured. */ public String getSslPolicy() { return sslPolicy; @@ -492,7 +492,7 @@ public String getSslPolicy() { /** * URL of SslPolicy resource that will be associated with the TargetHttpsProxy resource. If not - * set, the TargetHttpsProxy resource will not have any SSL policy configured. + * set, the TargetHttpsProxy resource has no SSL policy configured. */ public Builder setSslPolicy(String sslPolicy) { this.sslPolicy = sslPolicy; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyClient.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyClient.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyClient.java index 3e170d1e9..b57e2ea38 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyClient.java @@ -157,7 +157,7 @@ public TargetHttpsProxyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpsProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -186,7 +186,7 @@ public final AggregatedListTargetHttpsProxiesPagedResponse aggregatedListTargetH // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpsProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -213,7 +213,7 @@ public final AggregatedListTargetHttpsProxiesPagedResponse aggregatedListTargetH // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpsProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -241,7 +241,7 @@ public final AggregatedListTargetHttpsProxiesPagedResponse aggregatedListTargetH // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpsProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -270,7 +270,7 @@ public final AggregatedListTargetHttpsProxiesPagedResponse aggregatedListTargetH // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all TargetHttpsProxy resources, regional and global, available to the - * specified project. + * specified project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -304,7 +304,7 @@ public final AggregatedListTargetHttpsProxiesPagedResponse aggregatedListTargetH // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpsProxy resource. + * Deletes the specified TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -331,7 +331,7 @@ public final Operation deleteTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpsProxy resource. + * Deletes the specified TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -357,7 +357,7 @@ public final Operation deleteTargetHttpsProxy(String targetHttpsProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpsProxy resource. + * Deletes the specified TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -381,7 +381,7 @@ public final Operation deleteTargetHttpsProxy(DeleteTargetHttpsProxyHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetHttpsProxy resource. + * Deletes the specified TargetHttpsProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -406,7 +406,7 @@ public final Operation deleteTargetHttpsProxy(DeleteTargetHttpsProxyHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpsProxy resource. Gets a list of available target HTTPS proxies - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -434,7 +434,7 @@ public final TargetHttpsProxy getTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpsProxy resource. Gets a list of available target HTTPS proxies - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -459,7 +459,7 @@ public final TargetHttpsProxy getTargetHttpsProxy(String targetHttpsProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpsProxy resource. Gets a list of available target HTTPS proxies - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -484,7 +484,7 @@ public final TargetHttpsProxy getTargetHttpsProxy(GetTargetHttpsProxyHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetHttpsProxy resource. Gets a list of available target HTTPS proxies - * by making a list() request. + * by making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -509,7 +509,7 @@ public final TargetHttpsProxy getTargetHttpsProxy(GetTargetHttpsProxyHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpsProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -544,7 +544,7 @@ public final Operation insertTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpsProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -579,7 +579,7 @@ public final Operation insertTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpsProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -606,7 +606,7 @@ public final Operation insertTargetHttpsProxy(InsertTargetHttpsProxyHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetHttpsProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -632,7 +632,8 @@ public final Operation insertTargetHttpsProxy(InsertTargetHttpsProxyHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpsProxy resources available to the specified project. + * Retrieves the list of TargetHttpsProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -659,7 +660,8 @@ public final ListTargetHttpsProxiesPagedResponse listTargetHttpsProxies(ProjectN // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpsProxy resources available to the specified project. + * Retrieves the list of TargetHttpsProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -684,7 +686,8 @@ public final ListTargetHttpsProxiesPagedResponse listTargetHttpsProxies(String p // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpsProxy resources available to the specified project. + * Retrieves the list of TargetHttpsProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -711,7 +714,8 @@ public final ListTargetHttpsProxiesPagedResponse listTargetHttpsProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpsProxy resources available to the specified project. + * Retrieves the list of TargetHttpsProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -737,7 +741,8 @@ public final ListTargetHttpsProxiesPagedResponse listTargetHttpsProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetHttpsProxy resources available to the specified project. + * Retrieves the list of TargetHttpsProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -770,7 +775,7 @@ public final ListTargetHttpsProxiesPagedResponse listTargetHttpsProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the QUIC override policy for TargetHttpsProxy. + * Sets the QUIC override policy for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -803,7 +808,7 @@ public final Operation setQuicOverrideTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the QUIC override policy for TargetHttpsProxy. + * Sets the QUIC override policy for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -836,7 +841,7 @@ public final Operation setQuicOverrideTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the QUIC override policy for TargetHttpsProxy. + * Sets the QUIC override policy for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -863,7 +868,7 @@ public final Operation setQuicOverrideTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Sets the QUIC override policy for TargetHttpsProxy. + * Sets the QUIC override policy for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -889,7 +894,7 @@ public final Operation setQuicOverrideTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Replaces SslCertificates for TargetHttpsProxy. + * Replaces SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -923,7 +928,7 @@ public final Operation setSslCertificatesTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Replaces SslCertificates for TargetHttpsProxy. + * Replaces SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -957,7 +962,7 @@ public final Operation setSslCertificatesTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Replaces SslCertificates for TargetHttpsProxy. + * Replaces SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -984,7 +989,7 @@ public final Operation setSslCertificatesTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Replaces SslCertificates for TargetHttpsProxy. + * Replaces SslCertificates for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1012,7 +1017,8 @@ public final Operation setSslCertificatesTargetHttpsProxy( /** * Sets the SSL policy for TargetHttpsProxy. The SSL policy specifies the server-side support for * SSL features. This affects connections between clients and the HTTPS proxy load balancer. They - * do not affect the connection between the load balancer and the backends. + * do not affect the connection between the load balancer and the backends. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1046,7 +1052,8 @@ public final Operation setSslPolicyTargetHttpsProxy( /** * Sets the SSL policy for TargetHttpsProxy. The SSL policy specifies the server-side support for * SSL features. This affects connections between clients and the HTTPS proxy load balancer. They - * do not affect the connection between the load balancer and the backends. + * do not affect the connection between the load balancer and the backends. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1079,7 +1086,8 @@ public final Operation setSslPolicyTargetHttpsProxy( /** * Sets the SSL policy for TargetHttpsProxy. The SSL policy specifies the server-side support for * SSL features. This affects connections between clients and the HTTPS proxy load balancer. They - * do not affect the connection between the load balancer and the backends. + * do not affect the connection between the load balancer and the backends. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1108,7 +1116,8 @@ public final Operation setSslPolicyTargetHttpsProxy( /** * Sets the SSL policy for TargetHttpsProxy. The SSL policy specifies the server-side support for * SSL features. This affects connections between clients and the HTTPS proxy load balancer. They - * do not affect the connection between the load balancer and the backends. + * do not affect the connection between the load balancer and the backends. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1134,7 +1143,7 @@ public final Operation setSslPolicyTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpsProxy. + * Changes the URL map for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1164,7 +1173,7 @@ public final Operation setUrlMapTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpsProxy. + * Changes the URL map for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1194,7 +1203,7 @@ public final Operation setUrlMapTargetHttpsProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpsProxy. + * Changes the URL map for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1220,7 +1229,7 @@ public final Operation setUrlMapTargetHttpsProxy(SetUrlMapTargetHttpsProxyHttpRe // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the URL map for TargetHttpsProxy. + * Changes the URL map for TargetHttpsProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyList.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyList.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpsProxyList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxySettings.java b/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetHttpsProxySettings.java rename to src/main/java/com/google/cloud/compute/v1/TargetHttpsProxySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstance.java b/src/main/java/com/google/cloud/compute/v1/TargetInstance.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstance.java rename to src/main/java/com/google/cloud/compute/v1/TargetInstance.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/TargetInstanceAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetInstanceAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceClient.java b/src/main/java/com/google/cloud/compute/v1/TargetInstanceClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceClient.java rename to src/main/java/com/google/cloud/compute/v1/TargetInstanceClient.java index 0055ae250..ac44594cf 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceClient.java +++ b/src/main/java/com/google/cloud/compute/v1/TargetInstanceClient.java @@ -155,7 +155,7 @@ public TargetInstanceStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target instances. + * Retrieves an aggregated list of target instances. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -183,7 +183,7 @@ public final AggregatedListTargetInstancesPagedResponse aggregatedListTargetInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target instances. + * Retrieves an aggregated list of target instances. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -209,7 +209,7 @@ public final AggregatedListTargetInstancesPagedResponse aggregatedListTargetInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target instances. + * Retrieves an aggregated list of target instances. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -236,7 +236,7 @@ public final AggregatedListTargetInstancesPagedResponse aggregatedListTargetInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target instances. + * Retrieves an aggregated list of target instances. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -263,7 +263,7 @@ public final AggregatedListTargetInstancesPagedResponse aggregatedListTargetInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target instances. + * Retrieves an aggregated list of target instances. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -296,7 +296,7 @@ public final AggregatedListTargetInstancesPagedResponse aggregatedListTargetInst // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetInstance resource. + * Deletes the specified TargetInstance resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -322,7 +322,7 @@ public final Operation deleteTargetInstance(ProjectZoneTargetInstanceName target // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetInstance resource. + * Deletes the specified TargetInstance resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -346,7 +346,7 @@ public final Operation deleteTargetInstance(String targetInstance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetInstance resource. + * Deletes the specified TargetInstance resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -370,7 +370,7 @@ public final Operation deleteTargetInstance(DeleteTargetInstanceHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetInstance resource. + * Deletes the specified TargetInstance resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -395,7 +395,7 @@ public final Operation deleteTargetInstance(DeleteTargetInstanceHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetInstance resource. Gets a list of available target instances by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -422,7 +422,7 @@ public final TargetInstance getTargetInstance(ProjectZoneTargetInstanceName targ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetInstance resource. Gets a list of available target instances by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -447,7 +447,7 @@ public final TargetInstance getTargetInstance(String targetInstance) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetInstance resource. Gets a list of available target instances by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -472,7 +472,7 @@ public final TargetInstance getTargetInstance(GetTargetInstanceHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetInstance resource. Gets a list of available target instances by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -497,7 +497,7 @@ public final TargetInstance getTargetInstance(GetTargetInstanceHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetInstance resource in the specified project and zone using the data included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -532,7 +532,7 @@ public final Operation insertTargetInstance( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetInstance resource in the specified project and zone using the data included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -566,7 +566,7 @@ public final Operation insertTargetInstance(String zone, TargetInstance targetIn // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetInstance resource in the specified project and zone using the data included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -593,7 +593,7 @@ public final Operation insertTargetInstance(InsertTargetInstanceHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetInstance resource in the specified project and zone using the data included in - * the request. + * the request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -619,7 +619,8 @@ public final Operation insertTargetInstance(InsertTargetInstanceHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of TargetInstance resources available to the specified project and zone. + * Retrieves a list of TargetInstance resources available to the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -646,7 +647,8 @@ public final ListTargetInstancesPagedResponse listTargetInstances(ProjectZoneNam // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of TargetInstance resources available to the specified project and zone. + * Retrieves a list of TargetInstance resources available to the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -671,7 +673,8 @@ public final ListTargetInstancesPagedResponse listTargetInstances(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of TargetInstance resources available to the specified project and zone. + * Retrieves a list of TargetInstance resources available to the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -698,7 +701,8 @@ public final ListTargetInstancesPagedResponse listTargetInstances( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of TargetInstance resources available to the specified project and zone. + * Retrieves a list of TargetInstance resources available to the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -724,7 +728,8 @@ public final ListTargetInstancesPagedResponse listTargetInstances( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of TargetInstance resources available to the specified project and zone. + * Retrieves a list of TargetInstance resources available to the specified project and zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceList.java b/src/main/java/com/google/cloud/compute/v1/TargetInstanceList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceList.java rename to src/main/java/com/google/cloud/compute/v1/TargetInstanceList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceSettings.java b/src/main/java/com/google/cloud/compute/v1/TargetInstanceSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstanceSettings.java rename to src/main/java/com/google/cloud/compute/v1/TargetInstanceSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstancesScopedList.java b/src/main/java/com/google/cloud/compute/v1/TargetInstancesScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetInstancesScopedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetInstancesScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPool.java b/src/main/java/com/google/cloud/compute/v1/TargetPool.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPool.java rename to src/main/java/com/google/cloud/compute/v1/TargetPool.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolClient.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolClient.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolClient.java index 7d0ec00a9..0e7442643 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolClient.java +++ b/src/main/java/com/google/cloud/compute/v1/TargetPoolClient.java @@ -154,7 +154,7 @@ public TargetPoolStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds health check URLs to a target pool. + * Adds health check URLs to a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -185,7 +185,7 @@ public final Operation addHealthCheckTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds health check URLs to a target pool. + * Adds health check URLs to a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -216,7 +216,7 @@ public final Operation addHealthCheckTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds health check URLs to a target pool. + * Adds health check URLs to a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -242,7 +242,7 @@ public final Operation addHealthCheckTargetPool(AddHealthCheckTargetPoolHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds health check URLs to a target pool. + * Adds health check URLs to a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -268,7 +268,7 @@ public final Operation addHealthCheckTargetPool(AddHealthCheckTargetPoolHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds an instance to a target pool. + * Adds an instance to a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -299,7 +299,7 @@ public final Operation addInstanceTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds an instance to a target pool. + * Adds an instance to a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -329,7 +329,7 @@ public final Operation addInstanceTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds an instance to a target pool. + * Adds an instance to a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -355,7 +355,7 @@ public final Operation addInstanceTargetPool(AddInstanceTargetPoolHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Adds an instance to a target pool. + * Adds an instance to a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -381,7 +381,7 @@ public final Operation addInstanceTargetPool(AddInstanceTargetPoolHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target pools. + * Retrieves an aggregated list of target pools. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -409,7 +409,7 @@ public final AggregatedListTargetPoolsPagedResponse aggregatedListTargetPools( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target pools. + * Retrieves an aggregated list of target pools. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -434,7 +434,7 @@ public final AggregatedListTargetPoolsPagedResponse aggregatedListTargetPools(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target pools. + * Retrieves an aggregated list of target pools. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -461,7 +461,7 @@ public final AggregatedListTargetPoolsPagedResponse aggregatedListTargetPools( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target pools. + * Retrieves an aggregated list of target pools. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -488,7 +488,7 @@ public final AggregatedListTargetPoolsPagedResponse aggregatedListTargetPools( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target pools. + * Retrieves an aggregated list of target pools. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -521,7 +521,7 @@ public final AggregatedListTargetPoolsPagedResponse aggregatedListTargetPools( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified target pool. + * Deletes the specified target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -547,7 +547,7 @@ public final Operation deleteTargetPool(ProjectRegionTargetPoolName targetPool) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified target pool. + * Deletes the specified target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -571,7 +571,7 @@ public final Operation deleteTargetPool(String targetPool) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified target pool. + * Deletes the specified target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -595,7 +595,7 @@ public final Operation deleteTargetPool(DeleteTargetPoolHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified target pool. + * Deletes the specified target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -619,7 +619,7 @@ public final UnaryCallable deleteTargetP // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified target pool. Gets a list of available target pools by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -646,7 +646,7 @@ public final TargetPool getTargetPool(ProjectRegionTargetPoolName targetPool) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified target pool. Gets a list of available target pools by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -671,7 +671,7 @@ public final TargetPool getTargetPool(String targetPool) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified target pool. Gets a list of available target pools by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -696,7 +696,7 @@ public final TargetPool getTargetPool(GetTargetPoolHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified target pool. Gets a list of available target pools by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -720,7 +720,7 @@ public final UnaryCallable getTargetPoolCa // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the most recent health check results for each IP for the instance that is referenced by - * the given target pool. + * the given target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -751,7 +751,7 @@ public final TargetPoolInstanceHealth getHealthTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the most recent health check results for each IP for the instance that is referenced by - * the given target pool. + * the given target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -782,7 +782,7 @@ public final TargetPoolInstanceHealth getHealthTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the most recent health check results for each IP for the instance that is referenced by - * the given target pool. + * the given target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -810,7 +810,7 @@ public final TargetPoolInstanceHealth getHealthTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Gets the most recent health check results for each IP for the instance that is referenced by - * the given target pool. + * the given target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -837,7 +837,7 @@ public final TargetPoolInstanceHealth getHealthTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a target pool in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -864,7 +864,7 @@ public final Operation insertTargetPool(ProjectRegionName region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a target pool in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -889,7 +889,7 @@ public final Operation insertTargetPool(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a target pool in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -914,7 +914,7 @@ public final Operation insertTargetPool(InsertTargetPoolHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a target pool in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -937,7 +937,8 @@ public final UnaryCallable insertTargetP // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target pools available to the specified project and region. + * Retrieves a list of target pools available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -964,7 +965,8 @@ public final ListTargetPoolsPagedResponse listTargetPools(ProjectRegionName regi // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target pools available to the specified project and region. + * Retrieves a list of target pools available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -989,7 +991,8 @@ public final ListTargetPoolsPagedResponse listTargetPools(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target pools available to the specified project and region. + * Retrieves a list of target pools available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1015,7 +1018,8 @@ public final ListTargetPoolsPagedResponse listTargetPools(ListTargetPoolsHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target pools available to the specified project and region. + * Retrieves a list of target pools available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1041,7 +1045,8 @@ public final ListTargetPoolsPagedResponse listTargetPools(ListTargetPoolsHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target pools available to the specified project and region. + * Retrieves a list of target pools available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1073,7 +1078,7 @@ public final UnaryCallable listTarge // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes health check URL from a target pool. + * Removes health check URL from a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1105,7 +1110,7 @@ public final Operation removeHealthCheckTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes health check URL from a target pool. + * Removes health check URL from a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1137,7 +1142,7 @@ public final Operation removeHealthCheckTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes health check URL from a target pool. + * Removes health check URL from a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1164,7 +1169,7 @@ public final Operation removeHealthCheckTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes health check URL from a target pool. + * Removes health check URL from a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1190,7 +1195,7 @@ public final Operation removeHealthCheckTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes instance URL from a target pool. + * Removes instance URL from a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1221,7 +1226,7 @@ public final Operation removeInstanceTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes instance URL from a target pool. + * Removes instance URL from a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1252,7 +1257,7 @@ public final Operation removeInstanceTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes instance URL from a target pool. + * Removes instance URL from a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1278,7 +1283,7 @@ public final Operation removeInstanceTargetPool(RemoveInstanceTargetPoolHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Removes instance URL from a target pool. + * Removes instance URL from a target pool. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1304,7 +1309,7 @@ public final Operation removeInstanceTargetPool(RemoveInstanceTargetPoolHttpRequ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes a backup target pool's configurations. + * Changes a backup target pool's configurations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1339,7 +1344,7 @@ public final Operation setBackupTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes a backup target pool's configurations. + * Changes a backup target pool's configurations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1372,7 +1377,7 @@ public final Operation setBackupTargetPool( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes a backup target pool's configurations. + * Changes a backup target pool's configurations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1400,7 +1405,7 @@ public final Operation setBackupTargetPool(SetBackupTargetPoolHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes a backup target pool's configurations. + * Changes a backup target pool's configurations. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolInstanceHealth.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolInstanceHealth.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolInstanceHealth.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolInstanceHealth.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolList.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolList.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolSettings.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolSettings.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsAddHealthCheckRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolsAddHealthCheckRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsAddHealthCheckRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolsAddHealthCheckRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsAddInstanceRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolsAddInstanceRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsAddInstanceRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolsAddInstanceRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsRemoveHealthCheckRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolsRemoveHealthCheckRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsRemoveHealthCheckRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolsRemoveHealthCheckRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsRemoveInstanceRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolsRemoveInstanceRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsRemoveInstanceRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolsRemoveInstanceRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsScopedList.java b/src/main/java/com/google/cloud/compute/v1/TargetPoolsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetPoolsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetPoolsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetReference.java b/src/main/java/com/google/cloud/compute/v1/TargetReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetReference.java rename to src/main/java/com/google/cloud/compute/v1/TargetReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetBackendServiceRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetBackendServiceRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetBackendServiceRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetBackendServiceRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetProxyHeaderRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetProxyHeaderRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetProxyHeaderRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetProxyHeaderRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetSslCertificatesRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetSslCertificatesRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetSslCertificatesRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetSslProxiesSetSslCertificatesRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxy.java b/src/main/java/com/google/cloud/compute/v1/TargetSslProxy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxy.java rename to src/main/java/com/google/cloud/compute/v1/TargetSslProxy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxyClient.java b/src/main/java/com/google/cloud/compute/v1/TargetSslProxyClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxyClient.java rename to src/main/java/com/google/cloud/compute/v1/TargetSslProxyClient.java index 22a448c1e..87d13511d 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/TargetSslProxyClient.java @@ -155,7 +155,7 @@ public TargetSslProxyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetSslProxy resource. + * Deletes the specified TargetSslProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -181,7 +181,7 @@ public final Operation deleteTargetSslProxy(ProjectGlobalTargetSslProxyName targ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetSslProxy resource. + * Deletes the specified TargetSslProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final Operation deleteTargetSslProxy(String targetSslProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetSslProxy resource. + * Deletes the specified TargetSslProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -229,7 +229,7 @@ public final Operation deleteTargetSslProxy(DeleteTargetSslProxyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetSslProxy resource. + * Deletes the specified TargetSslProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -254,7 +254,7 @@ public final Operation deleteTargetSslProxy(DeleteTargetSslProxyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetSslProxy resource. Gets a list of available target SSL proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -281,7 +281,7 @@ public final TargetSslProxy getTargetSslProxy(ProjectGlobalTargetSslProxyName ta // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetSslProxy resource. Gets a list of available target SSL proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -306,7 +306,7 @@ public final TargetSslProxy getTargetSslProxy(String targetSslProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetSslProxy resource. Gets a list of available target SSL proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -331,7 +331,7 @@ public final TargetSslProxy getTargetSslProxy(GetTargetSslProxyHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetSslProxy resource. Gets a list of available target SSL proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -356,7 +356,7 @@ public final TargetSslProxy getTargetSslProxy(GetTargetSslProxyHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetSslProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -391,7 +391,7 @@ public final Operation insertTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetSslProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -426,7 +426,7 @@ public final Operation insertTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetSslProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -453,7 +453,7 @@ public final Operation insertTargetSslProxy(InsertTargetSslProxyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetSslProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -479,7 +479,8 @@ public final Operation insertTargetSslProxy(InsertTargetSslProxyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetSslProxy resources available to the specified project. + * Retrieves the list of TargetSslProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -506,7 +507,8 @@ public final ListTargetSslProxiesPagedResponse listTargetSslProxies(ProjectName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetSslProxy resources available to the specified project. + * Retrieves the list of TargetSslProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -531,7 +533,8 @@ public final ListTargetSslProxiesPagedResponse listTargetSslProxies(String proje // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetSslProxy resources available to the specified project. + * Retrieves the list of TargetSslProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -558,7 +561,8 @@ public final ListTargetSslProxiesPagedResponse listTargetSslProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetSslProxy resources available to the specified project. + * Retrieves the list of TargetSslProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -584,7 +588,8 @@ public final ListTargetSslProxiesPagedResponse listTargetSslProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetSslProxy resources available to the specified project. + * Retrieves the list of TargetSslProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -617,7 +622,7 @@ public final ListTargetSslProxiesPagedResponse listTargetSslProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the BackendService for TargetSslProxy. + * Changes the BackendService for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -650,7 +655,7 @@ public final Operation setBackendServiceTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the BackendService for TargetSslProxy. + * Changes the BackendService for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -683,7 +688,7 @@ public final Operation setBackendServiceTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the BackendService for TargetSslProxy. + * Changes the BackendService for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -710,7 +715,7 @@ public final Operation setBackendServiceTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the BackendService for TargetSslProxy. + * Changes the BackendService for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -736,7 +741,7 @@ public final Operation setBackendServiceTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the ProxyHeaderType for TargetSslProxy. + * Changes the ProxyHeaderType for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -768,7 +773,7 @@ public final Operation setProxyHeaderTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the ProxyHeaderType for TargetSslProxy. + * Changes the ProxyHeaderType for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -800,7 +805,7 @@ public final Operation setProxyHeaderTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the ProxyHeaderType for TargetSslProxy. + * Changes the ProxyHeaderType for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -827,7 +832,7 @@ public final Operation setProxyHeaderTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the ProxyHeaderType for TargetSslProxy. + * Changes the ProxyHeaderType for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -853,7 +858,7 @@ public final Operation setProxyHeaderTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes SslCertificates for TargetSslProxy. + * Changes SslCertificates for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -886,7 +891,7 @@ public final Operation setSslCertificatesTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes SslCertificates for TargetSslProxy. + * Changes SslCertificates for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -919,7 +924,7 @@ public final Operation setSslCertificatesTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes SslCertificates for TargetSslProxy. + * Changes SslCertificates for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -946,7 +951,7 @@ public final Operation setSslCertificatesTargetSslProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes SslCertificates for TargetSslProxy. + * Changes SslCertificates for TargetSslProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -974,7 +979,8 @@ public final Operation setSslCertificatesTargetSslProxy( /** * Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server-side support for * SSL features. This affects connections between clients and the SSL proxy load balancer. They do - * not affect the connection between the load balancer and the backends. + * not affect the connection between the load balancer and the backends. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1008,7 +1014,8 @@ public final Operation setSslPolicyTargetSslProxy( /** * Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server-side support for * SSL features. This affects connections between clients and the SSL proxy load balancer. They do - * not affect the connection between the load balancer and the backends. + * not affect the connection between the load balancer and the backends. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1041,7 +1048,8 @@ public final Operation setSslPolicyTargetSslProxy( /** * Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server-side support for * SSL features. This affects connections between clients and the SSL proxy load balancer. They do - * not affect the connection between the load balancer and the backends. + * not affect the connection between the load balancer and the backends. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1069,7 +1077,8 @@ public final Operation setSslPolicyTargetSslProxy(SetSslPolicyTargetSslProxyHttp /** * Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server-side support for * SSL features. This affects connections between clients and the SSL proxy load balancer. They do - * not affect the connection between the load balancer and the backends. + * not affect the connection between the load balancer and the backends. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxyList.java b/src/main/java/com/google/cloud/compute/v1/TargetSslProxyList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxyList.java rename to src/main/java/com/google/cloud/compute/v1/TargetSslProxyList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxySettings.java b/src/main/java/com/google/cloud/compute/v1/TargetSslProxySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetSslProxySettings.java rename to src/main/java/com/google/cloud/compute/v1/TargetSslProxySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxiesSetBackendServiceRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetTcpProxiesSetBackendServiceRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxiesSetBackendServiceRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetTcpProxiesSetBackendServiceRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxiesSetProxyHeaderRequest.java b/src/main/java/com/google/cloud/compute/v1/TargetTcpProxiesSetProxyHeaderRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxiesSetProxyHeaderRequest.java rename to src/main/java/com/google/cloud/compute/v1/TargetTcpProxiesSetProxyHeaderRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxy.java b/src/main/java/com/google/cloud/compute/v1/TargetTcpProxy.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxy.java rename to src/main/java/com/google/cloud/compute/v1/TargetTcpProxy.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxyClient.java b/src/main/java/com/google/cloud/compute/v1/TargetTcpProxyClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxyClient.java rename to src/main/java/com/google/cloud/compute/v1/TargetTcpProxyClient.java index 1e704ac99..770ae2f65 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxyClient.java +++ b/src/main/java/com/google/cloud/compute/v1/TargetTcpProxyClient.java @@ -155,7 +155,7 @@ public TargetTcpProxyStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetTcpProxy resource. + * Deletes the specified TargetTcpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -181,7 +181,7 @@ public final Operation deleteTargetTcpProxy(ProjectGlobalTargetTcpProxyName targ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetTcpProxy resource. + * Deletes the specified TargetTcpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final Operation deleteTargetTcpProxy(String targetTcpProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetTcpProxy resource. + * Deletes the specified TargetTcpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -229,7 +229,7 @@ public final Operation deleteTargetTcpProxy(DeleteTargetTcpProxyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified TargetTcpProxy resource. + * Deletes the specified TargetTcpProxy resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -254,7 +254,7 @@ public final Operation deleteTargetTcpProxy(DeleteTargetTcpProxyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -281,7 +281,7 @@ public final TargetTcpProxy getTargetTcpProxy(ProjectGlobalTargetTcpProxyName ta // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -306,7 +306,7 @@ public final TargetTcpProxy getTargetTcpProxy(String targetTcpProxy) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -331,7 +331,7 @@ public final TargetTcpProxy getTargetTcpProxy(GetTargetTcpProxyHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -356,7 +356,7 @@ public final TargetTcpProxy getTargetTcpProxy(GetTargetTcpProxyHttpRequest reque // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetTcpProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -391,7 +391,7 @@ public final Operation insertTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetTcpProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -426,7 +426,7 @@ public final Operation insertTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetTcpProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -453,7 +453,7 @@ public final Operation insertTargetTcpProxy(InsertTargetTcpProxyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a TargetTcpProxy resource in the specified project using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -479,7 +479,8 @@ public final Operation insertTargetTcpProxy(InsertTargetTcpProxyHttpRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetTcpProxy resources available to the specified project. + * Retrieves the list of TargetTcpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -506,7 +507,8 @@ public final ListTargetTcpProxiesPagedResponse listTargetTcpProxies(ProjectName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetTcpProxy resources available to the specified project. + * Retrieves the list of TargetTcpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -531,7 +533,8 @@ public final ListTargetTcpProxiesPagedResponse listTargetTcpProxies(String proje // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetTcpProxy resources available to the specified project. + * Retrieves the list of TargetTcpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -558,7 +561,8 @@ public final ListTargetTcpProxiesPagedResponse listTargetTcpProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetTcpProxy resources available to the specified project. + * Retrieves the list of TargetTcpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -584,7 +588,8 @@ public final ListTargetTcpProxiesPagedResponse listTargetTcpProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of TargetTcpProxy resources available to the specified project. + * Retrieves the list of TargetTcpProxy resources available to the specified project. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -617,7 +622,7 @@ public final ListTargetTcpProxiesPagedResponse listTargetTcpProxies( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the BackendService for TargetTcpProxy. + * Changes the BackendService for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -650,7 +655,7 @@ public final Operation setBackendServiceTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the BackendService for TargetTcpProxy. + * Changes the BackendService for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -683,7 +688,7 @@ public final Operation setBackendServiceTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the BackendService for TargetTcpProxy. + * Changes the BackendService for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -710,7 +715,7 @@ public final Operation setBackendServiceTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the BackendService for TargetTcpProxy. + * Changes the BackendService for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -736,7 +741,7 @@ public final Operation setBackendServiceTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the ProxyHeaderType for TargetTcpProxy. + * Changes the ProxyHeaderType for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -768,7 +773,7 @@ public final Operation setProxyHeaderTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the ProxyHeaderType for TargetTcpProxy. + * Changes the ProxyHeaderType for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -800,7 +805,7 @@ public final Operation setProxyHeaderTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the ProxyHeaderType for TargetTcpProxy. + * Changes the ProxyHeaderType for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -827,7 +832,7 @@ public final Operation setProxyHeaderTargetTcpProxy( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Changes the ProxyHeaderType for TargetTcpProxy. + * Changes the ProxyHeaderType for TargetTcpProxy. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxyList.java b/src/main/java/com/google/cloud/compute/v1/TargetTcpProxyList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxyList.java rename to src/main/java/com/google/cloud/compute/v1/TargetTcpProxyList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxySettings.java b/src/main/java/com/google/cloud/compute/v1/TargetTcpProxySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetTcpProxySettings.java rename to src/main/java/com/google/cloud/compute/v1/TargetTcpProxySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGateway.java b/src/main/java/com/google/cloud/compute/v1/TargetVpnGateway.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGateway.java rename to src/main/java/com/google/cloud/compute/v1/TargetVpnGateway.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayClient.java b/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayClient.java rename to src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayClient.java index 8e554b8a8..2aefe4570 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayClient.java +++ b/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayClient.java @@ -156,7 +156,8 @@ public TargetVpnGatewayStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target VPN gateways. + * Retrieves an aggregated list of target VPN gateways. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -184,7 +185,8 @@ public final AggregatedListTargetVpnGatewaysPagedResponse aggregatedListTargetVp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target VPN gateways. + * Retrieves an aggregated list of target VPN gateways. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -210,7 +212,8 @@ public final AggregatedListTargetVpnGatewaysPagedResponse aggregatedListTargetVp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target VPN gateways. + * Retrieves an aggregated list of target VPN gateways. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -237,7 +240,8 @@ public final AggregatedListTargetVpnGatewaysPagedResponse aggregatedListTargetVp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target VPN gateways. + * Retrieves an aggregated list of target VPN gateways. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -264,7 +268,8 @@ public final AggregatedListTargetVpnGatewaysPagedResponse aggregatedListTargetVp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of target VPN gateways. + * Retrieves an aggregated list of target VPN gateways. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -298,7 +303,7 @@ public final AggregatedListTargetVpnGatewaysPagedResponse aggregatedListTargetVp // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified target VPN gateway. + * Deletes the specified target VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -325,7 +330,7 @@ public final Operation deleteTargetVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified target VPN gateway. + * Deletes the specified target VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -351,7 +356,7 @@ public final Operation deleteTargetVpnGateway(String targetVpnGateway) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified target VPN gateway. + * Deletes the specified target VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -375,7 +380,7 @@ public final Operation deleteTargetVpnGateway(DeleteTargetVpnGatewayHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified target VPN gateway. + * Deletes the specified target VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -400,7 +405,7 @@ public final Operation deleteTargetVpnGateway(DeleteTargetVpnGatewayHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified target VPN gateway. Gets a list of available target VPN gateways by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -428,7 +433,7 @@ public final TargetVpnGateway getTargetVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified target VPN gateway. Gets a list of available target VPN gateways by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -453,7 +458,7 @@ public final TargetVpnGateway getTargetVpnGateway(String targetVpnGateway) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified target VPN gateway. Gets a list of available target VPN gateways by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -478,7 +483,7 @@ public final TargetVpnGateway getTargetVpnGateway(GetTargetVpnGatewayHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified target VPN gateway. Gets a list of available target VPN gateways by - * making a list() request. + * making a list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -503,7 +508,7 @@ public final TargetVpnGateway getTargetVpnGateway(GetTargetVpnGatewayHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a target VPN gateway in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -537,7 +542,7 @@ public final Operation insertTargetVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a target VPN gateway in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -571,7 +576,7 @@ public final Operation insertTargetVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a target VPN gateway in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -598,7 +603,7 @@ public final Operation insertTargetVpnGateway(InsertTargetVpnGatewayHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a target VPN gateway in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -624,7 +629,8 @@ public final Operation insertTargetVpnGateway(InsertTargetVpnGatewayHttpRequest // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target VPN gateways available to the specified project and region. + * Retrieves a list of target VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -651,7 +657,8 @@ public final ListTargetVpnGatewaysPagedResponse listTargetVpnGateways(ProjectReg // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target VPN gateways available to the specified project and region. + * Retrieves a list of target VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -676,7 +683,8 @@ public final ListTargetVpnGatewaysPagedResponse listTargetVpnGateways(String reg // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target VPN gateways available to the specified project and region. + * Retrieves a list of target VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -703,7 +711,8 @@ public final ListTargetVpnGatewaysPagedResponse listTargetVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target VPN gateways available to the specified project and region. + * Retrieves a list of target VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -729,7 +738,8 @@ public final ListTargetVpnGatewaysPagedResponse listTargetVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of target VPN gateways available to the specified project and region. + * Retrieves a list of target VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayList.java b/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayList.java rename to src/main/java/com/google/cloud/compute/v1/TargetVpnGatewayList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewaySettings.java b/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewaySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewaySettings.java rename to src/main/java/com/google/cloud/compute/v1/TargetVpnGatewaySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewaysScopedList.java b/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewaysScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TargetVpnGatewaysScopedList.java rename to src/main/java/com/google/cloud/compute/v1/TargetVpnGatewaysScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestFailure.java b/src/main/java/com/google/cloud/compute/v1/TestFailure.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestFailure.java rename to src/main/java/com/google/cloud/compute/v1/TestFailure.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsDiskHttpRequest.java index 13e9c7d4a..ca23f3c42 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.disks.testIamPermissions. Returns permissions that a caller has - * on the specified resource. + * on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsExternalVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsExternalVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsExternalVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsExternalVpnGatewayHttpRequest.java index 738870862..19d74287c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsExternalVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsExternalVpnGatewayHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.externalVpnGateways.testIamPermissions. Returns permissions - * that a caller has on the specified resource. + * that a caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsExternalVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsImageHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsImageHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsImageHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsImageHttpRequest.java index a1476edae..3819d3a24 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsImageHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsImageHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.images.testIamPermissions. Returns permissions that a caller - * has on the specified resource. + * has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsImageHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceHttpRequest.java index fc935e0aa..de38eae67 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instances.testIamPermissions. Returns permissions that a caller - * has on the specified resource. + * has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceTemplateHttpRequest.java index 899c5e18d..28c2bdd44 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsInstanceTemplateHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.instanceTemplates.testIamPermissions. Returns permissions that - * a caller has on the specified resource. + * a caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsInstanceTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseCodeHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseCodeHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseCodeHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseCodeHttpRequest.java index a499b4eed..12c90ec19 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseCodeHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseCodeHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.licenseCodes.testIamPermissions. Returns permissions that a - * caller has on the specified resource. + * caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsLicenseCodeHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseHttpRequest.java index 5350c90bb..5ed12657a 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsLicenseHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.licenses.testIamPermissions. Returns permissions that a caller - * has on the specified resource. + * has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsLicenseHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNetworkEndpointGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNetworkEndpointGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNetworkEndpointGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNetworkEndpointGroupHttpRequest.java index ac0068c8d..be5ef808c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNetworkEndpointGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNetworkEndpointGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.networkEndpointGroups.testIamPermissions. Returns permissions - * that a caller has on the specified resource. + * that a caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsNetworkEndpointGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeGroupHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeGroupHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeGroupHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeGroupHttpRequest.java index 44c29ae6e..f824675f7 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeGroupHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeGroupHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeGroups.testIamPermissions. Returns permissions that a - * caller has on the specified resource. + * caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsNodeGroupHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeTemplateHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeTemplateHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeTemplateHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeTemplateHttpRequest.java index a66eb4f75..cb12a9842 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeTemplateHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsNodeTemplateHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.nodeTemplates.testIamPermissions. Returns permissions that a - * caller has on the specified resource. + * caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsNodeTemplateHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsRegionDiskHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsRegionDiskHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsRegionDiskHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsRegionDiskHttpRequest.java index 67987b4a4..3e522a2d1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsRegionDiskHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsRegionDiskHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.regionDisks.testIamPermissions. Returns permissions that a - * caller has on the specified resource. + * caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsRegionDiskHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsReservationHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsReservationHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsReservationHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsReservationHttpRequest.java index 790490820..845bc1435 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsReservationHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsReservationHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.reservations.testIamPermissions. Returns permissions that a - * caller has on the specified resource. + * caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsReservationHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsResourcePolicyHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsResourcePolicyHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsResourcePolicyHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsResourcePolicyHttpRequest.java index 573a783f5..3b04a7251 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsResourcePolicyHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsResourcePolicyHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.resourcePolicies.testIamPermissions. Returns permissions that a - * caller has on the specified resource. + * caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsResourcePolicyHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSnapshotHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSnapshotHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSnapshotHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSnapshotHttpRequest.java index b8f7ef653..a92a948a8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSnapshotHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSnapshotHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.snapshots.testIamPermissions. Returns permissions that a caller - * has on the specified resource. + * has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsSnapshotHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSubnetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSubnetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSubnetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSubnetworkHttpRequest.java index e6edbd93a..6d85cb861 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSubnetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsSubnetworkHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.subnetworks.testIamPermissions. Returns permissions that a - * caller has on the specified resource. + * caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsSubnetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsVpnGatewayHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsVpnGatewayHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsVpnGatewayHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestIamPermissionsVpnGatewayHttpRequest.java index bdae35e89..d3eef8d8c 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsVpnGatewayHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/TestIamPermissionsVpnGatewayHttpRequest.java @@ -26,7 +26,7 @@ @BetaApi /** * Request object for method compute.vpnGateways.testIamPermissions. Returns permissions that a - * caller has on the specified resource. + * caller has on the specified resource. (== suppress_warning http-rest-shadowed ==) */ public final class TestIamPermissionsVpnGatewayHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestPermissionsRequest.java b/src/main/java/com/google/cloud/compute/v1/TestPermissionsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestPermissionsRequest.java rename to src/main/java/com/google/cloud/compute/v1/TestPermissionsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestPermissionsResponse.java b/src/main/java/com/google/cloud/compute/v1/TestPermissionsResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/TestPermissionsResponse.java rename to src/main/java/com/google/cloud/compute/v1/TestPermissionsResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateAccessConfigInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateAccessConfigInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateAccessConfigInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateAccessConfigInstanceHttpRequest.java index 8c84d99a7..3b9139e45 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateAccessConfigInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateAccessConfigInstanceHttpRequest.java @@ -27,7 +27,8 @@ /** * Request object for method compute.instances.updateAccessConfig. Updates the specified access * config from an instance's network interface with the data included in the request. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) */ public final class UpdateAccessConfigInstanceHttpRequest implements ApiMessage { private final AccessConfig accessConfigResource; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateAutoscalerHttpRequest.java index 381a44b5e..edc6d3769 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateAutoscalerHttpRequest.java @@ -27,7 +27,7 @@ @BetaApi /** * Request object for method compute.autoscalers.update. Updates an autoscaler in the specified - * project using the data included in the request. + * project using the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class UpdateAutoscalerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateBackendBucketHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateBackendBucketHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateBackendBucketHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateBackendBucketHttpRequest.java index da2484989..2ea1d2940 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateBackendBucketHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateBackendBucketHttpRequest.java @@ -27,7 +27,7 @@ @BetaApi /** * Request object for method compute.backendBuckets.update. Updates the specified BackendBucket - * resource with the data included in the request. + * resource with the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class UpdateBackendBucketHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateBackendServiceHttpRequest.java similarity index 90% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateBackendServiceHttpRequest.java index c8e00762d..744a641b8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateBackendServiceHttpRequest.java @@ -29,7 +29,7 @@ * Request object for method compute.backendServices.update. Updates the specified BackendService * resource with the data included in the request. There are several restrictions and guidelines to * keep in mind when updating a backend service. Read Restrictions and Guidelines for more - * information. + * information. (== suppress_warning http-rest-shadowed ==) */ public final class UpdateBackendServiceHttpRequest implements ApiMessage { private final String access_token; @@ -147,16 +147,12 @@ public String getBackendService() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services are - * used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -347,16 +343,12 @@ public Builder setBackendService(String backendService) { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -365,16 +357,12 @@ public BackendService getBackendServiceResource() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public Builder setBackendServiceResource(BackendService backendServiceResource) { this.backendServiceResource = backendServiceResource; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateDisplayDeviceInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateDisplayDeviceInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateDisplayDeviceInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateDisplayDeviceInstanceHttpRequest.java index f22b7acec..f33b6b578 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateDisplayDeviceInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateDisplayDeviceInstanceHttpRequest.java @@ -28,7 +28,8 @@ /** * Request object for method compute.instances.updateDisplayDevice. Updates the Display config for a * VM instance. You can only use this method on a stopped VM instance. This method supports PATCH - * semantics and uses the JSON merge patch format and processing rules. + * semantics and uses the JSON merge patch format and processing rules. (== suppress_warning + * http-rest-shadowed ==) */ public final class UpdateDisplayDeviceInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateFirewallHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateFirewallHttpRequest.java similarity index 98% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateFirewallHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateFirewallHttpRequest.java index 9e5a612f6..b948f2eda 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateFirewallHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateFirewallHttpRequest.java @@ -27,8 +27,9 @@ @BetaApi /** * Request object for method compute.firewalls.update. Updates the specified firewall rule with the - * data included in the request. The PUT method can only update the following fields of firewall - * rule: allowed, description, sourceRanges, sourceTags, targetTags. + * data included in the request. Note that all fields will be updated if using PUT, even fields that + * are not specified. To update individual fields, please use PATCH instead. (== suppress_warning + * http-rest-shadowed ==) */ public final class UpdateFirewallHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateHealthCheckHttpRequest.java index 29c052f2c..1f28fd89e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateHealthCheckHttpRequest.java @@ -27,7 +27,8 @@ @BetaApi /** * Request object for method compute.healthChecks.update. Updates a HealthCheck resource in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class UpdateHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHttpHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateHttpHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHttpHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateHttpHealthCheckHttpRequest.java index 1eb86b530..a913c0fc5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHttpHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateHttpHealthCheckHttpRequest.java @@ -27,7 +27,8 @@ @BetaApi /** * Request object for method compute.httpHealthChecks.update. Updates a HttpHealthCheck resource in - * the specified project using the data included in the request. + * the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class UpdateHttpHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHttpsHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateHttpsHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHttpsHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateHttpsHealthCheckHttpRequest.java index 6478f0b17..f74b9da08 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateHttpsHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateHttpsHealthCheckHttpRequest.java @@ -27,7 +27,8 @@ @BetaApi /** * Request object for method compute.httpsHealthChecks.update. Updates a HttpsHealthCheck resource - * in the specified project using the data included in the request. + * in the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class UpdateHttpsHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateNetworkInterfaceInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateNetworkInterfaceInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateNetworkInterfaceInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateNetworkInterfaceInstanceHttpRequest.java index d8259c886..d52029ac0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateNetworkInterfaceInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateNetworkInterfaceInstanceHttpRequest.java @@ -27,7 +27,7 @@ @BetaApi /** * Request object for method compute.instances.updateNetworkInterface. Updates an instance's network - * interface. This method follows PATCH semantics. + * interface. This method follows PATCH semantics. (== suppress_warning http-rest-shadowed ==) */ public final class UpdateNetworkInterfaceInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdatePeeringNetworkHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdatePeeringNetworkHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdatePeeringNetworkHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdatePeeringNetworkHttpRequest.java index 8a1dc4eae..377f72760 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdatePeeringNetworkHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdatePeeringNetworkHttpRequest.java @@ -28,7 +28,8 @@ /** * Request object for method compute.networks.updatePeering. Updates the specified network peering * with the data included in the request Only the following fields can be modified: - * NetworkPeering.export_custom_routes, and NetworkPeering.import_custom_routes + * NetworkPeering.export_custom_routes, and NetworkPeering.import_custom_routes (== suppress_warning + * http-rest-shadowed ==) */ public final class UpdatePeeringNetworkHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionAutoscalerHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateRegionAutoscalerHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionAutoscalerHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateRegionAutoscalerHttpRequest.java index 283a5ef19..deab5348e 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionAutoscalerHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateRegionAutoscalerHttpRequest.java @@ -27,7 +27,8 @@ @BetaApi /** * Request object for method compute.regionAutoscalers.update. Updates an autoscaler in the - * specified project using the data included in the request. + * specified project using the data included in the request. (== suppress_warning http-rest-shadowed + * ==) */ public final class UpdateRegionAutoscalerHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionBackendServiceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateRegionBackendServiceHttpRequest.java similarity index 90% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionBackendServiceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateRegionBackendServiceHttpRequest.java index 3b21c9181..cd7a94bba 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionBackendServiceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateRegionBackendServiceHttpRequest.java @@ -29,7 +29,7 @@ * Request object for method compute.regionBackendServices.update. Updates the specified regional * BackendService resource with the data included in the request. There are several restrictions and * guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for - * more information. + * more information. (== suppress_warning http-rest-shadowed ==) */ public final class UpdateRegionBackendServiceHttpRequest implements ApiMessage { private final String access_token; @@ -147,16 +147,12 @@ public String getBackendService() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services are - * used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -347,16 +343,12 @@ public Builder setBackendService(String backendService) { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public BackendService getBackendServiceResource() { return backendServiceResource; @@ -365,16 +357,12 @@ public BackendService getBackendServiceResource() { /** * Represents a Backend Service resource. * - *

Backend services must have an associated health check. Backend services also store - * information about session affinity. For more information, read Backend Services. + *

A backend service contains configuration values for Google Cloud Platform load balancing + * services. * - *

A backendServices resource represents a global backend service. Global backend services - * are used for HTTP(S), SSL Proxy, TCP Proxy load balancing and Traffic Director. + *

For more information, read Backend Services. * - *

A regionBackendServices resource represents a regional backend service. Regional backend - * services are used for internal TCP/UDP load balancing. For more information, read Internal - * TCP/UDP Load balancing. (== resource_for v1.backendService ==) (== resource_for - * beta.backendService ==) + *

(== resource_for v1.backendService ==) (== resource_for beta.backendService ==) */ public Builder setBackendServiceResource(BackendService backendServiceResource) { this.backendServiceResource = backendServiceResource; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionHealthCheckHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateRegionHealthCheckHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionHealthCheckHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateRegionHealthCheckHttpRequest.java index 1cdc3af5d..596d52df5 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionHealthCheckHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateRegionHealthCheckHttpRequest.java @@ -27,7 +27,8 @@ @BetaApi /** * Request object for method compute.regionHealthChecks.update. Updates a HealthCheck resource in - * the specified project using the data included in the request. + * the specified project using the data included in the request. (== suppress_warning + * http-rest-shadowed ==) */ public final class UpdateRegionHealthCheckHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateRegionUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateRegionUrlMapHttpRequest.java index 617597cba..0e3a8a5a8 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRegionUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateRegionUrlMapHttpRequest.java @@ -27,7 +27,7 @@ @BetaApi /** * Request object for method compute.regionUrlMaps.update. Updates the specified UrlMap resource - * with the data included in the request. + * with the data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class UpdateRegionUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRouterHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateRouterHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRouterHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateRouterHttpRequest.java index fa0094a56..e55d8c952 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateRouterHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateRouterHttpRequest.java @@ -29,7 +29,7 @@ * Request object for method compute.routers.update. Updates the specified Router resource with the * data included in the request. This method conforms to PUT semantics, which requests that the * state of the target resource be created or replaced with the state defined by the representation - * enclosed in the request message payload. + * enclosed in the request message payload. (== suppress_warning http-rest-shadowed ==) */ public final class UpdateRouterHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateShieldedInstanceConfigInstanceHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateShieldedInstanceConfigInstanceHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateShieldedInstanceConfigInstanceHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateShieldedInstanceConfigInstanceHttpRequest.java index 197e847ba..f55a404c3 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateShieldedInstanceConfigInstanceHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateShieldedInstanceConfigInstanceHttpRequest.java @@ -28,7 +28,8 @@ /** * Request object for method compute.instances.updateShieldedInstanceConfig. Updates the Shielded * Instance config for an instance. You can only use this method on a stopped instance. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) */ public final class UpdateShieldedInstanceConfigInstanceHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/UpdateUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/UpdateUrlMapHttpRequest.java index 56ad7cd04..4289b2e76 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UpdateUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/UpdateUrlMapHttpRequest.java @@ -27,7 +27,7 @@ @BetaApi /** * Request object for method compute.urlMaps.update. Updates the specified UrlMap resource with the - * data included in the request. + * data included in the request. (== suppress_warning http-rest-shadowed ==) */ public final class UpdateUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMap.java b/src/main/java/com/google/cloud/compute/v1/UrlMap.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMap.java rename to src/main/java/com/google/cloud/compute/v1/UrlMap.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapClient.java b/src/main/java/com/google/cloud/compute/v1/UrlMapClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapClient.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapClient.java index 0c6ff7792..a789920d9 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapClient.java +++ b/src/main/java/com/google/cloud/compute/v1/UrlMapClient.java @@ -154,7 +154,7 @@ public UrlMapStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all UrlMap resources, regional and global, available to the specified - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -182,7 +182,7 @@ public final AggregatedListUrlMapsPagedResponse aggregatedListUrlMaps(ProjectNam // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all UrlMap resources, regional and global, available to the specified - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -208,7 +208,7 @@ public final AggregatedListUrlMapsPagedResponse aggregatedListUrlMaps(String pro // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all UrlMap resources, regional and global, available to the specified - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -236,7 +236,7 @@ public final AggregatedListUrlMapsPagedResponse aggregatedListUrlMaps( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all UrlMap resources, regional and global, available to the specified - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -263,7 +263,7 @@ public final AggregatedListUrlMapsPagedResponse aggregatedListUrlMaps( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Retrieves the list of all UrlMap resources, regional and global, available to the specified - * project. + * project. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -296,7 +296,7 @@ public final AggregatedListUrlMapsPagedResponse aggregatedListUrlMaps( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified UrlMap resource. + * Deletes the specified UrlMap resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -322,7 +322,7 @@ public final Operation deleteUrlMap(ProjectGlobalUrlMapName urlMap) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified UrlMap resource. + * Deletes the specified UrlMap resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -346,7 +346,7 @@ public final Operation deleteUrlMap(String urlMap) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified UrlMap resource. + * Deletes the specified UrlMap resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -370,7 +370,7 @@ public final Operation deleteUrlMap(DeleteUrlMapHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified UrlMap resource. + * Deletes the specified UrlMap resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -394,7 +394,7 @@ public final UnaryCallable deleteUrlMapCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -421,7 +421,7 @@ public final UrlMap getUrlMap(ProjectGlobalUrlMapName urlMap) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -445,7 +445,7 @@ public final UrlMap getUrlMap(String urlMap) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -470,7 +470,7 @@ public final UrlMap getUrlMap(GetUrlMapHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -493,7 +493,8 @@ public final UnaryCallable getUrlMapCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a UrlMap resource in the specified project using the data included in the request. + * Creates a UrlMap resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -528,7 +529,8 @@ public final Operation insertUrlMap(ProjectName project, UrlMap urlMapResource) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a UrlMap resource in the specified project using the data included in the request. + * Creates a UrlMap resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -563,7 +565,8 @@ public final Operation insertUrlMap(String project, UrlMap urlMapResource) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a UrlMap resource in the specified project using the data included in the request. + * Creates a UrlMap resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -589,7 +592,8 @@ public final Operation insertUrlMap(InsertUrlMapHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a UrlMap resource in the specified project using the data included in the request. + * Creates a UrlMap resource in the specified project using the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -615,7 +619,7 @@ public final UnaryCallable insertUrlMapCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Initiates a cache invalidation operation, invalidating the specified path, scoped to the - * specified UrlMap. + * specified UrlMap. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -646,7 +650,7 @@ public final Operation invalidateCacheUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Initiates a cache invalidation operation, invalidating the specified path, scoped to the - * specified UrlMap. + * specified UrlMap. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -677,7 +681,7 @@ public final Operation invalidateCacheUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Initiates a cache invalidation operation, invalidating the specified path, scoped to the - * specified UrlMap. + * specified UrlMap. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -704,7 +708,7 @@ public final Operation invalidateCacheUrlMap(InvalidateCacheUrlMapHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Initiates a cache invalidation operation, invalidating the specified path, scoped to the - * specified UrlMap. + * specified UrlMap. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -730,7 +734,8 @@ public final Operation invalidateCacheUrlMap(InvalidateCacheUrlMapHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of UrlMap resources available to the specified project. + * Retrieves the list of UrlMap resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -757,7 +762,8 @@ public final ListUrlMapsPagedResponse listUrlMaps(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of UrlMap resources available to the specified project. + * Retrieves the list of UrlMap resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -782,7 +788,8 @@ public final ListUrlMapsPagedResponse listUrlMaps(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of UrlMap resources available to the specified project. + * Retrieves the list of UrlMap resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -808,7 +815,8 @@ public final ListUrlMapsPagedResponse listUrlMaps(ListUrlMapsHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of UrlMap resources available to the specified project. + * Retrieves the list of UrlMap resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -834,7 +842,8 @@ public final ListUrlMapsPagedResponse listUrlMaps(ListUrlMapsHttpRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of UrlMap resources available to the specified project. + * Retrieves the list of UrlMap resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -867,7 +876,8 @@ public final UnaryCallable listUrlMapsCallab // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified UrlMap resource with the data included in the request. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -910,7 +920,8 @@ public final Operation patchUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified UrlMap resource with the data included in the request. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -952,7 +963,8 @@ public final Operation patchUrlMap(String urlMap, UrlMap urlMapResource, ListSample code: * @@ -981,7 +993,8 @@ public final Operation patchUrlMap(PatchUrlMapHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Patches the specified UrlMap resource with the data included in the request. This method - * supports PATCH semantics and uses the JSON merge patch format and processing rules. + * supports PATCH semantics and uses the JSON merge patch format and processing rules. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1008,7 +1021,8 @@ public final UnaryCallable patchUrlMapCallabl // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified UrlMap resource with the data included in the request. + * Updates the specified UrlMap resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1050,7 +1064,8 @@ public final Operation updateUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified UrlMap resource with the data included in the request. + * Updates the specified UrlMap resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1092,7 +1107,8 @@ public final Operation updateUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified UrlMap resource with the data included in the request. + * Updates the specified UrlMap resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1120,7 +1136,8 @@ public final Operation updateUrlMap(UpdateUrlMapHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Updates the specified UrlMap resource with the data included in the request. + * Updates the specified UrlMap resource with the data included in the request. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -1148,7 +1165,8 @@ public final UnaryCallable updateUrlMapCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be - * run. Calling this method does NOT create the UrlMap. + * run. Calling this method does NOT create the UrlMap. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1179,7 +1197,8 @@ public final UrlMapsValidateResponse validateUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be - * run. Calling this method does NOT create the UrlMap. + * run. Calling this method does NOT create the UrlMap. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1210,7 +1229,8 @@ public final UrlMapsValidateResponse validateUrlMap( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be - * run. Calling this method does NOT create the UrlMap. + * run. Calling this method does NOT create the UrlMap. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * @@ -1237,7 +1257,8 @@ public final UrlMapsValidateResponse validateUrlMap(ValidateUrlMapHttpRequest re // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be - * run. Calling this method does NOT create the UrlMap. + * run. Calling this method does NOT create the UrlMap. (== suppress_warning http-rest-shadowed + * ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapList.java b/src/main/java/com/google/cloud/compute/v1/UrlMapList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapList.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapReference.java b/src/main/java/com/google/cloud/compute/v1/UrlMapReference.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapReference.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapReference.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapSettings.java b/src/main/java/com/google/cloud/compute/v1/UrlMapSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapSettings.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapTest.java b/src/main/java/com/google/cloud/compute/v1/UrlMapTest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapTest.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapTest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapValidationResult.java b/src/main/java/com/google/cloud/compute/v1/UrlMapValidationResult.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapValidationResult.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapValidationResult.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapsAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/UrlMapsAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapsAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapsAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapsScopedList.java b/src/main/java/com/google/cloud/compute/v1/UrlMapsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapsValidateRequest.java b/src/main/java/com/google/cloud/compute/v1/UrlMapsValidateRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapsValidateRequest.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapsValidateRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapsValidateResponse.java b/src/main/java/com/google/cloud/compute/v1/UrlMapsValidateResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlMapsValidateResponse.java rename to src/main/java/com/google/cloud/compute/v1/UrlMapsValidateResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlRewrite.java b/src/main/java/com/google/cloud/compute/v1/UrlRewrite.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UrlRewrite.java rename to src/main/java/com/google/cloud/compute/v1/UrlRewrite.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UsableSubnetwork.java b/src/main/java/com/google/cloud/compute/v1/UsableSubnetwork.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UsableSubnetwork.java rename to src/main/java/com/google/cloud/compute/v1/UsableSubnetwork.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UsableSubnetworkSecondaryRange.java b/src/main/java/com/google/cloud/compute/v1/UsableSubnetworkSecondaryRange.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UsableSubnetworkSecondaryRange.java rename to src/main/java/com/google/cloud/compute/v1/UsableSubnetworkSecondaryRange.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UsableSubnetworksAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/UsableSubnetworksAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UsableSubnetworksAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/UsableSubnetworksAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UsageExportLocation.java b/src/main/java/com/google/cloud/compute/v1/UsageExportLocation.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/UsageExportLocation.java rename to src/main/java/com/google/cloud/compute/v1/UsageExportLocation.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ValidateRegionUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ValidateRegionUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ValidateRegionUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ValidateRegionUrlMapHttpRequest.java index cbec66f7c..3a2f525de 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ValidateRegionUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ValidateRegionUrlMapHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.regionUrlMaps.validate. Runs static validation for the UrlMap. * In particular, the tests of the provided UrlMap will be run. Calling this method does NOT create - * the UrlMap. + * the UrlMap. (== suppress_warning http-rest-shadowed ==) */ public final class ValidateRegionUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ValidateUrlMapHttpRequest.java b/src/main/java/com/google/cloud/compute/v1/ValidateUrlMapHttpRequest.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ValidateUrlMapHttpRequest.java rename to src/main/java/com/google/cloud/compute/v1/ValidateUrlMapHttpRequest.java index 4d7814b15..661a486c1 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ValidateUrlMapHttpRequest.java +++ b/src/main/java/com/google/cloud/compute/v1/ValidateUrlMapHttpRequest.java @@ -27,7 +27,7 @@ /** * Request object for method compute.urlMaps.validate. Runs static validation for the UrlMap. In * particular, the tests of the provided UrlMap will be run. Calling this method does NOT create the - * UrlMap. + * UrlMap. (== suppress_warning http-rest-shadowed ==) */ public final class ValidateUrlMapHttpRequest implements ApiMessage { private final String access_token; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappings.java b/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappings.java rename to src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsInterfaceNatMappings.java b/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsInterfaceNatMappings.java similarity index 68% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsInterfaceNatMappings.java rename to src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsInterfaceNatMappings.java index fdbadf35b..784bfa8fc 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsInterfaceNatMappings.java +++ b/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsInterfaceNatMappings.java @@ -27,24 +27,32 @@ @BetaApi /** Contain information of Nat mapping for an interface of this endpoint. */ public final class VmEndpointNatMappingsInterfaceNatMappings implements ApiMessage { + private final List drainNatIpPortRanges; private final List natIpPortRanges; + private final Integer numTotalDrainNatPorts; private final Integer numTotalNatPorts; private final String sourceAliasIpRange; private final String sourceVirtualIp; private VmEndpointNatMappingsInterfaceNatMappings() { + this.drainNatIpPortRanges = null; this.natIpPortRanges = null; + this.numTotalDrainNatPorts = null; this.numTotalNatPorts = null; this.sourceAliasIpRange = null; this.sourceVirtualIp = null; } private VmEndpointNatMappingsInterfaceNatMappings( + List drainNatIpPortRanges, List natIpPortRanges, + Integer numTotalDrainNatPorts, Integer numTotalNatPorts, String sourceAliasIpRange, String sourceVirtualIp) { + this.drainNatIpPortRanges = drainNatIpPortRanges; this.natIpPortRanges = natIpPortRanges; + this.numTotalDrainNatPorts = numTotalDrainNatPorts; this.numTotalNatPorts = numTotalNatPorts; this.sourceAliasIpRange = sourceAliasIpRange; this.sourceVirtualIp = sourceVirtualIp; @@ -52,9 +60,15 @@ private VmEndpointNatMappingsInterfaceNatMappings( @Override public Object getFieldValue(String fieldName) { + if ("drainNatIpPortRanges".equals(fieldName)) { + return drainNatIpPortRanges; + } if ("natIpPortRanges".equals(fieldName)) { return natIpPortRanges; } + if ("numTotalDrainNatPorts".equals(fieldName)) { + return numTotalDrainNatPorts; + } if ("numTotalNatPorts".equals(fieldName)) { return numTotalNatPorts; } @@ -85,6 +99,15 @@ public List getFieldMask() { return null; } + /** + * List of all drain IP:port-range mappings assigned to this interface. These ranges are + * inclusive, that is, both the first and the last ports can be used for NAT. Example: + * ["2.2.2.2:12345-12355", "1.1.1.1:2234-2234"]. + */ + public List getDrainNatIpPortRangesList() { + return drainNatIpPortRanges; + } + /** * A list of all IP:port-range mappings assigned to this interface. These ranges are inclusive, * that is, both the first and the last ports can be used for NAT. Example: @@ -94,6 +117,14 @@ public List getNatIpPortRangesList() { return natIpPortRanges; } + /** + * Total number of drain ports across all NAT IPs allocated to this interface. It equals to the + * aggregated port number in the field drain_nat_ip_port_ranges. + */ + public Integer getNumTotalDrainNatPorts() { + return numTotalDrainNatPorts; + } + /** * Total number of ports across all NAT IPs allocated to this interface. It equals to the * aggregated port number in the field nat_ip_port_ranges. @@ -138,7 +169,9 @@ public static VmEndpointNatMappingsInterfaceNatMappings getDefaultInstance() { } public static class Builder { + private List drainNatIpPortRanges; private List natIpPortRanges; + private Integer numTotalDrainNatPorts; private Integer numTotalNatPorts; private String sourceAliasIpRange; private String sourceVirtualIp; @@ -147,9 +180,15 @@ public static class Builder { public Builder mergeFrom(VmEndpointNatMappingsInterfaceNatMappings other) { if (other == VmEndpointNatMappingsInterfaceNatMappings.getDefaultInstance()) return this; + if (other.getDrainNatIpPortRangesList() != null) { + this.drainNatIpPortRanges = other.drainNatIpPortRanges; + } if (other.getNatIpPortRangesList() != null) { this.natIpPortRanges = other.natIpPortRanges; } + if (other.getNumTotalDrainNatPorts() != null) { + this.numTotalDrainNatPorts = other.numTotalDrainNatPorts; + } if (other.getNumTotalNatPorts() != null) { this.numTotalNatPorts = other.numTotalNatPorts; } @@ -163,12 +202,49 @@ public Builder mergeFrom(VmEndpointNatMappingsInterfaceNatMappings other) { } Builder(VmEndpointNatMappingsInterfaceNatMappings source) { + this.drainNatIpPortRanges = source.drainNatIpPortRanges; this.natIpPortRanges = source.natIpPortRanges; + this.numTotalDrainNatPorts = source.numTotalDrainNatPorts; this.numTotalNatPorts = source.numTotalNatPorts; this.sourceAliasIpRange = source.sourceAliasIpRange; this.sourceVirtualIp = source.sourceVirtualIp; } + /** + * List of all drain IP:port-range mappings assigned to this interface. These ranges are + * inclusive, that is, both the first and the last ports can be used for NAT. Example: + * ["2.2.2.2:12345-12355", "1.1.1.1:2234-2234"]. + */ + public List getDrainNatIpPortRangesList() { + return drainNatIpPortRanges; + } + + /** + * List of all drain IP:port-range mappings assigned to this interface. These ranges are + * inclusive, that is, both the first and the last ports can be used for NAT. Example: + * ["2.2.2.2:12345-12355", "1.1.1.1:2234-2234"]. + */ + public Builder addAllDrainNatIpPortRanges(List drainNatIpPortRanges) { + if (this.drainNatIpPortRanges == null) { + this.drainNatIpPortRanges = new LinkedList<>(); + } + this.drainNatIpPortRanges.addAll(drainNatIpPortRanges); + return this; + } + + /** + * List of all drain IP:port-range mappings assigned to this interface. These ranges are + * inclusive, that is, both the first and the last ports can be used for NAT. Example: + * ["2.2.2.2:12345-12355", "1.1.1.1:2234-2234"]. + */ + public Builder addDrainNatIpPortRanges(String drainNatIpPortRanges) { + if (this.drainNatIpPortRanges == null) { + this.drainNatIpPortRanges = new LinkedList<>(); + } + this.drainNatIpPortRanges.add(drainNatIpPortRanges); + return this; + } + /** * A list of all IP:port-range mappings assigned to this interface. These ranges are inclusive, * that is, both the first and the last ports can be used for NAT. Example: @@ -204,6 +280,23 @@ public Builder addNatIpPortRanges(String natIpPortRanges) { return this; } + /** + * Total number of drain ports across all NAT IPs allocated to this interface. It equals to the + * aggregated port number in the field drain_nat_ip_port_ranges. + */ + public Integer getNumTotalDrainNatPorts() { + return numTotalDrainNatPorts; + } + + /** + * Total number of drain ports across all NAT IPs allocated to this interface. It equals to the + * aggregated port number in the field drain_nat_ip_port_ranges. + */ + public Builder setNumTotalDrainNatPorts(Integer numTotalDrainNatPorts) { + this.numTotalDrainNatPorts = numTotalDrainNatPorts; + return this; + } + /** * Total number of ports across all NAT IPs allocated to this interface. It equals to the * aggregated port number in the field nat_ip_port_ranges. @@ -252,12 +345,19 @@ public Builder setSourceVirtualIp(String sourceVirtualIp) { public VmEndpointNatMappingsInterfaceNatMappings build() { return new VmEndpointNatMappingsInterfaceNatMappings( - natIpPortRanges, numTotalNatPorts, sourceAliasIpRange, sourceVirtualIp); + drainNatIpPortRanges, + natIpPortRanges, + numTotalDrainNatPorts, + numTotalNatPorts, + sourceAliasIpRange, + sourceVirtualIp); } public Builder clone() { Builder newBuilder = new Builder(); + newBuilder.addAllDrainNatIpPortRanges(this.drainNatIpPortRanges); newBuilder.addAllNatIpPortRanges(this.natIpPortRanges); + newBuilder.setNumTotalDrainNatPorts(this.numTotalDrainNatPorts); newBuilder.setNumTotalNatPorts(this.numTotalNatPorts); newBuilder.setSourceAliasIpRange(this.sourceAliasIpRange); newBuilder.setSourceVirtualIp(this.sourceVirtualIp); @@ -268,9 +368,15 @@ public Builder clone() { @Override public String toString() { return "VmEndpointNatMappingsInterfaceNatMappings{" + + "drainNatIpPortRanges=" + + drainNatIpPortRanges + + ", " + "natIpPortRanges=" + natIpPortRanges + ", " + + "numTotalDrainNatPorts=" + + numTotalDrainNatPorts + + ", " + "numTotalNatPorts=" + numTotalNatPorts + ", " @@ -290,7 +396,9 @@ public boolean equals(Object o) { if (o instanceof VmEndpointNatMappingsInterfaceNatMappings) { VmEndpointNatMappingsInterfaceNatMappings that = (VmEndpointNatMappingsInterfaceNatMappings) o; - return Objects.equals(this.natIpPortRanges, that.getNatIpPortRangesList()) + return Objects.equals(this.drainNatIpPortRanges, that.getDrainNatIpPortRangesList()) + && Objects.equals(this.natIpPortRanges, that.getNatIpPortRangesList()) + && Objects.equals(this.numTotalDrainNatPorts, that.getNumTotalDrainNatPorts()) && Objects.equals(this.numTotalNatPorts, that.getNumTotalNatPorts()) && Objects.equals(this.sourceAliasIpRange, that.getSourceAliasIpRange()) && Objects.equals(this.sourceVirtualIp, that.getSourceVirtualIp()); @@ -300,6 +408,12 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(natIpPortRanges, numTotalNatPorts, sourceAliasIpRange, sourceVirtualIp); + return Objects.hash( + drainNatIpPortRanges, + natIpPortRanges, + numTotalDrainNatPorts, + numTotalNatPorts, + sourceAliasIpRange, + sourceVirtualIp); } } diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsList.java b/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsList.java rename to src/main/java/com/google/cloud/compute/v1/VmEndpointNatMappingsList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGateway.java b/src/main/java/com/google/cloud/compute/v1/VpnGateway.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGateway.java rename to src/main/java/com/google/cloud/compute/v1/VpnGateway.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewayAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewayAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayClient.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewayClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayClient.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewayClient.java index 7134f7d0b..6b9206262 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayClient.java +++ b/src/main/java/com/google/cloud/compute/v1/VpnGatewayClient.java @@ -153,7 +153,7 @@ public VpnGatewayStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN gateways. + * Retrieves an aggregated list of VPN gateways. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -181,7 +181,7 @@ public final AggregatedListVpnGatewaysPagedResponse aggregatedListVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN gateways. + * Retrieves an aggregated list of VPN gateways. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -206,7 +206,7 @@ public final AggregatedListVpnGatewaysPagedResponse aggregatedListVpnGateways(St // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN gateways. + * Retrieves an aggregated list of VPN gateways. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -233,7 +233,7 @@ public final AggregatedListVpnGatewaysPagedResponse aggregatedListVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN gateways. + * Retrieves an aggregated list of VPN gateways. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -260,7 +260,7 @@ public final AggregatedListVpnGatewaysPagedResponse aggregatedListVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN gateways. + * Retrieves an aggregated list of VPN gateways. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -293,7 +293,7 @@ public final AggregatedListVpnGatewaysPagedResponse aggregatedListVpnGateways( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified VPN gateway. + * Deletes the specified VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -319,7 +319,7 @@ public final Operation deleteVpnGateway(ProjectRegionVpnGatewayName vpnGateway) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified VPN gateway. + * Deletes the specified VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -343,7 +343,7 @@ public final Operation deleteVpnGateway(String vpnGateway) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified VPN gateway. + * Deletes the specified VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -367,7 +367,7 @@ public final Operation deleteVpnGateway(DeleteVpnGatewayHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified VPN gateway. + * Deletes the specified VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -391,7 +391,7 @@ public final UnaryCallable deleteVpnGate // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified VPN gateway. Gets a list of available VPN gateways by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -418,7 +418,7 @@ public final VpnGateway getVpnGateway(ProjectRegionVpnGatewayName vpnGateway) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified VPN gateway. Gets a list of available VPN gateways by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -443,7 +443,7 @@ public final VpnGateway getVpnGateway(String vpnGateway) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified VPN gateway. Gets a list of available VPN gateways by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -468,7 +468,7 @@ public final VpnGateway getVpnGateway(GetVpnGatewayHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified VPN gateway. Gets a list of available VPN gateways by making a list() - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -491,7 +491,7 @@ public final UnaryCallable getVpnGatewayCa // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the status for the specified VPN gateway. + * Returns the status for the specified VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -518,7 +518,7 @@ public final VpnGatewaysGetStatusResponse getStatusVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the status for the specified VPN gateway. + * Returns the status for the specified VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -542,7 +542,7 @@ public final VpnGatewaysGetStatusResponse getStatusVpnGateway(String vpnGateway) // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the status for the specified VPN gateway. + * Returns the status for the specified VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -567,7 +567,7 @@ public final VpnGatewaysGetStatusResponse getStatusVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns the status for the specified VPN gateway. + * Returns the status for the specified VPN gateway. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -592,7 +592,7 @@ public final VpnGatewaysGetStatusResponse getStatusVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a VPN gateway in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -622,7 +622,7 @@ public final Operation insertVpnGateway(ProjectRegionName region, VpnGateway vpn // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a VPN gateway in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -652,7 +652,7 @@ public final Operation insertVpnGateway(String region, VpnGateway vpnGatewayReso // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a VPN gateway in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -679,7 +679,7 @@ public final Operation insertVpnGateway(InsertVpnGatewayHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a VPN gateway in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -704,7 +704,8 @@ public final UnaryCallable insertVpnGate // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VPN gateways available to the specified project and region. + * Retrieves a list of VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -731,7 +732,8 @@ public final ListVpnGatewaysPagedResponse listVpnGateways(ProjectRegionName regi // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VPN gateways available to the specified project and region. + * Retrieves a list of VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -756,7 +758,8 @@ public final ListVpnGatewaysPagedResponse listVpnGateways(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VPN gateways available to the specified project and region. + * Retrieves a list of VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -782,7 +785,8 @@ public final ListVpnGatewaysPagedResponse listVpnGateways(ListVpnGatewaysHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VPN gateways available to the specified project and region. + * Retrieves a list of VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -808,7 +812,8 @@ public final ListVpnGatewaysPagedResponse listVpnGateways(ListVpnGatewaysHttpReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VPN gateways available to the specified project and region. + * Retrieves a list of VPN gateways available to the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -841,7 +846,7 @@ public final UnaryCallable listVpnGa // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a VpnGateway. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -873,7 +878,7 @@ public final Operation setLabelsVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a VpnGateway. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -904,7 +909,7 @@ public final Operation setLabelsVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a VpnGateway. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -931,7 +936,7 @@ public final Operation setLabelsVpnGateway(SetLabelsVpnGatewayHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Sets the labels on a VpnGateway. To learn more about labels, read the Labeling Resources - * documentation. + * documentation. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -957,7 +962,8 @@ public final Operation setLabelsVpnGateway(SetLabelsVpnGatewayHttpRequest reques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -988,7 +994,8 @@ public final TestPermissionsResponse testIamPermissionsVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1018,7 +1025,8 @@ public final TestPermissionsResponse testIamPermissionsVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -1045,7 +1053,8 @@ public final TestPermissionsResponse testIamPermissionsVpnGateway( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on the specified resource. + * Returns permissions that a caller has on the specified resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayList.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewayList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayList.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewayList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewaySettings.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewaySettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewaySettings.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewaySettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatus.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatus.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatus.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewayStatus.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusHighAvailabilityRequirementState.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusHighAvailabilityRequirementState.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusHighAvailabilityRequirementState.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusHighAvailabilityRequirementState.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusTunnel.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusTunnel.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusTunnel.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusTunnel.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusVpnConnection.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusVpnConnection.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusVpnConnection.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewayStatusVpnConnection.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayVpnGatewayInterface.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewayVpnGatewayInterface.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewayVpnGatewayInterface.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewayVpnGatewayInterface.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewaysGetStatusResponse.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewaysGetStatusResponse.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewaysGetStatusResponse.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewaysGetStatusResponse.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewaysScopedList.java b/src/main/java/com/google/cloud/compute/v1/VpnGatewaysScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnGatewaysScopedList.java rename to src/main/java/com/google/cloud/compute/v1/VpnGatewaysScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnel.java b/src/main/java/com/google/cloud/compute/v1/VpnTunnel.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnel.java rename to src/main/java/com/google/cloud/compute/v1/VpnTunnel.java index ece80e9b1..5f461fe82 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnel.java +++ b/src/main/java/com/google/cloud/compute/v1/VpnTunnel.java @@ -355,7 +355,13 @@ public String getSharedSecretHash() { * peer VPN. - NETWORK_ERROR: Deprecated, replaced by NO_INCOMING_PACKETS - AUTHORIZATION_ERROR: * Auth error (for example, bad shared secret). - NEGOTIATION_FAILURE: Handshake failed. - * DEPROVISIONING: Resources are being deallocated for the VPN tunnel. - FAILED: Tunnel creation - * has failed and the tunnel is not ready to be used. + * has failed and the tunnel is not ready to be used. - NO_INCOMING_PACKETS: No incoming packets + * from peer. - REJECTED: Tunnel configuration was rejected, can be result of being blacklisted. - + * ALLOCATING_RESOURCES: Cloud VPN is in the process of allocating all required resources. - + * STOPPED: Tunnel is stopped due to its Forwarding Rules being deleted for Classic VPN tunnels or + * the project is in frozen state. - PEER_IDENTITY_MISMATCH: Peer identity does not match peer IP, + * probably behind NAT. - TS_NARROWING_NOT_ALLOWED: Traffic selector narrowing not allowed for an + * HA-VPN tunnel. */ public String getStatus() { return status; @@ -849,6 +855,12 @@ public Builder setSharedSecretHash(String sharedSecretHash) { * NO_INCOMING_PACKETS - AUTHORIZATION_ERROR: Auth error (for example, bad shared secret). - * NEGOTIATION_FAILURE: Handshake failed. - DEPROVISIONING: Resources are being deallocated for * the VPN tunnel. - FAILED: Tunnel creation has failed and the tunnel is not ready to be used. + * - NO_INCOMING_PACKETS: No incoming packets from peer. - REJECTED: Tunnel configuration was + * rejected, can be result of being blacklisted. - ALLOCATING_RESOURCES: Cloud VPN is in the + * process of allocating all required resources. - STOPPED: Tunnel is stopped due to its + * Forwarding Rules being deleted for Classic VPN tunnels or the project is in frozen state. - + * PEER_IDENTITY_MISMATCH: Peer identity does not match peer IP, probably behind NAT. - + * TS_NARROWING_NOT_ALLOWED: Traffic selector narrowing not allowed for an HA-VPN tunnel. */ public String getStatus() { return status; @@ -864,6 +876,12 @@ public String getStatus() { * NO_INCOMING_PACKETS - AUTHORIZATION_ERROR: Auth error (for example, bad shared secret). - * NEGOTIATION_FAILURE: Handshake failed. - DEPROVISIONING: Resources are being deallocated for * the VPN tunnel. - FAILED: Tunnel creation has failed and the tunnel is not ready to be used. + * - NO_INCOMING_PACKETS: No incoming packets from peer. - REJECTED: Tunnel configuration was + * rejected, can be result of being blacklisted. - ALLOCATING_RESOURCES: Cloud VPN is in the + * process of allocating all required resources. - STOPPED: Tunnel is stopped due to its + * Forwarding Rules being deleted for Classic VPN tunnels or the project is in frozen state. - + * PEER_IDENTITY_MISMATCH: Peer identity does not match peer IP, probably behind NAT. - + * TS_NARROWING_NOT_ALLOWED: Traffic selector narrowing not allowed for an HA-VPN tunnel. */ public Builder setStatus(String status) { this.status = status; diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelAggregatedList.java b/src/main/java/com/google/cloud/compute/v1/VpnTunnelAggregatedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelAggregatedList.java rename to src/main/java/com/google/cloud/compute/v1/VpnTunnelAggregatedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelClient.java b/src/main/java/com/google/cloud/compute/v1/VpnTunnelClient.java similarity index 95% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelClient.java rename to src/main/java/com/google/cloud/compute/v1/VpnTunnelClient.java index 6c851a862..69e827b76 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelClient.java +++ b/src/main/java/com/google/cloud/compute/v1/VpnTunnelClient.java @@ -153,7 +153,7 @@ public VpnTunnelStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN tunnels. + * Retrieves an aggregated list of VPN tunnels. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -180,7 +180,7 @@ public final AggregatedListVpnTunnelsPagedResponse aggregatedListVpnTunnels(Proj // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN tunnels. + * Retrieves an aggregated list of VPN tunnels. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +205,7 @@ public final AggregatedListVpnTunnelsPagedResponse aggregatedListVpnTunnels(Stri // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN tunnels. + * Retrieves an aggregated list of VPN tunnels. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -232,7 +232,7 @@ public final AggregatedListVpnTunnelsPagedResponse aggregatedListVpnTunnels( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN tunnels. + * Retrieves an aggregated list of VPN tunnels. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -259,7 +259,7 @@ public final AggregatedListVpnTunnelsPagedResponse aggregatedListVpnTunnels( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves an aggregated list of VPN tunnels. + * Retrieves an aggregated list of VPN tunnels. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -292,7 +292,7 @@ public final AggregatedListVpnTunnelsPagedResponse aggregatedListVpnTunnels( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified VpnTunnel resource. + * Deletes the specified VpnTunnel resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -318,7 +318,7 @@ public final Operation deleteVpnTunnel(ProjectRegionVpnTunnelName vpnTunnel) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified VpnTunnel resource. + * Deletes the specified VpnTunnel resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -342,7 +342,7 @@ public final Operation deleteVpnTunnel(String vpnTunnel) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified VpnTunnel resource. + * Deletes the specified VpnTunnel resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -366,7 +366,7 @@ public final Operation deleteVpnTunnel(DeleteVpnTunnelHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified VpnTunnel resource. + * Deletes the specified VpnTunnel resource. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -390,7 +390,7 @@ public final UnaryCallable deleteVpnTunne // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified VpnTunnel resource. Gets a list of available VPN tunnels by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -417,7 +417,7 @@ public final VpnTunnel getVpnTunnel(ProjectRegionVpnTunnelName vpnTunnel) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified VpnTunnel resource. Gets a list of available VPN tunnels by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -442,7 +442,7 @@ public final VpnTunnel getVpnTunnel(String vpnTunnel) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified VpnTunnel resource. Gets a list of available VPN tunnels by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -467,7 +467,7 @@ public final VpnTunnel getVpnTunnel(GetVpnTunnelHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified VpnTunnel resource. Gets a list of available VPN tunnels by making a - * list() request. + * list() request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -491,7 +491,7 @@ public final UnaryCallable getVpnTunnelCalla // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a VpnTunnel resource in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -523,7 +523,7 @@ public final Operation insertVpnTunnel(ProjectRegionName region, VpnTunnel vpnTu // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a VpnTunnel resource in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -555,7 +555,7 @@ public final Operation insertVpnTunnel(String region, VpnTunnel vpnTunnelResourc // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a VpnTunnel resource in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -582,7 +582,7 @@ public final Operation insertVpnTunnel(InsertVpnTunnelHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Creates a VpnTunnel resource in the specified project and region using the data included in the - * request. + * request. (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -607,7 +607,8 @@ public final UnaryCallable insertVpnTunne // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VpnTunnel resources contained in the specified project and region. + * Retrieves a list of VpnTunnel resources contained in the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -634,7 +635,8 @@ public final ListVpnTunnelsPagedResponse listVpnTunnels(ProjectRegionName region // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VpnTunnel resources contained in the specified project and region. + * Retrieves a list of VpnTunnel resources contained in the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -659,7 +661,8 @@ public final ListVpnTunnelsPagedResponse listVpnTunnels(String region) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VpnTunnel resources contained in the specified project and region. + * Retrieves a list of VpnTunnel resources contained in the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -685,7 +688,8 @@ public final ListVpnTunnelsPagedResponse listVpnTunnels(ListVpnTunnelsHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VpnTunnel resources contained in the specified project and region. + * Retrieves a list of VpnTunnel resources contained in the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -711,7 +715,8 @@ public final ListVpnTunnelsPagedResponse listVpnTunnels(ListVpnTunnelsHttpReques // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of VpnTunnel resources contained in the specified project and region. + * Retrieves a list of VpnTunnel resources contained in the specified project and region. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelList.java b/src/main/java/com/google/cloud/compute/v1/VpnTunnelList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelList.java rename to src/main/java/com/google/cloud/compute/v1/VpnTunnelList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelSettings.java b/src/main/java/com/google/cloud/compute/v1/VpnTunnelSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelSettings.java rename to src/main/java/com/google/cloud/compute/v1/VpnTunnelSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelsScopedList.java b/src/main/java/com/google/cloud/compute/v1/VpnTunnelsScopedList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/VpnTunnelsScopedList.java rename to src/main/java/com/google/cloud/compute/v1/VpnTunnelsScopedList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Warning.java b/src/main/java/com/google/cloud/compute/v1/Warning.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Warning.java rename to src/main/java/com/google/cloud/compute/v1/Warning.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Warnings.java b/src/main/java/com/google/cloud/compute/v1/Warnings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Warnings.java rename to src/main/java/com/google/cloud/compute/v1/Warnings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/WeightedBackendService.java b/src/main/java/com/google/cloud/compute/v1/WeightedBackendService.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/WeightedBackendService.java rename to src/main/java/com/google/cloud/compute/v1/WeightedBackendService.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/XpnHostList.java b/src/main/java/com/google/cloud/compute/v1/XpnHostList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/XpnHostList.java rename to src/main/java/com/google/cloud/compute/v1/XpnHostList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/XpnResourceId.java b/src/main/java/com/google/cloud/compute/v1/XpnResourceId.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/XpnResourceId.java rename to src/main/java/com/google/cloud/compute/v1/XpnResourceId.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Zone.java b/src/main/java/com/google/cloud/compute/v1/Zone.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/Zone.java rename to src/main/java/com/google/cloud/compute/v1/Zone.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneClient.java b/src/main/java/com/google/cloud/compute/v1/ZoneClient.java similarity index 96% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneClient.java rename to src/main/java/com/google/cloud/compute/v1/ZoneClient.java index 9f009716b..fdca12aab 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneClient.java +++ b/src/main/java/com/google/cloud/compute/v1/ZoneClient.java @@ -154,6 +154,7 @@ public ZoneStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Zone resource. Gets a list of available zones by making a list() request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -178,6 +179,7 @@ public final Zone getZone(ProjectZoneName zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Zone resource. Gets a list of available zones by making a list() request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -201,6 +203,7 @@ public final Zone getZone(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Zone resource. Gets a list of available zones by making a list() request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -225,6 +228,7 @@ public final Zone getZone(GetZoneHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** * Returns the specified Zone resource. Gets a list of available zones by making a list() request. + * (== suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -247,7 +251,8 @@ public final UnaryCallable getZoneCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Zone resources available to the specified project. + * Retrieves the list of Zone resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -274,7 +279,8 @@ public final ListZonesPagedResponse listZones(ProjectName project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Zone resources available to the specified project. + * Retrieves the list of Zone resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -298,7 +304,8 @@ public final ListZonesPagedResponse listZones(String project) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Zone resources available to the specified project. + * Retrieves the list of Zone resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -324,7 +331,8 @@ public final ListZonesPagedResponse listZones(ListZonesHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Zone resources available to the specified project. + * Retrieves the list of Zone resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -350,7 +358,8 @@ public final ListZonesPagedResponse listZones(ListZonesHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the list of Zone resources available to the specified project. + * Retrieves the list of Zone resources available to the specified project. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneList.java b/src/main/java/com/google/cloud/compute/v1/ZoneList.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneList.java rename to src/main/java/com/google/cloud/compute/v1/ZoneList.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneOperationClient.java b/src/main/java/com/google/cloud/compute/v1/ZoneOperationClient.java similarity index 94% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneOperationClient.java rename to src/main/java/com/google/cloud/compute/v1/ZoneOperationClient.java index 84e753551..976d7b1cf 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneOperationClient.java +++ b/src/main/java/com/google/cloud/compute/v1/ZoneOperationClient.java @@ -155,7 +155,8 @@ public ZoneOperationStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified zone-specific Operations resource. + * Deletes the specified zone-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -181,7 +182,8 @@ public final void deleteZoneOperation(ProjectZoneOperationName operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified zone-specific Operations resource. + * Deletes the specified zone-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -205,7 +207,8 @@ public final void deleteZoneOperation(String operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified zone-specific Operations resource. + * Deletes the specified zone-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -229,7 +232,8 @@ public final void deleteZoneOperation(DeleteZoneOperationHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes the specified zone-specific Operations resource. + * Deletes the specified zone-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -252,7 +256,8 @@ public final UnaryCallable deleteZoneOpera // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the specified zone-specific Operations resource. + * Retrieves the specified zone-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -278,7 +283,8 @@ public final Operation getZoneOperation(ProjectZoneOperationName operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the specified zone-specific Operations resource. + * Retrieves the specified zone-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -302,7 +308,8 @@ public final Operation getZoneOperation(String operation) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the specified zone-specific Operations resource. + * Retrieves the specified zone-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -326,7 +333,8 @@ public final Operation getZoneOperation(GetZoneOperationHttpRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves the specified zone-specific Operations resource. + * Retrieves the specified zone-specific Operations resource. (== suppress_warning + * http-rest-shadowed ==) * *

Sample code: * @@ -349,7 +357,8 @@ public final UnaryCallable getZoneOperat // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified zone. + * Retrieves a list of Operation resources contained within the specified zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -376,7 +385,8 @@ public final ListZoneOperationsPagedResponse listZoneOperations(ProjectZoneName // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified zone. + * Retrieves a list of Operation resources contained within the specified zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -401,7 +411,8 @@ public final ListZoneOperationsPagedResponse listZoneOperations(String zone) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified zone. + * Retrieves a list of Operation resources contained within the specified zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -428,7 +439,8 @@ public final ListZoneOperationsPagedResponse listZoneOperations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified zone. + * Retrieves a list of Operation resources contained within the specified zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * @@ -454,7 +466,8 @@ public final ListZoneOperationsPagedResponse listZoneOperations( // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Retrieves a list of Operation resources contained within the specified zone. + * Retrieves a list of Operation resources contained within the specified zone. (== + * suppress_warning http-rest-shadowed ==) * *

Sample code: * diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneOperationSettings.java b/src/main/java/com/google/cloud/compute/v1/ZoneOperationSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneOperationSettings.java rename to src/main/java/com/google/cloud/compute/v1/ZoneOperationSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneSetLabelsRequest.java b/src/main/java/com/google/cloud/compute/v1/ZoneSetLabelsRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneSetLabelsRequest.java rename to src/main/java/com/google/cloud/compute/v1/ZoneSetLabelsRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneSetPolicyRequest.java b/src/main/java/com/google/cloud/compute/v1/ZoneSetPolicyRequest.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneSetPolicyRequest.java rename to src/main/java/com/google/cloud/compute/v1/ZoneSetPolicyRequest.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneSettings.java b/src/main/java/com/google/cloud/compute/v1/ZoneSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/ZoneSettings.java rename to src/main/java/com/google/cloud/compute/v1/ZoneSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/package-info.java b/src/main/java/com/google/cloud/compute/v1/package-info.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/package-info.java rename to src/main/java/com/google/cloud/compute/v1/package-info.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AcceleratorTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/AcceleratorTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AcceleratorTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/AcceleratorTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AcceleratorTypeStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/AcceleratorTypeStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AcceleratorTypeStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/AcceleratorTypeStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AddressStub.java b/src/main/java/com/google/cloud/compute/v1/stub/AddressStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AddressStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/AddressStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AddressStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/AddressStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AddressStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/AddressStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AutoscalerStub.java b/src/main/java/com/google/cloud/compute/v1/stub/AutoscalerStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AutoscalerStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/AutoscalerStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AutoscalerStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/AutoscalerStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/AutoscalerStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/AutoscalerStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/BackendBucketStub.java b/src/main/java/com/google/cloud/compute/v1/stub/BackendBucketStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/BackendBucketStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/BackendBucketStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/BackendBucketStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/BackendBucketStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/BackendBucketStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/BackendBucketStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/BackendServiceStub.java b/src/main/java/com/google/cloud/compute/v1/stub/BackendServiceStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/BackendServiceStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/BackendServiceStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/BackendServiceStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/BackendServiceStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/BackendServiceStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/BackendServiceStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/DiskStub.java b/src/main/java/com/google/cloud/compute/v1/stub/DiskStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/DiskStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/DiskStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/DiskStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/DiskStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/DiskStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/DiskStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/DiskTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/DiskTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/DiskTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/DiskTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/DiskTypeStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/DiskTypeStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/DiskTypeStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/DiskTypeStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ExternalVpnGatewayStub.java b/src/main/java/com/google/cloud/compute/v1/stub/ExternalVpnGatewayStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ExternalVpnGatewayStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/ExternalVpnGatewayStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ExternalVpnGatewayStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/ExternalVpnGatewayStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ExternalVpnGatewayStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/ExternalVpnGatewayStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/FirewallStub.java b/src/main/java/com/google/cloud/compute/v1/stub/FirewallStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/FirewallStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/FirewallStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/FirewallStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/FirewallStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/FirewallStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/FirewallStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ForwardingRuleStub.java b/src/main/java/com/google/cloud/compute/v1/stub/ForwardingRuleStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ForwardingRuleStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/ForwardingRuleStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ForwardingRuleStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/ForwardingRuleStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ForwardingRuleStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/ForwardingRuleStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalAddressStub.java b/src/main/java/com/google/cloud/compute/v1/stub/GlobalAddressStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalAddressStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/GlobalAddressStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalAddressStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/GlobalAddressStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalAddressStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/GlobalAddressStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalForwardingRuleStub.java b/src/main/java/com/google/cloud/compute/v1/stub/GlobalForwardingRuleStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalForwardingRuleStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/GlobalForwardingRuleStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalForwardingRuleStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/GlobalForwardingRuleStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalForwardingRuleStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/GlobalForwardingRuleStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalOperationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/GlobalOperationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalOperationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/GlobalOperationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalOperationStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/GlobalOperationStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/GlobalOperationStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/GlobalOperationStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HealthCheckStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HealthCheckStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HealthCheckStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HealthCheckStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HealthCheckStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/HealthCheckStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HealthCheckStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/HealthCheckStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpHealthCheckStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpHealthCheckStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpHealthCheckStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpHealthCheckStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpHealthCheckStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpHealthCheckStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpHealthCheckStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpHealthCheckStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAcceleratorTypeCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAcceleratorTypeCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAcceleratorTypeCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAcceleratorTypeCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAcceleratorTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAcceleratorTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAcceleratorTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAcceleratorTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAddressCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAddressCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAddressCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAddressCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAddressStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAddressStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAddressStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAddressStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAutoscalerCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAutoscalerCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAutoscalerCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAutoscalerCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAutoscalerStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAutoscalerStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAutoscalerStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonAutoscalerStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendBucketCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendBucketCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendBucketCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendBucketCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendBucketStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendBucketStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendBucketStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendBucketStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendServiceCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendServiceCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendServiceCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendServiceCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendServiceStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendServiceStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendServiceStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonBackendServiceStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskTypeCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskTypeCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskTypeCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskTypeCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonDiskTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonExternalVpnGatewayCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonExternalVpnGatewayCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonExternalVpnGatewayCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonExternalVpnGatewayCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonExternalVpnGatewayStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonExternalVpnGatewayStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonExternalVpnGatewayStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonExternalVpnGatewayStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonFirewallCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonFirewallCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonFirewallCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonFirewallCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonFirewallStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonFirewallStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonFirewallStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonFirewallStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonForwardingRuleCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonForwardingRuleCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonForwardingRuleCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonForwardingRuleCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonForwardingRuleStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonForwardingRuleStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonForwardingRuleStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonForwardingRuleStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalAddressCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalAddressCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalAddressCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalAddressCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalAddressStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalAddressStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalAddressStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalAddressStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalForwardingRuleCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalForwardingRuleCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalForwardingRuleCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalForwardingRuleCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalForwardingRuleStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalForwardingRuleStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalForwardingRuleStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalForwardingRuleStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalOperationCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalOperationCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalOperationCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalOperationCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalOperationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalOperationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalOperationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonGlobalOperationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHealthCheckCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHealthCheckCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHealthCheckCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHealthCheckCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHealthCheckStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHealthCheckStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHealthCheckStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHealthCheckStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpHealthCheckCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpHealthCheckCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpHealthCheckCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpHealthCheckCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpHealthCheckStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpHealthCheckStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpHealthCheckStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpHealthCheckStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpsHealthCheckCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpsHealthCheckCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpsHealthCheckCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpsHealthCheckCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpsHealthCheckStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpsHealthCheckStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpsHealthCheckStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonHttpsHealthCheckStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonImageCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonImageCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonImageCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonImageCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonImageStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonImageStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonImageStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonImageStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupManagerCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupManagerCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupManagerCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupManagerCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupManagerStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupManagerStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupManagerStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupManagerStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceGroupStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceTemplateCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceTemplateCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceTemplateCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceTemplateCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceTemplateStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceTemplateStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceTemplateStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInstanceTemplateStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectAttachmentCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectAttachmentCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectAttachmentCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectAttachmentCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectAttachmentStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectAttachmentStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectAttachmentStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectAttachmentStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectLocationCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectLocationCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectLocationCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectLocationCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectLocationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectLocationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectLocationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectLocationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonInterconnectStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCodeCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCodeCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCodeCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCodeCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCodeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCodeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCodeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseCodeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonLicenseStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonMachineTypeCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonMachineTypeCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonMachineTypeCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonMachineTypeCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonMachineTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonMachineTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonMachineTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonMachineTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkEndpointGroupCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkEndpointGroupCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkEndpointGroupCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkEndpointGroupCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkEndpointGroupStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkEndpointGroupStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkEndpointGroupStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkEndpointGroupStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNetworkStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeGroupCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeGroupCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeGroupCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeGroupCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeGroupStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeGroupStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeGroupStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeGroupStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTemplateCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTemplateCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTemplateCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTemplateCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTemplateStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTemplateStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTemplateStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTemplateStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTypeCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTypeCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTypeCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTypeCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonNodeTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonProjectCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonProjectCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonProjectCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonProjectCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonProjectStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonProjectStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonProjectStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonProjectStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionAutoscalerCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionAutoscalerCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionAutoscalerCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionAutoscalerCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionAutoscalerStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionAutoscalerStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionAutoscalerStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionAutoscalerStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionBackendServiceCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionBackendServiceCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionBackendServiceCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionBackendServiceCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionBackendServiceStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionBackendServiceStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionBackendServiceStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionBackendServiceStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCommitmentCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCommitmentCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCommitmentCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCommitmentCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCommitmentStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCommitmentStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCommitmentStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionCommitmentStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskTypeCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskTypeCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskTypeCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskTypeCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionDiskTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionHealthCheckCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionHealthCheckCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionHealthCheckCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionHealthCheckCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionHealthCheckStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionHealthCheckStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionHealthCheckStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionHealthCheckStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupManagerCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupManagerCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupManagerCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupManagerCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupManagerStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupManagerStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupManagerStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupManagerStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionInstanceGroupStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionOperationCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionOperationCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionOperationCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionOperationCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionOperationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionOperationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionOperationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionOperationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionSslCertificateCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionSslCertificateCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionSslCertificateCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionSslCertificateCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionSslCertificateStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionSslCertificateStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionSslCertificateStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionSslCertificateStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpProxyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpProxyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpProxyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpProxyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpsProxyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpsProxyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpsProxyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpsProxyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpsProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpsProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpsProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionTargetHttpsProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionUrlMapCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionUrlMapCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionUrlMapCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionUrlMapCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionUrlMapStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionUrlMapStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionUrlMapStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRegionUrlMapStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonReservationCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonReservationCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonReservationCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonReservationCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonReservationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonReservationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonReservationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonReservationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonResourcePolicyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonResourcePolicyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonResourcePolicyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonResourcePolicyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonResourcePolicyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonResourcePolicyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonResourcePolicyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonResourcePolicyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouteCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouteCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouteCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouteCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouteStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouteStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouteStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouteStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouterCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouterCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouterCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouterCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouterStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouterStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouterStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonRouterStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSecurityPolicyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSecurityPolicyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSecurityPolicyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSecurityPolicyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSecurityPolicyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSecurityPolicyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSecurityPolicyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSecurityPolicyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSnapshotCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSnapshotCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSnapshotCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSnapshotCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSnapshotStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSnapshotStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSnapshotStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSnapshotStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslCertificateCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslCertificateCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslCertificateCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslCertificateCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslCertificateStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslCertificateStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslCertificateStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslCertificateStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslPolicyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslPolicyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslPolicyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslPolicyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslPolicyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslPolicyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslPolicyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSslPolicyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkStub.java similarity index 99% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkStub.java index 80cad7918..266b40cb0 100644 --- a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkStub.java +++ b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonSubnetworkStub.java @@ -251,7 +251,7 @@ public class HttpJsonSubnetworkStub extends SubnetworkStub { .setPathTemplate( PathTemplate.create( "{project}/regions/{region}/subnetworks/{subnetwork}")) - .setQueryParams(Sets.newHashSet("requestId")) + .setQueryParams(Sets.newHashSet("drainTimeoutSeconds", "requestId")) .setResourceNameFactory(ProjectRegionSubnetworkName.newFactory()) .setResourceNameField("subnetwork") .build()) diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpProxyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpProxyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpProxyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpProxyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpsProxyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpsProxyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpsProxyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpsProxyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpsProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpsProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpsProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetHttpsProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetInstanceCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetInstanceCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetInstanceCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetInstanceCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetInstanceStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetInstanceStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetInstanceStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetInstanceStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetPoolCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetPoolCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetPoolCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetPoolCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetPoolStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetPoolStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetPoolStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetPoolStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetSslProxyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetSslProxyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetSslProxyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetSslProxyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetSslProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetSslProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetSslProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetSslProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetTcpProxyCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetTcpProxyCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetTcpProxyCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetTcpProxyCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetTcpProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetTcpProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetTcpProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetTcpProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetVpnGatewayCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetVpnGatewayCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetVpnGatewayCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetVpnGatewayCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetVpnGatewayStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetVpnGatewayStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetVpnGatewayStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonTargetVpnGatewayStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonUrlMapCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonUrlMapCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonUrlMapCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonUrlMapCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonUrlMapStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonUrlMapStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonUrlMapStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonUrlMapStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnGatewayCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnGatewayCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnGatewayCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnGatewayCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnGatewayStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnGatewayStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnGatewayStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnGatewayStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnTunnelCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnTunnelCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnTunnelCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnTunnelCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnTunnelStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnTunnelStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnTunnelStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonVpnTunnelStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneOperationCallableFactory.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneOperationCallableFactory.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneOperationCallableFactory.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneOperationCallableFactory.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneOperationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneOperationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneOperationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneOperationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpJsonZoneStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpsHealthCheckStub.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpsHealthCheckStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpsHealthCheckStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpsHealthCheckStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpsHealthCheckStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/HttpsHealthCheckStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/HttpsHealthCheckStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/HttpsHealthCheckStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ImageStub.java b/src/main/java/com/google/cloud/compute/v1/stub/ImageStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ImageStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/ImageStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ImageStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/ImageStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ImageStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/ImageStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupManagerStub.java b/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupManagerStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupManagerStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupManagerStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupManagerStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupManagerStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupManagerStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupManagerStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupStub.java b/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/InstanceGroupStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceStub.java b/src/main/java/com/google/cloud/compute/v1/stub/InstanceStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/InstanceStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/InstanceStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/InstanceStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceTemplateStub.java b/src/main/java/com/google/cloud/compute/v1/stub/InstanceTemplateStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceTemplateStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/InstanceTemplateStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceTemplateStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/InstanceTemplateStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InstanceTemplateStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/InstanceTemplateStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectAttachmentStub.java b/src/main/java/com/google/cloud/compute/v1/stub/InterconnectAttachmentStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectAttachmentStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/InterconnectAttachmentStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectAttachmentStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/InterconnectAttachmentStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectAttachmentStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/InterconnectAttachmentStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectLocationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/InterconnectLocationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectLocationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/InterconnectLocationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectLocationStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/InterconnectLocationStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectLocationStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/InterconnectLocationStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectStub.java b/src/main/java/com/google/cloud/compute/v1/stub/InterconnectStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/InterconnectStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/InterconnectStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/InterconnectStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/InterconnectStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/LicenseCodeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/LicenseCodeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/LicenseCodeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/LicenseCodeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/LicenseCodeStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/LicenseCodeStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/LicenseCodeStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/LicenseCodeStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/LicenseStub.java b/src/main/java/com/google/cloud/compute/v1/stub/LicenseStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/LicenseStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/LicenseStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/LicenseStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/LicenseStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/LicenseStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/LicenseStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/MachineTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/MachineTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/MachineTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/MachineTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/MachineTypeStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/MachineTypeStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/MachineTypeStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/MachineTypeStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NetworkEndpointGroupStub.java b/src/main/java/com/google/cloud/compute/v1/stub/NetworkEndpointGroupStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NetworkEndpointGroupStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/NetworkEndpointGroupStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NetworkEndpointGroupStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/NetworkEndpointGroupStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NetworkEndpointGroupStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/NetworkEndpointGroupStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NetworkStub.java b/src/main/java/com/google/cloud/compute/v1/stub/NetworkStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NetworkStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/NetworkStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NetworkStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/NetworkStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NetworkStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/NetworkStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeGroupStub.java b/src/main/java/com/google/cloud/compute/v1/stub/NodeGroupStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeGroupStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/NodeGroupStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeGroupStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/NodeGroupStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeGroupStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/NodeGroupStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeTemplateStub.java b/src/main/java/com/google/cloud/compute/v1/stub/NodeTemplateStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeTemplateStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/NodeTemplateStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeTemplateStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/NodeTemplateStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeTemplateStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/NodeTemplateStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/NodeTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/NodeTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeTypeStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/NodeTypeStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/NodeTypeStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/NodeTypeStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ProjectStub.java b/src/main/java/com/google/cloud/compute/v1/stub/ProjectStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ProjectStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/ProjectStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ProjectStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/ProjectStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ProjectStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/ProjectStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionAutoscalerStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionAutoscalerStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionAutoscalerStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionAutoscalerStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionAutoscalerStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionAutoscalerStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionAutoscalerStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionAutoscalerStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionBackendServiceStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionBackendServiceStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionBackendServiceStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionBackendServiceStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionBackendServiceStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionBackendServiceStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionBackendServiceStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionBackendServiceStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionCommitmentStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionCommitmentStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionCommitmentStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionCommitmentStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionCommitmentStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionCommitmentStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionCommitmentStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionCommitmentStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionDiskStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionDiskStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskTypeStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskTypeStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskTypeStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionDiskTypeStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskTypeStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskTypeStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionDiskTypeStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionDiskTypeStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionHealthCheckStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionHealthCheckStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionHealthCheckStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionHealthCheckStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionHealthCheckStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionHealthCheckStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionHealthCheckStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionHealthCheckStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupManagerStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupManagerStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupManagerStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupManagerStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupManagerStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupManagerStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupManagerStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupManagerStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionInstanceGroupStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionOperationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionOperationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionOperationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionOperationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionOperationStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionOperationStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionOperationStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionOperationStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionSslCertificateStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionSslCertificateStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionSslCertificateStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionSslCertificateStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionSslCertificateStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionSslCertificateStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionSslCertificateStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionSslCertificateStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpProxyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpProxyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpProxyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpProxyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpsProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpsProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpsProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpsProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpsProxyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpsProxyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpsProxyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionTargetHttpsProxyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionUrlMapStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionUrlMapStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionUrlMapStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionUrlMapStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionUrlMapStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RegionUrlMapStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RegionUrlMapStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RegionUrlMapStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ReservationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/ReservationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ReservationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/ReservationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ReservationStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/ReservationStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ReservationStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/ReservationStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ResourcePolicyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/ResourcePolicyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ResourcePolicyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/ResourcePolicyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ResourcePolicyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/ResourcePolicyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ResourcePolicyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/ResourcePolicyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RouteStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RouteStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RouteStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RouteStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RouteStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RouteStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RouteStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RouteStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RouterStub.java b/src/main/java/com/google/cloud/compute/v1/stub/RouterStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RouterStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/RouterStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RouterStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/RouterStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/RouterStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/RouterStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SecurityPolicyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/SecurityPolicyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SecurityPolicyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/SecurityPolicyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SecurityPolicyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/SecurityPolicyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SecurityPolicyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/SecurityPolicyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SnapshotStub.java b/src/main/java/com/google/cloud/compute/v1/stub/SnapshotStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SnapshotStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/SnapshotStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SnapshotStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/SnapshotStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SnapshotStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/SnapshotStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SslCertificateStub.java b/src/main/java/com/google/cloud/compute/v1/stub/SslCertificateStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SslCertificateStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/SslCertificateStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SslCertificateStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/SslCertificateStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SslCertificateStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/SslCertificateStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SslPolicyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/SslPolicyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SslPolicyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/SslPolicyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SslPolicyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/SslPolicyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SslPolicyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/SslPolicyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SubnetworkStub.java b/src/main/java/com/google/cloud/compute/v1/stub/SubnetworkStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SubnetworkStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/SubnetworkStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SubnetworkStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/SubnetworkStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/SubnetworkStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/SubnetworkStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetHttpProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpProxyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpProxyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpProxyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetHttpProxyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpsProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpsProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpsProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetHttpsProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpsProxyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpsProxyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetHttpsProxyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetHttpsProxyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetInstanceStub.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetInstanceStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetInstanceStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetInstanceStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetInstanceStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetInstanceStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetInstanceStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetInstanceStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetPoolStub.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetPoolStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetPoolStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetPoolStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetPoolStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetPoolStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetPoolStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetPoolStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetSslProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetSslProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetSslProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetSslProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetSslProxyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetSslProxyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetSslProxyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetSslProxyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetTcpProxyStub.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetTcpProxyStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetTcpProxyStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetTcpProxyStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetTcpProxyStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetTcpProxyStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetTcpProxyStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetTcpProxyStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetVpnGatewayStub.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetVpnGatewayStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetVpnGatewayStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetVpnGatewayStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetVpnGatewayStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/TargetVpnGatewayStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/TargetVpnGatewayStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/TargetVpnGatewayStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/UrlMapStub.java b/src/main/java/com/google/cloud/compute/v1/stub/UrlMapStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/UrlMapStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/UrlMapStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/UrlMapStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/UrlMapStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/UrlMapStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/UrlMapStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/VpnGatewayStub.java b/src/main/java/com/google/cloud/compute/v1/stub/VpnGatewayStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/VpnGatewayStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/VpnGatewayStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/VpnGatewayStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/VpnGatewayStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/VpnGatewayStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/VpnGatewayStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/VpnTunnelStub.java b/src/main/java/com/google/cloud/compute/v1/stub/VpnTunnelStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/VpnTunnelStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/VpnTunnelStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/VpnTunnelStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/VpnTunnelStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/VpnTunnelStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/VpnTunnelStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ZoneOperationStub.java b/src/main/java/com/google/cloud/compute/v1/stub/ZoneOperationStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ZoneOperationStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/ZoneOperationStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ZoneOperationStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/ZoneOperationStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ZoneOperationStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/ZoneOperationStubSettings.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ZoneStub.java b/src/main/java/com/google/cloud/compute/v1/stub/ZoneStub.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ZoneStub.java rename to src/main/java/com/google/cloud/compute/v1/stub/ZoneStub.java diff --git a/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ZoneStubSettings.java b/src/main/java/com/google/cloud/compute/v1/stub/ZoneStubSettings.java similarity index 100% rename from google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/ZoneStubSettings.java rename to src/main/java/com/google/cloud/compute/v1/stub/ZoneStubSettings.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/RegionsTest.java b/src/test/java/com/google/cloud/compute/RegionsTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/RegionsTest.java rename to src/test/java/com/google/cloud/compute/RegionsTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/AddressIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/AddressIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/AddressIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/AddressIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/AddressInfoTest.java b/src/test/java/com/google/cloud/compute/deprecated/AddressInfoTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/AddressInfoTest.java rename to src/test/java/com/google/cloud/compute/deprecated/AddressInfoTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/AddressTest.java b/src/test/java/com/google/cloud/compute/deprecated/AddressTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/AddressTest.java rename to src/test/java/com/google/cloud/compute/deprecated/AddressTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/AttachedDiskTest.java b/src/test/java/com/google/cloud/compute/deprecated/AttachedDiskTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/AttachedDiskTest.java rename to src/test/java/com/google/cloud/compute/deprecated/AttachedDiskTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ComputeExceptionTest.java b/src/test/java/com/google/cloud/compute/deprecated/ComputeExceptionTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ComputeExceptionTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ComputeExceptionTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ComputeImplTest.java b/src/test/java/com/google/cloud/compute/deprecated/ComputeImplTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ComputeImplTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ComputeImplTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ComputeOptionsTest.java b/src/test/java/com/google/cloud/compute/deprecated/ComputeOptionsTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ComputeOptionsTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ComputeOptionsTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DeprecationStatusTest.java b/src/test/java/com/google/cloud/compute/deprecated/DeprecationStatusTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DeprecationStatusTest.java rename to src/test/java/com/google/cloud/compute/deprecated/DeprecationStatusTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/DiskIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/DiskIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskImageConfigurationTest.java b/src/test/java/com/google/cloud/compute/deprecated/DiskImageConfigurationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskImageConfigurationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/DiskImageConfigurationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskInfoTest.java b/src/test/java/com/google/cloud/compute/deprecated/DiskInfoTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskInfoTest.java rename to src/test/java/com/google/cloud/compute/deprecated/DiskInfoTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskTest.java b/src/test/java/com/google/cloud/compute/deprecated/DiskTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskTest.java rename to src/test/java/com/google/cloud/compute/deprecated/DiskTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskTypeIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/DiskTypeIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskTypeIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/DiskTypeIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskTypeTest.java b/src/test/java/com/google/cloud/compute/deprecated/DiskTypeTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/DiskTypeTest.java rename to src/test/java/com/google/cloud/compute/deprecated/DiskTypeTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ForwardingRuleIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/ForwardingRuleIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ForwardingRuleIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ForwardingRuleIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ImageDiskConfigurationTest.java b/src/test/java/com/google/cloud/compute/deprecated/ImageDiskConfigurationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ImageDiskConfigurationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ImageDiskConfigurationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ImageIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/ImageIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ImageIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ImageIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ImageInfoTest.java b/src/test/java/com/google/cloud/compute/deprecated/ImageInfoTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ImageInfoTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ImageInfoTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ImageTest.java b/src/test/java/com/google/cloud/compute/deprecated/ImageTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ImageTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ImageTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/InstanceIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/InstanceIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/InstanceIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/InstanceIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/InstanceInfoTest.java b/src/test/java/com/google/cloud/compute/deprecated/InstanceInfoTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/InstanceInfoTest.java rename to src/test/java/com/google/cloud/compute/deprecated/InstanceInfoTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/InstanceTest.java b/src/test/java/com/google/cloud/compute/deprecated/InstanceTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/InstanceTest.java rename to src/test/java/com/google/cloud/compute/deprecated/InstanceTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/LicenseIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/LicenseIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/LicenseIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/LicenseIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/LicenseTest.java b/src/test/java/com/google/cloud/compute/deprecated/LicenseTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/LicenseTest.java rename to src/test/java/com/google/cloud/compute/deprecated/LicenseTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/MachineTypeIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/MachineTypeIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/MachineTypeIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/MachineTypeIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/MachineTypeTest.java b/src/test/java/com/google/cloud/compute/deprecated/MachineTypeTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/MachineTypeTest.java rename to src/test/java/com/google/cloud/compute/deprecated/MachineTypeTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/MetadataTest.java b/src/test/java/com/google/cloud/compute/deprecated/MetadataTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/MetadataTest.java rename to src/test/java/com/google/cloud/compute/deprecated/MetadataTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/NetworkIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/NetworkIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/NetworkIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/NetworkIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/NetworkInfoTest.java b/src/test/java/com/google/cloud/compute/deprecated/NetworkInfoTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/NetworkInfoTest.java rename to src/test/java/com/google/cloud/compute/deprecated/NetworkInfoTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/NetworkInterfaceTest.java b/src/test/java/com/google/cloud/compute/deprecated/NetworkInterfaceTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/NetworkInterfaceTest.java rename to src/test/java/com/google/cloud/compute/deprecated/NetworkInterfaceTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/NetworkTest.java b/src/test/java/com/google/cloud/compute/deprecated/NetworkTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/NetworkTest.java rename to src/test/java/com/google/cloud/compute/deprecated/NetworkTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/OperationIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/OperationIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/OperationIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/OperationIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/OperationTest.java b/src/test/java/com/google/cloud/compute/deprecated/OperationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/OperationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/OperationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/RegionIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/RegionIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/RegionIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/RegionIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/RegionTest.java b/src/test/java/com/google/cloud/compute/deprecated/RegionTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/RegionTest.java rename to src/test/java/com/google/cloud/compute/deprecated/RegionTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SchedulingOptionsTest.java b/src/test/java/com/google/cloud/compute/deprecated/SchedulingOptionsTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SchedulingOptionsTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SchedulingOptionsTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SerializationTest.java b/src/test/java/com/google/cloud/compute/deprecated/SerializationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SerializationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SerializationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ServiceAccountTest.java b/src/test/java/com/google/cloud/compute/deprecated/ServiceAccountTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ServiceAccountTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ServiceAccountTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SnapshotDiskConfigurationTest.java b/src/test/java/com/google/cloud/compute/deprecated/SnapshotDiskConfigurationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SnapshotDiskConfigurationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SnapshotDiskConfigurationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SnapshotIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/SnapshotIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SnapshotIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SnapshotIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SnapshotInfoTest.java b/src/test/java/com/google/cloud/compute/deprecated/SnapshotInfoTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SnapshotInfoTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SnapshotInfoTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SnapshotTest.java b/src/test/java/com/google/cloud/compute/deprecated/SnapshotTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SnapshotTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SnapshotTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/StandardDiskConfigurationTest.java b/src/test/java/com/google/cloud/compute/deprecated/StandardDiskConfigurationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/StandardDiskConfigurationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/StandardDiskConfigurationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/StandardNetworkConfigurationTest.java b/src/test/java/com/google/cloud/compute/deprecated/StandardNetworkConfigurationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/StandardNetworkConfigurationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/StandardNetworkConfigurationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/StorageImageConfigurationTest.java b/src/test/java/com/google/cloud/compute/deprecated/StorageImageConfigurationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/StorageImageConfigurationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/StorageImageConfigurationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SubnetNetworkConfigurationTest.java b/src/test/java/com/google/cloud/compute/deprecated/SubnetNetworkConfigurationTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SubnetNetworkConfigurationTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SubnetNetworkConfigurationTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SubnetworkIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/SubnetworkIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SubnetworkIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SubnetworkIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SubnetworkInfoTest.java b/src/test/java/com/google/cloud/compute/deprecated/SubnetworkInfoTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SubnetworkInfoTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SubnetworkInfoTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SubnetworkTest.java b/src/test/java/com/google/cloud/compute/deprecated/SubnetworkTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/SubnetworkTest.java rename to src/test/java/com/google/cloud/compute/deprecated/SubnetworkTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/TagsTest.java b/src/test/java/com/google/cloud/compute/deprecated/TagsTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/TagsTest.java rename to src/test/java/com/google/cloud/compute/deprecated/TagsTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ZoneIdTest.java b/src/test/java/com/google/cloud/compute/deprecated/ZoneIdTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ZoneIdTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ZoneIdTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ZoneTest.java b/src/test/java/com/google/cloud/compute/deprecated/ZoneTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/ZoneTest.java rename to src/test/java/com/google/cloud/compute/deprecated/ZoneTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/it/ITComputeTest.java b/src/test/java/com/google/cloud/compute/deprecated/it/ITComputeTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/it/ITComputeTest.java rename to src/test/java/com/google/cloud/compute/deprecated/it/ITComputeTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/testing/RemoteComputeHelperTest.java b/src/test/java/com/google/cloud/compute/deprecated/testing/RemoteComputeHelperTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/deprecated/testing/RemoteComputeHelperTest.java rename to src/test/java/com/google/cloud/compute/deprecated/testing/RemoteComputeHelperTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/AcceleratorTypeClientTest.java b/src/test/java/com/google/cloud/compute/v1/AcceleratorTypeClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/AcceleratorTypeClientTest.java rename to src/test/java/com/google/cloud/compute/v1/AcceleratorTypeClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/AddressClientTest.java b/src/test/java/com/google/cloud/compute/v1/AddressClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/AddressClientTest.java rename to src/test/java/com/google/cloud/compute/v1/AddressClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/AutoscalerClientTest.java b/src/test/java/com/google/cloud/compute/v1/AutoscalerClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/AutoscalerClientTest.java rename to src/test/java/com/google/cloud/compute/v1/AutoscalerClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/BackendBucketClientTest.java b/src/test/java/com/google/cloud/compute/v1/BackendBucketClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/BackendBucketClientTest.java rename to src/test/java/com/google/cloud/compute/v1/BackendBucketClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/BackendServiceClientTest.java b/src/test/java/com/google/cloud/compute/v1/BackendServiceClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/BackendServiceClientTest.java rename to src/test/java/com/google/cloud/compute/v1/BackendServiceClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/DiskClientTest.java b/src/test/java/com/google/cloud/compute/v1/DiskClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/DiskClientTest.java rename to src/test/java/com/google/cloud/compute/v1/DiskClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/DiskTypeClientTest.java b/src/test/java/com/google/cloud/compute/v1/DiskTypeClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/DiskTypeClientTest.java rename to src/test/java/com/google/cloud/compute/v1/DiskTypeClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ExternalVpnGatewayClientTest.java b/src/test/java/com/google/cloud/compute/v1/ExternalVpnGatewayClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ExternalVpnGatewayClientTest.java rename to src/test/java/com/google/cloud/compute/v1/ExternalVpnGatewayClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/FirewallClientTest.java b/src/test/java/com/google/cloud/compute/v1/FirewallClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/FirewallClientTest.java rename to src/test/java/com/google/cloud/compute/v1/FirewallClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ForwardingRuleClientTest.java b/src/test/java/com/google/cloud/compute/v1/ForwardingRuleClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ForwardingRuleClientTest.java rename to src/test/java/com/google/cloud/compute/v1/ForwardingRuleClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/GlobalAddressClientTest.java b/src/test/java/com/google/cloud/compute/v1/GlobalAddressClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/GlobalAddressClientTest.java rename to src/test/java/com/google/cloud/compute/v1/GlobalAddressClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/GlobalForwardingRuleClientTest.java b/src/test/java/com/google/cloud/compute/v1/GlobalForwardingRuleClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/GlobalForwardingRuleClientTest.java rename to src/test/java/com/google/cloud/compute/v1/GlobalForwardingRuleClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/GlobalOperationClientTest.java b/src/test/java/com/google/cloud/compute/v1/GlobalOperationClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/GlobalOperationClientTest.java rename to src/test/java/com/google/cloud/compute/v1/GlobalOperationClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/HealthCheckClientTest.java b/src/test/java/com/google/cloud/compute/v1/HealthCheckClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/HealthCheckClientTest.java rename to src/test/java/com/google/cloud/compute/v1/HealthCheckClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/HttpHealthCheckClientTest.java b/src/test/java/com/google/cloud/compute/v1/HttpHealthCheckClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/HttpHealthCheckClientTest.java rename to src/test/java/com/google/cloud/compute/v1/HttpHealthCheckClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/HttpsHealthCheckClientTest.java b/src/test/java/com/google/cloud/compute/v1/HttpsHealthCheckClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/HttpsHealthCheckClientTest.java rename to src/test/java/com/google/cloud/compute/v1/HttpsHealthCheckClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ImageClientTest.java b/src/test/java/com/google/cloud/compute/v1/ImageClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ImageClientTest.java rename to src/test/java/com/google/cloud/compute/v1/ImageClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InstanceClientTest.java b/src/test/java/com/google/cloud/compute/v1/InstanceClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InstanceClientTest.java rename to src/test/java/com/google/cloud/compute/v1/InstanceClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InstanceGroupClientTest.java b/src/test/java/com/google/cloud/compute/v1/InstanceGroupClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InstanceGroupClientTest.java rename to src/test/java/com/google/cloud/compute/v1/InstanceGroupClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InstanceGroupManagerClientTest.java b/src/test/java/com/google/cloud/compute/v1/InstanceGroupManagerClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InstanceGroupManagerClientTest.java rename to src/test/java/com/google/cloud/compute/v1/InstanceGroupManagerClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InstanceTemplateClientTest.java b/src/test/java/com/google/cloud/compute/v1/InstanceTemplateClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InstanceTemplateClientTest.java rename to src/test/java/com/google/cloud/compute/v1/InstanceTemplateClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InterconnectAttachmentClientTest.java b/src/test/java/com/google/cloud/compute/v1/InterconnectAttachmentClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InterconnectAttachmentClientTest.java rename to src/test/java/com/google/cloud/compute/v1/InterconnectAttachmentClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InterconnectClientTest.java b/src/test/java/com/google/cloud/compute/v1/InterconnectClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InterconnectClientTest.java rename to src/test/java/com/google/cloud/compute/v1/InterconnectClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InterconnectLocationClientTest.java b/src/test/java/com/google/cloud/compute/v1/InterconnectLocationClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/InterconnectLocationClientTest.java rename to src/test/java/com/google/cloud/compute/v1/InterconnectLocationClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/LicenseClientTest.java b/src/test/java/com/google/cloud/compute/v1/LicenseClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/LicenseClientTest.java rename to src/test/java/com/google/cloud/compute/v1/LicenseClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/LicenseCodeClientTest.java b/src/test/java/com/google/cloud/compute/v1/LicenseCodeClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/LicenseCodeClientTest.java rename to src/test/java/com/google/cloud/compute/v1/LicenseCodeClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/MachineTypeClientTest.java b/src/test/java/com/google/cloud/compute/v1/MachineTypeClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/MachineTypeClientTest.java rename to src/test/java/com/google/cloud/compute/v1/MachineTypeClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NetworkClientTest.java b/src/test/java/com/google/cloud/compute/v1/NetworkClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NetworkClientTest.java rename to src/test/java/com/google/cloud/compute/v1/NetworkClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NetworkEndpointGroupClientTest.java b/src/test/java/com/google/cloud/compute/v1/NetworkEndpointGroupClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NetworkEndpointGroupClientTest.java rename to src/test/java/com/google/cloud/compute/v1/NetworkEndpointGroupClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NodeGroupClientTest.java b/src/test/java/com/google/cloud/compute/v1/NodeGroupClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NodeGroupClientTest.java rename to src/test/java/com/google/cloud/compute/v1/NodeGroupClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NodeTemplateClientTest.java b/src/test/java/com/google/cloud/compute/v1/NodeTemplateClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NodeTemplateClientTest.java rename to src/test/java/com/google/cloud/compute/v1/NodeTemplateClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NodeTypeClientTest.java b/src/test/java/com/google/cloud/compute/v1/NodeTypeClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/NodeTypeClientTest.java rename to src/test/java/com/google/cloud/compute/v1/NodeTypeClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ProjectClientTest.java b/src/test/java/com/google/cloud/compute/v1/ProjectClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ProjectClientTest.java rename to src/test/java/com/google/cloud/compute/v1/ProjectClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionAutoscalerClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionAutoscalerClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionAutoscalerClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionAutoscalerClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionBackendServiceClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionBackendServiceClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionBackendServiceClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionBackendServiceClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionCommitmentClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionCommitmentClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionCommitmentClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionCommitmentClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionDiskClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionDiskClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionDiskClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionDiskClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionDiskTypeClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionDiskTypeClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionDiskTypeClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionDiskTypeClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionHealthCheckClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionHealthCheckClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionHealthCheckClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionHealthCheckClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionInstanceGroupClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionInstanceGroupClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionInstanceGroupClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionInstanceGroupClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionInstanceGroupManagerClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionOperationClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionOperationClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionOperationClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionOperationClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionSslCertificateClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionSslCertificateClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionSslCertificateClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionSslCertificateClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionTargetHttpProxyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionTargetHttpsProxyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionUrlMapClientTest.java b/src/test/java/com/google/cloud/compute/v1/RegionUrlMapClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RegionUrlMapClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RegionUrlMapClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ReservationClientTest.java b/src/test/java/com/google/cloud/compute/v1/ReservationClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ReservationClientTest.java rename to src/test/java/com/google/cloud/compute/v1/ReservationClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ResourcePolicyClientTest.java b/src/test/java/com/google/cloud/compute/v1/ResourcePolicyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ResourcePolicyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/ResourcePolicyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RouteClientTest.java b/src/test/java/com/google/cloud/compute/v1/RouteClientTest.java similarity index 99% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RouteClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RouteClientTest.java index c35e2d342..efce17f00 100644 --- a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RouteClientTest.java +++ b/src/test/java/com/google/cloud/compute/v1/RouteClientTest.java @@ -181,6 +181,7 @@ public void getRouteTest() { String name = "name3373707"; ProjectGlobalNetworkName network = ProjectGlobalNetworkName.of("[PROJECT]", "[NETWORK]"); String nextHopGateway = "nextHopGateway-159695614"; + String nextHopIlb = "nextHopIlb-1948803747"; String nextHopInstance = "nextHopInstance1467250071"; String nextHopIp = "nextHopIp1184061353"; String nextHopNetwork = "nextHopNetwork1872908524"; @@ -198,6 +199,7 @@ public void getRouteTest() { .setName(name) .setNetwork(network.toString()) .setNextHopGateway(nextHopGateway) + .setNextHopIlb(nextHopIlb) .setNextHopInstance(nextHopInstance) .setNextHopIp(nextHopIp) .setNextHopNetwork(nextHopNetwork) diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RouterClientTest.java b/src/test/java/com/google/cloud/compute/v1/RouterClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/RouterClientTest.java rename to src/test/java/com/google/cloud/compute/v1/RouterClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SecurityPolicyClientTest.java b/src/test/java/com/google/cloud/compute/v1/SecurityPolicyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SecurityPolicyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/SecurityPolicyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SnapshotClientTest.java b/src/test/java/com/google/cloud/compute/v1/SnapshotClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SnapshotClientTest.java rename to src/test/java/com/google/cloud/compute/v1/SnapshotClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SslCertificateClientTest.java b/src/test/java/com/google/cloud/compute/v1/SslCertificateClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SslCertificateClientTest.java rename to src/test/java/com/google/cloud/compute/v1/SslCertificateClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SslPolicyClientTest.java b/src/test/java/com/google/cloud/compute/v1/SslPolicyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SslPolicyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/SslPolicyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SubnetworkClientTest.java b/src/test/java/com/google/cloud/compute/v1/SubnetworkClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/SubnetworkClientTest.java rename to src/test/java/com/google/cloud/compute/v1/SubnetworkClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetHttpProxyClientTest.java b/src/test/java/com/google/cloud/compute/v1/TargetHttpProxyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetHttpProxyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/TargetHttpProxyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetHttpsProxyClientTest.java b/src/test/java/com/google/cloud/compute/v1/TargetHttpsProxyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetHttpsProxyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/TargetHttpsProxyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetInstanceClientTest.java b/src/test/java/com/google/cloud/compute/v1/TargetInstanceClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetInstanceClientTest.java rename to src/test/java/com/google/cloud/compute/v1/TargetInstanceClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetPoolClientTest.java b/src/test/java/com/google/cloud/compute/v1/TargetPoolClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetPoolClientTest.java rename to src/test/java/com/google/cloud/compute/v1/TargetPoolClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetSslProxyClientTest.java b/src/test/java/com/google/cloud/compute/v1/TargetSslProxyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetSslProxyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/TargetSslProxyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetTcpProxyClientTest.java b/src/test/java/com/google/cloud/compute/v1/TargetTcpProxyClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetTcpProxyClientTest.java rename to src/test/java/com/google/cloud/compute/v1/TargetTcpProxyClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetVpnGatewayClientTest.java b/src/test/java/com/google/cloud/compute/v1/TargetVpnGatewayClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/TargetVpnGatewayClientTest.java rename to src/test/java/com/google/cloud/compute/v1/TargetVpnGatewayClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/UrlMapClientTest.java b/src/test/java/com/google/cloud/compute/v1/UrlMapClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/UrlMapClientTest.java rename to src/test/java/com/google/cloud/compute/v1/UrlMapClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/VpnGatewayClientTest.java b/src/test/java/com/google/cloud/compute/v1/VpnGatewayClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/VpnGatewayClientTest.java rename to src/test/java/com/google/cloud/compute/v1/VpnGatewayClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/VpnTunnelClientTest.java b/src/test/java/com/google/cloud/compute/v1/VpnTunnelClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/VpnTunnelClientTest.java rename to src/test/java/com/google/cloud/compute/v1/VpnTunnelClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ZoneClientTest.java b/src/test/java/com/google/cloud/compute/v1/ZoneClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ZoneClientTest.java rename to src/test/java/com/google/cloud/compute/v1/ZoneClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ZoneOperationClientTest.java b/src/test/java/com/google/cloud/compute/v1/ZoneOperationClientTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/ZoneOperationClientTest.java rename to src/test/java/com/google/cloud/compute/v1/ZoneOperationClientTest.java diff --git a/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/it/ITComputeTest.java b/src/test/java/com/google/cloud/compute/v1/it/ITComputeTest.java similarity index 100% rename from google-cloud-compute/src/test/java/com/google/cloud/compute/v1/it/ITComputeTest.java rename to src/test/java/com/google/cloud/compute/v1/it/ITComputeTest.java diff --git a/google-cloud-compute/synth.metadata b/synth.metadata similarity index 100% rename from google-cloud-compute/synth.metadata rename to synth.metadata diff --git a/google-cloud-compute/synth.py b/synth.py similarity index 89% rename from google-cloud-compute/synth.py rename to synth.py index a8c0faaaf..51793c22a 100644 --- a/google-cloud-compute/synth.py +++ b/synth.py @@ -34,3 +34,9 @@ s.copy(library / f'gapic-google-cloud-{service}-{version}/src', 'src') java.format_code('./src') + +common_templates = gcp.CommonTemplates() +templates = common_templates.java_library() +s.copy(templates, excludes=[ + 'README.md', +]) \ No newline at end of file diff --git a/versions.txt b/versions.txt new file mode 100644 index 000000000..b3b3c1c93 --- /dev/null +++ b/versions.txt @@ -0,0 +1,4 @@ +# Format: +# module:released-version:current-version + +google-cloud-compute:0.117.0-alpha:0.117.0-alpha \ No newline at end of file