diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..7481027c --- /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-containeranalysis/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. containeranalysis 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 00000000..754e30c6 --- /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 00000000..99586903 --- /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 00000000..0bd0ee06 --- /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 00000000..82744682 --- /dev/null +++ b/.github/release-please.yml @@ -0,0 +1 @@ +releaseType: java-yoshi diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..dc2d514c --- /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 00000000..3d3b1797 --- /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-containeranalysis/.kokoro/build.sh diff --git a/.kokoro/build.sh b/.kokoro/build.sh new file mode 100755 index 00000000..fa132f41 --- /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 00000000..5cf7ba49 --- /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 00000000..29f68d9f --- /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-containeranalysis/.kokoro/trampoline.sh" + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-containeranalysis/.kokoro/build.sh" +} diff --git a/.kokoro/continuous/common.cfg b/.kokoro/continuous/common.cfg new file mode 100644 index 00000000..65c12549 --- /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-containeranalysis/.kokoro/trampoline.sh" + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-containeranalysis/.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 00000000..8100aad7 --- /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-containeranalysis/.kokoro/dependencies.sh" +} diff --git a/.kokoro/continuous/integration.cfg b/.kokoro/continuous/integration.cfg new file mode 100644 index 00000000..3b017fc8 --- /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 00000000..709f2b4c --- /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 00000000..cb24f44e --- /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 00000000..69033890 --- /dev/null +++ b/.kokoro/continuous/java8-osx.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-containeranalysis/.kokoro/build.sh" diff --git a/.kokoro/continuous/java8-win.cfg b/.kokoro/continuous/java8-win.cfg new file mode 100644 index 00000000..8dbbd9a0 --- /dev/null +++ b/.kokoro/continuous/java8-win.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-containeranalysis/.kokoro/build.bat" diff --git a/.kokoro/continuous/java8.cfg b/.kokoro/continuous/java8.cfg new file mode 100644 index 00000000..3b017fc8 --- /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 00000000..6d323c8a --- /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 00000000..45dc914c --- /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-containeranalysis/.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-containeranalysis/.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 00000000..fc447abc --- /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-containeranalysis \ + --package-name="containeranalysis" \ + --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 00000000..0d2d29c6 --- /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-containeranalysis/ + +# 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 00000000..017d7b04 --- /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-containeranalysis/ + +# 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 00000000..65c12549 --- /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-containeranalysis/.kokoro/trampoline.sh" + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-containeranalysis/.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 00000000..8100aad7 --- /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-containeranalysis/.kokoro/dependencies.sh" +} diff --git a/.kokoro/nightly/integration.cfg b/.kokoro/nightly/integration.cfg new file mode 100644 index 00000000..3b017fc8 --- /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 00000000..709f2b4c --- /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 00000000..cb24f44e --- /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 00000000..69033890 --- /dev/null +++ b/.kokoro/nightly/java8-osx.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-containeranalysis/.kokoro/build.sh" diff --git a/.kokoro/nightly/java8-win.cfg b/.kokoro/nightly/java8-win.cfg new file mode 100644 index 00000000..8dbbd9a0 --- /dev/null +++ b/.kokoro/nightly/java8-win.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-containeranalysis/.kokoro/build.bat" diff --git a/.kokoro/nightly/java8.cfg b/.kokoro/nightly/java8.cfg new file mode 100644 index 00000000..3b017fc8 --- /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 00000000..6d323c8a --- /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 00000000..ec572442 --- /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 00000000..afacd960 --- /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-containeranalysis/.kokoro/trampoline.sh" + +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/java-containeranalysis/.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 00000000..8100aad7 --- /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-containeranalysis/.kokoro/dependencies.sh" +} diff --git a/.kokoro/presubmit/integration.cfg b/.kokoro/presubmit/integration.cfg new file mode 100644 index 00000000..141f90c1 --- /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 00000000..709f2b4c --- /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 00000000..cb24f44e --- /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 00000000..69033890 --- /dev/null +++ b/.kokoro/presubmit/java8-osx.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-containeranalysis/.kokoro/build.sh" diff --git a/.kokoro/presubmit/java8-win.cfg b/.kokoro/presubmit/java8-win.cfg new file mode 100644 index 00000000..8dbbd9a0 --- /dev/null +++ b/.kokoro/presubmit/java8-win.cfg @@ -0,0 +1,3 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +build_file: "java-containeranalysis/.kokoro/build.bat" diff --git a/.kokoro/presubmit/java8.cfg b/.kokoro/presubmit/java8.cfg new file mode 100644 index 00000000..3b017fc8 --- /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 00000000..9c1ab11a --- /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-containeranalysis/.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 00000000..6d323c8a --- /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 00000000..8c6d5662 --- /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-containeranalysis/.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-containeranalysis/.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 00000000..87b64f44 --- /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-containeranalysis \ + --package-name="containeranalysis" \ + --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 00000000..f7e38b50 --- /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-containeranalysis/.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 00000000..6e3f6599 --- /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 00000000..3afba2db --- /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-containeranalysis/.kokoro/release/drop.sh" +} + +# Download staging properties file. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/java/releases/java-containeranalysis" \ No newline at end of file diff --git a/.kokoro/release/drop.sh b/.kokoro/release/drop.sh new file mode 100755 index 00000000..5c4551ef --- /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 00000000..c98a2418 --- /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-containeranalysis/.kokoro/release/promote.sh" +} + +# Download staging properties file. +gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/java/releases/java-containeranalysis" + diff --git a/.kokoro/release/promote.sh b/.kokoro/release/promote.sh new file mode 100755 index 00000000..1fa95fa5 --- /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 00000000..816d4e2b --- /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-containeranalysis/.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 00000000..7e15c52d --- /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=containeranalysis +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 00000000..8c85400c --- /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-containeranalysis/.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 00000000..098168a7 --- /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 00000000..08569b10 --- /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-containeranalysis/.kokoro/release/stage.sh" +} + +# Need to save the properties file +action { + define_artifacts { + regex: "github/java-containeranalysis/target/nexus-staging/staging/*.properties" + strip_prefix: "github/java-containeranalysis" + } +} + +# 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 00000000..3c482cbc --- /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 00000000..ba17ce01 --- /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-containeranalysis/.repo-metadata.json b/.repo-metadata.json similarity index 86% rename from google-cloud-containeranalysis/.repo-metadata.json rename to .repo-metadata.json index 34ab2890..5812ec9a 100644 --- a/google-cloud-containeranalysis/.repo-metadata.json +++ b/.repo-metadata.json @@ -6,8 +6,8 @@ "issue_tracker": "https://issuetracker.google.com/savedsearches/559777", "release_level": "beta", "language": "java", - "repo": "googleapis/google-cloud-java", - "repo_short": "google-cloud-java", + "repo": "googleapis/java-containeranalysis", + "repo_short": "java-containeranalysis", "distribution_name": "com.google.cloud:google-cloud-containeranalysis", "api_id": "containeranalysis.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 00000000..6b2238bb --- /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 00000000..ebbb59e5 --- /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 4eedc011..d6456956 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-containeranalysis/README.md b/README.md similarity index 100% rename from google-cloud-containeranalysis/README.md rename to README.md diff --git a/codecov.yaml b/codecov.yaml new file mode 100644 index 00000000..5724ea94 --- /dev/null +++ b/codecov.yaml @@ -0,0 +1,4 @@ +--- +codecov: + ci: + - source.cloud.google.com diff --git a/google-cloud-containeranalysis-bom/pom.xml b/google-cloud-containeranalysis-bom/pom.xml new file mode 100644 index 00000000..0685f85a --- /dev/null +++ b/google-cloud-containeranalysis-bom/pom.xml @@ -0,0 +1,103 @@ + + + 4.0.0 + com.google.cloud + google-cloud-containeranalysis-bom + 0.117.0-beta + pom + + com.google.cloud + google-cloud-shared-config + 0.2.1 + + + Google Cloud containeranalysis BOM + https://github.com/googleapis/java-containeranalysis + + BOM for Google Cloud Container Analysis + + + + Google LLC + + + + + chingor13 + Jeff Ching + chingor@google.com + Google LLC + + Developer + + + + + + scm:git:https://github.com/googleapis/java-containeranalysis.git + scm:git:git@github.com:googleapis/java-containeranalysis.git + https://github.com/googleapis/java-containeranalysis + + + + + sonatype-nexus-snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + + com.google.api.grpc + proto-google-cloud-containeranalysis-v1 + 0.82.0 + + + com.google.api.grpc + grpc-google-cloud-containeranalysis-v1beta1 + 0.82.0 + + + com.google.cloud + google-cloud-containeranalysis + 0.117.0-beta + + + com.google.api.grpc + grpc-google-cloud-containeranalysis-v1 + 0.82.0 + + + com.google.api.grpc + proto-google-cloud-containeranalysis-v1beta1 + 0.82.0 + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + true + + + + + \ No newline at end of file diff --git a/google-cloud-containeranalysis/pom.xml b/google-cloud-containeranalysis/pom.xml index 08f92d90..2e5a16cc 100644 --- a/google-cloud-containeranalysis/pom.xml +++ b/google-cloud-containeranalysis/pom.xml @@ -1,30 +1,47 @@ - + 4.0.0 + com.google.cloud google-cloud-containeranalysis 0.117.0-beta jar Google Cloud Container Analysis - https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-containeranalysis - - - Java idiomatic client for Google Cloud Container Analysis. - + https://github.com/googleapis/java-containeranalysis + Java idiomatic client for Google Cloud Container Analysis com.google.cloud - google-cloud-clients - 0.117.0-alpha + google-cloud-containeranalysis-parent + 0.117.0-beta google-cloud-containeranalysis - ${project.groupId} - google-cloud-core-grpc + io.grpc + grpc-api + + io.grpc + grpc-stub + + + io.grpc + grpc-protobuf + + + com.google.api + api-common + + + com.google.protobuf + protobuf-java + + + com.google.api.grpc + proto-google-common-protos + + com.google.api.grpc proto-google-cloud-containeranalysis-v1 @@ -33,10 +50,30 @@ com.google.api.grpc proto-google-cloud-containeranalysis-v1beta1 + + com.google.guava + guava + + + com.google.api + gax + + + com.google.api + gax-grpc + + + org.threeten + threetenbp + io.grafeas grafeas + + com.google.api.grpc + proto-google-iam-v1 + @@ -44,14 +81,15 @@ junit test + com.google.api.grpc - grpc-google-cloud-containeranalysis-v1 + grpc-google-cloud-containeranalysis-v1beta1 test com.google.api.grpc - grpc-google-cloud-containeranalysis-v1beta1 + grpc-google-cloud-containeranalysis-v1 test @@ -63,37 +101,18 @@ - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.1 - - protected - true - none - true - - - ${project.javadoc.protobufBaseURL} - ../../../../../google-api-grpc/proto-google-cloud-containeranalysis-v1/target/site/apidocs/ - - - ${project.javadoc.protobufBaseURL} - ../../../../../google-api-grpc/grpc-google-cloud-containeranalysis-v1/target/site/apidocs/ - - - ${project.javadoc.protobufBaseURL} - ../../../../../google-api-grpc/proto-google-cloud-containeranalysis-v1beta1/target/site/apidocs/ - - - ${project.javadoc.protobufBaseURL} - ../../../../../google-api-grpc/grpc-google-cloud-containeranalysis-v1beta1/target/site/apidocs/ - - - - - - + + + java9 + + [9,) + + + + javax.annotation + javax.annotation-api + + + + \ No newline at end of file diff --git a/google-cloud-containeranalysis/target/checkstyle-cachefile b/google-cloud-containeranalysis/target/checkstyle-cachefile new file mode 100644 index 00000000..f91ab2fc --- /dev/null +++ b/google-cloud-containeranalysis/target/checkstyle-cachefile @@ -0,0 +1,34 @@ +#Fri Nov 01 15:41:19 MDT 2019 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1CallableFactory.java=1572640629792 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub.java=1572640612931 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client.java=1572640629744 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/package-info.java=1572640643074 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client.java=1572640629791 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysis.java=1572640642990 +module-resource*?\:file\:/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/target/checkstyle-header.txt=25F6DC6B0E0E8C43BA44E8B5F4839CB7BE8256A7 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1CallableFactory.java=1572640629792 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/ITGrafeasInteropTest.java=1572556278624 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisCallableFactory.java=1572640654620 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1Stub.java=1572640612923 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings.java=1572640643081 +configuration*?=92CFF27CBE49F8CFC0FFF10FF36056B0D1A4F932 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStub.java=1572640643076 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysisImpl.java=1572640642984 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1ClientTest.java=1572640612798 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1.java=1572640612693 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/GrafeasUtils.java=1572556278619 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub.java=1572640612925 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1Stub.java=1572640612934 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings.java=1572640629792 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1Impl.java=1572640612762 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings.java=1572640612927 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/package-info.java=1572640612914 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings.java=1572640629713 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1Impl.java=1572640612655 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClient.java=1572640654619 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClientTest.java=1572640642987 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1.java=1572640612658 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub.java=1572640643078 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings.java=1572640612805 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings.java=1572640643072 +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1ClientTest.java=1572640612800 diff --git a/google-cloud-containeranalysis/target/checkstyle-checker.xml b/google-cloud-containeranalysis/target/checkstyle-checker.xml new file mode 100644 index 00000000..6597fced --- /dev/null +++ b/google-cloud-containeranalysis/target/checkstyle-checker.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/google-cloud-containeranalysis/target/checkstyle-header.txt b/google-cloud-containeranalysis/target/checkstyle-header.txt new file mode 100644 index 00000000..3a9b503a --- /dev/null +++ b/google-cloud-containeranalysis/target/checkstyle-header.txt @@ -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/google-cloud-containeranalysis/target/checkstyle-result.xml b/google-cloud-containeranalysis/target/checkstyle-result.xml new file mode 100644 index 00000000..3c8690bc --- /dev/null +++ b/google-cloud-containeranalysis/target/checkstyle-result.xml @@ -0,0 +1,3 @@ + + + diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClient.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClient.class new file mode 100644 index 00000000..3bea91a2 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClient.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings$Builder.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings$Builder.class new file mode 100644 index 00000000..80e7b219 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings$Builder.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings.class new file mode 100644 index 00000000..a6962ac2 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/GrafeasUtils.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/GrafeasUtils.class new file mode 100644 index 00000000..c0a4d921 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/GrafeasUtils.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/package-info.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/package-info.class new file mode 100644 index 00000000..a84e8d99 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/package-info.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStub.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStub.class new file mode 100644 index 00000000..a8c5037a Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStub.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings$Builder.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings$Builder.class new file mode 100644 index 00000000..676b5838 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings$Builder.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings.class new file mode 100644 index 00000000..eaa36ac9 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisCallableFactory.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisCallableFactory.class new file mode 100644 index 00000000..fa1388b3 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisCallableFactory.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$1.class new file mode 100644 index 00000000..0ee9f600 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$2.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$2.class new file mode 100644 index 00000000..859629fa Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$2.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$3.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$3.class new file mode 100644 index 00000000..cf95c7ac Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$3.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub.class new file mode 100644 index 00000000..4a3c76c0 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$1.class new file mode 100644 index 00000000..5881ba5a Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsFixedSizeCollection.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsFixedSizeCollection.class new file mode 100644 index 00000000..b6e44d46 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsFixedSizeCollection.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPage.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPage.class new file mode 100644 index 00000000..32c62b80 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPage.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPagedResponse$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPagedResponse$1.class new file mode 100644 index 00000000..6d168f65 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPagedResponse$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPagedResponse.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPagedResponse.class new file mode 100644 index 00000000..96393599 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPagedResponse.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client.class new file mode 100644 index 00000000..d888d2b7 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings$Builder.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings$Builder.class new file mode 100644 index 00000000..9fcb0fe0 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings$Builder.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings.class new file mode 100644 index 00000000..a6065b09 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$1.class new file mode 100644 index 00000000..5bff3a55 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesFixedSizeCollection.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesFixedSizeCollection.class new file mode 100644 index 00000000..ef4a61f5 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesFixedSizeCollection.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPage.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPage.class new file mode 100644 index 00000000..9f316912 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPage.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPagedResponse$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPagedResponse$1.class new file mode 100644 index 00000000..0d056e99 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPagedResponse$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPagedResponse.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPagedResponse.class new file mode 100644 index 00000000..43e09479 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPagedResponse.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesFixedSizeCollection.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesFixedSizeCollection.class new file mode 100644 index 00000000..8f54dabb Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesFixedSizeCollection.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPage.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPage.class new file mode 100644 index 00000000..d9ccd261 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPage.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPagedResponse$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPagedResponse$1.class new file mode 100644 index 00000000..f6b3327e Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPagedResponse$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPagedResponse.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPagedResponse.class new file mode 100644 index 00000000..573da606 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPagedResponse.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesFixedSizeCollection.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesFixedSizeCollection.class new file mode 100644 index 00000000..e9c147d5 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesFixedSizeCollection.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPage.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPage.class new file mode 100644 index 00000000..8df90304 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPage.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPagedResponse$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPagedResponse$1.class new file mode 100644 index 00000000..6c9d7d6a Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPagedResponse$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPagedResponse.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPagedResponse.class new file mode 100644 index 00000000..1deb4712 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPagedResponse.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client.class new file mode 100644 index 00000000..ef0f966e Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings$Builder.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings$Builder.class new file mode 100644 index 00000000..e7d4f455 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings$Builder.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings.class new file mode 100644 index 00000000..3d6d008b Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/package-info.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/package-info.class new file mode 100644 index 00000000..990d5083 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/package-info.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1Stub.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1Stub.class new file mode 100644 index 00000000..a77d978e Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1Stub.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$1.class new file mode 100644 index 00000000..722bf531 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$2.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$2.class new file mode 100644 index 00000000..461ca525 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$2.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$Builder.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$Builder.class new file mode 100644 index 00000000..49bdb0cc Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$Builder.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings.class new file mode 100644 index 00000000..535c2467 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1Stub.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1Stub.class new file mode 100644 index 00000000..bd941542 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1Stub.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$1.class new file mode 100644 index 00000000..04703b01 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$2.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$2.class new file mode 100644 index 00000000..99530e4f Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$2.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$3.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$3.class new file mode 100644 index 00000000..8d608a71 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$3.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$4.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$4.class new file mode 100644 index 00000000..79545d63 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$4.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$5.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$5.class new file mode 100644 index 00000000..26934098 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$5.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$6.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$6.class new file mode 100644 index 00000000..44ef40cc Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$6.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$Builder.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$Builder.class new file mode 100644 index 00000000..7c4afd44 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$Builder.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings.class new file mode 100644 index 00000000..e7d77247 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1CallableFactory.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1CallableFactory.class new file mode 100644 index 00000000..027cef9b Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1CallableFactory.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$1.class new file mode 100644 index 00000000..38fdb061 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$2.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$2.class new file mode 100644 index 00000000..8c766c8f Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$2.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$3.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$3.class new file mode 100644 index 00000000..0f7cccec Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$3.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$4.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$4.class new file mode 100644 index 00000000..0c7bd97b Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$4.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$5.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$5.class new file mode 100644 index 00000000..97a7cbcb Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$5.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$6.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$6.class new file mode 100644 index 00000000..9740bee3 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$6.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub.class new file mode 100644 index 00000000..c29cf9cc Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1CallableFactory.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1CallableFactory.class new file mode 100644 index 00000000..f8f5b34f Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1CallableFactory.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$1.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$1.class new file mode 100644 index 00000000..b54b3f47 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$1.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$10.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$10.class new file mode 100644 index 00000000..b18af4fa Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$10.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$11.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$11.class new file mode 100644 index 00000000..5f360504 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$11.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$12.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$12.class new file mode 100644 index 00000000..5f8b0135 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$12.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$13.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$13.class new file mode 100644 index 00000000..4393a192 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$13.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$14.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$14.class new file mode 100644 index 00000000..fe8330fb Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$14.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$15.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$15.class new file mode 100644 index 00000000..dcb1ab21 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$15.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$2.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$2.class new file mode 100644 index 00000000..0d7d9421 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$2.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$3.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$3.class new file mode 100644 index 00000000..a04e76ef Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$3.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$4.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$4.class new file mode 100644 index 00000000..bc44914e Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$4.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$5.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$5.class new file mode 100644 index 00000000..36f634d6 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$5.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$6.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$6.class new file mode 100644 index 00000000..2899b8e5 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$6.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$7.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$7.class new file mode 100644 index 00000000..1bae2ee7 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$7.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$8.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$8.class new file mode 100644 index 00000000..b24903b7 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$8.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$9.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$9.class new file mode 100644 index 00000000..95a97f55 Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$9.class differ diff --git a/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub.class b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub.class new file mode 100644 index 00000000..1a4c259f Binary files /dev/null and b/google-cloud-containeranalysis/target/classes/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub.class differ diff --git a/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..de40e295 --- /dev/null +++ b/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,77 @@ +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$8.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$5.class +com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStub.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$14.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$11.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesFixedSizeCollection.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1CallableFactory.class +com/google/cloud/devtools/containeranalysis/v1/GrafeasUtils.class +com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings.class +com/google/cloud/devtools/containeranalysis/v1beta1/package-info.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$Builder.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesFixedSizeCollection.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$5.class +com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisCallableFactory.class +com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClient.class +com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$2.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$2.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$6.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesFixedSizeCollection.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPagedResponse.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$15.class +com/google/cloud/devtools/containeranalysis/v1/package-info.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$7.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$5.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$Builder.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$4.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$4.class +com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings$Builder.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$12.class +com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$3.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPagedResponse.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$2.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPagedResponse.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPagedResponse$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$3.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub.class +com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$3.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNoteOccurrencesPage.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$4.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1Stub.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1Stub.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPagedResponse.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPagedResponse$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPagedResponse$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$13.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPage.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$2.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub$6.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsPagedResponse$1.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$9.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings$3.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$10.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListNotesPage.class +com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings.class +com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub$2.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings$Builder.class +com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings$Builder.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client$ListOccurrencesPage.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub$6.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client$ListScanConfigsFixedSizeCollection.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client.class +com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1CallableFactory.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings$Builder.class diff --git a/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..a0a7b240 --- /dev/null +++ b/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,21 @@ +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStub.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Client.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1Stub.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1CallableFactory.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcContainerAnalysisV1Beta1Stub.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1Stub.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/GrafeasUtils.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/package-info.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/ContainerAnalysisV1Beta1StubSettings.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/package-info.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1StubSettings.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Client.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrpcGrafeasV1Beta1CallableFactory.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisCallableFactory.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClient.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1Settings.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/stub/GrpcContainerAnalysisStub.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Settings.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/stub/ContainerAnalysisStubSettings.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1beta1/stub/GrafeasV1Beta1Stub.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisSettings.java diff --git a/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 00000000..a4f99474 --- /dev/null +++ b/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1,10 @@ +com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysisImpl.class +com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClientTest.class +com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1ClientTest.class +com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1.class +com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysis.class +com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1Impl.class +com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1.class +com/google/cloud/devtools/containeranalysis/v1/ITGrafeasInteropTest.class +com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1ClientTest.class +com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1Impl.class diff --git a/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 00000000..abaf398d --- /dev/null +++ b/google-cloud-containeranalysis/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,10 @@ +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/ITGrafeasInteropTest.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysisImpl.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1ClientTest.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1Impl.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClientTest.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1Impl.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysis.java +/Users/codyoss/oss/java-containeranalysis/google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1ClientTest.java diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClientTest.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClientTest.class new file mode 100644 index 00000000..a0fb3929 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/ContainerAnalysisClientTest.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/ITGrafeasInteropTest.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/ITGrafeasInteropTest.class new file mode 100644 index 00000000..0a0e5fe8 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/ITGrafeasInteropTest.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysis.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysis.class new file mode 100644 index 00000000..30159371 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysis.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysisImpl.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysisImpl.class new file mode 100644 index 00000000..51a1caa7 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1/MockContainerAnalysisImpl.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1ClientTest.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1ClientTest.class new file mode 100644 index 00000000..bfa7cf40 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/ContainerAnalysisV1Beta1ClientTest.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1ClientTest.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1ClientTest.class new file mode 100644 index 00000000..f006dacd Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/GrafeasV1Beta1ClientTest.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1.class new file mode 100644 index 00000000..ac9992f2 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1Impl.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1Impl.class new file mode 100644 index 00000000..342bd675 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockContainerAnalysisV1Beta1Impl.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1.class new file mode 100644 index 00000000..8b889b07 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1.class differ diff --git a/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1Impl.class b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1Impl.class new file mode 100644 index 00000000..d9edadf6 Binary files /dev/null and b/google-cloud-containeranalysis/target/test-classes/com/google/cloud/devtools/containeranalysis/v1beta1/MockGrafeasV1Beta1Impl.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/pom.xml b/grpc-google-cloud-containeranalysis-v1/pom.xml index ad102384..ce42a6e1 100644 --- a/grpc-google-cloud-containeranalysis-v1/pom.xml +++ b/grpc-google-cloud-containeranalysis-v1/pom.xml @@ -2,51 +2,59 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + com.google.api.grpc grpc-google-cloud-containeranalysis-v1 0.82.0 grpc-google-cloud-containeranalysis-v1 GRPC library for grpc-google-cloud-containeranalysis-v1 - com.google.api.grpc - google-api-grpc - 0.82.0 + com.google.cloud + google-cloud-containeranalysis-parent + 0.117.0-beta + + io.grpc + grpc-api + io.grpc grpc-stub - compile io.grpc grpc-protobuf - compile + + + com.google.protobuf + protobuf-java com.google.api.grpc proto-google-cloud-containeranalysis-v1 - compile + + + com.google.guava + guava + + + com.google.api.grpc + proto-google-iam-v1 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.1 - - protected - true - none - true - - - ${project.javadoc.protobufBaseURL} - ../../../../proto-google-cloud-containeranalysis-v1/target/site/apidocs/ - - - - - - - + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/grpc-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ContainerAnalysisGrpc.java b/grpc-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ContainerAnalysisGrpc.java index 8b5c6af7..d6ebd66b 100644 --- a/grpc-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ContainerAnalysisGrpc.java +++ b/grpc-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ContainerAnalysisGrpc.java @@ -1,3 +1,18 @@ +/* + * 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.containeranalysis.v1; import static io.grpc.MethodDescriptor.generateFullMethodName; diff --git a/grpc-google-cloud-containeranalysis-v1/target/checkstyle-cachefile b/grpc-google-cloud-containeranalysis-v1/target/checkstyle-cachefile new file mode 100644 index 00000000..dfad11d5 --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1/target/checkstyle-cachefile @@ -0,0 +1,4 @@ +#Fri Nov 01 15:41:19 MDT 2019 +configuration*?=92476D5669833AA6261531ED82F130AAED5EE97E +module-resource*?\:file\:/Users/codyoss/oss/java-containeranalysis/grpc-google-cloud-containeranalysis-v1/target/checkstyle-header.txt=25F6DC6B0E0E8C43BA44E8B5F4839CB7BE8256A7 +/Users/codyoss/oss/java-containeranalysis/grpc-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ContainerAnalysisGrpc.java=1572640656337 diff --git a/grpc-google-cloud-containeranalysis-v1/target/checkstyle-checker.xml b/grpc-google-cloud-containeranalysis-v1/target/checkstyle-checker.xml new file mode 100644 index 00000000..6597fced --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1/target/checkstyle-checker.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/grpc-google-cloud-containeranalysis-v1/target/checkstyle-header.txt b/grpc-google-cloud-containeranalysis-v1/target/checkstyle-header.txt new file mode 100644 index 00000000..3a9b503a --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1/target/checkstyle-header.txt @@ -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/grpc-google-cloud-containeranalysis-v1/target/checkstyle-result.xml b/grpc-google-cloud-containeranalysis-v1/target/checkstyle-result.xml new file mode 100644 index 00000000..3c8690bc --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1/target/checkstyle-result.xml @@ -0,0 +1,3 @@ + + + diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$1.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$1.class new file mode 100644 index 00000000..242b7fab Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$1.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisBaseDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisBaseDescriptorSupplier.class new file mode 100644 index 00000000..a49c8525 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisBaseDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisBlockingStub.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisBlockingStub.class new file mode 100644 index 00000000..d740e150 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisBlockingStub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisFileDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisFileDescriptorSupplier.class new file mode 100644 index 00000000..f2ab1f07 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisFileDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisFutureStub.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisFutureStub.class new file mode 100644 index 00000000..23ef7550 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisFutureStub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisImplBase.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisImplBase.class new file mode 100644 index 00000000..a9357fe9 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisImplBase.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisMethodDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisMethodDescriptorSupplier.class new file mode 100644 index 00000000..52259c00 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisMethodDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisStub.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisStub.class new file mode 100644 index 00000000..691736b6 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisStub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$MethodHandlers.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$MethodHandlers.class new file mode 100644 index 00000000..ff5b44c0 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc$MethodHandlers.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc.class b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc.class new file mode 100644 index 00000000..0e781920 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ContainerAnalysisGrpc.class differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/grpc-google-cloud-containeranalysis-v1-0.82.0-tests.jar b/grpc-google-cloud-containeranalysis-v1/target/grpc-google-cloud-containeranalysis-v1-0.82.0-tests.jar new file mode 100644 index 00000000..61d4b9a6 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/grpc-google-cloud-containeranalysis-v1-0.82.0-tests.jar differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/grpc-google-cloud-containeranalysis-v1-0.82.0.jar b/grpc-google-cloud-containeranalysis-v1/target/grpc-google-cloud-containeranalysis-v1-0.82.0.jar new file mode 100644 index 00000000..06a3a5d9 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1/target/grpc-google-cloud-containeranalysis-v1-0.82.0.jar differ diff --git a/grpc-google-cloud-containeranalysis-v1/target/maven-archiver/pom.properties b/grpc-google-cloud-containeranalysis-v1/target/maven-archiver/pom.properties new file mode 100644 index 00000000..20c239b8 --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +groupId=com.google.api.grpc +artifactId=grpc-google-cloud-containeranalysis-v1 +version=0.82.0 diff --git a/grpc-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/grpc-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..f7603109 --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,10 @@ +com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisBlockingStub.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisImplBase.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisFutureStub.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisStub.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisBaseDescriptorSupplier.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc$1.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisFileDescriptorSupplier.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc$MethodHandlers.class +com/google/containeranalysis/v1/ContainerAnalysisGrpc$ContainerAnalysisMethodDescriptorSupplier.class diff --git a/grpc-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/grpc-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..5c26dd4f --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1 @@ +/Users/codyoss/oss/java-containeranalysis/grpc-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ContainerAnalysisGrpc.java diff --git a/grpc-google-cloud-containeranalysis-v1beta1/pom.xml b/grpc-google-cloud-containeranalysis-v1beta1/pom.xml index 78c013ab..7a7dd84e 100644 --- a/grpc-google-cloud-containeranalysis-v1beta1/pom.xml +++ b/grpc-google-cloud-containeranalysis-v1beta1/pom.xml @@ -2,51 +2,59 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + com.google.api.grpc grpc-google-cloud-containeranalysis-v1beta1 0.82.0 grpc-google-cloud-containeranalysis-v1beta1 GRPC library for grpc-google-cloud-containeranalysis-v1beta1 - com.google.api.grpc - google-api-grpc - 0.82.0 + com.google.cloud + google-cloud-containeranalysis-parent + 0.117.0-beta + + io.grpc + grpc-api + io.grpc grpc-stub - compile io.grpc grpc-protobuf - compile + + + com.google.protobuf + protobuf-java com.google.api.grpc proto-google-cloud-containeranalysis-v1beta1 - compile + + + com.google.guava + guava + + + com.google.api.grpc + proto-google-iam-v1 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.1 - - protected - true - none - true - - - ${project.javadoc.protobufBaseURL} - ../../../../proto-google-cloud-containeranalysis-v1beta1/target/site/apidocs/ - - - - - - - + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.java b/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.java index b819f720..621f38fa 100644 --- a/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.java +++ b/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.java @@ -1,3 +1,18 @@ +/* + * 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.containeranalysis.v1beta1; import static io.grpc.MethodDescriptor.generateFullMethodName; diff --git a/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.java b/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.java index 6720081d..6c3fedad 100644 --- a/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.java +++ b/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.java @@ -1,3 +1,18 @@ +/* + * 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 io.grafeas.v1beta1; import static io.grpc.MethodDescriptor.generateFullMethodName; diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-cachefile b/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-cachefile new file mode 100644 index 00000000..82df2c6d --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-cachefile @@ -0,0 +1,5 @@ +#Fri Nov 01 15:41:19 MDT 2019 +configuration*?=703B82CD3C51A409A732C547404E480DB2C6D904 +/Users/codyoss/oss/java-containeranalysis/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.java=1572640631568 +/Users/codyoss/oss/java-containeranalysis/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.java=1572640631569 +module-resource*?\:file\:/Users/codyoss/oss/java-containeranalysis/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-header.txt=25F6DC6B0E0E8C43BA44E8B5F4839CB7BE8256A7 diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-checker.xml b/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-checker.xml new file mode 100644 index 00000000..6597fced --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-checker.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-header.txt b/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-header.txt new file mode 100644 index 00000000..3a9b503a --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-header.txt @@ -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/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-result.xml b/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-result.xml new file mode 100644 index 00000000..3c8690bc --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1beta1/target/checkstyle-result.xml @@ -0,0 +1,3 @@ + + + diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$1.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$1.class new file mode 100644 index 00000000..d5de5815 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$1.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1BaseDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1BaseDescriptorSupplier.class new file mode 100644 index 00000000..c2f3a894 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1BaseDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1BlockingStub.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1BlockingStub.class new file mode 100644 index 00000000..3314d8fe Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1BlockingStub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1FileDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1FileDescriptorSupplier.class new file mode 100644 index 00000000..c7cbdcb8 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1FileDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1FutureStub.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1FutureStub.class new file mode 100644 index 00000000..bc94d535 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1FutureStub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1ImplBase.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1ImplBase.class new file mode 100644 index 00000000..7d559f12 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1ImplBase.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1MethodDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1MethodDescriptorSupplier.class new file mode 100644 index 00000000..b5da571e Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1MethodDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1Stub.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1Stub.class new file mode 100644 index 00000000..e9782d76 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1Stub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$MethodHandlers.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$MethodHandlers.class new file mode 100644 index 00000000..a997afff Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$MethodHandlers.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.class new file mode 100644 index 00000000..6af18236 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$1.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$1.class new file mode 100644 index 00000000..9bb21bac Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$1.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1BaseDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1BaseDescriptorSupplier.class new file mode 100644 index 00000000..001da581 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1BaseDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1BlockingStub.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1BlockingStub.class new file mode 100644 index 00000000..12f37b58 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1BlockingStub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1FileDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1FileDescriptorSupplier.class new file mode 100644 index 00000000..1a817d24 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1FileDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1FutureStub.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1FutureStub.class new file mode 100644 index 00000000..31814141 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1FutureStub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1ImplBase.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1ImplBase.class new file mode 100644 index 00000000..cb4ca58b Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1ImplBase.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1MethodDescriptorSupplier.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1MethodDescriptorSupplier.class new file mode 100644 index 00000000..0a49c936 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1MethodDescriptorSupplier.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1Stub.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1Stub.class new file mode 100644 index 00000000..bf2edba5 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1Stub.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$MethodHandlers.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$MethodHandlers.class new file mode 100644 index 00000000..b7882018 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc$MethodHandlers.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.class b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.class new file mode 100644 index 00000000..883cf509 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.class differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/grpc-google-cloud-containeranalysis-v1beta1-0.82.0-tests.jar b/grpc-google-cloud-containeranalysis-v1beta1/target/grpc-google-cloud-containeranalysis-v1beta1-0.82.0-tests.jar new file mode 100644 index 00000000..72a612c9 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/grpc-google-cloud-containeranalysis-v1beta1-0.82.0-tests.jar differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/grpc-google-cloud-containeranalysis-v1beta1-0.82.0.jar b/grpc-google-cloud-containeranalysis-v1beta1/target/grpc-google-cloud-containeranalysis-v1beta1-0.82.0.jar new file mode 100644 index 00000000..b09753e9 Binary files /dev/null and b/grpc-google-cloud-containeranalysis-v1beta1/target/grpc-google-cloud-containeranalysis-v1beta1-0.82.0.jar differ diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/maven-archiver/pom.properties b/grpc-google-cloud-containeranalysis-v1beta1/target/maven-archiver/pom.properties new file mode 100644 index 00000000..29cb747d --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1beta1/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +groupId=com.google.api.grpc +artifactId=grpc-google-cloud-containeranalysis-v1beta1 +version=0.82.0 diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/grpc-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..75697ce3 --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,20 @@ +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1ImplBase.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$1.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$MethodHandlers.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1FutureStub.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1FileDescriptorSupplier.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1BaseDescriptorSupplier.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1Stub.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1BlockingStub.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1BaseDescriptorSupplier.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1MethodDescriptorSupplier.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$MethodHandlers.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$ContainerAnalysisV1Beta1BlockingStub.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1Stub.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1FutureStub.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1MethodDescriptorSupplier.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1FileDescriptorSupplier.class +com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc$1.class +io/grafeas/v1beta1/GrafeasV1Beta1Grpc$GrafeasV1Beta1ImplBase.class diff --git a/grpc-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/grpc-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..84506ff4 --- /dev/null +++ b/grpc-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,2 @@ +/Users/codyoss/oss/java-containeranalysis/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ContainerAnalysisV1Beta1Grpc.java +/Users/codyoss/oss/java-containeranalysis/grpc-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GrafeasV1Beta1Grpc.java diff --git a/java.header b/java.header new file mode 100644 index 00000000..3a9b503a --- /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 00000000..6597fced --- /dev/null +++ b/license-checks.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..68caeac8 --- /dev/null +++ b/pom.xml @@ -0,0 +1,290 @@ + + + 4.0.0 + com.google.cloud + google-cloud-containeranalysis-parent + pom + 0.117.0-beta + Google Cloud Container Analysis Parent + https://github.com/googleapis/java-containeranalysis + + Java idiomatic client for Google Cloud Platform services. + + + + 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-containeranalysis.git + scm:git:git@github.com:googleapis/java-containeranalysis.git + https://github.com/googleapis/java-containeranalysis + HEAD + + + https://github.com/googleapis/java-containeranalysis/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-containeranalysis-parent + 1.91.1 + 1.8.1 + 1.17.0 + 1.49.1 + 1.24.1 + 3.10.0 + 4.12 + 28.1-android + 1.4.0 + 1.3.2 + 1.18 + + + + + + com.google.api.grpc + proto-google-cloud-containeranalysis-v1 + 0.82.0 + + + com.google.api.grpc + proto-google-cloud-containeranalysis-v1beta1 + 0.82.0 + + + com.google.api.grpc + grpc-google-cloud-containeranalysis-v1beta1 + 0.82.0 + + + com.google.api.grpc + grpc-google-cloud-containeranalysis-v1 + 0.82.0 + + + com.google.cloud + google-cloud-containeranalysis + 0.117.0-beta + + + + 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} + + + com.google.api.grpc + proto-google-iam-v1 + 0.13.0 + + + com.google.code.gson + gson + 2.8.6 + + + + io.grafeas + grafeas + 0.20.0 + + + + com.google.protobuf + protobuf-java-util + 3.10.0 + + + + junit + junit + ${junit.version} + test + + + com.google.api + gax-grpc + ${gax.version} + testlib + test + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + org.objenesis:objenesis + + + + + + + + proto-google-cloud-containeranalysis-v1 + proto-google-cloud-containeranalysis-v1beta1 + grpc-google-cloud-containeranalysis-v1beta1 + grpc-google-cloud-containeranalysis-v1 + google-cloud-containeranalysis + google-cloud-containeranalysis-bom + + + + + + 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/proto-google-cloud-containeranalysis-v1/pom.xml b/proto-google-cloud-containeranalysis-v1/pom.xml index 3f3412e7..41f9b242 100644 --- a/proto-google-cloud-containeranalysis-v1/pom.xml +++ b/proto-google-cloud-containeranalysis-v1/pom.xml @@ -2,35 +2,36 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + com.google.api.grpc proto-google-cloud-containeranalysis-v1 0.82.0 proto-google-cloud-containeranalysis-v1 PROTO library for proto-google-cloud-containeranalysis-v1 - com.google.api.grpc - google-api-grpc - 0.82.0 + com.google.cloud + google-cloud-containeranalysis-parent + 0.117.0-beta com.google.protobuf protobuf-java - compile + + + com.google.api.grpc + proto-google-common-protos com.google.api api-common - compile - com.google.api.grpc - proto-google-common-protos - compile + com.google.guava + guava com.google.api.grpc proto-google-iam-v1 - compile \ No newline at end of file diff --git a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/Containeranalysis.java b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/Containeranalysis.java index fc20085f..57e52971 100644 --- a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/Containeranalysis.java +++ b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/Containeranalysis.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceName.java b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceName.java index e8192385..6e0e5f28 100644 --- a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1; diff --git a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceNames.java index 1e1ab68d..f2eb2fbc 100644 --- a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1; diff --git a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/NoteName.java b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/NoteName.java index 172881a5..6bbbf824 100644 --- a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1; diff --git a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/OccurrenceName.java index 6927a7e5..7f7a8351 100644 --- a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1; diff --git a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ProjectName.java b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ProjectName.java index b9c9996a..59281a56 100644 --- a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1; diff --git a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/UntypedIamResourceName.java index 019b93b0..0c83bcc1 100644 --- a/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1; diff --git a/proto-google-cloud-containeranalysis-v1/target/checkstyle-cachefile b/proto-google-cloud-containeranalysis-v1/target/checkstyle-cachefile new file mode 100644 index 00000000..b6b4c196 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1/target/checkstyle-cachefile @@ -0,0 +1,10 @@ +#Fri Nov 01 15:41:18 MDT 2019 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceName.java=1572640657595 +configuration*?=B5D8B899F7F7A2E311564B7BBC40FF64E1C75324 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/NoteName.java=1572640657595 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/Containeranalysis.java=1572640657596 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceNames.java=1572640658174 +module-resource*?\:file\:/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/target/checkstyle-header.txt=25F6DC6B0E0E8C43BA44E8B5F4839CB7BE8256A7 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/UntypedIamResourceName.java=1572640657596 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ProjectName.java=1572640657594 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/OccurrenceName.java=1572640657595 diff --git a/proto-google-cloud-containeranalysis-v1/target/checkstyle-checker.xml b/proto-google-cloud-containeranalysis-v1/target/checkstyle-checker.xml new file mode 100644 index 00000000..6597fced --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1/target/checkstyle-checker.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/proto-google-cloud-containeranalysis-v1/target/checkstyle-header.txt b/proto-google-cloud-containeranalysis-v1/target/checkstyle-header.txt new file mode 100644 index 00000000..3a9b503a --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1/target/checkstyle-header.txt @@ -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/proto-google-cloud-containeranalysis-v1/target/checkstyle-result.xml b/proto-google-cloud-containeranalysis-v1/target/checkstyle-result.xml new file mode 100644 index 00000000..3c8690bc --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1/target/checkstyle-result.xml @@ -0,0 +1,3 @@ + + + diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/Containeranalysis$1.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/Containeranalysis$1.class new file mode 100644 index 00000000..002f5742 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/Containeranalysis$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/Containeranalysis.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/Containeranalysis.class new file mode 100644 index 00000000..98c0641b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/Containeranalysis.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/IamResourceName.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/IamResourceName.class new file mode 100644 index 00000000..29e77aad Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/IamResourceNames.class new file mode 100644 index 00000000..18e68dbd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName$1.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName$1.class new file mode 100644 index 00000000..871ad8aa Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName$Builder.class new file mode 100644 index 00000000..e05dfa01 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName.class new file mode 100644 index 00000000..56067a55 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName$1.class new file mode 100644 index 00000000..dd09b42c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName$Builder.class new file mode 100644 index 00000000..2a9e45a4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName.class new file mode 100644 index 00000000..7cd958bf Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName$1.class new file mode 100644 index 00000000..da1da79a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName$Builder.class new file mode 100644 index 00000000..5ed83e3d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName.class new file mode 100644 index 00000000..b03fa1df Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/UntypedIamResourceName.class new file mode 100644 index 00000000..293a92eb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/classes/com/google/containeranalysis/v1/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1/target/classes/google/devtools/containeranalysis/v1/containeranalysis.proto b/proto-google-cloud-containeranalysis-v1/target/classes/google/devtools/containeranalysis/v1/containeranalysis.proto new file mode 100644 index 00000000..0a54ccc6 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1/target/classes/google/devtools/containeranalysis/v1/containeranalysis.proto @@ -0,0 +1,101 @@ +// 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. +// + +syntax = "proto3"; + +package google.devtools.containeranalysis.v1; + +import "google/api/annotations.proto"; +import "google/iam/v1/iam_policy.proto"; +import "google/iam/v1/policy.proto"; +import "google/protobuf/timestamp.proto"; + +option csharp_namespace = "Google.Cloud.DevTools.ContainerAnalysis.V1"; +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1;containeranalysis"; +option java_multiple_files = true; +option java_package = "com.google.containeranalysis.v1"; +option objc_class_prefix = "GCA"; +option ruby_package = "Google::Cloud::ContainerAnalysis::V1"; + +// Retrieves analysis results of Cloud components such as Docker container +// images. The Container Analysis API is an implementation of the +// [Grafeas](https://grafeas.io) API. +// +// Analysis results are stored as a series of occurrences. An `Occurrence` +// contains information about a specific analysis instance on a resource. An +// occurrence refers to a `Note`. A note contains details describing the +// analysis and is generally stored in a separate project, called a `Provider`. +// Multiple occurrences can refer to the same note. +// +// For example, an SSL vulnerability could affect multiple images. In this case, +// there would be one note for the vulnerability and an occurrence for each +// image with the vulnerability referring to that note. +service ContainerAnalysis { + // Sets the access control policy on the specified note or occurrence. + // Requires `containeranalysis.notes.setIamPolicy` or + // `containeranalysis.occurrences.setIamPolicy` permission if the resource is + // a note or an occurrence, respectively. + // + // The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for + // notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for + // occurrences. + rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) returns (google.iam.v1.Policy) { + option (google.api.http) = { + post: "/v1/{resource=projects/*/notes/*}:setIamPolicy" + body: "*" + additional_bindings { + post: "/v1/{resource=projects/*/occurrences/*}:setIamPolicy" + body: "*" + } + }; + } + + // Gets the access control policy for a note or an occurrence resource. + // Requires `containeranalysis.notes.setIamPolicy` or + // `containeranalysis.occurrences.setIamPolicy` permission if the resource is + // a note or occurrence, respectively. + // + // The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for + // notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for + // occurrences. + rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) returns (google.iam.v1.Policy) { + option (google.api.http) = { + post: "/v1/{resource=projects/*/notes/*}:getIamPolicy" + body: "*" + additional_bindings { + post: "/v1/{resource=projects/*/occurrences/*}:getIamPolicy" + body: "*" + } + }; + } + + // Returns the permissions that a caller has on the specified note or + // occurrence. Requires list permission on the project (for example, + // `containeranalysis.notes.list`). + // + // The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for + // notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for + // occurrences. + rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) returns (google.iam.v1.TestIamPermissionsResponse) { + option (google.api.http) = { + post: "/v1/{resource=projects/*/notes/*}:testIamPermissions" + body: "*" + additional_bindings { + post: "/v1/{resource=projects/*/occurrences/*}:testIamPermissions" + body: "*" + } + }; + } +} diff --git a/proto-google-cloud-containeranalysis-v1/target/maven-archiver/pom.properties b/proto-google-cloud-containeranalysis-v1/target/maven-archiver/pom.properties new file mode 100644 index 00000000..8370390c --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +groupId=com.google.api.grpc +artifactId=proto-google-cloud-containeranalysis-v1 +version=0.82.0 diff --git a/proto-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/proto-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..b14cfcd9 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,14 @@ +com/google/containeranalysis/v1/IamResourceName.class +com/google/containeranalysis/v1/IamResourceNames.class +com/google/containeranalysis/v1/ProjectName$Builder.class +com/google/containeranalysis/v1/NoteName.class +com/google/containeranalysis/v1/UntypedIamResourceName.class +com/google/containeranalysis/v1/Containeranalysis$1.class +com/google/containeranalysis/v1/ProjectName.class +com/google/containeranalysis/v1/NoteName$1.class +com/google/containeranalysis/v1/NoteName$Builder.class +com/google/containeranalysis/v1/ProjectName$1.class +com/google/containeranalysis/v1/OccurrenceName$1.class +com/google/containeranalysis/v1/Containeranalysis.class +com/google/containeranalysis/v1/OccurrenceName$Builder.class +com/google/containeranalysis/v1/OccurrenceName.class diff --git a/proto-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/proto-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..dbfe6434 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,7 @@ +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/Containeranalysis.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1/src/main/java/com/google/containeranalysis/v1/OccurrenceName.java diff --git a/proto-google-cloud-containeranalysis-v1/target/proto-google-cloud-containeranalysis-v1-0.82.0-tests.jar b/proto-google-cloud-containeranalysis-v1/target/proto-google-cloud-containeranalysis-v1-0.82.0-tests.jar new file mode 100644 index 00000000..f457aac1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/proto-google-cloud-containeranalysis-v1-0.82.0-tests.jar differ diff --git a/proto-google-cloud-containeranalysis-v1/target/proto-google-cloud-containeranalysis-v1-0.82.0.jar b/proto-google-cloud-containeranalysis-v1/target/proto-google-cloud-containeranalysis-v1-0.82.0.jar new file mode 100644 index 00000000..92691e15 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1/target/proto-google-cloud-containeranalysis-v1-0.82.0.jar differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/pom.xml b/proto-google-cloud-containeranalysis-v1beta1/pom.xml index 18dea030..e444d1d5 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/pom.xml +++ b/proto-google-cloud-containeranalysis-v1beta1/pom.xml @@ -2,35 +2,36 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + com.google.api.grpc proto-google-cloud-containeranalysis-v1beta1 0.82.0 proto-google-cloud-containeranalysis-v1beta1 PROTO library for proto-google-cloud-containeranalysis-v1beta1 - com.google.api.grpc - google-api-grpc - 0.82.0 + com.google.cloud + google-cloud-containeranalysis-parent + 0.117.0-beta com.google.protobuf protobuf-java - compile + + + com.google.api.grpc + proto-google-common-protos com.google.api api-common - compile - com.google.api.grpc - proto-google-common-protos - compile + com.google.guava + guava com.google.api.grpc proto-google-iam-v1 - compile \ No newline at end of file diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/Containeranalysis.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/Containeranalysis.java index fe0538dd..348eb450 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/Containeranalysis.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/Containeranalysis.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequest.java index 2878f596..7b335848 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.java index ce33e312..5e3ca42c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceName.java index 53ba6cb9..f9b60fd0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceNames.java index ab4cab95..a77b4de0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.java index 55acacc0..a5ee7d9c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.java index 1fa68848..d3251090 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.java index d13901d3..28cfb4f6 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.java index 1be54784..e2cb3d49 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/NoteName.java index 464012ec..8abea7b6 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/OccurrenceName.java index 2b71eaf0..dcafd7e3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ProjectName.java index e76864c7..7ec6247c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfig.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfig.java index ed284f0b..ed197a11 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfig.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfig.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigName.java index b4a22474..a11b9312 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.java index 3f9500c4..e955d9c9 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UntypedIamResourceName.java index a39952a3..e769e8de 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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.containeranalysis.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.java index 7235a7c4..5a8a5d84 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.java index 338f5650..cbdd57f0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequest.java index 4adf9d81..d043e0c5 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.java index 3b69c56e..2b8c6b92 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponse.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponse.java index bf407610..5da8bb9d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponse.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponse.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.java index 4cf64f75..62e3627c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.java index 029e0b18..e464b7d9 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.java index 57b6e010..05b8c79d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.java index 376c2a96..3b62ba02 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.java index d21ce294..e93d530d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequest.java index f7f334ec..d1ea3f91 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.java index b6e6a3f1..c83719c1 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequest.java index 1a1e6c6e..66bc5c6e 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.java index d6e46b43..73e6c57f 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequest.java index 96ed2588..588a4a68 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.java index f91a646c..76e8408a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequest.java index 8cacedb4..ae34d280 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.java index 2a39d9a2..529c6fd9 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequest.java index 11a205b4..6e9d7322 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequestOrBuilder.java index b309b243..6b919096 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequest.java index 23d0ce2a..1620bb65 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.java index ff2bd141..d136b91c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequest.java index 2cdd2e65..cacf80a4 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.java index e551cfbb..3d574760 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.java index e42d51e2..e5a419a7 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.java index 9517305b..6effaaf0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Grafeas.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Grafeas.java index 1e985fa9..defb050b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Grafeas.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Grafeas.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceName.java index 09c7d936..186fe5a8 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceNames.java index 1e64f793..f536507e 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequest.java index bda62926..60213a9f 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.java index 6fbaa2df..a30f8dc3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponse.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponse.java index 22ce63b2..174b9aa6 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponse.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponse.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.java index a3b022b2..3e53aaa2 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequest.java index 47aaa518..45578a2f 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequestOrBuilder.java index 70959457..bb233a29 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponse.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponse.java index 17dc2542..c11b82bb 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponse.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponse.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponseOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponseOrBuilder.java index 1b0b048d..583030da 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponseOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponseOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequest.java index cd0a582d..ad2c0fdb 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.java index 15f9f196..881b7bc8 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponse.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponse.java index dc7b034a..a29505ee 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponse.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponse.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.java index 07a778b3..e7722638 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Note.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Note.java index 29084fc4..c3be1869 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Note.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Note.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteName.java index 440e7ce4..bb83f86b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteOrBuilder.java index 9bd9e520..5416d239 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Occurrence.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Occurrence.java index 69216d56..930d276b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Occurrence.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Occurrence.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceName.java index 7748b495..90984ab3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceOrBuilder.java index 335aa365..1fc06f09 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ProjectName.java index f3eaf6f0..ab7aceb4 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Resource.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Resource.java index 4a8906f7..79067a7e 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Resource.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Resource.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ResourceOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ResourceOrBuilder.java index c21d7650..d9a4d4c7 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ResourceOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ResourceOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ScanConfigName.java index 73cf1c66..bc2d62b5 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UntypedIamResourceName.java index 033a4ae9..a0984b92 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequest.java index d693f718..77b2e1b6 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.java index 24183f32..dee1ff03 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequest.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequest.java index 833710d9..1e95e888 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequest.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequest.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.java index 4536559d..720542a8 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.java index a5bd7391..4a335729 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.java index c7216c96..e18109c0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Attestation.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Attestation.java index 574901d1..a69255c6 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Attestation.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Attestation.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOrBuilder.java index 2a555c8b..1ced6b6e 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOuterClass.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOuterClass.java index d3727183..11ce215d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOuterClass.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOuterClass.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Authority.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Authority.java index 04dc3996..a2fcecb1 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Authority.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Authority.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.java index f02c805c..75f47372 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Details.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Details.java index b9e121ca..8fd7c753 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Details.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Details.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/DetailsOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/DetailsOrBuilder.java index d3f288d5..124a8c13 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/DetailsOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/DetailsOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceName.java index ce3df640..7b1158e7 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.attestation; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceNames.java index 0b82968a..48985a5a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.attestation; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/NoteName.java index 76c1028b..ccb8fc2b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.attestation; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/OccurrenceName.java index 38a73b8c..99c2de11 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.attestation; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestation.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestation.java index aff40b1f..0f2517f3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestation.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestation.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.java index b5a53d79..6a3e22dd 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/attestation/attestation.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ProjectName.java index 46f1295a..8faa1611 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.attestation; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ScanConfigName.java index be176347..065133df 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.attestation; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/UntypedIamResourceName.java index 98732153..4326462b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.attestation; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Build.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Build.java index b57f4d99..1bd34a29 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Build.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Build.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/build/build.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOrBuilder.java index 5ecec343..db784bde 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/build/build.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOuterClass.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOuterClass.java index 7aad8551..d8b655d1 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOuterClass.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOuterClass.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/build/build.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignature.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignature.java index 6a7c9581..d1a4cbfd 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignature.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignature.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/build/build.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.java index f5cca178..dc4348d2 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/build/build.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Details.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Details.java index 65ef709e..83285051 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Details.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Details.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/build/build.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/DetailsOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/DetailsOrBuilder.java index 36e933a1..6a05e0c8 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/DetailsOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/DetailsOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/build/build.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceName.java index 91a46c38..eb3bab49 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.build; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceNames.java index 9e14a3dd..fb3887b1 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.build; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/NoteName.java index 5f988dd0..9f59b669 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.build; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/OccurrenceName.java index 72db9e03..a5d21253 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.build; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ProjectName.java index 925e34e3..88c3ce13 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.build; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ScanConfigName.java index 2a576d48..0232eb4a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.build; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/UntypedIamResourceName.java index e53e25cc..5f75c316 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.build; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/Common.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/Common.java index 412b065b..29acf943 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/Common.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/Common.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/common/common.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceName.java index 264ca3cb..5a9bb9fc 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.common; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceNames.java index 53b328cc..b4328aca 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.common; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteKind.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteKind.java index 843e9430..d75cafe4 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteKind.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteKind.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/common/common.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteName.java index ba0046d8..a8337568 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.common; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/OccurrenceName.java index ace07bb9..0bee1d07 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.common; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ProjectName.java index 01f56aad..afc084e2 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.common; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrl.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrl.java index 5e1f4b96..dc6bacec 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrl.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrl.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/common/common.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.java index c796400b..e16677af 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/common/common.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ScanConfigName.java index f018b59c..a75b4dae 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.common; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/UntypedIamResourceName.java index 7e42c3ce..3d6f60bf 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.common; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployable.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployable.java index 58543ce8..f9b42389 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployable.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployable.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/deployment/deployment.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeployableOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeployableOrBuilder.java index 8933181d..15c52ca5 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeployableOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeployableOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/deployment/deployment.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployment.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployment.java index f164a421..7a2f5ae4 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployment.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployment.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/deployment/deployment.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.java index 2686ecc6..b0d6fa23 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/deployment/deployment.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOuterClass.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOuterClass.java index 27860465..86732d02 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOuterClass.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOuterClass.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/deployment/deployment.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Details.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Details.java index 3c293ecf..5fd2224e 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Details.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Details.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/deployment/deployment.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DetailsOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DetailsOrBuilder.java index 6fca14bd..d722fb4d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DetailsOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DetailsOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/deployment/deployment.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceName.java index 962637d3..bfc3add3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.deployment; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceNames.java index 46c998f8..5c3457f2 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.deployment; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/NoteName.java index c505e278..5fec267b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.deployment; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/OccurrenceName.java index e34b8ce9..4f7e6656 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.deployment; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ProjectName.java index 5908faed..a182fe1a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.deployment; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ScanConfigName.java index 216d5bde..d38afbc3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.deployment; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/UntypedIamResourceName.java index d31cf1bb..f8ab5e9f 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.deployment; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Details.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Details.java index 4eaf0da8..9c53ee3f 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Details.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Details.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/discovery/discovery.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DetailsOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DetailsOrBuilder.java index 6d6d23b5..1ed3c70b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DetailsOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DetailsOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/discovery/discovery.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovered.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovered.java index a6a09b20..81ad66f8 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovered.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovered.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/discovery/discovery.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.java index aa22eceb..2e00da70 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/discovery/discovery.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovery.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovery.java index 446bfe34..70868739 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovery.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovery.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/discovery/discovery.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.java index fee2e850..67b8aae7 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/discovery/discovery.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.java index 7b33ccd4..3e35d23b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/discovery/discovery.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceName.java index 464a7be9..a5c2e0ae 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.discovery; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceNames.java index d667dc18..0c76be5a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.discovery; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/NoteName.java index efbfe1fd..b5d1caf4 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.discovery; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/OccurrenceName.java index aac5821d..304bafd1 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.discovery; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ProjectName.java index 400d1f69..cf5a8824 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.discovery; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ScanConfigName.java index d9d5649e..9751670a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.discovery; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/UntypedIamResourceName.java index 3a47d958..88f9f6f3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.discovery; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Basis.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Basis.java index 08f90b2a..5109d8de 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Basis.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Basis.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/BasisOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/BasisOrBuilder.java index 7beae545..90ea826d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/BasisOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/BasisOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Derived.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Derived.java index 1d1eb583..2f92a797 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Derived.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Derived.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DerivedOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DerivedOrBuilder.java index 34ce64e5..5ca71ea5 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DerivedOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DerivedOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Details.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Details.java index eeeb5ff6..354eb052 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Details.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Details.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DetailsOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DetailsOrBuilder.java index a7d47a61..9ec54340 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DetailsOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DetailsOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Fingerprint.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Fingerprint.java index 530c3e2b..85b19023 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Fingerprint.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Fingerprint.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/FingerprintOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/FingerprintOrBuilder.java index 62e1bea5..6b10a4b1 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/FingerprintOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/FingerprintOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceName.java index 4c6decbf..f7bed42d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.image; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceNames.java index a2cba658..3af94d00 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.image; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Image.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Image.java index 07c426ea..ab2c7754 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Image.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Image.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Layer.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Layer.java index 785a9b08..e6bf06c0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Layer.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Layer.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/LayerOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/LayerOrBuilder.java index 4a954513..e74e84a2 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/LayerOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/LayerOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/image/image.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/NoteName.java index f9c909ae..36ca8e50 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.image; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/OccurrenceName.java index 69149f2b..1d4f6d1a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.image; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ProjectName.java index 93e60f7c..4996138b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.image; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ScanConfigName.java index 02fef4d3..bccc6ae2 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.image; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/UntypedIamResourceName.java index ffde782d..25e7f140 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.image; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Architecture.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Architecture.java index 0d47353c..e7946c9d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Architecture.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Architecture.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Details.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Details.java index 0d02a5b2..a6fb6259 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Details.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Details.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DetailsOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DetailsOrBuilder.java index 4a22b305..8f11613b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DetailsOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DetailsOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Distribution.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Distribution.java index 15b5c35c..7e33c935 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Distribution.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Distribution.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DistributionOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DistributionOrBuilder.java index 60c5800a..95555ed0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DistributionOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DistributionOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceName.java index 1db5dba0..32d3ea2e 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.pkg; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceNames.java index c7ada2f7..32aa8208 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.pkg; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Installation.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Installation.java index 95528469..4461eca1 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Installation.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Installation.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/InstallationOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/InstallationOrBuilder.java index 5a59d988..89882ec5 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/InstallationOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/InstallationOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Location.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Location.java index 6286ebfb..e3b11ead 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Location.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Location.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/LocationOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/LocationOrBuilder.java index d770fab7..14a7c2a3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/LocationOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/LocationOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/NoteName.java index e927fd7b..a5e4d7f3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.pkg; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/OccurrenceName.java index cde57a07..54ed3316 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.pkg; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Package.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Package.java index bf4d0914..c013726f 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Package.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Package.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOrBuilder.java index 47549b6a..75659f9d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOuterClass.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOuterClass.java index e86b405e..9c40d19d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOuterClass.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOuterClass.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ProjectName.java index c750bbb7..22ea321b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.pkg; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ScanConfigName.java index f3426df3..f48de425 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.pkg; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/UntypedIamResourceName.java index 6b942008..f1cb1b71 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.pkg; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Version.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Version.java index 263ee21c..ee59185f 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Version.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Version.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/VersionOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/VersionOrBuilder.java index 74018867..8fb10a20 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/VersionOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/VersionOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/package/package.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Artifact.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Artifact.java index 1d40b2c5..35f4ac35 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Artifact.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Artifact.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.java index a5a1ebac..b0a08082 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenance.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenance.java index 18a1eaeb..93d6ea70 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenance.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenance.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.java index 79646c70..97d0f656 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Command.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Command.java index cc3da421..675a22cf 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Command.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Command.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/CommandOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/CommandOrBuilder.java index 12907b72..6b7f71fd 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/CommandOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/CommandOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashes.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashes.java index daac09ab..9675219e 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashes.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashes.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.java index f419f400..68d3b3ac 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Hash.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Hash.java index 1736b048..219e6c42 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Hash.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Hash.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/HashOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/HashOrBuilder.java index ebbec21e..e97470bc 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/HashOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/HashOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceName.java index d0e52ebf..d42627c3 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.provenance; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceNames.java index aa736316..a6752d09 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.provenance; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/NoteName.java index cbf7a780..13177811 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.provenance; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/OccurrenceName.java index d8e1f0b1..4eef141a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.provenance; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ProjectName.java index 341a12da..d78a9b8b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.provenance; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Provenance.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Provenance.java index 6f213136..3bb0d75a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Provenance.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Provenance.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ScanConfigName.java index 43572685..57909ef4 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.provenance; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Source.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Source.java index 6430bb04..ef41da65 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Source.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Source.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/SourceOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/SourceOrBuilder.java index b271984f..eadf00a5 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/SourceOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/SourceOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/provenance/provenance.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/UntypedIamResourceName.java index 2bc9e10a..e1f378dd 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.provenance; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContext.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContext.java index fe42f701..cea40b1c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContext.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContext.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContextOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContextOrBuilder.java index 6109e796..c713c6c2 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContextOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContextOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContext.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContext.java index 9242fc58..31c259c4 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContext.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContext.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.java index d0b51d3f..874d4743 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContext.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContext.java index d9927ca8..3f957f37 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContext.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContext.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.java index 156b0d80..e2075b0c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContext.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContext.java index 8de5fa81..2115cc70 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContext.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContext.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.java index dc548d46..ddc6203e 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceName.java index 3b25c4e1..f1387095 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.source; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceNames.java index 7e177013..e6c7ead2 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.source; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/NoteName.java index 4baf191a..b046bca4 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.source; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/OccurrenceName.java index f7878ff0..030d513c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.source; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectName.java index 78d579e1..9c81f5d9 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.source; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoId.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoId.java index 40b590e0..3f3814d0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoId.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoId.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.java index e276912e..617f3a78 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoId.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoId.java index 170712cd..c3024f02 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoId.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoId.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoIdOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoIdOrBuilder.java index b93d8d5f..313aa9b9 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoIdOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoIdOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ScanConfigName.java index cc5cc0f9..062e888d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.source; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/Source.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/Source.java index 25c86132..b203ecf6 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/Source.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/Source.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContext.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContext.java index fef52ae9..72c18517 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContext.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContext.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContextOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContextOrBuilder.java index 9787a96a..16bc71ae 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContextOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContextOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/source/source.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/UntypedIamResourceName.java index c9d58765..599d14a1 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.source; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Details.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Details.java index d75d84c4..c421ae6d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Details.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Details.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.java index e2c2ef22..550a94d0 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceName.java index 5f8ec225..53a0a938 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.vulnerability; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceNames.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceNames.java index ecd77a64..6a35b21d 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceNames.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceNames.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.vulnerability; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/NoteName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/NoteName.java index 7db1b8f2..4a0a6cb9 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/NoteName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/NoteName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.vulnerability; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/OccurrenceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/OccurrenceName.java index 18bc80cb..f4e36dae 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/OccurrenceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/OccurrenceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.vulnerability; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssue.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssue.java index b6ecf515..ca467c6b 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssue.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssue.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.java index 27ee84c5..7c32c41a 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ProjectName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ProjectName.java index 4dbfb223..7500e422 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ProjectName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ProjectName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.vulnerability; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ScanConfigName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ScanConfigName.java index a043824c..d7cd6162 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ScanConfigName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ScanConfigName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.vulnerability; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Severity.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Severity.java index c2b83120..8b3232f7 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Severity.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Severity.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.java index 066c6550..317fb180 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.java @@ -1,15 +1,17 @@ /* - * Copyright 2018 Google LLC + * 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 + * 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 + * 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. + * 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 io.grafeas.v1beta1.vulnerability; diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Vulnerability.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Vulnerability.java index 4a277752..609d6530 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Vulnerability.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Vulnerability.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.java index 1253ee42..ae73314c 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.java index 587a488c..c3e632fb 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.java index 611d5a1d..1eaebb56 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.java b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.java index 730d31c5..f00a1356 100644 --- a/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.java +++ b/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.java @@ -1,3 +1,18 @@ +/* + * 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. + */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-cachefile b/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-cachefile new file mode 100644 index 00000000..72513ed7 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-cachefile @@ -0,0 +1,244 @@ +#Fri Nov 01 15:41:19 MDT 2019 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.java=1572640633286 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.java=1572640634197 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/LayerOrBuilder.java=1572640634220 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Artifact.java=1572640634224 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Source.java=1572640634449 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceName.java=1572640634222 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/CommandOrBuilder.java=1572640634225 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ScanConfigName.java=1572640634203 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/DetailsOrBuilder.java=1572640634457 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceName.java=1572640634218 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceName.java=1572640634552 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ProjectName.java=1572640634555 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DerivedOrBuilder.java=1572640634216 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ScanConfigName.java=1572640634220 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/NoteName.java=1572640634208 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOrBuilder.java=1572640634456 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceNames.java=1572640636838 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ProjectName.java=1572640634459 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.java=1572640634467 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Basis.java=1572640634219 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequest.java=1572640634199 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrl.java=1572640634224 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Layer.java=1572640634221 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceNames.java=1572640636836 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequest.java=1572640633878 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceNames.java=1572640636563 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/NoteName.java=1572640634468 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Distribution.java=1572640634555 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.java=1572640634212 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.java=1572640634204 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssue.java=1572640634469 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceName.java=1572640634447 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequest.java=1572640634555 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceName.java=1572640634207 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/DetailsOrBuilder.java=1572640634462 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/UntypedIamResourceName.java=1572640634463 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Package.java=1572640634552 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceName.java=1572640634557 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/SourceOrBuilder.java=1572640634450 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/OccurrenceName.java=1572640634464 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/NoteName.java=1572640634448 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Derived.java=1572640634220 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/HashOrBuilder.java=1572640634448 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Location.java=1572640634553 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/NoteName.java=1572640634462 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Details.java=1572640634466 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.java=1572640634468 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/UntypedIamResourceName.java=1572640634223 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.java=1572640634557 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.java=1572640633286 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOuterClass.java=1572640634458 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ScanConfigName.java=1572640634459 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/VersionOrBuilder.java=1572640634553 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/Containeranalysis.java=1572640634560 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContext.java=1572640634208 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceName.java=1572640633879 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DistributionOrBuilder.java=1572640634550 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceNames.java=1572640636837 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.java=1572640633870 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequest.java=1572640634203 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Details.java=1572640634460 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/UntypedIamResourceName.java=1572640634214 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.java=1572640634200 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ProjectName.java=1572640633583 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/NoteName.java=1572640634553 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.java=1572640633871 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/OccurrenceName.java=1572640634212 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ResourceOrBuilder.java=1572640634195 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Resource.java=1572640633875 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteKind.java=1572640634222 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigName.java=1572640634560 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/OccurrenceName.java=1572640634556 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Grafeas.java=1572640633583 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContext.java=1572640634211 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceNames.java=1572640636375 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Image.java=1572640634216 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOrBuilder.java=1572640634555 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContext.java=1572640634211 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.java=1572640634463 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.java=1572640634463 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ProjectName.java=1572640634216 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Details.java=1572640634451 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.java=1572640633582 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponse.java=1572640633871 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.java=1572640634205 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/OccurrenceName.java=1572640634205 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Occurrence.java=1572640633870 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ScanConfigName.java=1572640634210 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/UntypedIamResourceName.java=1572640634553 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovered.java=1572640634215 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DetailsOrBuilder.java=1572640634552 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceNames.java=1572640636885 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceNames.java=1572640636837 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.java=1572640633875 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteName.java=1572640634222 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.java=1572640634198 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectName.java=1572640634204 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.java=1572640633287 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/Source.java=1572640634210 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.java=1572640634203 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContext.java=1572640634209 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceNames.java=1572640636885 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Details.java=1572640634455 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceName.java=1572640634461 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequestOrBuilder.java=1572640633877 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Details.java=1572640634212 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeployableOrBuilder.java=1572640634450 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceNames.java=1572640636562 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/NoteName.java=1572640634558 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.java=1572640634446 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Build.java=1572640634459 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOuterClass.java=1572640634460 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/UntypedIamResourceName.java=1572640634220 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequest.java=1572640633878 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovery.java=1572640634213 +configuration*?=EAB28854EF237AF516DF7974114584C44F11745A +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/Common.java=1572640634223 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DetailsOrBuilder.java=1572640634452 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponse.java=1572640634196 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.java=1572640634223 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployment.java=1572640634454 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UntypedIamResourceName.java=1572640634559 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.java=1572640634447 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Installation.java=1572640634554 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/OccurrenceName.java=1572640634445 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/UntypedIamResourceName.java=1572640634448 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/UntypedIamResourceName.java=1572640634458 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequest.java=1572640633872 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.java=1572640634456 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceName.java=1572640634213 +module-resource*?\:file\:/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-header.txt=25F6DC6B0E0E8C43BA44E8B5F4839CB7BE8256A7 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponse.java=1572640634197 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequest.java=1572640634200 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.java=1572640634469 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ProjectName.java=1572640634212 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DetailsOrBuilder.java=1572640634214 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.java=1572640634464 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.java=1572640634556 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.java=1572640633874 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.java=1572640634469 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceName.java=1572640633874 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOuterClass.java=1572640634550 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Command.java=1572640634446 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/InstallationOrBuilder.java=1572640634550 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/FingerprintOrBuilder.java=1572640634217 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfig.java=1572640634558 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ScanConfigName.java=1572640634449 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/UntypedIamResourceName.java=1572640634453 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashes.java=1572640634447 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceName.java=1572640634467 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.java=1572640634206 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteOrBuilder.java=1572640633871 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ProjectName.java=1572640634225 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Architecture.java=1572640634552 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequest.java=1572640633873 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Authority.java=1572640634457 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceName.java=1572640634452 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UntypedIamResourceName.java=1572640634199 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceOrBuilder.java=1572640633876 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.java=1572640634200 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/NoteName.java=1572640634452 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Note.java=1572640634195 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/NoteName.java=1572640634214 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/NoteName.java=1572640634457 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponseOrBuilder.java=1572640634202 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/NoteName.java=1572640634219 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/BasisOrBuilder.java=1572640634216 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Provenance.java=1572640634449 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.java=1572640634560 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployable.java=1572640634452 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestation.java=1572640634457 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequest.java=1572640634197 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Fingerprint.java=1572640634218 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.java=1572640634225 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ScanConfigName.java=1572640634215 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Details.java=1572640634217 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/OccurrenceName.java=1572640634455 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.java=1572640634215 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceNames.java=1572640636563 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.java=1572640634198 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ScanConfigName.java=1572640634549 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Vulnerability.java=1572640634549 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ProjectName.java=1572640634455 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/LocationOrBuilder.java=1572640634550 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.java=1572640633874 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceName.java=1572640634456 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.java=1572640634204 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.java=1572640634210 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignature.java=1572640634462 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.java=1572640634559 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequest.java=1572640634201 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.java=1572640634556 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteName.java=1572640634196 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ScanConfigName.java=1572640634454 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequest.java=1572640634198 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOuterClass.java=1572640634453 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ScanConfigName.java=1572640634223 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/OccurrenceName.java=1572640634221 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/OccurrenceName.java=1572640634460 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Details.java=1572640634551 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/OccurrenceName.java=1572640634451 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ScanConfigName.java=1572640634554 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Version.java=1572640634554 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/OccurrenceName.java=1572640634551 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/UntypedIamResourceName.java=1572640634209 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ScanConfigName.java=1572640634463 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.java=1572640634209 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponse.java=1572640634201 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.java=1572640633873 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContextOrBuilder.java=1572640634207 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.java=1572640634202 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.java=1572640634558 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoIdOrBuilder.java=1572640634205 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceNames.java=1572640636837 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOrBuilder.java=1572640634461 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoId.java=1572640634206 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequestOrBuilder.java=1572640634199 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.java=1572640634468 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.java=1572640634557 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Severity.java=1572640634466 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Hash.java=1572640634445 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequest.java=1572640633877 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Attestation.java=1572640634458 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.java=1572640634201 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.java=1572640634557 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenance.java=1572640634445 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.java=1572640634215 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.java=1572640633286 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ProjectName.java=1572640634221 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContextOrBuilder.java=1572640634208 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ProjectName.java=1572640634549 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.java=1572640634453 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DetailsOrBuilder.java=1572640634218 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.java=1572640633872 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ProjectName.java=1572640634464 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContext.java=1572640634207 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/OccurrenceName.java=1572640634217 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoId.java=1572640634205 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceNames.java=1572640636563 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ProjectName.java=1572640634450 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequest.java=1572640634202 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequest.java=1572640633872 +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.java=1572640634454 diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-checker.xml b/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-checker.xml new file mode 100644 index 00000000..6597fced --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-checker.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-header.txt b/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-header.txt new file mode 100644 index 00000000..3a9b503a --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-header.txt @@ -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/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-result.xml b/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-result.xml new file mode 100644 index 00000000..3c8690bc --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/checkstyle-result.xml @@ -0,0 +1,3 @@ + + + diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/Containeranalysis$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/Containeranalysis$1.class new file mode 100644 index 00000000..3be856a7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/Containeranalysis$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/Containeranalysis.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/Containeranalysis.class new file mode 100644 index 00000000..71e0f088 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/Containeranalysis.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest$1.class new file mode 100644 index 00000000..6d92d631 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest$Builder.class new file mode 100644 index 00000000..92582bc0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest.class new file mode 100644 index 00000000..8880b36c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.class new file mode 100644 index 00000000..bde318fc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/IamResourceName.class new file mode 100644 index 00000000..84d153d8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/IamResourceNames.class new file mode 100644 index 00000000..4c75ffba Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest$1.class new file mode 100644 index 00000000..354dbcf6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest$Builder.class new file mode 100644 index 00000000..d2b0c206 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.class new file mode 100644 index 00000000..58d5224c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.class new file mode 100644 index 00000000..6ee626e0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse$1.class new file mode 100644 index 00000000..59a2a9b3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse$Builder.class new file mode 100644 index 00000000..5ff817cd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.class new file mode 100644 index 00000000..2382d89b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.class new file mode 100644 index 00000000..d472fdee Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName$1.class new file mode 100644 index 00000000..63d682af Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName$Builder.class new file mode 100644 index 00000000..cdec1ade Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName.class new file mode 100644 index 00000000..ca1835ae Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName$1.class new file mode 100644 index 00000000..f741109b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName$Builder.class new file mode 100644 index 00000000..8da28aaf Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName.class new file mode 100644 index 00000000..5af74511 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName$1.class new file mode 100644 index 00000000..01dc48e4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName$Builder.class new file mode 100644 index 00000000..7a68c119 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName.class new file mode 100644 index 00000000..f778a681 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig$1.class new file mode 100644 index 00000000..5fe115af Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig$Builder.class new file mode 100644 index 00000000..ce8f5e7c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig.class new file mode 100644 index 00000000..86600cf8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfig.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName$1.class new file mode 100644 index 00000000..a1f3bcc8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName$Builder.class new file mode 100644 index 00000000..ead3780e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName.class new file mode 100644 index 00000000..67f7f4de Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.class new file mode 100644 index 00000000..c8fcd0a4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UntypedIamResourceName.class new file mode 100644 index 00000000..9244177e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest$1.class new file mode 100644 index 00000000..cc3cbba5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest$Builder.class new file mode 100644 index 00000000..556d6625 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.class new file mode 100644 index 00000000..d001464d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.class new file mode 100644 index 00000000..79a2a71c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/attestation/attestation.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/attestation/attestation.proto new file mode 100644 index 00000000..e60b6e91 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/attestation/attestation.proto @@ -0,0 +1,132 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.attestation; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/attestation;attestation"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.attestation"; +option objc_class_prefix = "GRA"; + +// An attestation wrapper with a PGP-compatible signature. This message only +// supports `ATTACHED` signatures, where the payload that is signed is included +// alongside the signature itself in the same file. +message PgpSignedAttestation { + // The raw content of the signature, as output by GNU Privacy Guard (GPG) or + // equivalent. Since this message only supports attached signatures, the + // payload that was signed must be attached. While the signature format + // supported is dependent on the verification implementation, currently only + // ASCII-armored (`--armor` to gpg), non-clearsigned (`--sign` rather than + // `--clearsign` to gpg) are supported. Concretely, `gpg --sign --armor + // --output=signature.gpg payload.json` will create the signature content + // expected in this field in `signature.gpg` for the `payload.json` + // attestation payload. + string signature = 1; + + // Type (for example schema) of the attestation payload that was signed. + enum ContentType { + // `ContentType` is not set. + CONTENT_TYPE_UNSPECIFIED = 0; + // Atomic format attestation signature. See + // https://github.com/containers/image/blob/8a5d2f82a6e3263290c8e0276c3e0f64e77723e7/docs/atomic-signature.md + // The payload extracted from `signature` is a JSON blob conforming to the + // linked schema. + SIMPLE_SIGNING_JSON = 1; + } + + // Type (for example schema) of the attestation payload that was signed. + // The verifier must ensure that the provided type is one that the verifier + // supports, and that the attestation payload is a valid instantiation of that + // type (for example by validating a JSON schema). + ContentType content_type = 3; + + // This field is used by verifiers to select the public key used to validate + // the signature. Note that the policy of the verifier ultimately determines + // which public keys verify a signature based on the context of the + // verification. There is no guarantee validation will succeed if the + // verifier has no key matching this ID, even if it has a key under a + // different ID that would verify the signature. Note that this ID should also + // be present in the signature content above, but that is not expected to be + // used by the verifier. + oneof key_id { + // The cryptographic fingerprint of the key used to generate the signature, + // as output by, e.g. `gpg --list-keys`. This should be the version 4, full + // 160-bit fingerprint, expressed as a 40 character hexidecimal string. See + // https://tools.ietf.org/html/rfc4880#section-12.2 for details. + // Implementations may choose to acknowledge "LONG", "SHORT", or other + // abbreviated key IDs, but only the full fingerprint is guaranteed to work. + // In gpg, the full fingerprint can be retrieved from the `fpr` field + // returned when calling --list-keys with --with-colons. For example: + // ``` + // gpg --with-colons --with-fingerprint --force-v4-certs \ + // --list-keys attester@example.com + // tru::1:1513631572:0:3:1:5 + // pub:...... + // fpr:::::::::24FF6481B76AC91E66A00AC657A93A81EF3AE6FB: + // ``` + // Above, the fingerprint is `24FF6481B76AC91E66A00AC657A93A81EF3AE6FB`. + string pgp_key_id = 2; + } +} + +// Note kind that represents a logical attestation "role" or "authority". For +// example, an organization might have one `Authority` for "QA" and one for +// "build". This Note is intended to act strictly as a grouping mechanism for +// the attached Occurrences (Attestations). This grouping mechanism also +// provides a security boundary, since IAM ACLs gate the ability for a principle +// to attach an Occurrence to a given Note. It also provides a single point of +// lookup to find all attached Attestation Occurrences, even if they don't all +// live in the same project. +message Authority { + // This submessage provides human-readable hints about the purpose of the + // Authority. Because the name of a Note acts as its resource reference, it is + // important to disambiguate the canonical name of the Note (which might be a + // UUID for security purposes) from "readable" names more suitable for debug + // output. Note that these hints should NOT be used to look up authorities in + // security sensitive contexts, such as when looking up Attestations to + // verify. + message Hint { + // The human readable name of this Attestation Authority, for example "qa". + string human_readable_name = 1; + } + + // Hint hints at the purpose of the attestation authority. + Hint hint = 1; +} + +// Details of an attestation occurrence. +message Details { + // Attestation for the resource. + Attestation attestation = 1; +} + +// Occurrence that represents a single "attestation". The authenticity of an +// Attestation can be verified using the attached signature. If the verifier +// trusts the public key of the signer, then verifying the signature is +// sufficient to establish trust. In this circumstance, the Authority to which +// this Attestation is attached is primarily useful for look-up (how to find +// this Attestation if you already know the Authority and artifact to be +// verified) and intent (which authority was this attestation intended to sign +// for). +message Attestation { + // The signature, generally over the `resource_url`, that verifies this + // attestation. The semantics of the signature veracity are ultimately + // determined by the verification engine. + oneof signature { + // A PGP signed attestation. + PgpSignedAttestation pgp_signed_attestation = 1; + } +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/build/build.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/build/build.proto new file mode 100644 index 00000000..32b357f0 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/build/build.proto @@ -0,0 +1,96 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.build; + +import "google/devtools/containeranalysis/v1beta1/provenance/provenance.proto"; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/build;build"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.build"; +option objc_class_prefix = "GRA"; + +// Note holding the version of the provider's builder and the signature of the +// provenance message in linked BuildDetails. +message Build { + // Version of the builder which produced this Note. + string builder_version = 1; + + // Signature of the build in Occurrences pointing to the Note containing this + // `BuilderDetails`. + BuildSignature signature = 2; +} + +// Message encapsulating the signature of the verified build. +message BuildSignature { + // Public key of the builder which can be used to verify that the related + // findings are valid and unchanged. If `key_type` is empty, this defaults + // to PEM encoded public keys. + // + // This field may be empty if `key_id` references an external key. + // + // For Cloud Container Builder based signatures, this is a PEM encoded public + // key. To verify the Cloud Container Builder signature, place the contents of + // this field into a file (public.pem). The signature field is base64-decoded + // into its binary representation in signature.bin, and the provenance bytes + // from `BuildDetails` are base64-decoded into a binary representation in + // signed.bin. OpenSSL can then verify the signature: + // `openssl sha256 -verify public.pem -signature signature.bin signed.bin` + string public_key = 1; + + // Signature of the related `BuildProvenance`. In JSON, this is base-64 + // encoded. + bytes signature = 2; + + // An ID for the key used to sign. This could be either an Id for the key + // stored in `public_key` (such as the Id or fingerprint for a PGP key, or the + // CN for a cert), or a reference to an external key (such as a reference to a + // key in Cloud Key Management Service). + string key_id = 3; + + // Public key formats + enum KeyType { + // `KeyType` is not set. + KEY_TYPE_UNSPECIFIED = 0; + // `PGP ASCII Armored` public key. + PGP_ASCII_ARMORED = 1; + // `PKIX PEM` public key. + PKIX_PEM = 2; + } + + // The type of the key, either stored in `public_key` or referenced in + // `key_id` + KeyType key_type = 4; +} + +// Details of a build occurrence. +message Details { + // The actual provenance for the build. + grafeas.v1beta1.provenance.BuildProvenance provenance = 1; + + // Serialized JSON representation of the provenance, used in generating the + // `BuildSignature` in the corresponding Result. After verifying the + // signature, `provenance_bytes` can be unmarshalled and compared to the + // provenance to confirm that it is unchanged. A base64-encoded string + // representation of the provenance bytes is used for the signature in order + // to interoperate with openssl which expects this format for signature + // verification. + // + // The serialized form is captured both to avoid ambiguity in how the + // provenance is marshalled to json as well to prevent incompatibilities with + // future changes. + string provenance_bytes = 2; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/common/common.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/common/common.proto new file mode 100644 index 00000000..a8a2ddad --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/common/common.proto @@ -0,0 +1,50 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/common;common"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.common"; +option objc_class_prefix = "GRA"; + +// Kind represents the kinds of notes supported. +enum NoteKind { + // Unknown. + NOTE_KIND_UNSPECIFIED = 0; + // The note and occurrence represent a package vulnerability. + VULNERABILITY = 1; + // The note and occurrence assert build provenance. + BUILD = 2; + // This represents an image basis relationship. + IMAGE = 3; + // This represents a package installed via a package manager. + PACKAGE = 4; + // The note and occurrence track deployment events. + DEPLOYMENT = 5; + // The note and occurrence track the initial discovery status of a resource. + DISCOVERY = 6; + // This represents a logical "role" that can attest to artifacts. + ATTESTATION = 7; +} + +// Metadata for any related URL information. +message RelatedUrl { + // Specific URL associated with the resource. + string url = 1; + // Label to describe usage of the URL. + string label = 2; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/containeranalysis.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/containeranalysis.proto new file mode 100644 index 00000000..b1515338 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/containeranalysis.proto @@ -0,0 +1,190 @@ +// Copyright 2018 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. + +syntax = "proto3"; + +package google.devtools.containeranalysis.v1beta1; + +import "google/api/annotations.proto"; +import "google/iam/v1/iam_policy.proto"; +import "google/iam/v1/policy.proto"; +import "google/protobuf/timestamp.proto"; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1;containeranalysis"; +option java_multiple_files = true; +option java_package = "com.google.containeranalysis.v1beta1"; +option objc_class_prefix = "GCA"; + +// Retrieves analysis results of Cloud components such as Docker container +// images. The Container Analysis API is an implementation of the +// [Grafeas](grafeas.io) API. +// +// Analysis results are stored as a series of occurrences. An `Occurrence` +// contains information about a specific analysis instance on a resource. An +// occurrence refers to a `Note`. A note contains details describing the +// analysis and is generally stored in a separate project, called a `Provider`. +// Multiple occurrences can refer to the same note. +// +// For example, an SSL vulnerability could affect multiple images. In this case, +// there would be one note for the vulnerability and an occurrence for each +// image with the vulnerability referring to that note. +service ContainerAnalysisV1Beta1 { + // Sets the access control policy on the specified note or occurrence. + // Requires `containeranalysis.notes.setIamPolicy` or + // `containeranalysis.occurrences.setIamPolicy` permission if the resource is + // a note or an occurrence, respectively. + // + // The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for + // notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for + // occurrences. + rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) + returns (google.iam.v1.Policy) { + option (google.api.http) = { + post: "/v1beta1/{resource=projects/*/notes/*}:setIamPolicy" + body: "*" + additional_bindings { + post: "/v1beta1/{resource=projects/*/occurrences/*}:setIamPolicy" + body: "*" + } + }; + } + + // Gets the access control policy for a note or an occurrence resource. + // Requires `containeranalysis.notes.setIamPolicy` or + // `containeranalysis.occurrences.setIamPolicy` permission if the resource is + // a note or occurrence, respectively. + // + // The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for + // notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for + // occurrences. + rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) + returns (google.iam.v1.Policy) { + option (google.api.http) = { + post: "/v1beta1/{resource=projects/*/notes/*}:getIamPolicy" + body: "*" + additional_bindings { + post: "/v1beta1/{resource=projects/*/occurrences/*}:getIamPolicy" + body: "*" + } + }; + } + + // Returns the permissions that a caller has on the specified note or + // occurrence. Requires list permission on the project (for example, + // `containeranalysis.notes.list`). + // + // The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for + // notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for + // occurrences. + rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) + returns (google.iam.v1.TestIamPermissionsResponse) { + option (google.api.http) = { + post: "/v1beta1/{resource=projects/*/notes/*}:testIamPermissions" + body: "*" + additional_bindings { + post: "/v1beta1/{resource=projects/*/occurrences/*}:testIamPermissions" + body: "*" + } + }; + } + + // Gets the specified scan configuration. + rpc GetScanConfig(GetScanConfigRequest) returns (ScanConfig) { + option (google.api.http) = { + get: "/v1beta1/{name=projects/*/scanConfigs/*}" + }; + } + + // Lists scan configurations for the specified project. + rpc ListScanConfigs(ListScanConfigsRequest) + returns (ListScanConfigsResponse) { + option (google.api.http) = { + get: "/v1beta1/{parent=projects/*}/scanConfigs" + }; + } + + // Updates the specified scan configuration. + rpc UpdateScanConfig(UpdateScanConfigRequest) returns (ScanConfig) { + option (google.api.http) = { + put: "/v1beta1/{name=projects/*/scanConfigs/*}" + body: "scan_config" + }; + } +} + +// A scan configuration specifies whether Cloud components in a project have a +// particular type of analysis being run. For example, it can configure whether +// vulnerability scanning is being done on Docker images or not. +message ScanConfig { + // Output only. The name of the scan configuration in the form of + // `projects/[PROJECT_ID]/scanConfigs/[SCAN_CONFIG_ID]`. + string name = 1; + + // Output only. A human-readable description of what the scan configuration + // does. + string description = 2; + + // Whether the scan is enabled. + bool enabled = 3; + + // Output only. The time this scan config was created. + google.protobuf.Timestamp create_time = 4; + + // Output only. The time this scan config was last updated. + google.protobuf.Timestamp update_time = 5; +} + +// Request to get a scan configuration. +message GetScanConfigRequest { + // The name of the scan configuration in the form of + // `projects/[PROJECT_ID]/scanConfigs/[SCAN_CONFIG_ID]`. + string name = 1; +} + +// Request to list scan configurations. +message ListScanConfigsRequest { + // The name of the project to list scan configurations for in the form of + // `projects/[PROJECT_ID]`. + string parent = 1; + + // The filter expression. + string filter = 2; + + // The number of scan configs to return in the list. + int32 page_size = 3; + + // Token to provide to skip to a particular spot in the list. + string page_token = 4; +} + +// Response for listing scan configurations. +message ListScanConfigsResponse { + // The scan configurations requested. + repeated ScanConfig scan_configs = 1; + + // The next pagination token in the list response. It should be used as + // `page_token` for the following request. An empty value means no more + // results. + string next_page_token = 2; +} + +// A request to update a scan configuration. +message UpdateScanConfigRequest { + // The name of the scan configuration in the form of + // `projects/[PROJECT_ID]/scanConfigs/[SCAN_CONFIG_ID]`. + string name = 1; + + // The updated scan configuration. + ScanConfig scan_config = 2; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/deployment/deployment.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/deployment/deployment.proto new file mode 100644 index 00000000..96a81aeb --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/deployment/deployment.proto @@ -0,0 +1,74 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.deployment; + +import "google/protobuf/timestamp.proto"; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/deployment;deployment"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.deployment"; +option objc_class_prefix = "GRA"; + +// An artifact that can be deployed in some runtime. +message Deployable { + // Resource URI for the artifact being deployed. + repeated string resource_uri = 1; +} + +// Details of a deployment occurrence. +message Details { + // Deployment history for the resource. + Deployment deployment = 1; +} + +// The period during which some deployable was active in a runtime. +message Deployment { + // Identity of the user that triggered this deployment. + string user_email = 1; + + // Beginning of the lifetime of this deployment. + google.protobuf.Timestamp deploy_time = 2; + + // End of the lifetime of this deployment. + google.protobuf.Timestamp undeploy_time = 3; + + // Configuration used to create this deployment. + string config = 4; + + // Address of the runtime element hosting this deployment. + string address = 5; + + // Output only. Resource URI for the artifact being deployed taken from + // the deployable field with the same name. + repeated string resource_uri = 6; + + // Types of platforms. + enum Platform { + // Unknown. + PLATFORM_UNSPECIFIED = 0; + // Google Container Engine. + GKE = 1; + // Google App Engine: Flexible Environment. + FLEX = 2; + // Custom user-defined platform. + CUSTOM = 3; + } + // Platform hosting this deployment. + Platform platform = 7; + + // next_id = 8; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/discovery/discovery.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/discovery/discovery.proto new file mode 100644 index 00000000..4ed5aeba --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/discovery/discovery.proto @@ -0,0 +1,85 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.discovery; + +import "google/devtools/containeranalysis/v1beta1/common/common.proto"; +import "google/protobuf/timestamp.proto"; +import "google/rpc/status.proto"; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/discovery;discovery"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.discovery"; +option objc_class_prefix = "GRA"; + +// A note that indicates a type of analysis a provider would perform. This note +// exists in a provider's project. A `Discovery` occurrence is created in a +// consumer's project at the start of analysis. +message Discovery { + // The kind of analysis that is handled by this discovery. + grafeas.v1beta1.NoteKind analysis_kind = 1; +} + +// Details of a discovery occurrence. +message Details { + // Analysis status for the discovered resource. + Discovered discovered = 1; +} + +// Provides information about the analysis status of a discovered resource. +message Discovered { + // Whether the resource is continuously analyzed. + enum ContinuousAnalysis { + // Unknown. + CONTINUOUS_ANALYSIS_UNSPECIFIED = 0; + // The resource is continuously analyzed. + ACTIVE = 1; + // The resource is ignored for continuous analysis. + INACTIVE = 2; + } + + // Whether the resource is continuously analyzed. + ContinuousAnalysis continuous_analysis = 1; + + // The last time continuous analysis was done for this resource. + google.protobuf.Timestamp last_analysis_time = 2; + + // Analysis status for a resource. Currently for initial analysis only (not + // updated in continuous analysis). + enum AnalysisStatus { + // Unknown. + ANALYSIS_STATUS_UNSPECIFIED = 0; + // Resource is known but no action has been taken yet. + PENDING = 1; + // Resource is being analyzed. + SCANNING = 2; + // Analysis has finished successfully. + FINISHED_SUCCESS = 3; + // Analysis has finished unsuccessfully, the analysis itself is in a bad + // state. + FINISHED_FAILED = 4; + // The resource is known not to be supported + FINISHED_UNSUPPORTED = 5; + } + + // The status of discovery for the resource. + AnalysisStatus analysis_status = 3; + + // When an error is encountered this will contain a LocalizedMessage under + // details to show to the user. The LocalizedMessage is output only and + // populated by the API. + google.rpc.Status analysis_status_error = 4; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto new file mode 100644 index 00000000..9c2ac8b0 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto @@ -0,0 +1,502 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1; + +import "google/api/annotations.proto"; +import "google/devtools/containeranalysis/v1beta1/attestation/attestation.proto"; +import "google/devtools/containeranalysis/v1beta1/build/build.proto"; +import "google/devtools/containeranalysis/v1beta1/common/common.proto"; +import "google/devtools/containeranalysis/v1beta1/deployment/deployment.proto"; +import "google/devtools/containeranalysis/v1beta1/discovery/discovery.proto"; +import "google/devtools/containeranalysis/v1beta1/image/image.proto"; +import "google/devtools/containeranalysis/v1beta1/package/package.proto"; +import "google/devtools/containeranalysis/v1beta1/provenance/provenance.proto"; +import "google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto"; +import "google/protobuf/empty.proto"; +import "google/protobuf/field_mask.proto"; +import "google/protobuf/timestamp.proto"; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/grafeas;grafeas"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1"; +option objc_class_prefix = "GRA"; + +// [Grafeas](grafeas.io) API. +// +// Retrieves analysis results of Cloud components such as Docker container +// images. +// +// Analysis results are stored as a series of occurrences. An `Occurrence` +// contains information about a specific analysis instance on a resource. An +// occurrence refers to a `Note`. A note contains details describing the +// analysis and is generally stored in a separate project, called a `Provider`. +// Multiple occurrences can refer to the same note. +// +// For example, an SSL vulnerability could affect multiple images. In this case, +// there would be one note for the vulnerability and an occurrence for each +// image with the vulnerability referring to that note. +service GrafeasV1Beta1 { + // Gets the specified occurrence. + rpc GetOccurrence(GetOccurrenceRequest) returns (Occurrence) { + option (google.api.http) = { + get: "/v1beta1/{name=projects/*/occurrences/*}" + }; + } + + // Lists occurrences for the specified project. + rpc ListOccurrences(ListOccurrencesRequest) + returns (ListOccurrencesResponse) { + option (google.api.http) = { + get: "/v1beta1/{parent=projects/*}/occurrences" + }; + } + + // Deletes the specified occurrence. For example, use this method to delete an + // occurrence when the occurrence is no longer applicable for the given + // resource. + rpc DeleteOccurrence(DeleteOccurrenceRequest) + returns (google.protobuf.Empty) { + option (google.api.http) = { + delete: "/v1beta1/{name=projects/*/occurrences/*}" + }; + } + + // Creates a new occurrence. + rpc CreateOccurrence(CreateOccurrenceRequest) returns (Occurrence) { + option (google.api.http) = { + post: "/v1beta1/{parent=projects/*}/occurrences" + body: "occurrence" + }; + } + + // Creates new occurrences in batch. + rpc BatchCreateOccurrences(BatchCreateOccurrencesRequest) + returns (BatchCreateOccurrencesResponse) { + option (google.api.http) = { + post: "/v1beta1/{parent=projects/*}/occurrences:batchCreate" + body: "*" + }; + } + + // Updates the specified occurrence. + rpc UpdateOccurrence(UpdateOccurrenceRequest) returns (Occurrence) { + option (google.api.http) = { + patch: "/v1beta1/{name=projects/*/occurrences/*}" + body: "occurrence" + }; + } + + // Gets the note attached to the specified occurrence. Consumer projects can + // use this method to get a note that belongs to a provider project. + rpc GetOccurrenceNote(GetOccurrenceNoteRequest) returns (Note) { + option (google.api.http) = { + get: "/v1beta1/{name=projects/*/occurrences/*}/notes" + }; + } + + // Gets the specified note. + rpc GetNote(GetNoteRequest) returns (Note) { + option (google.api.http) = { + get: "/v1beta1/{name=projects/*/notes/*}" + }; + } + + // Lists notes for the specified project. + rpc ListNotes(ListNotesRequest) returns (ListNotesResponse) { + option (google.api.http) = { + get: "/v1beta1/{parent=projects/*}/notes" + }; + } + + // Deletes the specified note. + rpc DeleteNote(DeleteNoteRequest) returns (google.protobuf.Empty) { + option (google.api.http) = { + delete: "/v1beta1/{name=projects/*/notes/*}" + }; + } + + // Creates a new note. + rpc CreateNote(CreateNoteRequest) returns (Note) { + option (google.api.http) = { + post: "/v1beta1/{parent=projects/*}/notes" + body: "note" + }; + } + + // Creates new notes in batch. + rpc BatchCreateNotes(BatchCreateNotesRequest) + returns (BatchCreateNotesResponse) { + option (google.api.http) = { + post: "/v1beta1/{parent=projects/*}/notes:batchCreate" + body: "*" + }; + } + + // Updates the specified note. + rpc UpdateNote(UpdateNoteRequest) returns (Note) { + option (google.api.http) = { + patch: "/v1beta1/{name=projects/*/notes/*}" + body: "note" + }; + } + + // Lists occurrences referencing the specified note. Provider projects can use + // this method to get all occurrences across consumer projects referencing the + // specified note. + rpc ListNoteOccurrences(ListNoteOccurrencesRequest) + returns (ListNoteOccurrencesResponse) { + option (google.api.http) = { + get: "/v1beta1/{name=projects/*/notes/*}/occurrences" + }; + } + + // Gets a summary of the number and severity of occurrences. + rpc GetVulnerabilityOccurrencesSummary( + GetVulnerabilityOccurrencesSummaryRequest) + returns (VulnerabilityOccurrencesSummary) { + option (google.api.http) = { + get: "/v1beta1/{parent=projects/*}/occurrences:vulnerabilitySummary" + }; + } +} + +// An instance of an analysis type that has been found on a resource. +message Occurrence { + // Output only. The name of the occurrence in the form of + // `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`. + string name = 1; + + // Required. Immutable. The resource for which the occurrence applies. + Resource resource = 2; + + // Required. Immutable. The analysis note associated with this occurrence, in + // the form of `projects[PROVIDER_ID]/notes/[NOTE_ID]`. This field can be used + // as a filter in list requests. + string note_name = 3; + + // Output only. This explicitly denotes which of the occurrence details are + // specified. This field can be used as a filter in list requests. + grafeas.v1beta1.NoteKind kind = 4; + + // A description of actions that can be taken to remedy the note. + string remediation = 5; + + // Output only. The time this occurrence was created. + google.protobuf.Timestamp create_time = 6; + + // Output only. The time this occurrence was last updated. + google.protobuf.Timestamp update_time = 7; + + // Required. Immutable. Describes the details of the note kind found on this + // resource. + oneof details { + // Describes a security vulnerability. + grafeas.v1beta1.vulnerability.Details vulnerability = 8; + // Describes a verifiable build. + grafeas.v1beta1.build.Details build = 9; + // Describes how this resource derives from the basis in the associated + // note. + grafeas.v1beta1.image.Details derived_image = 10; + // Describes the installation of a package on the linked resource. + grafeas.v1beta1.package.Details installation = 11; + // Describes the deployment of an artifact on a runtime. + grafeas.v1beta1.deployment.Details deployment = 12; + // Describes when a resource was discovered. + grafeas.v1beta1.discovery.Details discovered = 13; + // Describes an attestation of an artifact. + grafeas.v1beta1.attestation.Details attestation = 14; + } + + // next_id = 15; +} + +// An entity that can have metadata. For example, a Docker image. +message Resource { + // The name of the resource. For example, the name of a Docker image - + // "Debian". + string name = 1; + // The unique URI of the resource. For example, + // `https://gcr.io/project/image@sha256:foo` for a Docker image. + string uri = 2; + // The hash of the resource content. For example, the Docker digest. + grafeas.v1beta1.provenance.Hash content_hash = 3; + + // next_id = 4; +} + +// A type of analysis that can be done for a resource. +message Note { + // Output only. The name of the note in the form of + // `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. + string name = 1; + + // A one sentence description of this note. + string short_description = 2; + + // A detailed description of this note. + string long_description = 3; + + // Output only. The type of analysis. This field can be used as a filter in + // list requests. + grafeas.v1beta1.NoteKind kind = 4; + + // URLs associated with this note. + repeated grafeas.v1beta1.RelatedUrl related_url = 5; + + // Time of expiration for this note. Empty if note does not expire. + google.protobuf.Timestamp expiration_time = 6; + + // Output only. The time this note was created. This field can be used as a + // filter in list requests. + google.protobuf.Timestamp create_time = 7; + + // Output only. The time this note was last updated. This field can be used as + // a filter in list requests. + google.protobuf.Timestamp update_time = 8; + + // Other notes related to this note. + repeated string related_note_names = 9; + + // Required. Immutable. The type of analysis this note represents. + oneof type { + // A note describing a package vulnerability. + grafeas.v1beta1.vulnerability.Vulnerability vulnerability = 10; + // A note describing build provenance for a verifiable build. + grafeas.v1beta1.build.Build build = 11; + // A note describing a base image. + grafeas.v1beta1.image.Basis base_image = 12; + // A note describing a package hosted by various package managers. + grafeas.v1beta1.package.Package package = 13; + // A note describing something that can be deployed. + grafeas.v1beta1.deployment.Deployable deployable = 14; + // A note describing the initial analysis of a resource. + grafeas.v1beta1.discovery.Discovery discovery = 15; + // A note describing an attestation role. + grafeas.v1beta1.attestation.Authority attestation_authority = 16; + } + + // next_id = 17; +} + +// Request to get an occurrence. +message GetOccurrenceRequest { + // The name of the occurrence in the form of + // `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`. + string name = 1; +} + +// Request to list occurrences. +message ListOccurrencesRequest { + // The name of the project to list occurrences for in the form of + // `projects/[PROJECT_ID]`. + string parent = 1; + + // The filter expression. + string filter = 2; + + // Number of occurrences to return in the list. + int32 page_size = 3; + + // Token to provide to skip to a particular spot in the list. + string page_token = 4; + + // next_id = 7; +} + +// Response for listing occurrences. +message ListOccurrencesResponse { + // The occurrences requested. + repeated Occurrence occurrences = 1; + // The next pagination token in the list response. It should be used as + // `page_token` for the following request. An empty value means no more + // results. + string next_page_token = 2; +} + +// Request to delete a occurrence. +message DeleteOccurrenceRequest { + // The name of the occurrence in the form of + // `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`. + string name = 1; +} + +// Request to create a new occurrence. +message CreateOccurrenceRequest { + // The name of the project in the form of `projects/[PROJECT_ID]`, under which + // the occurrence is to be created. + string parent = 1; + // The occurrence to create. + Occurrence occurrence = 2; +} + +// Request to update an occurrence. +message UpdateOccurrenceRequest { + // The name of the occurrence in the form of + // `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`. + string name = 1; + // The updated occurrence. + Occurrence occurrence = 2; + // The fields to update. + google.protobuf.FieldMask update_mask = 3; +} + +// Request to get a note. +message GetNoteRequest { + // The name of the note in the form of + // `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. + string name = 1; +} + +// Request to get the note to which the specified occurrence is attached. +message GetOccurrenceNoteRequest { + // The name of the occurrence in the form of + // `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`. + string name = 1; +} + +// Request to list notes. +message ListNotesRequest { + // The name of the project to list notes for in the form of + // `projects/[PROJECT_ID]`. + string parent = 1; + // The filter expression. + string filter = 2; + // Number of notes to return in the list. + int32 page_size = 3; + // Token to provide to skip to a particular spot in the list. + string page_token = 4; +} + +// Response for listing notes. +message ListNotesResponse { + // The notes requested. + repeated Note notes = 1; + // The next pagination token in the list response. It should be used as + // `page_token` for the following request. An empty value means no more + // results. + string next_page_token = 2; +} + +// Request to delete a note. +message DeleteNoteRequest { + // The name of the note in the form of + // `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. + string name = 1; +} + +// Request to create a new note. +message CreateNoteRequest { + // The name of the project in the form of `projects/[PROJECT_ID]`, under which + // the note is to be created. + string parent = 1; + // The ID to use for this note. + string note_id = 2; + // The note to create. + Note note = 3; +} + +// Request to update a note. +message UpdateNoteRequest { + // The name of the note in the form of + // `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. + string name = 1; + // The updated note. + Note note = 2; + // The fields to update. + google.protobuf.FieldMask update_mask = 3; +} + +// Request to list occurrences for a note. +message ListNoteOccurrencesRequest { + // The name of the note to list occurrences for in the form of + // `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. + string name = 1; + // The filter expression. + string filter = 2; + // Number of occurrences to return in the list. + int32 page_size = 3; + // Token to provide to skip to a particular spot in the list. + string page_token = 4; +} + +// Response for listing occurrences for a note. +message ListNoteOccurrencesResponse { + // The occurrences attached to the specified note. + repeated Occurrence occurrences = 1; + // Token to provide to skip to a particular spot in the list. + string next_page_token = 2; +} + +// Request to create notes in batch. +message BatchCreateNotesRequest { + // The name of the project in the form of `projects/[PROJECT_ID]`, under which + // the notes are to be created. + string parent = 1; + + // The notes to create. + map notes = 2; +} + +// Response for creating notes in batch. +message BatchCreateNotesResponse { + // The notes that were created. + repeated Note notes = 1; +} + +// Request to create occurrences in batch. +message BatchCreateOccurrencesRequest { + // The name of the project in the form of `projects/[PROJECT_ID]`, under which + // the occurrences are to be created. + string parent = 1; + // The occurrences to create. + repeated Occurrence occurrences = 2; +} + +// Response for creating occurrences in batch. +message BatchCreateOccurrencesResponse { + // The occurrences that were created. + repeated Occurrence occurrences = 1; +} + +// Request to get a vulnerability summary for some set of occurrences. +message GetVulnerabilityOccurrencesSummaryRequest { + // The name of the project to get a vulnerability summary for in the form of + // `projects/[PROJECT_ID]`. + string parent = 1; + // The filter expression. + string filter = 2; +} + +// A summary of how many vulnerability occurrences there are per resource and +// severity type. +message VulnerabilityOccurrencesSummary { + // A listing by resource of the number of fixable and total vulnerabilities. + repeated FixableTotalByDigest counts = 1; + + // Per resource and severity counts of fixable and total vulnerabilites. + message FixableTotalByDigest { + // The affected resource. + Resource resource = 1; + // The severity for this count. SEVERITY_UNSPECIFIED indicates total across + // all severities. + grafeas.v1beta1.vulnerability.Severity severity = 2; + // The number of fixable vulnerabilities associated with this resource. + int64 fixable_count = 3; + // The total number of vulnerabilities associated with this resource. + int64 total_count = 4; + } +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/image/image.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/image/image.proto new file mode 100644 index 00000000..01f5305a --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/image/image.proto @@ -0,0 +1,144 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.image; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/image;image"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.image"; +option objc_class_prefix = "GRA"; + +// Layer holds metadata specific to a layer of a Docker image. +message Layer { + // Instructions from Dockerfile. + enum Directive { + // Default value for unsupported/missing directive. + DIRECTIVE_UNSPECIFIED = 0; + + // https://docs.docker.com/reference/builder/#maintainer + MAINTAINER = 1; + + // https://docs.docker.com/reference/builder/#run + RUN = 2; + + // https://docs.docker.com/reference/builder/#cmd + CMD = 3; + + // https://docs.docker.com/reference/builder/#label + LABEL = 4; + + // https://docs.docker.com/reference/builder/#expose + EXPOSE = 5; + + // https://docs.docker.com/reference/builder/#env + ENV = 6; + + // https://docs.docker.com/reference/builder/#add + ADD = 7; + + // https://docs.docker.com/reference/builder/#copy + COPY = 8; + + // https://docs.docker.com/reference/builder/#entrypoint + ENTRYPOINT = 9; + + // https://docs.docker.com/reference/builder/#volume + VOLUME = 10; + + // https://docs.docker.com/reference/builder/#user + USER = 11; + + // https://docs.docker.com/reference/builder/#workdir + WORKDIR = 12; + + // https://docs.docker.com/reference/builder/#arg + ARG = 13; + + // https://docs.docker.com/reference/builder/#onbuild + ONBUILD = 14; + + // https://docs.docker.com/reference/builder/#stopsignal + STOPSIGNAL = 15; + + // https://docs.docker.com/reference/builder/#healthcheck + HEALTHCHECK = 16; + + // https://docs.docker.com/reference/builder/#shell + SHELL = 17; + } + + // The recovered Dockerfile directive used to construct this layer. + Directive directive = 1; + + // The recovered arguments to the Dockerfile directive. + string arguments = 2; +} + +// A set of properties that uniquely identify a given Docker image. +message Fingerprint { + // The layer-id of the final layer in the Docker image's v1 representation. + string v1_name = 1; + + // The ordered list of v2 blobs that represent a given image. + repeated string v2_blob = 2; + + // Output only. The name of the image's v2 blobs computed via: + // [bottom] := v2_blob[bottom] + // [N] := sha256(v2_blob[N] + " " + v2_name[N+1]) + // Only the name of the final blob is kept. + string v2_name = 3; +} + +// Basis describes the base image portion (Note) of the DockerImage +// relationship. Linked occurrences are derived from this or an +// equivalent image via: +// FROM +// Or an equivalent reference, e.g. a tag of the resource_url. +message Basis { + // The resource_url for the resource representing the basis of + // associated occurrence images. + string resource_url = 1; + + // The fingerprint of the base image. + Fingerprint fingerprint = 2; +} + +// Details of an image occurrence. +message Details { + // The child image derived from the base image. + Derived derived_image = 1; +} + +// Derived describes the derived image portion (Occurrence) of the DockerImage +// relationship. This image would be produced from a Dockerfile with FROM +// . +message Derived { + // The fingerprint of the derived image. + Fingerprint fingerprint = 1; + + // Output only. The number of layers by which this image differs from the + // associated image basis. + int32 distance = 2; + + // This contains layer-specific metadata, if populated it has length + // "distance" and is ordered with [distance] being the layer immediately + // following the base image and [1] being the final layer. + repeated Layer layer_info = 3; + + // Output only. This contains the base image URL for the derived image + // occurrence. + string base_resource_url = 4; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/package/package.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/package/package.proto new file mode 100644 index 00000000..07031d50 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/package/package.proto @@ -0,0 +1,127 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.package; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/package;package"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.pkg"; +option objc_class_prefix = "GRA"; + +// Instruction set architectures supported by various package managers. +enum Architecture { + // Unknown architecture. + ARCHITECTURE_UNSPECIFIED = 0; + // X86 architecture. + X86 = 1; + // X64 architecture. + X64 = 2; +} + +// This represents a particular channel of distribution for a given package. +// E.g., Debian's jessie-backports dpkg mirror. +message Distribution { + // The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) + // denoting the package manager version distributing a package. + string cpe_uri = 1; + + // The CPU architecture for which packages in this distribution channel were + // built. + Architecture architecture = 2; + + // The latest available version of this package in this distribution + // channel. + Version latest_version = 3; + + // A freeform string denoting the maintainer of this package. + string maintainer = 4; + + // The distribution channel-specific homepage for this package. + string url = 5; + + // The distribution channel-specific description of this package. + string description = 6; +} + +// An occurrence of a particular package installation found within a system's +// filesystem. E.g., glibc was found in /var/lib/dpkg/status. +message Location { + // The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) + // denoting the package manager version distributing a package. + string cpe_uri = 1; + + // The version installed at this location. + Version version = 2; + + // The path from which we gathered that this package/version is installed. + string path = 3; +} + +// This represents a particular package that is distributed over various +// channels. E.g., glibc (aka libc6) is distributed by many, at various +// versions. +message Package { + // The name of the package. + string name = 1; + + // The various channels by which a package is distributed. + repeated Distribution distribution = 10; +} + +// Details of a package occurrence. +message Details { + // Where the package was installed. + Installation installation = 1; +} + +// This represents how a particular software package may be installed on a +// system. +message Installation { + // Output only. The name of the installed package. + string name = 1; + + // All of the places within the filesystem versions of this package + // have been found. + repeated Location location = 2; +} + +// Version contains structured information about the version of a package. +message Version { + // Used to correct mistakes in the version numbering scheme. + int32 epoch = 1; + // The main part of the version name. + string name = 2; + // The iteration of the package build from the above version. + string revision = 3; + + // Whether this is an ordinary package version or a sentinel MIN/MAX version. + enum VersionKind { + // Unknown. + VERSION_KIND_UNSPECIFIED = 0; + // A standard package version, defined by the other fields. + NORMAL = 1; + // A special version representing negative infinity, other fields are + // ignored. + MINIMUM = 2; + // A special version representing positive infinity, other fields are + // ignored. + MAXIMUM = 3; + }; + + // Distinguish between sentinel MIN/MAX versions and normal versions. If + // kind is not NORMAL, then the other fields are ignored. + VersionKind kind = 4; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/provenance/provenance.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/provenance/provenance.proto new file mode 100644 index 00000000..3d334284 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/provenance/provenance.proto @@ -0,0 +1,164 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.provenance; + +import "google/devtools/containeranalysis/v1beta1/source/source.proto"; +import "google/protobuf/timestamp.proto"; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/provenance;provenance"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.provenance"; +option objc_class_prefix = "GRA"; + +// Provenance of a build. Contains all information needed to verify the full +// details about the build from source to completion. +message BuildProvenance { + // Unique identifier of the build. + string id = 1; + + // ID of the project. + string project_id = 2; + + // Commands requested by the build. + repeated Command commands = 3; + + // Output of the build. + repeated Artifact built_artifacts = 4; + + // Time at which the build was created. + google.protobuf.Timestamp create_time = 5; + + // Time at which execution of the build was started. + google.protobuf.Timestamp start_time = 6; + + // Time at which execution of the build was finished. + google.protobuf.Timestamp end_time = 7; + + // E-mail address of the user who initiated this build. Note that this was the + // user's e-mail address at the time the build was initiated; this address may + // not represent the same end-user for all time. + string creator = 8; + + // URI where any logs for this provenance were written. + string logs_uri = 9; + + // Details of the Source input to the build. + Source source_provenance = 10; + + // Trigger identifier if the build was triggered automatically; empty if not. + string trigger_id = 11; + + // Special options applied to this build. This is a catch-all field where + // build providers can enter any desired additional details. + map build_options = 12; + + // Version string of the builder at the time this build was executed. + string builder_version = 13; + + // next_id = 14 +} + +// Source describes the location of the source used for the build. +message Source { + // If provided, the input binary artifacts for the build came from this + // location. + string artifact_storage_source_uri = 1; + + // Hash(es) of the build source, which can be used to verify that the original + // source integrity was maintained in the build. + // + // The keys to this map are file paths used as build source and the values + // contain the hash values for those files. + // + // If the build source came in a single package such as a gzipped tarfile + // (.tar.gz), the FileHash will be for the single path to that file. + map file_hashes = 2; + + // If provided, the source code used for the build came from this location. + grafeas.v1beta1.source.SourceContext context = 3; + + // If provided, some of the source code used for the build may be found in + // these locations, in the case where the source repository had multiple + // remotes or submodules. This list will not include the context specified in + // the context field. + repeated grafeas.v1beta1.source.SourceContext additional_contexts = 4; +} + +// Container message for hashes of byte content of files, used in Source +// messages to verify integrity of source input to the build. +message FileHashes { + // Collection of file hashes. + repeated Hash file_hash = 1; +} + +// Container message for hash values. +message Hash { + // Specifies the hash algorithm, if any. + enum HashType { + // Unknown. + HASH_TYPE_UNSPECIFIED = 0; + // A SHA-256 hash. + SHA256 = 1; + } + + // The type of hash that was performed. + HashType type = 1; + // The hash value. + bytes value = 2; +} + +// Command describes a step performed as part of the build pipeline. +message Command { + // Name of the command, as presented on the command line, or if the command is + // packaged as a Docker container, as presented to `docker pull`. + string name = 1; + + // Environment variables set before running this command. + repeated string env = 2; + + // Command-line arguments used when executing this command. + repeated string args = 3; + + // Working directory (relative to project source root) used when running this + // command. + string dir = 4; + + // Optional unique identifier for this command, used in wait_for to reference + // this command as a dependency. + string id = 5; + + // The ID(s) of the command(s) that this command depends on. + repeated string wait_for = 6; +} + +// Artifact describes a build product. +message Artifact { + // Hash or checksum value of a binary, or Docker Registry 2.0 digest of a + // container. + string checksum = 1; + + // Artifact ID, if any; for container images, this will be a URL by digest + // like `gcr.io/projectID/imagename@sha256:123456`. + string id = 2; + + // Related artifact names. This may be the path to a binary or jar file, or in + // the case of a container build, the name used to push the container image to + // Google Container Registry, as presented to `docker push`. Note that a + // single Artifact ID can have multiple names, for example if two tags are + // applied to one image. + repeated string names = 3; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/source/source.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/source/source.proto new file mode 100644 index 00000000..01be060c --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/source/source.proto @@ -0,0 +1,134 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.source; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/source;source"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.source"; +option objc_class_prefix = "GRA"; + +// A SourceContext is a reference to a tree of files. A SourceContext together +// with a path point to a unique revision of a single file or directory. +message SourceContext { + // A SourceContext can refer any one of the following types of repositories. + oneof context { + // A SourceContext referring to a revision in a Google Cloud Source Repo. + CloudRepoSourceContext cloud_repo = 1; + + // A SourceContext referring to a Gerrit project. + GerritSourceContext gerrit = 2; + + // A SourceContext referring to any third party Git repo (e.g., GitHub). + GitSourceContext git = 3; + } + + // Labels with user defined metadata. + map labels = 4; +} + +// An alias to a repo revision. +message AliasContext { + // The type of an alias. + enum Kind { + // Unknown. + KIND_UNSPECIFIED = 0; + // Git tag. + FIXED = 1; + // Git branch. + MOVABLE = 2; + // Used to specify non-standard aliases. For example, if a Git repo has a + // ref named "refs/foo/bar". + OTHER = 4; + } + + // The alias kind. + Kind kind = 1; + + // The alias name. + string name = 2; +} + +// A CloudRepoSourceContext denotes a particular revision in a Google Cloud +// Source Repo. +message CloudRepoSourceContext { + // The ID of the repo. + RepoId repo_id = 1; + + // A revision in a Cloud Repo can be identified by either its revision ID or + // its alias. + oneof revision { + // A revision ID. + string revision_id = 2; + + // An alias, which may be a branch or tag. + AliasContext alias_context = 3; + } +} + +// A SourceContext referring to a Gerrit project. +message GerritSourceContext { + // The URI of a running Gerrit instance. + string host_uri = 1; + + // The full project name within the host. Projects may be nested, so + // "project/subproject" is a valid project name. The "repo name" is the + // hostURI/project. + string gerrit_project = 2; + + // A revision in a Gerrit project can be identified by either its revision ID + // or its alias. + oneof revision { + // A revision (commit) ID. + string revision_id = 3; + + // An alias, which may be a branch or tag. + AliasContext alias_context = 4; + } +} + +// A GitSourceContext denotes a particular revision in a third party Git +// repository (e.g., GitHub). +message GitSourceContext { + // Git repository URL. + string url = 1; + + // Git commit hash. + string revision_id = 2; +} + +// A unique identifier for a Cloud Repo. +message RepoId { + // A cloud repo can be identified by either its project ID and repository name + // combination, or its globally unique identifier. + oneof id { + // A combination of a project ID and a repo name. + ProjectRepoId project_repo_id = 1; + + // A server-assigned, globally unique identifier. + string uid = 2; + } +} + +// Selects a repo using a Google Cloud Platform project ID (e.g., +// winged-cargo-31) and a repo name within that project. +message ProjectRepoId { + // The ID of the project. + string project_id = 1; + + // The name of the repo. Leave empty for the default repo. + string repo_name = 2; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto new file mode 100644 index 00000000..aef35c4e --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/classes/google/devtools/containeranalysis/v1beta1/vulnerability/vulnerability.proto @@ -0,0 +1,145 @@ +// Copyright 2018 The Grafeas Authors. All rights reserved. +// +// 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. + +syntax = "proto3"; + +package grafeas.v1beta1.vulnerability; + +import "google/devtools/containeranalysis/v1beta1/common/common.proto"; +import "google/devtools/containeranalysis/v1beta1/package/package.proto"; + +option go_package = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/vulnerability;vulnerability"; +option java_multiple_files = true; +option java_package = "io.grafeas.v1beta1.vulnerability"; +option objc_class_prefix = "GRA"; + +// Note provider-assigned severity/impact ranking. +enum Severity { + // Unknown. + SEVERITY_UNSPECIFIED = 0; + // Minimal severity. + MINIMAL = 1; + // Low severity. + LOW = 2; + // Medium severity. + MEDIUM = 3; + // High severity. + HIGH = 4; + // Critical severity. + CRITICAL = 5; +} + +// Vulnerability provides metadata about a security vulnerability. +message Vulnerability { + // The CVSS score for this vulnerability. + float cvss_score = 1; + + // Note provider assigned impact of the vulnerability. + Severity severity = 2; + + // All information about the package to specifically identify this + // vulnerability. One entry per (version range and cpe_uri) the package + // vulnerability has manifested in. + repeated Detail details = 3; + + // Identifies all occurrences of this vulnerability in the package for a + // specific distro/location. For example: glibc in + // cpe:/o:debian:debian_linux:8 for versions 2.1 - 2.2 + message Detail { + // The cpe_uri in [cpe format] (https://cpe.mitre.org/specification/) in + // which the vulnerability manifests. Examples include distro or storage + // location for vulnerable jar. + string cpe_uri = 1; + + // The name of the package where the vulnerability was found. + string package = 2; + + // The min version of the package in which the vulnerability exists. + grafeas.v1beta1.package.Version min_affected_version = 3; + + // The max version of the package in which the vulnerability exists. + grafeas.v1beta1.package.Version max_affected_version = 4; + + // The severity (eg: distro assigned severity) for this vulnerability. + string severity_name = 5; + + // A vendor-specific description of this note. + string description = 6; + + // The fix for this specific package version. + VulnerabilityLocation fixed_location = 7; + + // The type of package; whether native or non native(ruby gems, node.js + // packages etc). + string package_type = 8; + + // Whether this detail is obsolete. Occurrences are expected not to point to + // obsolete details. + bool is_obsolete = 9; + } +} + +// Details of a vulnerability occurrence. +message Details { + // The type of package; whether native or non native(ruby gems, node.js + // packages etc) + string type = 1; + + // Output only. The note provider assigned Severity of the vulnerability. + Severity severity = 2; + + // Output only. The CVSS score of this vulnerability. CVSS score is on a + // scale of 0-10 where 0 indicates low severity and 10 indicates high + // severity. + float cvss_score = 3; + + // The set of affected locations and their fixes (if available) within the + // associated resource. + repeated PackageIssue package_issue = 4; + + // Output only. A one sentence description of this vulnerability. + string short_description = 5; + + // Output only. A detailed description of this vulnerability. + string long_description = 6; + + // Output only. URLs related to this vulnerability. + repeated grafeas.v1beta1.RelatedUrl related_urls = 7; +} + +// This message wraps a location affected by a vulnerability and its +// associated fix (if one is available). +message PackageIssue { + // The location of the vulnerability. + VulnerabilityLocation affected_location = 1; + + // The location of the available fix for vulnerability. + VulnerabilityLocation fixed_location = 2; + + // The severity (e.g., distro assigned severity) for this vulnerability. + string severity_name = 3; +} + +// The location of the vulnerability. +message VulnerabilityLocation { + // The cpe_uri in [cpe format] (https://cpe.mitre.org/specification/) + // format. Examples include distro or storage location for vulnerable jar. + string cpe_uri = 1; + + // The package being described. + string package = 2; + + // The version of the package being described. + grafeas.v1beta1.package.Version version = 3; +} diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$1.class new file mode 100644 index 00000000..a466c737 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$Builder.class new file mode 100644 index 00000000..c6536bc1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$NotesDefaultEntryHolder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$NotesDefaultEntryHolder.class new file mode 100644 index 00000000..7a649631 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest$NotesDefaultEntryHolder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest.class new file mode 100644 index 00000000..472a6bda Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.class new file mode 100644 index 00000000..832a6eb9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse$1.class new file mode 100644 index 00000000..a3a4396a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse$Builder.class new file mode 100644 index 00000000..422256de Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse.class new file mode 100644 index 00000000..47895daa Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponse.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.class new file mode 100644 index 00000000..909bd47f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest$1.class new file mode 100644 index 00000000..eba66390 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest$Builder.class new file mode 100644 index 00000000..9837cc0e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.class new file mode 100644 index 00000000..e70114ae Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.class new file mode 100644 index 00000000..6cf3ce64 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse$1.class new file mode 100644 index 00000000..becd06b4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse$Builder.class new file mode 100644 index 00000000..2f86eb3a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.class new file mode 100644 index 00000000..44453b77 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.class new file mode 100644 index 00000000..242b7560 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest$1.class new file mode 100644 index 00000000..47fa934d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest$Builder.class new file mode 100644 index 00000000..d1890b77 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest.class new file mode 100644 index 00000000..ae1467c0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.class new file mode 100644 index 00000000..620f27a4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest$1.class new file mode 100644 index 00000000..22f6bd30 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest$Builder.class new file mode 100644 index 00000000..8b24992b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest.class new file mode 100644 index 00000000..55ce4f33 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.class new file mode 100644 index 00000000..5c13b8e4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest$1.class new file mode 100644 index 00000000..acabd556 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest$Builder.class new file mode 100644 index 00000000..003b2da5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest.class new file mode 100644 index 00000000..4c8d557e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.class new file mode 100644 index 00000000..e935cf90 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest$1.class new file mode 100644 index 00000000..b8937e24 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest$Builder.class new file mode 100644 index 00000000..d7fffc72 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest.class new file mode 100644 index 00000000..13828334 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.class new file mode 100644 index 00000000..8f22b564 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest$1.class new file mode 100644 index 00000000..6cbe3723 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest$Builder.class new file mode 100644 index 00000000..2ca3b5ab Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest.class new file mode 100644 index 00000000..d9a77dfc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequestOrBuilder.class new file mode 100644 index 00000000..552a2dad Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetNoteRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest$1.class new file mode 100644 index 00000000..76a4d271 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest$Builder.class new file mode 100644 index 00000000..46a8225e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest.class new file mode 100644 index 00000000..1906bfab Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.class new file mode 100644 index 00000000..abddc21d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest$1.class new file mode 100644 index 00000000..d5ec55f4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest$Builder.class new file mode 100644 index 00000000..12cfa8df Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest.class new file mode 100644 index 00000000..e676270e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.class new file mode 100644 index 00000000..87dc38ce Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest$1.class new file mode 100644 index 00000000..6b71d3e1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest$Builder.class new file mode 100644 index 00000000..35f889ff Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.class new file mode 100644 index 00000000..2d61ec56 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.class new file mode 100644 index 00000000..590d9e55 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Grafeas$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Grafeas$1.class new file mode 100644 index 00000000..84f7cd7d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Grafeas$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Grafeas.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Grafeas.class new file mode 100644 index 00000000..dc8f7d1c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Grafeas.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/IamResourceName.class new file mode 100644 index 00000000..9c7d121e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/IamResourceNames.class new file mode 100644 index 00000000..7dca56ba Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest$1.class new file mode 100644 index 00000000..6b7d7d0d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest$Builder.class new file mode 100644 index 00000000..4d47efbb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest.class new file mode 100644 index 00000000..b207c9c1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.class new file mode 100644 index 00000000..ea1fefa6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse$1.class new file mode 100644 index 00000000..96e04c55 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse$Builder.class new file mode 100644 index 00000000..3353947e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse.class new file mode 100644 index 00000000..1e73cecc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponse.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.class new file mode 100644 index 00000000..f94357cd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest$1.class new file mode 100644 index 00000000..49daec9b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest$Builder.class new file mode 100644 index 00000000..74ff64ad Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest.class new file mode 100644 index 00000000..34299a56 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequestOrBuilder.class new file mode 100644 index 00000000..c5035775 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse$1.class new file mode 100644 index 00000000..387a7121 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse$Builder.class new file mode 100644 index 00000000..964587df Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse.class new file mode 100644 index 00000000..9ed81aa7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponse.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponseOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponseOrBuilder.class new file mode 100644 index 00000000..b27770f7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListNotesResponseOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest$1.class new file mode 100644 index 00000000..557bb4ab Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest$Builder.class new file mode 100644 index 00000000..7873f835 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest.class new file mode 100644 index 00000000..7400940e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.class new file mode 100644 index 00000000..94b2475f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse$1.class new file mode 100644 index 00000000..e222d2c8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse$Builder.class new file mode 100644 index 00000000..b168c6b4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse.class new file mode 100644 index 00000000..49b38b1f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponse.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.class new file mode 100644 index 00000000..d6c0a472 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$1.class new file mode 100644 index 00000000..09fa1238 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$2.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$2.class new file mode 100644 index 00000000..d921b812 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$2.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$Builder.class new file mode 100644 index 00000000..4296d381 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$TypeCase.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$TypeCase.class new file mode 100644 index 00000000..94d559b3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note$TypeCase.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note.class new file mode 100644 index 00000000..29507a67 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Note.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName$1.class new file mode 100644 index 00000000..c4a6da8e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName$Builder.class new file mode 100644 index 00000000..bc481276 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName.class new file mode 100644 index 00000000..46286b18 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteOrBuilder.class new file mode 100644 index 00000000..6a4bf2e0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/NoteOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$1.class new file mode 100644 index 00000000..69a32a8e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$2.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$2.class new file mode 100644 index 00000000..a831e1f0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$2.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$Builder.class new file mode 100644 index 00000000..a4034d5b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$DetailsCase.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$DetailsCase.class new file mode 100644 index 00000000..c0833108 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence$DetailsCase.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence.class new file mode 100644 index 00000000..560d7780 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Occurrence.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName$1.class new file mode 100644 index 00000000..1ce3091f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName$Builder.class new file mode 100644 index 00000000..907c3110 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName.class new file mode 100644 index 00000000..a3e1d786 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceOrBuilder.class new file mode 100644 index 00000000..1474b78a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/OccurrenceOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName$1.class new file mode 100644 index 00000000..0ca1a910 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName$Builder.class new file mode 100644 index 00000000..0fc98ccb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName.class new file mode 100644 index 00000000..ec98ea78 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource$1.class new file mode 100644 index 00000000..4ebd3c06 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource$Builder.class new file mode 100644 index 00000000..11213e0b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource.class new file mode 100644 index 00000000..ac62da6f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/Resource.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ResourceOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ResourceOrBuilder.class new file mode 100644 index 00000000..153ed4f7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ResourceOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName$1.class new file mode 100644 index 00000000..308abb36 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName$Builder.class new file mode 100644 index 00000000..27d11378 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName.class new file mode 100644 index 00000000..2db3135f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UntypedIamResourceName.class new file mode 100644 index 00000000..d1cd75fd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest$1.class new file mode 100644 index 00000000..a4206ade Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest$Builder.class new file mode 100644 index 00000000..da81e6c9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest.class new file mode 100644 index 00000000..16d5ed4d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.class new file mode 100644 index 00000000..e658858b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest$1.class new file mode 100644 index 00000000..18a142ce Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest$Builder.class new file mode 100644 index 00000000..09820a95 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest.class new file mode 100644 index 00000000..5208af2b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.class new file mode 100644 index 00000000..953305c9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$1.class new file mode 100644 index 00000000..ca373abe Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$Builder.class new file mode 100644 index 00000000..0fbe79e3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest$1.class new file mode 100644 index 00000000..aee2c687 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest$Builder.class new file mode 100644 index 00000000..29b5d409 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest.class new file mode 100644 index 00000000..d1feaf05 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigestOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigestOrBuilder.class new file mode 100644 index 00000000..92ae2940 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigestOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.class new file mode 100644 index 00000000..4aebae68 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.class new file mode 100644 index 00000000..d966c775 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$1.class new file mode 100644 index 00000000..34e4027b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$2.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$2.class new file mode 100644 index 00000000..dd60ea31 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$2.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$Builder.class new file mode 100644 index 00000000..800d53e2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$SignatureCase.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$SignatureCase.class new file mode 100644 index 00000000..3c8d7cec Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation$SignatureCase.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation.class new file mode 100644 index 00000000..2adc817a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Attestation.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOrBuilder.class new file mode 100644 index 00000000..2cca3055 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOuterClass$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOuterClass$1.class new file mode 100644 index 00000000..e44a8812 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOuterClass$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOuterClass.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOuterClass.class new file mode 100644 index 00000000..4607fe36 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AttestationOuterClass.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$1.class new file mode 100644 index 00000000..39d74f3d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Builder.class new file mode 100644 index 00000000..0750f4da Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint$1.class new file mode 100644 index 00000000..3b5c1a45 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint$Builder.class new file mode 100644 index 00000000..fe753ca0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint.class new file mode 100644 index 00000000..57a974bf Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$Hint.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$HintOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$HintOrBuilder.class new file mode 100644 index 00000000..796cd9cc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority$HintOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority.class new file mode 100644 index 00000000..17b3b7b1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Authority.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.class new file mode 100644 index 00000000..a3f4db26 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details$1.class new file mode 100644 index 00000000..f8fe602f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details$Builder.class new file mode 100644 index 00000000..ebcc0cc0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details.class new file mode 100644 index 00000000..5b82f763 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/Details.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/DetailsOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/DetailsOrBuilder.class new file mode 100644 index 00000000..ac9d539a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/DetailsOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/IamResourceName.class new file mode 100644 index 00000000..da444468 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/IamResourceNames.class new file mode 100644 index 00000000..1e4fff93 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName$1.class new file mode 100644 index 00000000..3cc140cd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName$Builder.class new file mode 100644 index 00000000..479b4436 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName.class new file mode 100644 index 00000000..d95a6263 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName$1.class new file mode 100644 index 00000000..46b0dc00 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName$Builder.class new file mode 100644 index 00000000..5b0f93fc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName.class new file mode 100644 index 00000000..449ed3e3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$1.class new file mode 100644 index 00000000..4739be25 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$2.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$2.class new file mode 100644 index 00000000..06312c6f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$2.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$Builder.class new file mode 100644 index 00000000..6c43da64 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$ContentType$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$ContentType$1.class new file mode 100644 index 00000000..847ac9b4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$ContentType$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$ContentType.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$ContentType.class new file mode 100644 index 00000000..cd8549e3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$ContentType.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$KeyIdCase.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$KeyIdCase.class new file mode 100644 index 00000000..060f4c34 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation$KeyIdCase.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation.class new file mode 100644 index 00000000..8ed632de Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestation.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.class new file mode 100644 index 00000000..eaf25f68 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName$1.class new file mode 100644 index 00000000..7fdff4e7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName$Builder.class new file mode 100644 index 00000000..10626d44 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName.class new file mode 100644 index 00000000..5ecd6415 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName$1.class new file mode 100644 index 00000000..78ead797 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName$Builder.class new file mode 100644 index 00000000..1b0dbfcd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName.class new file mode 100644 index 00000000..c169ad3a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/UntypedIamResourceName.class new file mode 100644 index 00000000..f2d1d1b1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/attestation/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build$1.class new file mode 100644 index 00000000..58500666 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build$Builder.class new file mode 100644 index 00000000..7c85f143 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build.class new file mode 100644 index 00000000..8d62b040 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Build.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOrBuilder.class new file mode 100644 index 00000000..b6b0aa14 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOuterClass$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOuterClass$1.class new file mode 100644 index 00000000..2432d25e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOuterClass$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOuterClass.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOuterClass.class new file mode 100644 index 00000000..399adaf9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildOuterClass.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$1.class new file mode 100644 index 00000000..fcba3584 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$Builder.class new file mode 100644 index 00000000..39e1a32a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$KeyType$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$KeyType$1.class new file mode 100644 index 00000000..ba37aa57 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$KeyType$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$KeyType.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$KeyType.class new file mode 100644 index 00000000..913ce568 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature$KeyType.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature.class new file mode 100644 index 00000000..7d743f57 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignature.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.class new file mode 100644 index 00000000..c4f3684e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details$1.class new file mode 100644 index 00000000..09b53537 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details$Builder.class new file mode 100644 index 00000000..f645d62c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details.class new file mode 100644 index 00000000..b828880f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/Details.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/DetailsOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/DetailsOrBuilder.class new file mode 100644 index 00000000..3fd7b3fc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/DetailsOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/IamResourceName.class new file mode 100644 index 00000000..aaf9cbdc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/IamResourceNames.class new file mode 100644 index 00000000..8bc470ad Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName$1.class new file mode 100644 index 00000000..9957438c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName$Builder.class new file mode 100644 index 00000000..517b4b9c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName.class new file mode 100644 index 00000000..f052ea0a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName$1.class new file mode 100644 index 00000000..46042c2a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName$Builder.class new file mode 100644 index 00000000..0ef468e9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName.class new file mode 100644 index 00000000..d6ebe638 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName$1.class new file mode 100644 index 00000000..6a19c642 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName$Builder.class new file mode 100644 index 00000000..ac833332 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName.class new file mode 100644 index 00000000..7dd160dd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName$1.class new file mode 100644 index 00000000..51ca3f9f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName$Builder.class new file mode 100644 index 00000000..44d0ba46 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName.class new file mode 100644 index 00000000..4724c9e1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/UntypedIamResourceName.class new file mode 100644 index 00000000..a6e0ac6a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/build/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/Common$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/Common$1.class new file mode 100644 index 00000000..4a5f0a7f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/Common$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/Common.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/Common.class new file mode 100644 index 00000000..36585103 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/Common.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/IamResourceName.class new file mode 100644 index 00000000..5e4617ad Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/IamResourceNames.class new file mode 100644 index 00000000..1f4008fb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteKind$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteKind$1.class new file mode 100644 index 00000000..edde0e8c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteKind$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteKind.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteKind.class new file mode 100644 index 00000000..80b95a9f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteKind.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName$1.class new file mode 100644 index 00000000..5c9004da Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName$Builder.class new file mode 100644 index 00000000..57bf4121 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName.class new file mode 100644 index 00000000..dbd5ec3b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName$1.class new file mode 100644 index 00000000..446bc0b1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName$Builder.class new file mode 100644 index 00000000..b2809474 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName.class new file mode 100644 index 00000000..9825e526 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName$1.class new file mode 100644 index 00000000..010e440c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName$Builder.class new file mode 100644 index 00000000..e2792d41 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName.class new file mode 100644 index 00000000..af3bb890 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl$1.class new file mode 100644 index 00000000..981c3cc9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl$Builder.class new file mode 100644 index 00000000..d96bf772 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl.class new file mode 100644 index 00000000..b098103b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrl.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.class new file mode 100644 index 00000000..a99eb002 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName$1.class new file mode 100644 index 00000000..68469d37 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName$Builder.class new file mode 100644 index 00000000..9986a026 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName.class new file mode 100644 index 00000000..b6cecc03 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/UntypedIamResourceName.class new file mode 100644 index 00000000..b74d7677 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/common/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable$1.class new file mode 100644 index 00000000..5a8971f1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable$Builder.class new file mode 100644 index 00000000..1d93f023 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable.class new file mode 100644 index 00000000..11b1ee11 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployable.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeployableOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeployableOrBuilder.class new file mode 100644 index 00000000..c6c30072 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeployableOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$1.class new file mode 100644 index 00000000..bc41398f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Builder.class new file mode 100644 index 00000000..aea8c802 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Platform$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Platform$1.class new file mode 100644 index 00000000..6b559abd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Platform$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Platform.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Platform.class new file mode 100644 index 00000000..3f836085 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment$Platform.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment.class new file mode 100644 index 00000000..d6e07b9b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Deployment.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.class new file mode 100644 index 00000000..db0556ba Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOuterClass$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOuterClass$1.class new file mode 100644 index 00000000..607e7249 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOuterClass$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOuterClass.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOuterClass.class new file mode 100644 index 00000000..d7ae5878 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DeploymentOuterClass.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details$1.class new file mode 100644 index 00000000..838984c5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details$Builder.class new file mode 100644 index 00000000..b056c89d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details.class new file mode 100644 index 00000000..f102acb6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/Details.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DetailsOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DetailsOrBuilder.class new file mode 100644 index 00000000..06040d0f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/DetailsOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/IamResourceName.class new file mode 100644 index 00000000..e15fbf3c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/IamResourceNames.class new file mode 100644 index 00000000..701301a1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName$1.class new file mode 100644 index 00000000..c40adefd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName$Builder.class new file mode 100644 index 00000000..6aac153a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName.class new file mode 100644 index 00000000..d89c63cb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName$1.class new file mode 100644 index 00000000..eaaf1fa5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName$Builder.class new file mode 100644 index 00000000..39731811 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName.class new file mode 100644 index 00000000..5ad3fef8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName$1.class new file mode 100644 index 00000000..13c063bd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName$Builder.class new file mode 100644 index 00000000..89159be3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName.class new file mode 100644 index 00000000..2ba0c4e7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName$1.class new file mode 100644 index 00000000..6bf81e0f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName$Builder.class new file mode 100644 index 00000000..44ef57ca Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName.class new file mode 100644 index 00000000..3abdcbae Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/UntypedIamResourceName.class new file mode 100644 index 00000000..66c568b4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/deployment/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details$1.class new file mode 100644 index 00000000..d1765f8a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details$Builder.class new file mode 100644 index 00000000..61b24cf0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details.class new file mode 100644 index 00000000..c21ff4a5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Details.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DetailsOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DetailsOrBuilder.class new file mode 100644 index 00000000..98abd76f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DetailsOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$1.class new file mode 100644 index 00000000..fae65588 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$AnalysisStatus$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$AnalysisStatus$1.class new file mode 100644 index 00000000..2f2ea312 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$AnalysisStatus$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$AnalysisStatus.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$AnalysisStatus.class new file mode 100644 index 00000000..193a70e1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$AnalysisStatus.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$Builder.class new file mode 100644 index 00000000..5b3a89bf Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$ContinuousAnalysis$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$ContinuousAnalysis$1.class new file mode 100644 index 00000000..8f8d9901 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$ContinuousAnalysis$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$ContinuousAnalysis.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$ContinuousAnalysis.class new file mode 100644 index 00000000..07fc8296 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered$ContinuousAnalysis.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered.class new file mode 100644 index 00000000..88e985f4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovered.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.class new file mode 100644 index 00000000..2296568d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery$1.class new file mode 100644 index 00000000..81a19e4f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery$Builder.class new file mode 100644 index 00000000..a22fcdb9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery.class new file mode 100644 index 00000000..4f482ec1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/Discovery.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.class new file mode 100644 index 00000000..51f8bf6b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOuterClass$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOuterClass$1.class new file mode 100644 index 00000000..8d77c4f2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOuterClass$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.class new file mode 100644 index 00000000..204562f1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/IamResourceName.class new file mode 100644 index 00000000..a815e597 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/IamResourceNames.class new file mode 100644 index 00000000..004db188 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName$1.class new file mode 100644 index 00000000..fbaa32a2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName$Builder.class new file mode 100644 index 00000000..3cd99b52 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName.class new file mode 100644 index 00000000..f8f3b27a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName$1.class new file mode 100644 index 00000000..84789476 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName$Builder.class new file mode 100644 index 00000000..125d89e8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName.class new file mode 100644 index 00000000..8b2fbb3b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName$1.class new file mode 100644 index 00000000..d3539613 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName$Builder.class new file mode 100644 index 00000000..40ea3631 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName.class new file mode 100644 index 00000000..43f258e2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName$1.class new file mode 100644 index 00000000..0049138e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName$Builder.class new file mode 100644 index 00000000..1c0d0545 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName.class new file mode 100644 index 00000000..038db764 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/UntypedIamResourceName.class new file mode 100644 index 00000000..0f9de932 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/discovery/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis$1.class new file mode 100644 index 00000000..16f186dc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis$Builder.class new file mode 100644 index 00000000..a636a22c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis.class new file mode 100644 index 00000000..8714bbb8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Basis.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/BasisOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/BasisOrBuilder.class new file mode 100644 index 00000000..6d4323bb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/BasisOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived$1.class new file mode 100644 index 00000000..67fd2e1e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived$Builder.class new file mode 100644 index 00000000..e96129ea Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived.class new file mode 100644 index 00000000..d9ada393 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Derived.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/DerivedOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/DerivedOrBuilder.class new file mode 100644 index 00000000..06843642 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/DerivedOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details$1.class new file mode 100644 index 00000000..9defe8b9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details$Builder.class new file mode 100644 index 00000000..6d06d7e2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details.class new file mode 100644 index 00000000..202f7504 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Details.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/DetailsOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/DetailsOrBuilder.class new file mode 100644 index 00000000..d56c3dc6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/DetailsOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint$1.class new file mode 100644 index 00000000..91587f5f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint$Builder.class new file mode 100644 index 00000000..725320ec Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint.class new file mode 100644 index 00000000..68bbb764 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Fingerprint.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/FingerprintOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/FingerprintOrBuilder.class new file mode 100644 index 00000000..5678d3f4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/FingerprintOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/IamResourceName.class new file mode 100644 index 00000000..6f45d312 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/IamResourceNames.class new file mode 100644 index 00000000..a2422743 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Image$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Image$1.class new file mode 100644 index 00000000..9e4c507d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Image$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Image.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Image.class new file mode 100644 index 00000000..910547b7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Image.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$1.class new file mode 100644 index 00000000..a61bb41a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Builder.class new file mode 100644 index 00000000..27328437 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Directive$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Directive$1.class new file mode 100644 index 00000000..e75198d5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Directive$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Directive.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Directive.class new file mode 100644 index 00000000..b9cc40b9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer$Directive.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer.class new file mode 100644 index 00000000..b1164fbd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/Layer.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/LayerOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/LayerOrBuilder.class new file mode 100644 index 00000000..bcebf730 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/LayerOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName$1.class new file mode 100644 index 00000000..891c4a3d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName$Builder.class new file mode 100644 index 00000000..ee1cf5f8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName.class new file mode 100644 index 00000000..f03efa56 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName$1.class new file mode 100644 index 00000000..20cb5ea5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName$Builder.class new file mode 100644 index 00000000..d565245e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName.class new file mode 100644 index 00000000..e009237f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName$1.class new file mode 100644 index 00000000..f5216574 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName$Builder.class new file mode 100644 index 00000000..0e60f092 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName.class new file mode 100644 index 00000000..7c005eef Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName$1.class new file mode 100644 index 00000000..713589f8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName$Builder.class new file mode 100644 index 00000000..082d19d2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName.class new file mode 100644 index 00000000..395f6f0d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/UntypedIamResourceName.class new file mode 100644 index 00000000..cb0aaab7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/image/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Architecture$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Architecture$1.class new file mode 100644 index 00000000..37461d6a Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Architecture$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Architecture.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Architecture.class new file mode 100644 index 00000000..1920f038 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Architecture.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details$1.class new file mode 100644 index 00000000..77ddfac9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details$Builder.class new file mode 100644 index 00000000..a1e7d9d6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details.class new file mode 100644 index 00000000..1e90ea52 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Details.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/DetailsOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/DetailsOrBuilder.class new file mode 100644 index 00000000..4694f291 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/DetailsOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution$1.class new file mode 100644 index 00000000..f36f6e5b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution$Builder.class new file mode 100644 index 00000000..46478a46 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution.class new file mode 100644 index 00000000..e1698377 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Distribution.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/DistributionOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/DistributionOrBuilder.class new file mode 100644 index 00000000..5e05eff3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/DistributionOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/IamResourceName.class new file mode 100644 index 00000000..fd6d9ce1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/IamResourceNames.class new file mode 100644 index 00000000..985ff509 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation$1.class new file mode 100644 index 00000000..3763df44 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation$Builder.class new file mode 100644 index 00000000..c0d20a54 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation.class new file mode 100644 index 00000000..7dd06631 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Installation.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/InstallationOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/InstallationOrBuilder.class new file mode 100644 index 00000000..482b7456 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/InstallationOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location$1.class new file mode 100644 index 00000000..f1d572e9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location$Builder.class new file mode 100644 index 00000000..2e99e1d8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location.class new file mode 100644 index 00000000..a6169c4b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Location.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/LocationOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/LocationOrBuilder.class new file mode 100644 index 00000000..d91a6a30 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/LocationOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName$1.class new file mode 100644 index 00000000..e592d7f9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName$Builder.class new file mode 100644 index 00000000..c325f9d2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName.class new file mode 100644 index 00000000..b54b8995 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName$1.class new file mode 100644 index 00000000..e3a63e95 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName$Builder.class new file mode 100644 index 00000000..b328fb2d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName.class new file mode 100644 index 00000000..97d3d541 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package$1.class new file mode 100644 index 00000000..aa336567 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package$Builder.class new file mode 100644 index 00000000..210c67af Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package.class new file mode 100644 index 00000000..f63dcfa1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Package.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOrBuilder.class new file mode 100644 index 00000000..3995bf97 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOuterClass$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOuterClass$1.class new file mode 100644 index 00000000..72ecab53 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOuterClass$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOuterClass.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOuterClass.class new file mode 100644 index 00000000..9b089461 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/PackageOuterClass.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName$1.class new file mode 100644 index 00000000..5cfbea77 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName$Builder.class new file mode 100644 index 00000000..8df59418 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName.class new file mode 100644 index 00000000..35b92a3b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName$1.class new file mode 100644 index 00000000..be98a253 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName$Builder.class new file mode 100644 index 00000000..f5113efa Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName.class new file mode 100644 index 00000000..370f4ae4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/UntypedIamResourceName.class new file mode 100644 index 00000000..9fa34ebd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$1.class new file mode 100644 index 00000000..eb128636 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$Builder.class new file mode 100644 index 00000000..6bce7628 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$VersionKind$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$VersionKind$1.class new file mode 100644 index 00000000..99e0a7bd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$VersionKind$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$VersionKind.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$VersionKind.class new file mode 100644 index 00000000..9172473c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version$VersionKind.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version.class new file mode 100644 index 00000000..32f11a61 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/Version.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/VersionOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/VersionOrBuilder.class new file mode 100644 index 00000000..89e05035 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/pkg/VersionOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact$1.class new file mode 100644 index 00000000..03df08fb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact$Builder.class new file mode 100644 index 00000000..069f67a5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact.class new file mode 100644 index 00000000..60518b42 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Artifact.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.class new file mode 100644 index 00000000..081eab14 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$1.class new file mode 100644 index 00000000..68c99449 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$BuildOptionsDefaultEntryHolder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$BuildOptionsDefaultEntryHolder.class new file mode 100644 index 00000000..25d258f3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$BuildOptionsDefaultEntryHolder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$Builder.class new file mode 100644 index 00000000..719d94fb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance.class new file mode 100644 index 00000000..83879f6b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenance.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.class new file mode 100644 index 00000000..cd0ee0e3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command$1.class new file mode 100644 index 00000000..73152894 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command$Builder.class new file mode 100644 index 00000000..916c5602 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command.class new file mode 100644 index 00000000..9644e2a7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Command.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/CommandOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/CommandOrBuilder.class new file mode 100644 index 00000000..cb7b1981 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/CommandOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes$1.class new file mode 100644 index 00000000..2a34a86b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes$Builder.class new file mode 100644 index 00000000..3c04632f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes.class new file mode 100644 index 00000000..5069df9e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashes.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.class new file mode 100644 index 00000000..8daf034b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$1.class new file mode 100644 index 00000000..43b2ed81 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$Builder.class new file mode 100644 index 00000000..d41e1c06 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$HashType$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$HashType$1.class new file mode 100644 index 00000000..01bb8232 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$HashType$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$HashType.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$HashType.class new file mode 100644 index 00000000..9cd6cad9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash$HashType.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash.class new file mode 100644 index 00000000..266ff3f9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Hash.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/HashOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/HashOrBuilder.class new file mode 100644 index 00000000..f072351b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/HashOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/IamResourceName.class new file mode 100644 index 00000000..26460155 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/IamResourceNames.class new file mode 100644 index 00000000..9c887565 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName$1.class new file mode 100644 index 00000000..2d8b1a89 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName$Builder.class new file mode 100644 index 00000000..4f98eace Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName.class new file mode 100644 index 00000000..8f27d1c8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName$1.class new file mode 100644 index 00000000..9a4f70a1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName$Builder.class new file mode 100644 index 00000000..cfcfaaa8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName.class new file mode 100644 index 00000000..3a169935 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName$1.class new file mode 100644 index 00000000..4ee8ded6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName$Builder.class new file mode 100644 index 00000000..f56bf08c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName.class new file mode 100644 index 00000000..bdf3e4e7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Provenance$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Provenance$1.class new file mode 100644 index 00000000..901eb3b8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Provenance$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Provenance.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Provenance.class new file mode 100644 index 00000000..63fac98c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Provenance.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName$1.class new file mode 100644 index 00000000..a1b36ba2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName$Builder.class new file mode 100644 index 00000000..3591affc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName.class new file mode 100644 index 00000000..f8e3867f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$1.class new file mode 100644 index 00000000..010a8bf4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$Builder.class new file mode 100644 index 00000000..2c67b659 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$FileHashesDefaultEntryHolder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$FileHashesDefaultEntryHolder.class new file mode 100644 index 00000000..1bee5ca8 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source$FileHashesDefaultEntryHolder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source.class new file mode 100644 index 00000000..92ac670f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/Source.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/SourceOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/SourceOrBuilder.class new file mode 100644 index 00000000..79e21d11 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/SourceOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/UntypedIamResourceName.class new file mode 100644 index 00000000..377bba3d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/provenance/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$1.class new file mode 100644 index 00000000..1aa8933f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Builder.class new file mode 100644 index 00000000..3885417c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Kind$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Kind$1.class new file mode 100644 index 00000000..cee74e32 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Kind$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Kind.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Kind.class new file mode 100644 index 00000000..e60d3ce3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext$Kind.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext.class new file mode 100644 index 00000000..40fd6bf0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContext.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContextOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContextOrBuilder.class new file mode 100644 index 00000000..08459973 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/AliasContextOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$1.class new file mode 100644 index 00000000..33e8276e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$2.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$2.class new file mode 100644 index 00000000..9cd1997f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$2.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$Builder.class new file mode 100644 index 00000000..6d585f7d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$RevisionCase.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$RevisionCase.class new file mode 100644 index 00000000..4ca41d26 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext$RevisionCase.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext.class new file mode 100644 index 00000000..d48c87c5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContext.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.class new file mode 100644 index 00000000..037ed756 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$1.class new file mode 100644 index 00000000..1474fb77 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$2.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$2.class new file mode 100644 index 00000000..6785b61e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$2.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$Builder.class new file mode 100644 index 00000000..0056db2d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$RevisionCase.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$RevisionCase.class new file mode 100644 index 00000000..093ffe30 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext$RevisionCase.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext.class new file mode 100644 index 00000000..a4a1309f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContext.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.class new file mode 100644 index 00000000..dbe0039b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext$1.class new file mode 100644 index 00000000..10901bab Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext$Builder.class new file mode 100644 index 00000000..357b95b5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext.class new file mode 100644 index 00000000..244cdc4c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContext.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.class new file mode 100644 index 00000000..24aff517 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/IamResourceName.class new file mode 100644 index 00000000..dd02624f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/IamResourceNames.class new file mode 100644 index 00000000..12fd4853 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName$1.class new file mode 100644 index 00000000..c440f788 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName$Builder.class new file mode 100644 index 00000000..b42a69cf Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName.class new file mode 100644 index 00000000..ab3bffec Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName$1.class new file mode 100644 index 00000000..61be3888 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName$Builder.class new file mode 100644 index 00000000..5f6b7d1b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName.class new file mode 100644 index 00000000..2c5f0d70 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName$1.class new file mode 100644 index 00000000..74b0d213 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName$Builder.class new file mode 100644 index 00000000..aed50e93 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName.class new file mode 100644 index 00000000..efebf7bb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId$1.class new file mode 100644 index 00000000..c22ad4d5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId$Builder.class new file mode 100644 index 00000000..6b689f8e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId.class new file mode 100644 index 00000000..d1094aae Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoId.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.class new file mode 100644 index 00000000..a8d2e942 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$1.class new file mode 100644 index 00000000..d94affb9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$2.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$2.class new file mode 100644 index 00000000..d83cea15 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$2.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$Builder.class new file mode 100644 index 00000000..a10249e3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$IdCase.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$IdCase.class new file mode 100644 index 00000000..10ceeb5f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId$IdCase.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId.class new file mode 100644 index 00000000..8dc55a25 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoId.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoIdOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoIdOrBuilder.class new file mode 100644 index 00000000..ad9a23d9 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/RepoIdOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName$1.class new file mode 100644 index 00000000..e004ee1c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName$Builder.class new file mode 100644 index 00000000..63176630 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName.class new file mode 100644 index 00000000..92ded49e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/Source$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/Source$1.class new file mode 100644 index 00000000..9831ea5f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/Source$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/Source.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/Source.class new file mode 100644 index 00000000..efee5d58 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/Source.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$1.class new file mode 100644 index 00000000..249939e6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$2.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$2.class new file mode 100644 index 00000000..4b8341bf Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$2.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$Builder.class new file mode 100644 index 00000000..f41831f4 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$ContextCase.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$ContextCase.class new file mode 100644 index 00000000..a49c749e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$ContextCase.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$LabelsDefaultEntryHolder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$LabelsDefaultEntryHolder.class new file mode 100644 index 00000000..5d8e3d5d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext$LabelsDefaultEntryHolder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext.class new file mode 100644 index 00000000..724eb6f0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContext.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContextOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContextOrBuilder.class new file mode 100644 index 00000000..01cd64ec Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/SourceContextOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/UntypedIamResourceName.class new file mode 100644 index 00000000..8c3d9644 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/source/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details$1.class new file mode 100644 index 00000000..ed0a663b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details$Builder.class new file mode 100644 index 00000000..211382c7 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details.class new file mode 100644 index 00000000..02bfa53b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Details.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.class new file mode 100644 index 00000000..80e99c01 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/IamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/IamResourceName.class new file mode 100644 index 00000000..fc43870c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/IamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/IamResourceNames.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/IamResourceNames.class new file mode 100644 index 00000000..fc273263 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/IamResourceNames.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName$1.class new file mode 100644 index 00000000..32094587 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName$Builder.class new file mode 100644 index 00000000..73dd94e1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName.class new file mode 100644 index 00000000..abc07bb6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/NoteName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName$1.class new file mode 100644 index 00000000..f2e5c858 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName$Builder.class new file mode 100644 index 00000000..a7424f87 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName.class new file mode 100644 index 00000000..43296b98 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/OccurrenceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue$1.class new file mode 100644 index 00000000..377a27b3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue$Builder.class new file mode 100644 index 00000000..e70db4c2 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue.class new file mode 100644 index 00000000..8bc23b67 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssue.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.class new file mode 100644 index 00000000..8887f3d0 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName$1.class new file mode 100644 index 00000000..923dcdd5 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName$Builder.class new file mode 100644 index 00000000..93b9d19e Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName.class new file mode 100644 index 00000000..578cbdfb Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ProjectName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName$1.class new file mode 100644 index 00000000..ec8c7346 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName$Builder.class new file mode 100644 index 00000000..b256b23b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName.class new file mode 100644 index 00000000..f53a580d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/ScanConfigName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Severity$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Severity$1.class new file mode 100644 index 00000000..af07469f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Severity$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Severity.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Severity.class new file mode 100644 index 00000000..c8fa1fbc Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Severity.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.class new file mode 100644 index 00000000..3983c015 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$1.class new file mode 100644 index 00000000..3a575060 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Builder.class new file mode 100644 index 00000000..fb2645fd Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail$1.class new file mode 100644 index 00000000..dc9a6ac1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail$Builder.class new file mode 100644 index 00000000..41ee094b Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail.class new file mode 100644 index 00000000..c692cd57 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$Detail.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$DetailOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$DetailOrBuilder.class new file mode 100644 index 00000000..a72bd85c Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability$DetailOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability.class new file mode 100644 index 00000000..e1bd9dd1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/Vulnerability.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation$1.class new file mode 100644 index 00000000..f0a5e808 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation$Builder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation$Builder.class new file mode 100644 index 00000000..70178c75 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation$Builder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.class new file mode 100644 index 00000000..d4ce2fb6 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.class new file mode 100644 index 00000000..4eb3e9d1 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.class new file mode 100644 index 00000000..bc8a350d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass$1.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass$1.class new file mode 100644 index 00000000..cef343b3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass$1.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.class b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.class new file mode 100644 index 00000000..e4305f7d Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/classes/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.class differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/maven-archiver/pom.properties b/proto-google-cloud-containeranalysis-v1beta1/target/maven-archiver/pom.properties new file mode 100644 index 00000000..b8f93752 --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +groupId=com.google.api.grpc +artifactId=proto-google-cloud-containeranalysis-v1beta1 +version=0.82.0 diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/proto-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..18b1e6bd --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,544 @@ +io/grafeas/v1beta1/common/RelatedUrl$1.class +io/grafeas/v1beta1/attestation/Authority.class +io/grafeas/v1beta1/attestation/ProjectName.class +io/grafeas/v1beta1/source/NoteName.class +io/grafeas/v1beta1/image/UntypedIamResourceName.class +io/grafeas/v1beta1/Resource$1.class +io/grafeas/v1beta1/ResourceOrBuilder.class +io/grafeas/v1beta1/GetOccurrenceRequest.class +io/grafeas/v1beta1/attestation/OccurrenceName$1.class +io/grafeas/v1beta1/source/ScanConfigName$1.class +io/grafeas/v1beta1/provenance/OccurrenceName.class +io/grafeas/v1beta1/ListOccurrencesResponse$1.class +io/grafeas/v1beta1/OccurrenceName$1.class +io/grafeas/v1beta1/build/BuildSignature$KeyType$1.class +io/grafeas/v1beta1/ListNoteOccurrencesRequest$Builder.class +io/grafeas/v1beta1/pkg/Location$Builder.class +io/grafeas/v1beta1/vulnerability/ScanConfigName$1.class +io/grafeas/v1beta1/deployment/Deployment$Builder.class +io/grafeas/v1beta1/pkg/Version$Builder.class +io/grafeas/v1beta1/vulnerability/IamResourceName.class +io/grafeas/v1beta1/pkg/LocationOrBuilder.class +io/grafeas/v1beta1/source/ProjectRepoId.class +io/grafeas/v1beta1/vulnerability/ProjectName.class +io/grafeas/v1beta1/provenance/ProjectName$Builder.class +io/grafeas/v1beta1/source/SourceContext$LabelsDefaultEntryHolder.class +io/grafeas/v1beta1/source/GitSourceContext$Builder.class +io/grafeas/v1beta1/Occurrence$DetailsCase.class +io/grafeas/v1beta1/common/NoteName.class +io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.class +io/grafeas/v1beta1/DeleteOccurrenceRequest.class +io/grafeas/v1beta1/GetNoteRequest$Builder.class +io/grafeas/v1beta1/source/RepoId$1.class +io/grafeas/v1beta1/pkg/IamResourceName.class +io/grafeas/v1beta1/discovery/IamResourceName.class +io/grafeas/v1beta1/provenance/Source$Builder.class +io/grafeas/v1beta1/deployment/ScanConfigName$Builder.class +io/grafeas/v1beta1/vulnerability/Vulnerability$Detail$Builder.class +io/grafeas/v1beta1/pkg/Distribution.class +io/grafeas/v1beta1/build/Build$Builder.class +io/grafeas/v1beta1/pkg/Package.class +io/grafeas/v1beta1/discovery/NoteName$1.class +io/grafeas/v1beta1/discovery/ScanConfigName.class +com/google/containeranalysis/v1beta1/NoteName$1.class +io/grafeas/v1beta1/ListNoteOccurrencesRequest$1.class +io/grafeas/v1beta1/image/NoteName$1.class +com/google/containeranalysis/v1beta1/ScanConfig.class +io/grafeas/v1beta1/Grafeas$1.class +io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.class +com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.class +io/grafeas/v1beta1/provenance/FileHashesOrBuilder.class +io/grafeas/v1beta1/discovery/Details$1.class +io/grafeas/v1beta1/provenance/BuildProvenance$Builder.class +io/grafeas/v1beta1/deployment/NoteName$1.class +io/grafeas/v1beta1/attestation/PgpSignedAttestation$2.class +io/grafeas/v1beta1/ProjectName$Builder.class +io/grafeas/v1beta1/source/CloudRepoSourceContext$1.class +com/google/containeranalysis/v1beta1/ProjectName$Builder.class +io/grafeas/v1beta1/build/OccurrenceName$1.class +io/grafeas/v1beta1/pkg/Version$VersionKind$1.class +io/grafeas/v1beta1/common/RelatedUrl.class +io/grafeas/v1beta1/pkg/OccurrenceName.class +io/grafeas/v1beta1/attestation/Authority$Hint.class +io/grafeas/v1beta1/ScanConfigName$Builder.class +io/grafeas/v1beta1/common/RelatedUrlOrBuilder.class +io/grafeas/v1beta1/deployment/DeploymentOrBuilder.class +io/grafeas/v1beta1/GetNoteRequestOrBuilder.class +io/grafeas/v1beta1/build/UntypedIamResourceName.class +io/grafeas/v1beta1/source/GitSourceContextOrBuilder.class +io/grafeas/v1beta1/pkg/Architecture$1.class +io/grafeas/v1beta1/DeleteOccurrenceRequest$1.class +io/grafeas/v1beta1/CreateNoteRequestOrBuilder.class +io/grafeas/v1beta1/deployment/DeployableOrBuilder.class +io/grafeas/v1beta1/pkg/Version.class +io/grafeas/v1beta1/UpdateOccurrenceRequest$Builder.class +io/grafeas/v1beta1/common/RelatedUrl$Builder.class +io/grafeas/v1beta1/attestation/AttestationOuterClass$1.class +io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.class +io/grafeas/v1beta1/source/RepoId$IdCase.class +io/grafeas/v1beta1/deployment/ScanConfigName$1.class +io/grafeas/v1beta1/attestation/IamResourceName.class +io/grafeas/v1beta1/ProjectName$1.class +io/grafeas/v1beta1/build/ScanConfigName$1.class +io/grafeas/v1beta1/discovery/DetailsOrBuilder.class +io/grafeas/v1beta1/source/CloudRepoSourceContext.class +io/grafeas/v1beta1/common/NoteKind$1.class +io/grafeas/v1beta1/provenance/Hash$HashType.class +io/grafeas/v1beta1/provenance/NoteName$1.class +io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.class +io/grafeas/v1beta1/ListNotesRequest$1.class +io/grafeas/v1beta1/pkg/ProjectName$Builder.class +io/grafeas/v1beta1/common/OccurrenceName$Builder.class +io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.class +com/google/containeranalysis/v1beta1/UntypedIamResourceName.class +io/grafeas/v1beta1/deployment/Deployment$1.class +io/grafeas/v1beta1/BatchCreateNotesRequest$1.class +io/grafeas/v1beta1/common/ProjectName.class +io/grafeas/v1beta1/build/IamResourceNames.class +io/grafeas/v1beta1/DeleteNoteRequest$Builder.class +io/grafeas/v1beta1/build/Details$Builder.class +io/grafeas/v1beta1/vulnerability/IamResourceNames.class +io/grafeas/v1beta1/source/CloudRepoSourceContext$RevisionCase.class +io/grafeas/v1beta1/common/NoteName$1.class +io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.class +io/grafeas/v1beta1/image/Image$1.class +io/grafeas/v1beta1/Note$2.class +io/grafeas/v1beta1/image/LayerOrBuilder.class +io/grafeas/v1beta1/pkg/OccurrenceName$1.class +io/grafeas/v1beta1/vulnerability/OccurrenceName$Builder.class +io/grafeas/v1beta1/BatchCreateNotesRequest$Builder.class +io/grafeas/v1beta1/attestation/Details$1.class +io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$1.class +io/grafeas/v1beta1/pkg/Version$1.class +io/grafeas/v1beta1/deployment/Details$1.class +io/grafeas/v1beta1/image/IamResourceNames.class +io/grafeas/v1beta1/image/Basis$1.class +io/grafeas/v1beta1/source/AliasContext$Kind.class +io/grafeas/v1beta1/build/Build$1.class +io/grafeas/v1beta1/provenance/Command$1.class +io/grafeas/v1beta1/attestation/IamResourceNames.class +io/grafeas/v1beta1/attestation/PgpSignedAttestation$ContentType$1.class +io/grafeas/v1beta1/IamResourceNames.class +io/grafeas/v1beta1/pkg/IamResourceNames.class +com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.class +io/grafeas/v1beta1/source/ProjectRepoId$1.class +io/grafeas/v1beta1/IamResourceName.class +io/grafeas/v1beta1/UpdateNoteRequest.class +io/grafeas/v1beta1/pkg/Package$1.class +io/grafeas/v1beta1/source/GerritSourceContext$2.class +io/grafeas/v1beta1/discovery/Details.class +io/grafeas/v1beta1/image/Details$Builder.class +io/grafeas/v1beta1/build/BuildSignature$1.class +io/grafeas/v1beta1/source/GitSourceContext$1.class +com/google/containeranalysis/v1beta1/ProjectName.class +io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest$Builder.class +io/grafeas/v1beta1/GetOccurrenceRequest$1.class +io/grafeas/v1beta1/provenance/Command$Builder.class +io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.class +io/grafeas/v1beta1/attestation/ProjectName$Builder.class +io/grafeas/v1beta1/attestation/PgpSignedAttestation$ContentType.class +io/grafeas/v1beta1/provenance/FileHashes$Builder.class +io/grafeas/v1beta1/pkg/Location.class +io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.class +com/google/containeranalysis/v1beta1/ListScanConfigsResponse$Builder.class +io/grafeas/v1beta1/discovery/DiscoveryOuterClass.class +io/grafeas/v1beta1/source/ProjectName.class +io/grafeas/v1beta1/discovery/Details$Builder.class +io/grafeas/v1beta1/attestation/NoteName$1.class +io/grafeas/v1beta1/deployment/UntypedIamResourceName.class +io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.class +io/grafeas/v1beta1/BatchCreateOccurrencesResponse$1.class +io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.class +com/google/containeranalysis/v1beta1/OccurrenceName$1.class +io/grafeas/v1beta1/common/OccurrenceName.class +io/grafeas/v1beta1/provenance/BuildProvenance.class +io/grafeas/v1beta1/pkg/Details$Builder.class +io/grafeas/v1beta1/image/DerivedOrBuilder.class +io/grafeas/v1beta1/attestation/AttestationOuterClass.class +io/grafeas/v1beta1/image/Fingerprint$Builder.class +io/grafeas/v1beta1/image/FingerprintOrBuilder.class +io/grafeas/v1beta1/provenance/OccurrenceName$Builder.class +io/grafeas/v1beta1/ListNotesResponse$1.class +io/grafeas/v1beta1/source/ProjectRepoId$Builder.class +io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass$1.class +io/grafeas/v1beta1/Grafeas.class +io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.class +io/grafeas/v1beta1/provenance/Source$FileHashesDefaultEntryHolder.class +io/grafeas/v1beta1/provenance/Artifact.class +io/grafeas/v1beta1/deployment/DeploymentOuterClass.class +io/grafeas/v1beta1/common/Common.class +io/grafeas/v1beta1/attestation/Details.class +com/google/containeranalysis/v1beta1/Containeranalysis.class +io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.class +io/grafeas/v1beta1/image/OccurrenceName.class +io/grafeas/v1beta1/pkg/UntypedIamResourceName.class +io/grafeas/v1beta1/source/ProjectName$Builder.class +io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.class +io/grafeas/v1beta1/vulnerability/VulnerabilityLocation$Builder.class +io/grafeas/v1beta1/pkg/Location$1.class +io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest.class +io/grafeas/v1beta1/deployment/Deployable$1.class +io/grafeas/v1beta1/vulnerability/VulnerabilityLocation$1.class +com/google/containeranalysis/v1beta1/UpdateScanConfigRequest$Builder.class +io/grafeas/v1beta1/discovery/ScanConfigName$1.class +io/grafeas/v1beta1/provenance/Artifact$Builder.class +io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest$Builder.class +io/grafeas/v1beta1/ListNoteOccurrencesResponse$1.class +io/grafeas/v1beta1/vulnerability/Severity$1.class +io/grafeas/v1beta1/attestation/UntypedIamResourceName.class +io/grafeas/v1beta1/attestation/PgpSignedAttestation.class +io/grafeas/v1beta1/provenance/Hash$1.class +io/grafeas/v1beta1/pkg/NoteName$Builder.class +io/grafeas/v1beta1/source/CloudRepoSourceContext$Builder.class +io/grafeas/v1beta1/provenance/NoteName$Builder.class +io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest$1.class +io/grafeas/v1beta1/build/BuildOrBuilder.class +io/grafeas/v1beta1/provenance/Source$1.class +io/grafeas/v1beta1/deployment/OccurrenceName$Builder.class +io/grafeas/v1beta1/build/ProjectName$1.class +com/google/containeranalysis/v1beta1/Containeranalysis$1.class +io/grafeas/v1beta1/image/Layer$Directive.class +io/grafeas/v1beta1/build/Details$1.class +io/grafeas/v1beta1/OccurrenceName.class +io/grafeas/v1beta1/vulnerability/OccurrenceName$1.class +io/grafeas/v1beta1/image/ScanConfigName$1.class +io/grafeas/v1beta1/ListOccurrencesResponse$Builder.class +io/grafeas/v1beta1/ListNoteOccurrencesResponse$Builder.class +io/grafeas/v1beta1/vulnerability/Vulnerability$DetailOrBuilder.class +io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.class +io/grafeas/v1beta1/common/NoteName$Builder.class +io/grafeas/v1beta1/deployment/NoteName$Builder.class +io/grafeas/v1beta1/source/OccurrenceName$1.class +io/grafeas/v1beta1/image/IamResourceName.class +io/grafeas/v1beta1/attestation/Details$Builder.class +io/grafeas/v1beta1/provenance/UntypedIamResourceName.class +io/grafeas/v1beta1/attestation/OccurrenceName$Builder.class +io/grafeas/v1beta1/discovery/Discovered$Builder.class +com/google/containeranalysis/v1beta1/GetScanConfigRequest.class +com/google/containeranalysis/v1beta1/ScanConfigName$1.class +io/grafeas/v1beta1/discovery/Discovered$AnalysisStatus$1.class +io/grafeas/v1beta1/discovery/OccurrenceName$Builder.class +io/grafeas/v1beta1/deployment/NoteName.class +io/grafeas/v1beta1/pkg/Details$1.class +io/grafeas/v1beta1/source/RepoIdOrBuilder.class +io/grafeas/v1beta1/attestation/Attestation$SignatureCase.class +io/grafeas/v1beta1/vulnerability/ScanConfigName.class +io/grafeas/v1beta1/vulnerability/Details.class +io/grafeas/v1beta1/ScanConfigName$1.class +io/grafeas/v1beta1/pkg/ScanConfigName.class +io/grafeas/v1beta1/provenance/IamResourceNames.class +io/grafeas/v1beta1/ListOccurrencesRequest.class +io/grafeas/v1beta1/Occurrence.class +com/google/containeranalysis/v1beta1/ListScanConfigsResponse$1.class +io/grafeas/v1beta1/image/Image.class +io/grafeas/v1beta1/discovery/Discovery.class +io/grafeas/v1beta1/deployment/ScanConfigName.class +io/grafeas/v1beta1/discovery/DiscoveryOuterClass$1.class +io/grafeas/v1beta1/discovery/Discovery$Builder.class +io/grafeas/v1beta1/GetOccurrenceNoteRequest.class +io/grafeas/v1beta1/build/BuildOuterClass$1.class +io/grafeas/v1beta1/source/IamResourceName.class +io/grafeas/v1beta1/provenance/Provenance.class +io/grafeas/v1beta1/ProjectName.class +io/grafeas/v1beta1/source/AliasContext$Builder.class +io/grafeas/v1beta1/image/Derived.class +io/grafeas/v1beta1/GetOccurrenceNoteRequest$1.class +io/grafeas/v1beta1/ListOccurrencesRequest$Builder.class +io/grafeas/v1beta1/image/Details$1.class +io/grafeas/v1beta1/common/ScanConfigName$Builder.class +io/grafeas/v1beta1/GetNoteRequest$1.class +io/grafeas/v1beta1/provenance/FileHashes.class +io/grafeas/v1beta1/discovery/UntypedIamResourceName.class +io/grafeas/v1beta1/source/SourceContext$2.class +io/grafeas/v1beta1/CreateNoteRequest$Builder.class +io/grafeas/v1beta1/source/AliasContext.class +io/grafeas/v1beta1/source/RepoId.class +io/grafeas/v1beta1/deployment/Details$Builder.class +io/grafeas/v1beta1/deployment/Deployable$Builder.class +io/grafeas/v1beta1/source/ScanConfigName$Builder.class +io/grafeas/v1beta1/common/IamResourceNames.class +io/grafeas/v1beta1/deployment/IamResourceNames.class +io/grafeas/v1beta1/attestation/ProjectName$1.class +io/grafeas/v1beta1/source/SourceContext$1.class +io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.class +io/grafeas/v1beta1/DeleteOccurrenceRequest$Builder.class +io/grafeas/v1beta1/attestation/OccurrenceName.class +io/grafeas/v1beta1/source/ScanConfigName.class +io/grafeas/v1beta1/deployment/Deployable.class +io/grafeas/v1beta1/attestation/PgpSignedAttestation$Builder.class +com/google/containeranalysis/v1beta1/OccurrenceName$Builder.class +io/grafeas/v1beta1/discovery/ProjectName.class +io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.class +io/grafeas/v1beta1/pkg/ScanConfigName$Builder.class +io/grafeas/v1beta1/pkg/PackageOrBuilder.class +com/google/containeranalysis/v1beta1/OccurrenceName.class +io/grafeas/v1beta1/NoteName$1.class +com/google/containeranalysis/v1beta1/ListScanConfigsRequest.class +io/grafeas/v1beta1/common/Common$1.class +io/grafeas/v1beta1/image/ScanConfigName.class +io/grafeas/v1beta1/NoteName$Builder.class +io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.class +io/grafeas/v1beta1/GetNoteRequest.class +io/grafeas/v1beta1/source/GitSourceContext.class +io/grafeas/v1beta1/provenance/ProjectName$1.class +io/grafeas/v1beta1/attestation/ScanConfigName$Builder.class +io/grafeas/v1beta1/common/ProjectName$1.class +io/grafeas/v1beta1/vulnerability/Vulnerability$1.class +io/grafeas/v1beta1/BatchCreateNotesResponse$Builder.class +io/grafeas/v1beta1/build/OccurrenceName$Builder.class +io/grafeas/v1beta1/source/SourceContextOrBuilder.class +io/grafeas/v1beta1/provenance/CommandOrBuilder.class +io/grafeas/v1beta1/attestation/Authority$Hint$Builder.class +io/grafeas/v1beta1/source/RepoId$Builder.class +io/grafeas/v1beta1/ScanConfigName.class +io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.class +io/grafeas/v1beta1/UpdateOccurrenceRequest.class +io/grafeas/v1beta1/UpdateOccurrenceRequest$1.class +io/grafeas/v1beta1/provenance/HashOrBuilder.class +io/grafeas/v1beta1/image/Details.class +io/grafeas/v1beta1/source/CloudRepoSourceContext$2.class +com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.class +io/grafeas/v1beta1/source/AliasContext$1.class +io/grafeas/v1beta1/build/NoteName$Builder.class +io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.class +io/grafeas/v1beta1/Resource.class +io/grafeas/v1beta1/image/Basis.class +io/grafeas/v1beta1/ListNoteOccurrencesResponse.class +io/grafeas/v1beta1/image/Layer$Builder.class +io/grafeas/v1beta1/attestation/AttestationOrBuilder.class +io/grafeas/v1beta1/attestation/PgpSignedAttestation$KeyIdCase.class +io/grafeas/v1beta1/deployment/IamResourceName.class +io/grafeas/v1beta1/provenance/Artifact$1.class +io/grafeas/v1beta1/attestation/DetailsOrBuilder.class +io/grafeas/v1beta1/vulnerability/Vulnerability$Detail.class +io/grafeas/v1beta1/common/NoteKind.class +io/grafeas/v1beta1/pkg/Architecture.class +io/grafeas/v1beta1/image/Fingerprint$1.class +io/grafeas/v1beta1/attestation/NoteName$Builder.class +io/grafeas/v1beta1/build/ProjectName$Builder.class +io/grafeas/v1beta1/common/ScanConfigName.class +io/grafeas/v1beta1/pkg/VersionOrBuilder.class +io/grafeas/v1beta1/provenance/IamResourceName.class +io/grafeas/v1beta1/vulnerability/ProjectName$Builder.class +io/grafeas/v1beta1/pkg/Details.class +io/grafeas/v1beta1/Note$TypeCase.class +io/grafeas/v1beta1/attestation/PgpSignedAttestation$1.class +com/google/containeranalysis/v1beta1/GetScanConfigRequest$Builder.class +io/grafeas/v1beta1/build/ScanConfigName.class +io/grafeas/v1beta1/source/GerritSourceContext$Builder.class +io/grafeas/v1beta1/pkg/Version$VersionKind.class +io/grafeas/v1beta1/vulnerability/NoteName$1.class +io/grafeas/v1beta1/provenance/Hash$Builder.class +io/grafeas/v1beta1/discovery/Discovered.class +io/grafeas/v1beta1/discovery/IamResourceNames.class +io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.class +com/google/containeranalysis/v1beta1/IamResourceName.class +io/grafeas/v1beta1/vulnerability/Vulnerability$Builder.class +io/grafeas/v1beta1/provenance/Provenance$1.class +io/grafeas/v1beta1/attestation/AuthorityOrBuilder.class +io/grafeas/v1beta1/attestation/Authority$1.class +io/grafeas/v1beta1/source/RepoId$2.class +io/grafeas/v1beta1/pkg/Distribution$Builder.class +io/grafeas/v1beta1/Note.class +io/grafeas/v1beta1/image/Derived$1.class +io/grafeas/v1beta1/pkg/OccurrenceName$Builder.class +io/grafeas/v1beta1/BatchCreateNotesRequest$NotesDefaultEntryHolder.class +io/grafeas/v1beta1/BatchCreateOccurrencesRequest$Builder.class +io/grafeas/v1beta1/source/GerritSourceContext$1.class +io/grafeas/v1beta1/pkg/Installation.class +io/grafeas/v1beta1/Note$1.class +io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.class +io/grafeas/v1beta1/image/Layer.class +io/grafeas/v1beta1/deployment/ProjectName.class +io/grafeas/v1beta1/CreateNoteRequest.class +io/grafeas/v1beta1/ListOccurrencesRequest$1.class +io/grafeas/v1beta1/build/Details.class +io/grafeas/v1beta1/source/OccurrenceName.class +io/grafeas/v1beta1/pkg/ProjectName$1.class +io/grafeas/v1beta1/image/DetailsOrBuilder.class +io/grafeas/v1beta1/ListNotesResponseOrBuilder.class +io/grafeas/v1beta1/source/SourceContext$ContextCase.class +io/grafeas/v1beta1/image/ProjectName$Builder.class +io/grafeas/v1beta1/provenance/Command.class +io/grafeas/v1beta1/build/IamResourceName.class +io/grafeas/v1beta1/vulnerability/NoteName$Builder.class +io/grafeas/v1beta1/build/DetailsOrBuilder.class +io/grafeas/v1beta1/discovery/OccurrenceName$1.class +io/grafeas/v1beta1/vulnerability/OccurrenceName.class +io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigest$1.class +io/grafeas/v1beta1/attestation/Attestation.class +io/grafeas/v1beta1/image/OccurrenceName$Builder.class +io/grafeas/v1beta1/ListNotesRequest.class +io/grafeas/v1beta1/vulnerability/PackageIssue$Builder.class +io/grafeas/v1beta1/deployment/OccurrenceName.class +io/grafeas/v1beta1/ListNotesRequest$Builder.class +io/grafeas/v1beta1/image/BasisOrBuilder.class +io/grafeas/v1beta1/source/Source$1.class +io/grafeas/v1beta1/pkg/NoteName$1.class +io/grafeas/v1beta1/pkg/NoteName.class +io/grafeas/v1beta1/discovery/Discovered$ContinuousAnalysis.class +io/grafeas/v1beta1/pkg/InstallationOrBuilder.class +com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.class +io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.class +io/grafeas/v1beta1/deployment/Deployment$Platform$1.class +io/grafeas/v1beta1/provenance/BuildProvenance$BuildOptionsDefaultEntryHolder.class +com/google/containeranalysis/v1beta1/ListScanConfigsRequest$Builder.class +io/grafeas/v1beta1/BatchCreateNotesResponse.class +io/grafeas/v1beta1/BatchCreateOccurrencesRequest$1.class +io/grafeas/v1beta1/build/BuildSignatureOrBuilder.class +io/grafeas/v1beta1/source/GerritSourceContext$RevisionCase.class +io/grafeas/v1beta1/vulnerability/NoteName.class +io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.class +io/grafeas/v1beta1/attestation/Authority$Hint$1.class +io/grafeas/v1beta1/common/ProjectName$Builder.class +io/grafeas/v1beta1/common/IamResourceName.class +com/google/containeranalysis/v1beta1/GetScanConfigRequest$1.class +com/google/containeranalysis/v1beta1/ProjectName$1.class +io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.class +io/grafeas/v1beta1/image/Basis$Builder.class +io/grafeas/v1beta1/discovery/NoteName.class +io/grafeas/v1beta1/attestation/ScanConfigName.class +io/grafeas/v1beta1/pkg/Installation$1.class +io/grafeas/v1beta1/discovery/OccurrenceName.class +io/grafeas/v1beta1/provenance/Hash.class +io/grafeas/v1beta1/UpdateNoteRequest$1.class +io/grafeas/v1beta1/pkg/PackageOuterClass$1.class +io/grafeas/v1beta1/NoteOrBuilder.class +io/grafeas/v1beta1/deployment/DeploymentOuterClass$1.class +io/grafeas/v1beta1/build/ProjectName.class +io/grafeas/v1beta1/common/UntypedIamResourceName.class +io/grafeas/v1beta1/provenance/ProjectName.class +io/grafeas/v1beta1/build/BuildSignature$Builder.class +io/grafeas/v1beta1/CreateNoteRequest$1.class +io/grafeas/v1beta1/image/Derived$Builder.class +io/grafeas/v1beta1/build/OccurrenceName.class +io/grafeas/v1beta1/Occurrence$Builder.class +io/grafeas/v1beta1/source/SourceContext.class +io/grafeas/v1beta1/deployment/Details.class +io/grafeas/v1beta1/attestation/Authority$HintOrBuilder.class +io/grafeas/v1beta1/ListNoteOccurrencesRequest.class +io/grafeas/v1beta1/source/GerritSourceContext.class +io/grafeas/v1beta1/BatchCreateOccurrencesRequest.class +io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$Builder.class +com/google/containeranalysis/v1beta1/NoteName$Builder.class +io/grafeas/v1beta1/ListNotesResponse.class +io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.class +io/grafeas/v1beta1/pkg/Distribution$1.class +io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.class +io/grafeas/v1beta1/Occurrence$2.class +io/grafeas/v1beta1/provenance/NoteName.class +io/grafeas/v1beta1/image/NoteName.class +io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.class +io/grafeas/v1beta1/NoteName.class +io/grafeas/v1beta1/build/BuildOuterClass.class +com/google/containeranalysis/v1beta1/IamResourceNames.class +io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.class +io/grafeas/v1beta1/source/OccurrenceName$Builder.class +io/grafeas/v1beta1/build/BuildSignature.class +io/grafeas/v1beta1/vulnerability/Details$Builder.class +io/grafeas/v1beta1/deployment/OccurrenceName$1.class +io/grafeas/v1beta1/provenance/BuildProvenance$1.class +io/grafeas/v1beta1/GetOccurrenceRequest$Builder.class +io/grafeas/v1beta1/provenance/ScanConfigName.class +io/grafeas/v1beta1/vulnerability/PackageIssue$1.class +com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.class +io/grafeas/v1beta1/source/IamResourceNames.class +com/google/containeranalysis/v1beta1/ScanConfigName.class +io/grafeas/v1beta1/UpdateNoteRequest$Builder.class +io/grafeas/v1beta1/vulnerability/Severity.class +com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.class +io/grafeas/v1beta1/CreateOccurrenceRequest$1.class +io/grafeas/v1beta1/discovery/Discovery$1.class +io/grafeas/v1beta1/pkg/Package$Builder.class +io/grafeas/v1beta1/DeleteNoteRequest.class +io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.class +io/grafeas/v1beta1/image/Layer$Directive$1.class +io/grafeas/v1beta1/ListNotesRequestOrBuilder.class +io/grafeas/v1beta1/provenance/OccurrenceName$1.class +io/grafeas/v1beta1/vulnerability/ProjectName$1.class +io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.class +io/grafeas/v1beta1/deployment/DetailsOrBuilder.class +io/grafeas/v1beta1/GetOccurrenceNoteRequest$Builder.class +io/grafeas/v1beta1/image/OccurrenceName$1.class +io/grafeas/v1beta1/source/AliasContextOrBuilder.class +io/grafeas/v1beta1/image/NoteName$Builder.class +io/grafeas/v1beta1/attestation/Attestation$1.class +io/grafeas/v1beta1/discovery/Discovered$ContinuousAnalysis$1.class +io/grafeas/v1beta1/provenance/ScanConfigName$1.class +io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.class +io/grafeas/v1beta1/source/UntypedIamResourceName.class +io/grafeas/v1beta1/BatchCreateOccurrencesResponse$Builder.class +com/google/containeranalysis/v1beta1/ScanConfig$Builder.class +io/grafeas/v1beta1/image/ProjectName.class +io/grafeas/v1beta1/common/ScanConfigName$1.class +io/grafeas/v1beta1/discovery/ScanConfigName$Builder.class +io/grafeas/v1beta1/image/ProjectName$1.class +io/grafeas/v1beta1/provenance/ScanConfigName$Builder.class +io/grafeas/v1beta1/provenance/SourceOrBuilder.class +io/grafeas/v1beta1/ListOccurrencesResponse.class +io/grafeas/v1beta1/attestation/ScanConfigName$1.class +io/grafeas/v1beta1/vulnerability/PackageIssue.class +io/grafeas/v1beta1/deployment/Deployment.class +io/grafeas/v1beta1/build/NoteName.class +io/grafeas/v1beta1/discovery/NoteName$Builder.class +io/grafeas/v1beta1/image/Fingerprint.class +io/grafeas/v1beta1/pkg/DetailsOrBuilder.class +io/grafeas/v1beta1/deployment/Deployment$Platform.class +io/grafeas/v1beta1/discovery/Discovered$AnalysisStatus.class +io/grafeas/v1beta1/BatchCreateOccurrencesResponse.class +io/grafeas/v1beta1/OccurrenceName$Builder.class +io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.class +com/google/containeranalysis/v1beta1/ListScanConfigsResponse.class +io/grafeas/v1beta1/pkg/Installation$Builder.class +io/grafeas/v1beta1/vulnerability/Details$1.class +io/grafeas/v1beta1/DeleteNoteRequest$1.class +io/grafeas/v1beta1/OccurrenceOrBuilder.class +io/grafeas/v1beta1/attestation/Attestation$Builder.class +io/grafeas/v1beta1/BatchCreateNotesRequest.class +com/google/containeranalysis/v1beta1/ScanConfigName$Builder.class +io/grafeas/v1beta1/attestation/NoteName.class +io/grafeas/v1beta1/pkg/ScanConfigName$1.class +io/grafeas/v1beta1/provenance/Hash$HashType$1.class +io/grafeas/v1beta1/CreateOccurrenceRequest$Builder.class +io/grafeas/v1beta1/pkg/DistributionOrBuilder.class +io/grafeas/v1beta1/source/NoteName$Builder.class +io/grafeas/v1beta1/build/NoteName$1.class +io/grafeas/v1beta1/build/BuildSignature$KeyType.class +io/grafeas/v1beta1/provenance/ArtifactOrBuilder.class +io/grafeas/v1beta1/attestation/Attestation$2.class +io/grafeas/v1beta1/image/Layer$1.class +io/grafeas/v1beta1/Note$Builder.class +io/grafeas/v1beta1/provenance/FileHashes$1.class +io/grafeas/v1beta1/Occurrence$1.class +io/grafeas/v1beta1/build/Build.class +io/grafeas/v1beta1/common/OccurrenceName$1.class +io/grafeas/v1beta1/build/ScanConfigName$Builder.class +io/grafeas/v1beta1/source/AliasContext$Kind$1.class +io/grafeas/v1beta1/provenance/Source.class +io/grafeas/v1beta1/Resource$Builder.class +io/grafeas/v1beta1/BatchCreateNotesResponse$1.class +io/grafeas/v1beta1/deployment/ProjectName$1.class +io/grafeas/v1beta1/discovery/ProjectName$1.class +io/grafeas/v1beta1/ListNotesResponse$Builder.class +com/google/containeranalysis/v1beta1/ListScanConfigsRequest$1.class +io/grafeas/v1beta1/UntypedIamResourceName.class +io/grafeas/v1beta1/VulnerabilityOccurrencesSummary$FixableTotalByDigestOrBuilder.class +io/grafeas/v1beta1/deployment/ProjectName$Builder.class +io/grafeas/v1beta1/vulnerability/ScanConfigName$Builder.class +com/google/containeranalysis/v1beta1/ScanConfig$1.class +io/grafeas/v1beta1/pkg/ProjectName.class +io/grafeas/v1beta1/source/Source.class +io/grafeas/v1beta1/source/ProjectName$1.class +io/grafeas/v1beta1/vulnerability/Vulnerability$Detail$1.class +io/grafeas/v1beta1/pkg/PackageOuterClass.class +io/grafeas/v1beta1/attestation/Authority$Builder.class +io/grafeas/v1beta1/vulnerability/Vulnerability.class +io/grafeas/v1beta1/source/SourceContext$Builder.class +io/grafeas/v1beta1/discovery/Discovered$1.class +io/grafeas/v1beta1/CreateOccurrenceRequest.class +io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.class +com/google/containeranalysis/v1beta1/NoteName.class +io/grafeas/v1beta1/image/ScanConfigName$Builder.class +io/grafeas/v1beta1/discovery/ProjectName$Builder.class +io/grafeas/v1beta1/source/NoteName$1.class +com/google/containeranalysis/v1beta1/UpdateScanConfigRequest$1.class diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/proto-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..82d270bb --- /dev/null +++ b/proto-google-cloud-containeranalysis-v1beta1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,241 @@ +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContextOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignature.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponse.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOuterClass.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Details.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Version.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoIdOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponse.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContextOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateNoteRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoIdOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/RepoId.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocationOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UpdateScanConfigRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Hash.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Severity.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Attestation.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenance.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponseOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOuterClass.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeploymentOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContextOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DetailsOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponseOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GitSourceContext.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectRepoId.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestationOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DetailsOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsResponseOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssueOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponseOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityLocation.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOuterClass.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/FingerprintOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfig.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Command.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/InstallationOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContextOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashes.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/NoteOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Architecture.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Authority.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/OccurrenceOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UpdateOccurrenceRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Note.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesResponseOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Provenance.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/BasisOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/PgpSignedAttestation.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployable.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Fingerprint.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/BuildProvenanceOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Details.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteOccurrenceRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveryOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Vulnerability.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponseOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/LocationOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteKind.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Grafeas.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/GerritSourceContext.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/PackageOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Image.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildSignatureOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContext.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/CloudRepoSourceContextOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummary.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesResponse.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Details.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Occurrence.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovered.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/VulnerabilityOccurrencesSummaryOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DetailsOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/Source.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/SourceContext.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateOccurrenceRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/Details.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DeployableOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Details.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Build.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/ArtifactOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNotesRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/BuildOuterClass.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesResponse.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/Common.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/DetailsOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/Discovery.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrlOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/Deployment.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/FileHashesOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Installation.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AuthorityOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetNoteRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListNoteOccurrencesResponse.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateOccurrencesResponse.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/LayerOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetVulnerabilityOccurrencesSummaryRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/CommandOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Source.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/Artifact.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/DetailsOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/DerivedOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/VulnerabilityOuterClass.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Basis.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/RelatedUrl.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Layer.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Distribution.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/DiscoveredOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/PackageIssue.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/CreateNoteRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/GetScanConfigRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/DetailsOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Package.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/SourceOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/Derived.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/Location.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/provenance/HashOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/Details.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/vulnerability/DetailsOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/BatchCreateNotesRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ListScanConfigsRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/common/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/VersionOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ScanConfigName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/AttestationOuterClass.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/source/AliasContext.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/Containeranalysis.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/DistributionOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/deployment/IamResourceNames.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/UntypedIamResourceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/build/Details.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/DeleteNoteRequest.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/GetOccurrenceNoteRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/discovery/OccurrenceName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ListOccurrencesRequestOrBuilder.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/pkg/NoteName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ProjectName.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/Resource.java +/Users/codyoss/oss/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/ResourceOrBuilder.java diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/proto-google-cloud-containeranalysis-v1beta1-0.82.0-tests.jar b/proto-google-cloud-containeranalysis-v1beta1/target/proto-google-cloud-containeranalysis-v1beta1-0.82.0-tests.jar new file mode 100644 index 00000000..aa382d3f Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/proto-google-cloud-containeranalysis-v1beta1-0.82.0-tests.jar differ diff --git a/proto-google-cloud-containeranalysis-v1beta1/target/proto-google-cloud-containeranalysis-v1beta1-0.82.0.jar b/proto-google-cloud-containeranalysis-v1beta1/target/proto-google-cloud-containeranalysis-v1beta1-0.82.0.jar new file mode 100644 index 00000000..e36f63f3 Binary files /dev/null and b/proto-google-cloud-containeranalysis-v1beta1/target/proto-google-cloud-containeranalysis-v1beta1-0.82.0.jar differ diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..99810470 --- /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-containeranalysis/synth.metadata b/synth.metadata similarity index 100% rename from google-cloud-containeranalysis/synth.metadata rename to synth.metadata diff --git a/google-cloud-containeranalysis/synth.py b/synth.py similarity index 54% rename from google-cloud-containeranalysis/synth.py rename to synth.py index 21ece409..755b7011 100644 --- a/google-cloud-containeranalysis/synth.py +++ b/synth.py @@ -44,24 +44,37 @@ artman_output_name='') if version == 'v1': - # add GrafeasClient import - s.replace( - library / f'gapic-google-cloud-{service}-{version}/src/**/ContainerAnalysisClient.java', - 'import com.google.iam.v1.TestIamPermissionsResponse;', - 'import com.google.iam.v1.TestIamPermissionsResponse;\nimport io.grafeas.v1.GrafeasClient;' - ) + # add GrafeasClient import + s.replace( + library / f'gapic-google-cloud-{service}-{version}/src/**/ContainerAnalysisClient.java', + 'import com.google.iam.v1.TestIamPermissionsResponse;', + 'import com.google.iam.v1.TestIamPermissionsResponse;\nimport io.grafeas.v1.GrafeasClient;' + ) - # add getGrafeasClient() - s.replace( - library / f'gapic-google-cloud-{service}-{version}/src/**/ContainerAnalysisClient.java', - r'(\s+private final ContainerAnalysisStub stub;.*)', - f'\g<1>{get_grafeas_code}' - ) + # add getGrafeasClient() + s.replace( + library / f'gapic-google-cloud-{service}-{version}/src/**/ContainerAnalysisClient.java', + r'(\s+private final ContainerAnalysisStub stub;.*)', + f'\g<1>{get_grafeas_code}' + ) - s.copy(library / f'gapic-google-cloud-{service}-{version}/src', 'src') - s.copy(library / f'grpc-google-cloud-{service}-{version}/src', f'../../google-api-grpc/grpc-google-cloud-{service}-{version}/src') - s.copy(library / f'proto-google-cloud-{service}-{version}/src', f'../../google-api-grpc/proto-google-cloud-{service}-{version}/src') + package_name = f'com.google.{service}.{version}' + java.fix_proto_headers(library / f'proto-google-cloud-{service}-{version}') + java.fix_grpc_headers(library / f'grpc-google-cloud-{service}-{version}', package_name) + java.fix_grpc_headers(library / f'grpc-google-cloud-{service}-{version}', f'io.grafeas.{version}') + + + s.copy(library / f'gapic-google-cloud-{service}-{version}/src', f'google-cloud-{service}/src') + s.copy(library / f'grpc-google-cloud-{service}-{version}/src', f'grpc-google-cloud-{service}-{version}/src') + s.copy(library / f'proto-google-cloud-{service}-{version}/src', f'proto-google-cloud-{service}-{version}/src') + + java.format_code(f'google-cloud-{service}/src') + java.format_code(f'grpc-google-cloud-{service}-{version}/src') + java.format_code(f'proto-google-cloud-{service}-{version}/src') + +common_templates = gcp.CommonTemplates() +templates = common_templates.java_library() +s.copy(templates, excludes=[ + 'README.md', +]) - java.format_code('./src') - java.format_code(f'../../google-api-grpc/grpc-google-cloud-{service}-{version}/src') - java.format_code(f'../../google-api-grpc/proto-google-cloud-{service}-{version}/src') diff --git a/target/checkstyle-cachefile b/target/checkstyle-cachefile new file mode 100644 index 00000000..68e3af3c --- /dev/null +++ b/target/checkstyle-cachefile @@ -0,0 +1,3 @@ +#Fri Nov 01 15:41:18 MDT 2019 +configuration*?=7F4E680801C0A503D8B340CAA69932EC7D526BC7 +module-resource*?\:file\:/Users/codyoss/oss/java-containeranalysis/target/checkstyle-header.txt=25F6DC6B0E0E8C43BA44E8B5F4839CB7BE8256A7 diff --git a/target/checkstyle-checker.xml b/target/checkstyle-checker.xml new file mode 100644 index 00000000..6597fced --- /dev/null +++ b/target/checkstyle-checker.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/target/checkstyle-header.txt b/target/checkstyle-header.txt new file mode 100644 index 00000000..3a9b503a --- /dev/null +++ b/target/checkstyle-header.txt @@ -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/target/checkstyle-result.xml b/target/checkstyle-result.xml new file mode 100644 index 00000000..3c8690bc --- /dev/null +++ b/target/checkstyle-result.xml @@ -0,0 +1,3 @@ + + + diff --git a/target/google-cloud-containeranalysis-parent-0.117.0-beta-tests.jar b/target/google-cloud-containeranalysis-parent-0.117.0-beta-tests.jar new file mode 100644 index 00000000..5ea9b4b6 Binary files /dev/null and b/target/google-cloud-containeranalysis-parent-0.117.0-beta-tests.jar differ diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 00000000..0ecfbf7f --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +groupId=com.google.cloud +artifactId=google-cloud-containeranalysis-parent +version=0.117.0-beta diff --git a/versions.txt b/versions.txt new file mode 100644 index 00000000..bac277d6 --- /dev/null +++ b/versions.txt @@ -0,0 +1,9 @@ +# Format: +# module:released-version:current-version + +proto-google-cloud-containeranalysis-v1:0.82.0:0.82.0 +proto-google-cloud-containeranalysis-v1beta1:0.82.0:0.82.0 +grpc-google-cloud-containeranalysis-v1beta1:0.82.0:0.82.0 +grpc-google-cloud-containeranalysis-v1:0.82.0:0.82.0 +google-cloud-containeranalysis:0.117.0-beta:0.117.0-beta +grafeas:0.20.0:0.20.0 \ No newline at end of file