diff --git a/.github/release-note-generation/split_release_note.py b/.github/release-note-generation/split_release_note.py index 3870af2130cb..2251f8a47219 100644 --- a/.github/release-note-generation/split_release_note.py +++ b/.github/release-note-generation/split_release_note.py @@ -63,29 +63,16 @@ def detect_modules(root_directory: Path): module_path = repo_metadata_path.parent module_pom_xml = module_path / 'pom.xml' - owlbot_yaml_path = module_path/ '.OwlBot-hermetic.yaml' if not module_pom_xml.exists(): continue tree = ET.parse(module_pom_xml) root = tree.getroot() version = root.find('mvn:version', POM_NAMESPACES).text api_name = None - if owlbot_yaml_path.exists(): - # If OwlBot configuration file exists (most cases), it's the better - # source to get the OwlBot-generated pull request title prefix than - # the repo-metadata.json - with open(owlbot_yaml_path, 'r') as file: - owlbot_yaml_content = file.read() - match = re.search(r'api-name: (.+)', owlbot_yaml_content) - if match: - api_name = match.group(1) - - if not api_name: - # Fallback to repo-metadata.json (e.g. for vertexai or Spanner transitional state) - if repo_metadata_path.exists(): - with open(repo_metadata_path, 'r') as file: - repo_metadata = json.load(file) - api_name = repo_metadata.get('api_shortname') + if repo_metadata_path.exists(): + with open(repo_metadata_path, 'r') as file: + repo_metadata = json.load(file) + api_name = repo_metadata.get('api_shortname') if api_name: modules.append(LibraryModule(module_path, api_name, @@ -94,7 +81,6 @@ def detect_modules(root_directory: Path): else: raise Exception(f'Could not determine api-name for {repo_metadata_path}') - return modules diff --git a/java-accessapproval/.OwlBot-hermetic.yaml b/java-accessapproval/.OwlBot-hermetic.yaml deleted file mode 100644 index 4736283994aa..000000000000 --- a/java-accessapproval/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-accessapproval/grpc-google-.*/src" -- "/java-accessapproval/proto-google-.*/src" -- "/java-accessapproval/google-.*/src" -- "/java-accessapproval/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/it" - -deep-copy-regex: -- source: "/google/cloud/accessapproval/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-accessapproval/$1/proto-google-cloud-accessapproval-$1/src" -- source: "/google/cloud/accessapproval/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-accessapproval/$1/grpc-google-cloud-accessapproval-$1/src" -- source: "/google/cloud/accessapproval/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-accessapproval/$1/google-cloud-accessapproval/src" -- source: "/google/cloud/accessapproval/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-accessapproval/$1/samples/snippets/generated" - -api-name: accessapproval diff --git a/java-accesscontextmanager/.OwlBot-hermetic.yaml b/java-accesscontextmanager/.OwlBot-hermetic.yaml deleted file mode 100644 index d06ba37a7aec..000000000000 --- a/java-accesscontextmanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-accesscontextmanager/proto-google-.*/src" -- "/java-accesscontextmanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/identity/accesscontextmanager/(v\\d)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-accesscontextmanager/$1/proto-google-identity-accesscontextmanager-$1/src" -- source: "/google/identity/accesscontextmanager/(v\\d)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-accesscontextmanager/$1/grpc-google-identity-accesscontextmanager-$1/src" -- source: "/google/identity/accesscontextmanager/(v\\d)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-accesscontextmanager/$1/google-identity-accesscontextmanager/src" -- source: "/google/identity/accesscontextmanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-accesscontextmanager/$1/samples/snippets/generated" -- source: "/google/identity/accesscontextmanager/type/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-accesscontextmanager/type/proto-google-identity-accesscontextmanager-type/src" - -api-name: accesscontextmanager diff --git a/java-admanager/.OwlBot-hermetic.yaml b/java-admanager/.OwlBot-hermetic.yaml deleted file mode 100644 index ceb5433db71d..000000000000 --- a/java-admanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-admanager/grpc-ad-manager-.*/src" -- "/java-admanager/proto-ad-manager-.*/src" -- "/java-admanager/ad-manager.*/src" -- "/java-admanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*ad-manager.*/src/main/java/.*/stub/Version.java" -- "/.*ad-manager.*/src/test/java/com/google/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/ads/admanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-admanager/$1/proto-ad-manager-$1/src" -- source: "/google/ads/admanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-admanager/$1/grpc-ad-manager-$1/src" -- source: "/google/ads/admanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-admanager/$1/ad-manager/src" -- source: "/google/ads/admanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-admanager/$1/samples/snippets/generated" - -api-name: admanager \ No newline at end of file diff --git a/java-advisorynotifications/.OwlBot-hermetic.yaml b/java-advisorynotifications/.OwlBot-hermetic.yaml deleted file mode 100644 index 5feb99e20c19..000000000000 --- a/java-advisorynotifications/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-advisorynotifications/grpc-google-.*/src" -- "/java-advisorynotifications/proto-google-.*/src" -- "/java-advisorynotifications/google-.*/src" -- "/java-advisorynotifications/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/advisorynotifications/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-advisorynotifications/$1/proto-google-cloud-advisorynotifications-$1/src" -- source: "/google/cloud/advisorynotifications/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-advisorynotifications/$1/grpc-google-cloud-advisorynotifications-$1/src" -- source: "/google/cloud/advisorynotifications/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-advisorynotifications/$1/google-cloud-advisorynotifications/src" -- source: "/google/cloud/advisorynotifications/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-advisorynotifications/$1/samples/snippets/generated" - - -api-name: advisorynotifications \ No newline at end of file diff --git a/java-aiplatform/.OwlBot-hermetic.yaml b/java-aiplatform/.OwlBot-hermetic.yaml deleted file mode 100644 index 27f0b13f5309..000000000000 --- a/java-aiplatform/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-aiplatform/grpc-google-.*/src" -- "/java-aiplatform/proto-google-.*/src" -- "/java-aiplatform/google-.*/src/main/java/com/google/cloud/aiplatform/v1" -- "/java-aiplatform/samples/snippets/generated" -- "/java-aiplatform/google-.*/src/main/java/com/google/cloud/aiplatform/v1beta1" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/aiplatform/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-aiplatform/$1/proto-google-cloud-aiplatform-$1/src" -- source: "/google/cloud/aiplatform/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-aiplatform/$1/grpc-google-cloud-aiplatform-$1/src" -- source: "/google/cloud/aiplatform/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-aiplatform/$1/google-cloud-aiplatform/src" -- source: "/google/cloud/aiplatform/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-aiplatform/$1/samples/snippets/generated" - -api-name: aiplatform diff --git a/java-alloydb-connectors/.OwlBot-hermetic.yaml b/java-alloydb-connectors/.OwlBot-hermetic.yaml deleted file mode 100644 index 93a134a913f0..000000000000 --- a/java-alloydb-connectors/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-alloydb-connectors/grpc-google-.*/src" -- "/java-alloydb-connectors/proto-google-.*/src" -- "/java-alloydb-connectors/google-.*/src" -- "/java-alloydb-connectors/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/alloydb/connectors/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-alloydb-connectors/$1/proto-google-cloud-alloydb-connectors-$1/src" -- source: "/google/cloud/alloydb/connectors/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-alloydb-connectors/$1/grpc-google-cloud-alloydb-connectors-$1/src" -- source: "/google/cloud/alloydb/connectors/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-alloydb-connectors/$1/google-cloud-alloydb-connectors/src" -- source: "/google/cloud/alloydb/connectors/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-alloydb-connectors/$1/samples/snippets/generated" - - -api-name: alloydb \ No newline at end of file diff --git a/java-alloydb/.OwlBot-hermetic.yaml b/java-alloydb/.OwlBot-hermetic.yaml deleted file mode 100644 index 6f0899e44b64..000000000000 --- a/java-alloydb/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-alloydb/grpc-google-.*/src" -- "/java-alloydb/proto-google-.*/src" -- "/java-alloydb/google-.*/src" -- "/java-alloydb/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/alloydb/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-alloydb/$1/proto-google-cloud-alloydb-$1/src" -- source: "/google/cloud/alloydb/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-alloydb/$1/grpc-google-cloud-alloydb-$1/src" -- source: "/google/cloud/alloydb/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-alloydb/$1/google-cloud-alloydb/src" -- source: "/google/cloud/alloydb/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-alloydb/$1/samples/snippets/generated" - - -api-name: alloydb \ No newline at end of file diff --git a/java-analytics-admin/.OwlBot-hermetic.yaml b/java-analytics-admin/.OwlBot-hermetic.yaml deleted file mode 100644 index 5f3586f3a66c..000000000000 --- a/java-analytics-admin/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-analytics-admin/grpc-google-.*/src" -- "/java-analytics-admin/proto-google-.*/src" -- "/java-analytics-admin/google-.*/src" -- "/java-analytics-admin/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/analytics/admin/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-analytics-admin/$1/proto-google-analytics-admin-$1/src" -- source: "/google/analytics/admin/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-analytics-admin/$1/grpc-google-analytics-admin-$1/src" -- source: "/google/analytics/admin/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-analytics-admin/$1/google-analytics-admin/src" -- source: "/google/analytics/admin/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-analytics-admin/$1/samples/snippets/generated" - -api-name: analyticsadmin diff --git a/java-analytics-data/.OwlBot-hermetic.yaml b/java-analytics-data/.OwlBot-hermetic.yaml deleted file mode 100644 index 01c77325e63d..000000000000 --- a/java-analytics-data/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-analytics-data/grpc-google-.*/src" -- "/java-analytics-data/proto-google-.*/src" -- "/java-analytics-data/google-.*/src" -- "/java-analytics-data/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/analytics/data/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-analytics-data/$1/proto-google-analytics-data-$1/src" -- source: "/google/analytics/data/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-analytics-data/$1/grpc-google-analytics-data-$1/src" -- source: "/google/analytics/data/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-analytics-data/$1/google-analytics-data/src" -- source: "/google/analytics/data/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-analytics-data/$1/samples/snippets/generated" - -api-name: analyticsdata diff --git a/java-analyticshub/.OwlBot-hermetic.yaml b/java-analyticshub/.OwlBot-hermetic.yaml deleted file mode 100644 index 52b3e48efc60..000000000000 --- a/java-analyticshub/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ - -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-remove-regex: -- "/java-analyticshub/grpc-google-.*/src" -- "/java-analyticshub/proto-google-.*/src" -- "/java-analyticshub/google-.*/src" -- "/java-analyticshub/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/bigquery/analyticshub/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-analyticshub/$1/proto-google-cloud-analyticshub-$1/src" -- source: "/google/cloud/bigquery/analyticshub/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-analyticshub/$1/grpc-google-cloud-analyticshub-$1/src" -- source: "/google/cloud/bigquery/analyticshub/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-analyticshub/$1/google-cloud-analyticshub/src" -- source: "/google/cloud/bigquery/analyticshub/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-analyticshub/$1/samples/snippets/generated" - -api-name: analyticshub diff --git a/java-api-gateway/.OwlBot-hermetic.yaml b/java-api-gateway/.OwlBot-hermetic.yaml deleted file mode 100644 index 410f47678877..000000000000 --- a/java-api-gateway/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-api-gateway/samples/snippets/generated" -- "/java-api-gateway/grpc-google-.*/src" -- "/java-api-gateway/proto-google-.*/src" -- "/java-api-gateway/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/apigateway/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-api-gateway/$1/proto-google-cloud-api-gateway-$1/src" -- source: "/google/cloud/apigateway/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-api-gateway/$1/grpc-google-cloud-api-gateway-$1/src" -- source: "/google/cloud/apigateway/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-api-gateway/$1/google-cloud-api-gateway/src" -- source: "/google/cloud/apigateway/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-api-gateway/$1/samples/snippets/generated" - -api-name: apigateway diff --git a/java-apigee-connect/.OwlBot-hermetic.yaml b/java-apigee-connect/.OwlBot-hermetic.yaml deleted file mode 100644 index c5d378822b26..000000000000 --- a/java-apigee-connect/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-apigee-connect/samples/snippets/generated" -- "/java-apigee-connect/grpc-google-.*/src" -- "/java-apigee-connect/proto-google-.*/src" -- "/java-apigee-connect/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/apigeeconnect/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-apigee-connect/$1/proto-google-cloud-apigee-connect-$1/src" -- source: "/google/cloud/apigeeconnect/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-apigee-connect/$1/grpc-google-cloud-apigee-connect-$1/src" -- source: "/google/cloud/apigeeconnect/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-apigee-connect/$1/google-cloud-apigee-connect/src" -- source: "/google/cloud/apigeeconnect/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-apigee-connect/$1/samples/snippets/generated" - -api-name: apigeeconnect diff --git a/java-apigee-registry/.OwlBot-hermetic.yaml b/java-apigee-registry/.OwlBot-hermetic.yaml deleted file mode 100644 index 1444f0ccaf15..000000000000 --- a/java-apigee-registry/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-apigee-registry/grpc-google-.*/src" -- "/java-apigee-registry/proto-google-.*/src" -- "/java-apigee-registry/google-.*/src" -- "/java-apigee-registry/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/apigeeregistry/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-apigee-registry/$1/proto-google-cloud-apigee-registry-$1/src" -- source: "/google/cloud/apigeeregistry/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-apigee-registry/$1/grpc-google-cloud-apigee-registry-$1/src" -- source: "/google/cloud/apigeeregistry/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-apigee-registry/$1/google-cloud-apigee-registry/src" -- source: "/google/cloud/apigeeregistry/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-apigee-registry/$1/samples/snippets/generated" -api-name: apigee-registry diff --git a/java-apihub/.OwlBot-hermetic.yaml b/java-apihub/.OwlBot-hermetic.yaml deleted file mode 100644 index 86d34b927e2f..000000000000 --- a/java-apihub/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-apihub/grpc-google-.*/src" -- "/java-apihub/proto-google-.*/src" -- "/java-apihub/google-.*/src" -- "/java-apihub/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/apihub/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-apihub/$1/proto-google-cloud-apihub-$1/src" -- source: "/google/cloud/apihub/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-apihub/$1/grpc-google-cloud-apihub-$1/src" -- source: "/google/cloud/apihub/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-apihub/$1/google-cloud-apihub/src" -- source: "/google/cloud/apihub/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-apihub/$1/samples/snippets/generated" - -api-name: apihub \ No newline at end of file diff --git a/java-apikeys/.OwlBot-hermetic.yaml b/java-apikeys/.OwlBot-hermetic.yaml deleted file mode 100644 index a20286624096..000000000000 --- a/java-apikeys/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-apikeys/grpc-google-.*/src" -- "/java-apikeys/proto-google-.*/src" -- "/java-apikeys/google-.*/src" -- "/java-apikeys/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/api/apikeys/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-apikeys/$1/proto-google-cloud-apikeys-$1/src" -- source: "/google/api/apikeys/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-apikeys/$1/grpc-google-cloud-apikeys-$1/src" -- source: "/google/api/apikeys/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-apikeys/$1/google-cloud-apikeys/src" -- source: "/google/api/apikeys/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-apikeys/$1/samples/snippets/generated" - -api-name: apikeys diff --git a/java-appengine-admin/.OwlBot-hermetic.yaml b/java-appengine-admin/.OwlBot-hermetic.yaml deleted file mode 100644 index 7bf30a296880..000000000000 --- a/java-appengine-admin/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-appengine-admin/grpc-google-.*/src" -- "/java-appengine-admin/proto-google-.*/src" -- "/java-appengine-admin/google-.*/src" -- "/java-appengine-admin/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/appengine/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-appengine-admin/$1/proto-google-cloud-appengine-admin-$1/src" -- source: "/google/appengine/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-appengine-admin/$1/grpc-google-cloud-appengine-admin-$1/src" -- source: "/google/appengine/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-appengine-admin/$1/google-cloud-appengine-admin/src" -- source: "/google/appengine/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-appengine-admin/$1/samples/snippets/generated" - -api-name: appengine diff --git a/java-apphub/.OwlBot-hermetic.yaml b/java-apphub/.OwlBot-hermetic.yaml deleted file mode 100644 index 4ec45152b5f3..000000000000 --- a/java-apphub/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-apphub/grpc-google-.*/src" -- "/java-apphub/proto-google-.*/src" -- "/java-apphub/google-.*/src" -- "/java-apphub/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/apphub/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-apphub/$1/proto-google-cloud-apphub-$1/src" -- source: "/google/cloud/apphub/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-apphub/$1/grpc-google-cloud-apphub-$1/src" -- source: "/google/cloud/apphub/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-apphub/$1/google-cloud-apphub/src" -- source: "/google/cloud/apphub/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-apphub/$1/samples/snippets/generated" - - -api-name: apphub \ No newline at end of file diff --git a/java-appoptimize/.OwlBot-hermetic.yaml b/java-appoptimize/.OwlBot-hermetic.yaml deleted file mode 100644 index 8c33a053fe62..000000000000 --- a/java-appoptimize/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-appoptimize/grpc-google-.*/src" -- "/java-appoptimize/proto-google-.*/src" -- "/java-appoptimize/google-.*/src" -- "/java-appoptimize/samples/snippets/generated" - -deep-preserve-regex: -- "/java-appoptimize/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/appoptimize/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-appoptimize/$1/proto-google-cloud-appoptimize-$1/src" -- source: "/google/cloud/appoptimize/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-appoptimize/$1/grpc-google-cloud-appoptimize-$1/src" -- source: "/google/cloud/appoptimize/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-appoptimize/$1/google-cloud-appoptimize/src" -- source: "/google/cloud/appoptimize/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-appoptimize/$1/samples/snippets/generated" - -api-name: appoptimize \ No newline at end of file diff --git a/java-area120-tables/.OwlBot-hermetic.yaml b/java-area120-tables/.OwlBot-hermetic.yaml deleted file mode 100644 index 336a6566afb2..000000000000 --- a/java-area120-tables/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-area120-tables/grpc-google-.*/src" -- "/java-area120-tables/proto-google-.*/src" -- "/java-area120-tables/google-.*/src" -- "/java-area120-tables/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/area120/tables/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-area120-tables/$1/proto-google-area120-tables-$1/src" -- source: "/google/area120/tables/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-area120-tables/$1/grpc-google-area120-tables-$1/src" -- source: "/google/area120/tables/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-area120-tables/$1/google-area120-tables/src" -- source: "/google/area120/tables/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-area120-tables/$1/samples/snippets/generated" - -api-name: area120tables diff --git a/java-artifact-registry/.OwlBot-hermetic.yaml b/java-artifact-registry/.OwlBot-hermetic.yaml deleted file mode 100644 index 064792d99ac9..000000000000 --- a/java-artifact-registry/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-artifact-registry/grpc-google-.*/src" -- "/java-artifact-registry/proto-google-.*/src" -- "/java-artifact-registry/google-.*/src" -- "/java-artifact-registry/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/devtools/artifactregistry/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-artifact-registry/$1/proto-google-cloud-artifact-registry-$1/src" -- source: "/google/devtools/artifactregistry/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-artifact-registry/$1/grpc-google-cloud-artifact-registry-$1/src" -- source: "/google/devtools/artifactregistry/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-artifact-registry/$1/google-cloud-artifact-registry/src" -- source: "/google/devtools/artifactregistry/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-artifact-registry/$1/samples/snippets/generated" - -api-name: artifactregistry diff --git a/java-asset/.OwlBot-hermetic.yaml b/java-asset/.OwlBot-hermetic.yaml deleted file mode 100644 index 46f8c9bee784..000000000000 --- a/java-asset/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-asset/samples/snippets/generated" -- "/java-asset/grpc-google-.*/src" -- "/java-asset/proto-google-.*/src" -- "/java-asset/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-.*/src/test/java/com/google/cloud/.*/it" -- "/.*google-cloud-asset/src/test/java/com/google/cloud/asset/v1/VPCServiceControlTest.java" -- "/.*proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ProjectName.java" - -deep-copy-regex: -- source: "/google/cloud/asset/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-asset/$1/proto-google-cloud-asset-$1/src" -- source: "/google/cloud/asset/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-asset/$1/grpc-google-cloud-asset-$1/src" -- source: "/google/cloud/asset/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-asset/$1/google-cloud-asset/src" -- source: "/google/cloud/asset/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-asset/$1/samples/snippets/generated" - -api-name: cloudasset diff --git a/java-assured-workloads/.OwlBot-hermetic.yaml b/java-assured-workloads/.OwlBot-hermetic.yaml deleted file mode 100644 index 4ae7d7469586..000000000000 --- a/java-assured-workloads/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-assured-workloads/samples/snippets/generated" -- "/java-assured-workloads/grpc-google-.*/src" -- "/java-assured-workloads/proto-google-.*/src" -- "/java-assured-workloads/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/assuredworkloads/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-assured-workloads/$1/proto-google-cloud-assured-workloads-$1/src" -- source: "/google/cloud/assuredworkloads/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-assured-workloads/$1/grpc-google-cloud-assured-workloads-$1/src" -- source: "/google/cloud/assuredworkloads/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-assured-workloads/$1/google-cloud-assured-workloads/src" -- source: "/google/cloud/assuredworkloads/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-assured-workloads/$1/samples/snippets/generated" - -api-name: assuredworkloads diff --git a/java-auditmanager/.OwlBot-hermetic.yaml b/java-auditmanager/.OwlBot-hermetic.yaml deleted file mode 100644 index 026473f06cf3..000000000000 --- a/java-auditmanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-auditmanager/grpc-google-.*/src" -- "/java-auditmanager/proto-google-.*/src" -- "/java-auditmanager/google-.*/src" -- "/java-auditmanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/auditmanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-auditmanager/$1/proto-google-cloud-auditmanager-$1/src" -- source: "/google/cloud/auditmanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-auditmanager/$1/grpc-google-cloud-auditmanager-$1/src" -- source: "/google/cloud/auditmanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-auditmanager/$1/google-cloud-auditmanager/src" -- source: "/google/cloud/auditmanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-auditmanager/$1/samples/snippets/generated" - -api-name: auditmanager \ No newline at end of file diff --git a/java-automl/.OwlBot-hermetic.yaml b/java-automl/.OwlBot-hermetic.yaml deleted file mode 100644 index 0c39ec644cac..000000000000 --- a/java-automl/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-automl/samples/snippets/generated" -- "/java-automl/grpc-google-.*/src" -- "/java-automl/proto-google-.*/src" -- "/java-automl/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/automl/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-automl/$1/proto-google-cloud-automl-$1/src" -- source: "/google/cloud/automl/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-automl/$1/grpc-google-cloud-automl-$1/src" -- source: "/google/cloud/automl/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-automl/$1/google-cloud-automl/src" -- source: "/google/cloud/automl/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-automl/$1/samples/snippets/generated" - -api-name: automl diff --git a/java-backstory/.OwlBot-hermetic.yaml b/java-backstory/.OwlBot-hermetic.yaml deleted file mode 100644 index 0f5259ed6710..000000000000 --- a/java-backstory/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-backstory/grpc-google-.*/src" -- "/java-backstory/proto-google-.*/src" -- "/java-backstory/google-.*/src" -- "/java-backstory/samples/snippets/generated" - -deep-preserve-regex: -- "/java-backstory/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/backstory/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-backstory/proto-google-cloud-backstory/src" -- source: "/backstory/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-backstory/grpc-google-cloud-backstory/src" -- source: "/backstory/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-backstory/google-cloud-backstory/src" -- source: "/backstory/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-backstory/samples/snippets/generated" - -api-name: backstory \ No newline at end of file diff --git a/java-backupdr/.OwlBot-hermetic.yaml b/java-backupdr/.OwlBot-hermetic.yaml deleted file mode 100644 index ba649a8c91cf..000000000000 --- a/java-backupdr/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-backupdr/grpc-google-.*/src" -- "/java-backupdr/proto-google-.*/src" -- "/java-backupdr/google-.*/src" -- "/java-backupdr/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/backupdr/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-backupdr/$1/proto-google-cloud-backupdr-$1/src" -- source: "/google/cloud/backupdr/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-backupdr/$1/grpc-google-cloud-backupdr-$1/src" -- source: "/google/cloud/backupdr/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-backupdr/$1/google-cloud-backupdr/src" -- source: "/google/cloud/backupdr/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-backupdr/$1/samples/snippets/generated" - -api-name: backupdr \ No newline at end of file diff --git a/java-bare-metal-solution/.OwlBot-hermetic.yaml b/java-bare-metal-solution/.OwlBot-hermetic.yaml deleted file mode 100644 index 7c4b212a734d..000000000000 --- a/java-bare-metal-solution/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-bare-metal-solution/samples/snippets/generated" -- "/java-bare-metal-solution/grpc-google-.*/src" -- "/java-bare-metal-solution/proto-google-.*/src" -- "/java-bare-metal-solution/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/baremetalsolution/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-bare-metal-solution/$1/proto-google-cloud-bare-metal-solution-$1/src" -- source: "/google/cloud/baremetalsolution/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-bare-metal-solution/$1/grpc-google-cloud-bare-metal-solution-$1/src" -- source: "/google/cloud/baremetalsolution/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-bare-metal-solution/$1/google-cloud-bare-metal-solution/src" -- source: "/google/cloud/baremetalsolution/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-bare-metal-solution/$1/samples/snippets/generated" - -api-name: baremetalsolution diff --git a/java-batch/.OwlBot-hermetic.yaml b/java-batch/.OwlBot-hermetic.yaml deleted file mode 100644 index 2a81fdedf9f2..000000000000 --- a/java-batch/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-batch/grpc-google-.*/src" -- "/java-batch/proto-google-.*/src" -- "/java-batch/google-.*/src" -- "/java-batch/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/batch/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-batch/$1/proto-google-cloud-batch-$1/src" -- source: "/google/cloud/batch/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-batch/$1/grpc-google-cloud-batch-$1/src" -- source: "/google/cloud/batch/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-batch/$1/google-cloud-batch/src" -- source: "/google/cloud/batch/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-batch/$1/samples/snippets/generated" - -api-name: batch diff --git a/java-beyondcorp-appconnections/.OwlBot-hermetic.yaml b/java-beyondcorp-appconnections/.OwlBot-hermetic.yaml deleted file mode 100644 index 86bae36e4272..000000000000 --- a/java-beyondcorp-appconnections/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-beyondcorp-appconnections/grpc-google-.*/src" -- "/java-beyondcorp-appconnections/proto-google-.*/src" -- "/java-beyondcorp-appconnections/google-.*/src" -- "/java-beyondcorp-appconnections/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/beyondcorp/appconnections/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appconnections/$1/proto-google-cloud-beyondcorp-appconnections-$1/src" -- source: "/google/cloud/beyondcorp/appconnections/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appconnections/$1/grpc-google-cloud-beyondcorp-appconnections-$1/src" -- source: "/google/cloud/beyondcorp/appconnections/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appconnections/$1/google-cloud-beyondcorp-appconnections/src" -- source: "/google/cloud/beyondcorp/appconnections/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-beyondcorp-appconnections/$1/samples/snippets/generated" - -api-name: beyondcorp-appconnections diff --git a/java-beyondcorp-appconnectors/.OwlBot-hermetic.yaml b/java-beyondcorp-appconnectors/.OwlBot-hermetic.yaml deleted file mode 100644 index 6f98f29fe8a5..000000000000 --- a/java-beyondcorp-appconnectors/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-beyondcorp-appconnectors/grpc-google-.*/src" -- "/java-beyondcorp-appconnectors/proto-google-.*/src" -- "/java-beyondcorp-appconnectors/google-.*/src" -- "/java-beyondcorp-appconnectors/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/beyondcorp/appconnectors/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appconnectors/$1/proto-google-cloud-beyondcorp-appconnectors-$1/src" -- source: "/google/cloud/beyondcorp/appconnectors/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appconnectors/$1/grpc-google-cloud-beyondcorp-appconnectors-$1/src" -- source: "/google/cloud/beyondcorp/appconnectors/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appconnectors/$1/google-cloud-beyondcorp-appconnectors/src" -- source: "/google/cloud/beyondcorp/appconnectors/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-beyondcorp-appconnectors/$1/samples/snippets/generated" - -api-name: beyondcorp-appconnectors diff --git a/java-beyondcorp-appgateways/.OwlBot-hermetic.yaml b/java-beyondcorp-appgateways/.OwlBot-hermetic.yaml deleted file mode 100644 index fff966a5f049..000000000000 --- a/java-beyondcorp-appgateways/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-beyondcorp-appgateways/grpc-google-.*/src" -- "/java-beyondcorp-appgateways/proto-google-.*/src" -- "/java-beyondcorp-appgateways/google-.*/src" -- "/java-beyondcorp-appgateways/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/beyondcorp/appgateways/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appgateways/$1/proto-google-cloud-beyondcorp-appgateways-$1/src" -- source: "/google/cloud/beyondcorp/appgateways/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appgateways/$1/grpc-google-cloud-beyondcorp-appgateways-$1/src" -- source: "/google/cloud/beyondcorp/appgateways/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-appgateways/$1/google-cloud-beyondcorp-appgateways/src" -- source: "/google/cloud/beyondcorp/appgateways/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-beyondcorp-appgateways/$1/samples/snippets/generated" - -api-name: beyondcorp-appgateways diff --git a/java-beyondcorp-clientconnectorservices/.OwlBot-hermetic.yaml b/java-beyondcorp-clientconnectorservices/.OwlBot-hermetic.yaml deleted file mode 100644 index 948ce1b9f5fd..000000000000 --- a/java-beyondcorp-clientconnectorservices/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-beyondcorp-clientconnectorservices/grpc-google-.*/src" -- "/java-beyondcorp-clientconnectorservices/proto-google-.*/src" -- "/java-beyondcorp-clientconnectorservices/google-.*/src" -- "/java-beyondcorp-clientconnectorservices/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/beyondcorp/clientconnectorservices/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-clientconnectorservices/$1/proto-google-cloud-beyondcorp-clientconnectorservices-$1/src" -- source: "/google/cloud/beyondcorp/clientconnectorservices/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-clientconnectorservices/$1/grpc-google-cloud-beyondcorp-clientconnectorservices-$1/src" -- source: "/google/cloud/beyondcorp/clientconnectorservices/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-clientconnectorservices/$1/google-cloud-beyondcorp-clientconnectorservices/src" -- source: "/google/cloud/beyondcorp/clientconnectorservices/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-beyondcorp-clientconnectorservices/$1/samples/snippets/generated" - -api-name: beyondcorp-clientconnectorservices diff --git a/java-beyondcorp-clientgateways/.OwlBot-hermetic.yaml b/java-beyondcorp-clientgateways/.OwlBot-hermetic.yaml deleted file mode 100644 index 6957323522d7..000000000000 --- a/java-beyondcorp-clientgateways/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-beyondcorp-clientgateways/grpc-google-.*/src" -- "/java-beyondcorp-clientgateways/proto-google-.*/src" -- "/java-beyondcorp-clientgateways/google-.*/src" -- "/java-beyondcorp-clientgateways/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/beyondcorp/clientgateways/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-clientgateways/$1/proto-google-cloud-beyondcorp-clientgateways-$1/src" -- source: "/google/cloud/beyondcorp/clientgateways/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-clientgateways/$1/grpc-google-cloud-beyondcorp-clientgateways-$1/src" -- source: "/google/cloud/beyondcorp/clientgateways/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-beyondcorp-clientgateways/$1/google-cloud-beyondcorp-clientgateways/src" -- source: "/google/cloud/beyondcorp/clientgateways/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-beyondcorp-clientgateways/$1/samples/snippets/generated" - -api-name: beyondcorp-clientgateways diff --git a/java-biglake/.OwlBot-hermetic.yaml b/java-biglake/.OwlBot-hermetic.yaml deleted file mode 100644 index 10bf0a32e29f..000000000000 --- a/java-biglake/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-biglake/grpc-google-.*/src" -- "/java-biglake/proto-google-.*/src" -- "/java-biglake/google-.*/src" -- "/java-biglake/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/bigquery/biglake/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/proto-google-cloud-biglake-$1/src" -- source: "/google/cloud/bigquery/biglake/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/grpc-google-cloud-biglake-$1/src" -- source: "/google/cloud/bigquery/biglake/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/google-cloud-biglake/src" -- source: "/google/cloud/bigquery/biglake/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-biglake/$1/samples/snippets/generated" -- source: "/google/cloud/biglake/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/proto-google-cloud-biglake-$1/src" -- source: "/google/cloud/biglake/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/grpc-google-cloud-biglake-$1/src" -- source: "/google/cloud/biglake/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/google-cloud-biglake/src" -- source: "/google/cloud/biglake/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-biglake/$1/samples/snippets/generated" -- source: "/google/cloud/biglake/hive/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/proto-google-cloud-biglake-$1/src" -- source: "/google/cloud/biglake/hive/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/grpc-google-cloud-biglake-$1/src" -- source: "/google/cloud/biglake/hive/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-biglake/$1/google-cloud-biglake/src" -- source: "/google/cloud/biglake/hive/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-biglake/$1/samples/snippets/generated" - - -api-name: biglake diff --git a/java-bigquery-data-exchange/.OwlBot-hermetic.yaml b/java-bigquery-data-exchange/.OwlBot-hermetic.yaml deleted file mode 100644 index 005fdb14c886..000000000000 --- a/java-bigquery-data-exchange/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-bigquery-data-exchange/grpc-google-.*/src" -- "/java-bigquery-data-exchange/proto-google-.*/src" -- "/java-bigquery-data-exchange/google-.*/src" -- "/java-bigquery-data-exchange/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/bigquery/dataexchange/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-bigquery-data-exchange/$1/proto-google-cloud-bigquery-data-exchange-$1/src" -- source: "/google/cloud/bigquery/dataexchange/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-bigquery-data-exchange/$1/grpc-google-cloud-bigquery-data-exchange-$1/src" -- source: "/google/cloud/bigquery/dataexchange/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-bigquery-data-exchange/$1/google-cloud-bigquery-data-exchange/src" -- source: "/google/cloud/bigquery/dataexchange/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-bigquery-data-exchange/$1/samples/snippets/generated" - -api-name: analyticshub diff --git a/java-bigqueryconnection/.OwlBot-hermetic.yaml b/java-bigqueryconnection/.OwlBot-hermetic.yaml deleted file mode 100644 index d6052c29351b..000000000000 --- a/java-bigqueryconnection/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-bigqueryconnection/grpc-google-.*/src" -- "/java-bigqueryconnection/proto-google-.*/src" -- "/java-bigqueryconnection/google-.*/src" -- "/java-bigqueryconnection/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-bigqueryconnection/src/test/java/com/google/cloud/bigqueryconnection/v.*/it/ITSystemTest.java" - -deep-copy-regex: -- source: "/google/cloud/bigquery/connection/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-bigqueryconnection/$1/proto-google-cloud-bigqueryconnection-$1/src" -- source: "/google/cloud/bigquery/connection/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-bigqueryconnection/$1/grpc-google-cloud-bigqueryconnection-$1/src" -- source: "/google/cloud/bigquery/connection/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-bigqueryconnection/$1/google-cloud-bigqueryconnection/src" -- source: "/google/cloud/bigquery/connection/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-bigqueryconnection/$1/samples/snippets/generated" - -api-name: bigqueryconnection diff --git a/java-bigquerydatapolicy/.OwlBot-hermetic.yaml b/java-bigquerydatapolicy/.OwlBot-hermetic.yaml deleted file mode 100644 index 898f10fa75bc..000000000000 --- a/java-bigquerydatapolicy/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-bigquerydatapolicy/grpc-google-.*/src" -- "/java-bigquerydatapolicy/proto-google-.*/src" -- "/java-bigquerydatapolicy/google-.*/src" -- "/java-bigquerydatapolicy/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/bigquery/datapolicies/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-bigquerydatapolicy/$1/proto-google-cloud-bigquerydatapolicy-$1/src" -- source: "/google/cloud/bigquery/datapolicies/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-bigquerydatapolicy/$1/grpc-google-cloud-bigquerydatapolicy-$1/src" -- source: "/google/cloud/bigquery/datapolicies/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-bigquerydatapolicy/$1/google-cloud-bigquerydatapolicy/src" -- source: "/google/cloud/bigquery/datapolicies/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-bigquerydatapolicy/$1/samples/snippets/generated" - -api-name: bigquerydatapolicy diff --git a/java-bigquerydatatransfer/.OwlBot-hermetic.yaml b/java-bigquerydatatransfer/.OwlBot-hermetic.yaml deleted file mode 100644 index c0bf7ba29614..000000000000 --- a/java-bigquerydatatransfer/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-bigquerydatatransfer/grpc-google-.*/src" -- "/java-bigquerydatatransfer/proto-google-.*/src" -- "/java-bigquerydatatransfer/google-.*/src" -- "/java-bigquerydatatransfer/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-bigquerydatatransfer/src/main/java/com/google/cloud/bigquery/datatransfer/v1/SampleApp.java" - -deep-copy-regex: -- source: "/google/cloud/bigquery/datatransfer/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-bigquerydatatransfer/$1/proto-google-cloud-bigquerydatatransfer-$1/src" -- source: "/google/cloud/bigquery/datatransfer/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-bigquerydatatransfer/$1/grpc-google-cloud-bigquerydatatransfer-$1/src" -- source: "/google/cloud/bigquery/datatransfer/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-bigquerydatatransfer/$1/google-cloud-bigquerydatatransfer/src" -- source: "/google/cloud/bigquery/datatransfer/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-bigquerydatatransfer/$1/samples/snippets/generated" - -api-name: bigquerydatatransfer diff --git a/java-bigquerymigration/.OwlBot-hermetic.yaml b/java-bigquerymigration/.OwlBot-hermetic.yaml deleted file mode 100644 index baea5d9e7b20..000000000000 --- a/java-bigquerymigration/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-bigquerymigration/grpc-google-.*/src" -- "/java-bigquerymigration/proto-google-.*/src" -- "/java-bigquerymigration/google-.*/src" -- "/java-bigquerymigration/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/bigquery/migration/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-bigquerymigration/$1/proto-google-cloud-bigquerymigration-$1/src" -- source: "/google/cloud/bigquery/migration/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-bigquerymigration/$1/grpc-google-cloud-bigquerymigration-$1/src" -- source: "/google/cloud/bigquery/migration/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-bigquerymigration/$1/google-cloud-bigquerymigration/src" -- source: "/google/cloud/bigquery/migration/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-bigquerymigration/$1/samples/snippets/generated" - -api-name: bigquerymigration diff --git a/java-bigqueryreservation/.OwlBot-hermetic.yaml b/java-bigqueryreservation/.OwlBot-hermetic.yaml deleted file mode 100644 index ba21b8d461a9..000000000000 --- a/java-bigqueryreservation/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-bigqueryreservation/grpc-google-.*/src" -- "/java-bigqueryreservation/proto-google-.*/src" -- "/java-bigqueryreservation/google-.*/src" -- "/java-bigqueryreservation/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/bigquery/reservation/(v\\d)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-bigqueryreservation/$1/proto-google-cloud-bigqueryreservation-$1/src" -- source: "/google/cloud/bigquery/reservation/(v\\d)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-bigqueryreservation/$1/grpc-google-cloud-bigqueryreservation-$1/src" -- source: "/google/cloud/bigquery/reservation/(v\\d)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-bigqueryreservation/$1/google-cloud-bigqueryreservation/src" -- source: "/google/cloud/bigquery/reservation/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-bigqueryreservation/$1/samples/snippets/generated" - -api-name: bigqueryreservation diff --git a/java-bigquerystorage/.OwlBot-hermetic.yaml b/java-bigquerystorage/.OwlBot-hermetic.yaml deleted file mode 100644 index 3b16b375142e..000000000000 --- a/java-bigquerystorage/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-remove-regex: -- /java-bigquerystorage/grpc-google-.*/src -- /java-bigquerystorage/proto-google-.*/src -- /java-bigquerystorage/google-.*/src - -deep-preserve-regex: -- /.*google-.*/src/main/java/.*/stub/Version.java -- /.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/SchemaAwareStreamWriter.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/ToProtoConverter.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/AppendFormats.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/BigQuerySchemaUtil.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1/BigQuerySchemaUtilTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1/ConnectionWorkerPoolTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1/ConnectionWorkerTest.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/RequestProfiler.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/TelemetryMetrics.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v.*/BigQueryReadSettings.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v.*/BigQueryReadClient.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/util -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v.*/stub/BigQueryReadStubSettings.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v.*/stub/EnhancedBigQueryReadStub.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v.*/stub/EnhancedBigQueryReadStubSettings.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v.*/stub/readrows -- /.*google-cloud-bigquerystorage/src/test/proto -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v.*/stub -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v.*/it -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/util -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v.*/BigQueryReadClientTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1beta1/BigQueryStorageClientTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1beta1/it/SimpleRowReader.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1beta1/stub/EnhancedBigQueryStorageStubSettingsTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1beta1/stub/ResourceHeaderTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1beta1/stub/readrows/ReadRowsRetryTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/BQTableSchemaToProtoDescriptorTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/BQV2ToBQStorageConverterTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/BigDecimalByteStringEncoderTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/BigQueryReadClientTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/CivilTimeEncoderTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/FakeBigQueryWrite.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/FakeBigQueryWriteImpl.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/FakeClock.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/FakeScheduledExecutorService.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/JsonStreamWriterTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/JsonToProtoMessageTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/ProtoSchemaConverterTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/RequestProfilerTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/SchemaCompatibilityTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/StreamWriterTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/StreamWriterV2Test.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/RequestProfilerTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/it/BigQueryResource.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/it/SimpleRowReader.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/stub/EnhancedBigQueryReadStubSettingsTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/stub/ResourceHeaderTest.java -- /.*google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1.*/stub/readrows/ReadRowsRetryTest.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/BigQueryStorageClient.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/BigQueryStorageSettings.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/stub/EnhancedBigQueryStorageStub.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/stub/EnhancedBigQueryStorageStubSettings.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/BQTableSchemaToProtoDescriptor.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/BQV2ToBQStorageConverter.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/BigDecimalByteStringEncoder.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/CivilTimeEncoder.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/JsonStreamWriter.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/JsonToProtoMessage.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/OnSchemaUpdateRunnable.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/ProtoSchemaConverter.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/SchemaCompatibility.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/StreamConnection.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/StreamWriter.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/StreamWriterV2.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1.*/Waiter.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/Exceptions.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/ConnectionWorker.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/ConnectionWorkerPool.java -- /.*google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/Singletons.java -- /.*google-cloud-bigquerystorage/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquerystorage/reflect-config.json -- /.*google-cloud-bigquerystorage/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquerystorage/resource-config.json - -deep-copy-regex: -- source: /google/cloud/bigquery/storage/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-bigquerystorage/$1/proto-google-cloud-bigquerystorage-$1/src -- source: /google/cloud/bigquery/storage/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-bigquerystorage/$1/grpc-google-cloud-bigquerystorage-$1/src -- source: /google/cloud/bigquery/storage/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-bigquerystorage/$1/google-cloud-bigquerystorage/src diff --git a/java-bigtable/.OwlBot-hermetic.yaml b/java-bigtable/.OwlBot-hermetic.yaml deleted file mode 100644 index 489564ca9101..000000000000 --- a/java-bigtable/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-remove-regex: -- /java-bigtable/grpc-google-.*/src -- /java-bigtable/proto-google-.*/src -deep-preserve-regex: -- /java-bigtable/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java -- /java-bigtable/google-.*/src/main/java/com/google/cloud/.*/v.*/stub/Version.java -deep-copy-regex: -- source: /google/bigtable/(v\d)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-bigtable/$1/proto-google-cloud-bigtable-$1/src -- source: /google/bigtable/(v\d)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-bigtable/$1/grpc-google-cloud-bigtable-$1/src -- source: /google/bigtable/(v\d)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-bigtable/$1/google-cloud-bigtable/src -- source: /google/bigtable/admin/(v\d)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-bigtable/$1/proto-google-cloud-bigtable-admin-$1/src -- source: /google/bigtable/admin/(v\d)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-bigtable/$1/grpc-google-cloud-bigtable-admin-$1/src -- source: /google/bigtable/admin/(v\d)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-bigtable/$1/google-cloud-bigtable/src diff --git a/java-billing/.OwlBot-hermetic.yaml b/java-billing/.OwlBot-hermetic.yaml deleted file mode 100644 index 1a8f34f3d240..000000000000 --- a/java-billing/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-billing/src/test/java/com/google/cloud/billing/v1/CloudBillingClientHttpJsonTest.java" - -deep-remove-regex: -- "/.*samples/snippets/generated" -- "/.*grpc-google-.*/src" -- "/.*proto-google-.*/src" -- "/.*google-.*/src" - -deep-copy-regex: -- source: "/google/cloud/billing/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-billing/$1/proto-google-cloud-billing-$1/src" -- source: "/google/cloud/billing/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-billing/$1/grpc-google-cloud-billing-$1/src" -- source: "/google/cloud/billing/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-billing/$1/google-cloud-billing/src" -- source: "/google/cloud/billing/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-billing/$1/samples/snippets/generated" - -api-name: cloudbilling diff --git a/java-billingbudgets/.OwlBot-hermetic.yaml b/java-billingbudgets/.OwlBot-hermetic.yaml deleted file mode 100644 index 631ac7657913..000000000000 --- a/java-billingbudgets/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-billingbudgets/grpc-google-.*/src" -- "/java-billingbudgets/proto-google-.*/src" -- "/java-billingbudgets/google-.*/src" -- "/java-billingbudgets/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/billing/budgets/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-billingbudgets/$1/proto-google-cloud-billingbudgets-$1/src" -- source: "/google/cloud/billing/budgets/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-billingbudgets/$1/grpc-google-cloud-billingbudgets-$1/src" -- source: "/google/cloud/billing/budgets/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-billingbudgets/$1/google-cloud-billingbudgets/src" -- source: "/google/cloud/billing/budgets/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-billingbudgets/$1/samples/snippets/generated" - -api-name: billingbudgets diff --git a/java-binary-authorization/.OwlBot-hermetic.yaml b/java-binary-authorization/.OwlBot-hermetic.yaml deleted file mode 100644 index 183a5108d700..000000000000 --- a/java-binary-authorization/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-binary-authorization/samples/snippets/generated" -- "/java-binary-authorization/grpc-google-.*/src" -- "/java-binary-authorization/proto-google-.*/src" -- "/java-binary-authorization/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/binaryauthorization/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-binary-authorization/$1/proto-google-cloud-binary-authorization-$1/src" -- source: "/google/cloud/binaryauthorization/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-binary-authorization/$1/grpc-google-cloud-binary-authorization-$1/src" -- source: "/google/cloud/binaryauthorization/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-binary-authorization/$1/google-cloud-binary-authorization/src" -- source: "/google/cloud/binaryauthorization/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-binary-authorization/$1/samples/snippets/generated" - -api-name: binaryauthorization diff --git a/java-capacityplanner/.OwlBot-hermetic.yaml b/java-capacityplanner/.OwlBot-hermetic.yaml deleted file mode 100644 index bcb7c405fdc9..000000000000 --- a/java-capacityplanner/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-capacityplanner/grpc-google-.*/src" -- "/java-capacityplanner/proto-google-.*/src" -- "/java-capacityplanner/google-.*/src" -- "/java-capacityplanner/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/capacityplanner/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-capacityplanner/$1/proto-google-cloud-capacityplanner-$1/src" -- source: "/google/cloud/capacityplanner/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-capacityplanner/$1/grpc-google-cloud-capacityplanner-$1/src" -- source: "/google/cloud/capacityplanner/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-capacityplanner/$1/google-cloud-capacityplanner/src" -- source: "/google/cloud/capacityplanner/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-capacityplanner/$1/samples/snippets/generated" - -api-name: capacityplanner \ No newline at end of file diff --git a/java-certificate-manager/.OwlBot-hermetic.yaml b/java-certificate-manager/.OwlBot-hermetic.yaml deleted file mode 100644 index 04bea2c9343a..000000000000 --- a/java-certificate-manager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-certificate-manager/samples/snippets/generated" -- "/java-certificate-manager/grpc-google-.*/src" -- "/java-certificate-manager/proto-google-.*/src" -- "/java-certificate-manager/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/certificatemanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-certificate-manager/$1/proto-google-cloud-certificate-manager-$1/src" -- source: "/google/cloud/certificatemanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-certificate-manager/$1/grpc-google-cloud-certificate-manager-$1/src" -- source: "/google/cloud/certificatemanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-certificate-manager/$1/google-cloud-certificate-manager/src" -- source: "/google/cloud/certificatemanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-certificate-manager/$1/samples/snippets/generated" - -api-name: certificatemanager diff --git a/java-ces/.OwlBot-hermetic.yaml b/java-ces/.OwlBot-hermetic.yaml deleted file mode 100644 index 44ecb82fb0c8..000000000000 --- a/java-ces/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-ces/grpc-google-.*/src" -- "/java-ces/proto-google-.*/src" -- "/java-ces/google-.*/src" -- "/java-ces/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/ces/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-ces/$1/proto-google-cloud-ces-$1/src" -- source: "/google/cloud/ces/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-ces/$1/grpc-google-cloud-ces-$1/src" -- source: "/google/cloud/ces/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-ces/$1/google-cloud-ces/src" -- source: "/google/cloud/ces/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-ces/$1/samples/snippets/generated" - -api-name: ces \ No newline at end of file diff --git a/java-channel/.OwlBot-hermetic.yaml b/java-channel/.OwlBot-hermetic.yaml deleted file mode 100644 index 66e0acb60968..000000000000 --- a/java-channel/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-channel/samples/snippets/generated" -- "/java-channel/grpc-google-.*/src" -- "/java-channel/proto-google-.*/src" -- "/java-channel/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/channel/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-channel/$1/proto-google-cloud-channel-$1/src" -- source: "/google/cloud/channel/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-channel/$1/grpc-google-cloud-channel-$1/src" -- source: "/google/cloud/channel/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-channel/$1/google-cloud-channel/src" -- source: "/google/cloud/channel/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-channel/$1/samples/snippets/generated" - -api-name: cloudchannel diff --git a/java-chat/.OwlBot-hermetic.yaml b/java-chat/.OwlBot-hermetic.yaml deleted file mode 100644 index de8208b2b3e7..000000000000 --- a/java-chat/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-chat/grpc-google-.*/src" -- "/java-chat/proto-google-.*/src" -- "/java-chat/google-.*/src" -- "/java-chat/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/chat/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-chat/$1/proto-google-cloud-chat-$1/src" -- source: "/google/chat/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-chat/$1/grpc-google-cloud-chat-$1/src" -- source: "/google/chat/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-chat/$1/google-cloud-chat/src" -- source: "/google/chat/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-chat/$1/samples/snippets/generated" - - -api-name: chat \ No newline at end of file diff --git a/java-chronicle/.OwlBot-hermetic.yaml b/java-chronicle/.OwlBot-hermetic.yaml deleted file mode 100644 index fc1783c6578d..000000000000 --- a/java-chronicle/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-chronicle/grpc-google-.*/src" -- "/java-chronicle/proto-google-.*/src" -- "/java-chronicle/google-.*/src" -- "/java-chronicle/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/chronicle/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-chronicle/$1/proto-google-cloud-chronicle-$1/src" -- source: "/google/cloud/chronicle/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-chronicle/$1/grpc-google-cloud-chronicle-$1/src" -- source: "/google/cloud/chronicle/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-chronicle/$1/google-cloud-chronicle/src" -- source: "/google/cloud/chronicle/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-chronicle/$1/samples/snippets/generated" - -api-name: chronicle \ No newline at end of file diff --git a/java-cloudapiregistry/.OwlBot-hermetic.yaml b/java-cloudapiregistry/.OwlBot-hermetic.yaml deleted file mode 100644 index 562bd0c587d9..000000000000 --- a/java-cloudapiregistry/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-cloudapiregistry/grpc-google-.*/src" -- "/java-cloudapiregistry/proto-google-.*/src" -- "/java-cloudapiregistry/google-.*/src" -- "/java-cloudapiregistry/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/apiregistry/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-cloudapiregistry/$1/proto-google-cloud-cloudapiregistry-$1/src" -- source: "/google/cloud/apiregistry/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-cloudapiregistry/$1/grpc-google-cloud-cloudapiregistry-$1/src" -- source: "/google/cloud/apiregistry/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-cloudapiregistry/$1/google-cloud-cloudapiregistry/src" -- source: "/google/cloud/apiregistry/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-cloudapiregistry/$1/samples/snippets/generated" - -api-name: cloudapiregistry \ No newline at end of file diff --git a/java-cloudbuild/.OwlBot-hermetic.yaml b/java-cloudbuild/.OwlBot-hermetic.yaml deleted file mode 100644 index 1919c09ed6b5..000000000000 --- a/java-cloudbuild/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-cloudbuild/grpc-google-.*/src" -- "/java-cloudbuild/proto-google-.*/src" -- "/java-cloudbuild/google-.*/src" -- "/java-cloudbuild/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/devtools/cloudbuild/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-cloudbuild/$1/proto-google-cloud-build-$1/src" -- source: "/google/devtools/cloudbuild/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-cloudbuild/$1/grpc-google-cloud-build-$1/src" -- source: "/google/devtools/cloudbuild/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-cloudbuild/$1/google-cloud-build/src" -- source: "/google/devtools/cloudbuild/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-cloudbuild/$1/samples/snippets/generated" - -api-name: cloudbuild diff --git a/java-cloudcommerceconsumerprocurement/.OwlBot-hermetic.yaml b/java-cloudcommerceconsumerprocurement/.OwlBot-hermetic.yaml deleted file mode 100644 index 9e14e5c32b11..000000000000 --- a/java-cloudcommerceconsumerprocurement/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-cloudcommerceconsumerprocurement/grpc-google-.*/src" -- "/java-cloudcommerceconsumerprocurement/proto-google-.*/src" -- "/java-cloudcommerceconsumerprocurement/google-.*/src" -- "/java-cloudcommerceconsumerprocurement/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/commerce/consumer/procurement/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-cloudcommerceconsumerprocurement/$1/proto-google-cloud-cloudcommerceconsumerprocurement-$1/src" -- source: "/google/cloud/commerce/consumer/procurement/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-cloudcommerceconsumerprocurement/$1/grpc-google-cloud-cloudcommerceconsumerprocurement-$1/src" -- source: "/google/cloud/commerce/consumer/procurement/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-cloudcommerceconsumerprocurement/$1/google-cloud-cloudcommerceconsumerprocurement/src" -- source: "/google/cloud/commerce/consumer/procurement/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-cloudcommerceconsumerprocurement/$1/samples/snippets/generated" - -api-name: cloudcommerceconsumerprocurement diff --git a/java-cloudcontrolspartner/.OwlBot-hermetic.yaml b/java-cloudcontrolspartner/.OwlBot-hermetic.yaml deleted file mode 100644 index 0e1f04bc5757..000000000000 --- a/java-cloudcontrolspartner/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-cloudcontrolspartner/grpc-google-.*/src" -- "/java-cloudcontrolspartner/proto-google-.*/src" -- "/java-cloudcontrolspartner/google-.*/src" -- "/java-cloudcontrolspartner/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/cloudcontrolspartner/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-cloudcontrolspartner/$1/proto-google-cloud-cloudcontrolspartner-$1/src" -- source: "/google/cloud/cloudcontrolspartner/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-cloudcontrolspartner/$1/grpc-google-cloud-cloudcontrolspartner-$1/src" -- source: "/google/cloud/cloudcontrolspartner/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-cloudcontrolspartner/$1/google-cloud-cloudcontrolspartner/src" -- source: "/google/cloud/cloudcontrolspartner/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-cloudcontrolspartner/$1/samples/snippets/generated" - - -api-name: cloudcontrolspartner \ No newline at end of file diff --git a/java-cloudquotas/.OwlBot-hermetic.yaml b/java-cloudquotas/.OwlBot-hermetic.yaml deleted file mode 100644 index 8bb2e51f829b..000000000000 --- a/java-cloudquotas/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-cloudquotas/grpc-google-.*/src" -- "/java-cloudquotas/proto-google-.*/src" -- "/java-cloudquotas/google-.*/src" -- "/java-cloudquotas/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/api/cloudquotas/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-cloudquotas/$1/proto-google-cloud-cloudquotas-$1/src" -- source: "/google/api/cloudquotas/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-cloudquotas/$1/grpc-google-cloud-cloudquotas-$1/src" -- source: "/google/api/cloudquotas/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-cloudquotas/$1/google-cloud-cloudquotas/src" -- source: "/google/api/cloudquotas/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-cloudquotas/$1/samples/snippets/generated" - - -api-name: cloudquotas \ No newline at end of file diff --git a/java-cloudsecuritycompliance/.OwlBot-hermetic.yaml b/java-cloudsecuritycompliance/.OwlBot-hermetic.yaml deleted file mode 100644 index 0d2b2d4016bc..000000000000 --- a/java-cloudsecuritycompliance/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-cloudsecuritycompliance/grpc-google-.*/src" -- "/java-cloudsecuritycompliance/proto-google-.*/src" -- "/java-cloudsecuritycompliance/google-.*/src" -- "/java-cloudsecuritycompliance/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/cloudsecuritycompliance/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-cloudsecuritycompliance/$1/proto-google-cloud-cloudsecuritycompliance-$1/src" -- source: "/google/cloud/cloudsecuritycompliance/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-cloudsecuritycompliance/$1/grpc-google-cloud-cloudsecuritycompliance-$1/src" -- source: "/google/cloud/cloudsecuritycompliance/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-cloudsecuritycompliance/$1/google-cloud-cloudsecuritycompliance/src" -- source: "/google/cloud/cloudsecuritycompliance/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-cloudsecuritycompliance/$1/samples/snippets/generated" - -api-name: cloudsecuritycompliance \ No newline at end of file diff --git a/java-cloudsupport/.OwlBot-hermetic.yaml b/java-cloudsupport/.OwlBot-hermetic.yaml deleted file mode 100644 index 3ce84c43fc48..000000000000 --- a/java-cloudsupport/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-cloudsupport/grpc-google-.*/src" -- "/java-cloudsupport/proto-google-.*/src" -- "/java-cloudsupport/google-.*/src" -- "/java-cloudsupport/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/support/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-cloudsupport/$1/proto-google-cloud-cloudsupport-$1/src" -- source: "/google/cloud/support/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-cloudsupport/$1/grpc-google-cloud-cloudsupport-$1/src" -- source: "/google/cloud/support/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-cloudsupport/$1/google-cloud-cloudsupport/src" -- source: "/google/cloud/support/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-cloudsupport/$1/samples/snippets/generated" - - -api-name: cloudsupport \ No newline at end of file diff --git a/java-common-protos/.OwlBot-hermetic.yaml b/java-common-protos/.OwlBot-hermetic.yaml deleted file mode 100644 index 1aed221695fa..000000000000 --- a/java-common-protos/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-common-protos/grpc-google-.*/src" -- "/java-common-protos/proto-google-.*/src" -- "/java-common-protos/google-.*/src" - -deep-preserve-regex: -- "/java-common-protos/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/api/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/cloud/audit/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -# For geo common protos -- source: "/google/geo/type/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -# For shopping common protos -- source: "/google/shopping/type/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -# It is only used once in https://github.com/googleapis/googleapis/blob/master/google/chat/v1/BUILD.bazel#L47, -# and technically not a common proto, maybe a violation of AIP-215 if it is not. -# However, it's better to put it here so that we don't have to manually add it to BUILD.bazel file and hermetic build scripts. -- source: "/google/apps/card/v1/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/logging/type/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/longrunning/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/rpc/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/rpc/context/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/type/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/cloud/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/cloud/location/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/proto-google-common-protos/src" - -- source: "/google/cloud/location/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/grpc-google-common-protos/src" - -- source: "/google/longrunning/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-common-protos/v1/grpc-google-common-protos/src" -api-name: common-protos diff --git a/java-compute/.OwlBot-hermetic.yaml b/java-compute/.OwlBot-hermetic.yaml deleted file mode 100644 index 74f604a9b21a..000000000000 --- a/java-compute/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-compute/proto-google-.*/src" -- "/java-compute/google-.*/src" -- "/java-compute/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-compute/src/test/java/com/google/cloud/compute/v1/integration" - -deep-copy-regex: -- source: "/google/cloud/compute/(v\\d)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-compute/$1/proto-google-cloud-compute-$1/src" -- source: "/google/cloud/compute/(v\\d)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-compute/$1/google-cloud-compute/src" -- source: "/google/cloud/compute/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-compute/$1/samples/snippets/generated" - -api-name: compute diff --git a/java-confidentialcomputing/.OwlBot-hermetic.yaml b/java-confidentialcomputing/.OwlBot-hermetic.yaml deleted file mode 100644 index dc26501de170..000000000000 --- a/java-confidentialcomputing/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-confidentialcomputing/grpc-google-.*/src" -- "/java-confidentialcomputing/proto-google-.*/src" -- "/java-confidentialcomputing/google-.*/src" -- "/java-confidentialcomputing/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/confidentialcomputing/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-confidentialcomputing/$1/proto-google-cloud-confidentialcomputing-$1/src" -- source: "/google/cloud/confidentialcomputing/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-confidentialcomputing/$1/grpc-google-cloud-confidentialcomputing-$1/src" -- source: "/google/cloud/confidentialcomputing/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-confidentialcomputing/$1/google-cloud-confidentialcomputing/src" -- source: "/google/cloud/confidentialcomputing/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-confidentialcomputing/$1/samples/snippets/generated" - - -api-name: confidentialcomputing \ No newline at end of file diff --git a/java-configdelivery/.OwlBot-hermetic.yaml b/java-configdelivery/.OwlBot-hermetic.yaml deleted file mode 100644 index d68c796dde71..000000000000 --- a/java-configdelivery/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-configdelivery/grpc-google-.*/src" -- "/java-configdelivery/proto-google-.*/src" -- "/java-configdelivery/google-.*/src" -- "/java-configdelivery/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/configdelivery/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-configdelivery/$1/proto-google-cloud-configdelivery-$1/src" -- source: "/google/cloud/configdelivery/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-configdelivery/$1/grpc-google-cloud-configdelivery-$1/src" -- source: "/google/cloud/configdelivery/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-configdelivery/$1/google-cloud-configdelivery/src" -- source: "/google/cloud/configdelivery/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-configdelivery/$1/samples/snippets/generated" - -api-name: configdelivery \ No newline at end of file diff --git a/java-connectgateway/.OwlBot-hermetic.yaml b/java-connectgateway/.OwlBot-hermetic.yaml deleted file mode 100644 index d4cd3aa8603d..000000000000 --- a/java-connectgateway/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-connectgateway/proto-google-.*/src" -- "/java-connectgateway/google-.*/src" -- "/java-connectgateway/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/gkeconnect/gateway/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-connectgateway/$1/proto-google-cloud-connectgateway-$1/src" -- source: "/google/cloud/gkeconnect/gateway/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-connectgateway/$1/google-cloud-connectgateway/src" -- source: "/google/cloud/gkeconnect/gateway/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-connectgateway/$1/samples/snippets/generated" - -api-name: connectgateway \ No newline at end of file diff --git a/java-contact-center-insights/.OwlBot-hermetic.yaml b/java-contact-center-insights/.OwlBot-hermetic.yaml deleted file mode 100644 index edf370f767b7..000000000000 --- a/java-contact-center-insights/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-contact-center-insights/grpc-google-.*/src" -- "/java-contact-center-insights/proto-google-.*/src" -- "/java-contact-center-insights/google-.*/src" -- "/java-contact-center-insights/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/contactcenterinsights/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-contact-center-insights/$1/proto-google-cloud-contact-center-insights-$1/src" -- source: "/google/cloud/contactcenterinsights/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-contact-center-insights/$1/grpc-google-cloud-contact-center-insights-$1/src" -- source: "/google/cloud/contactcenterinsights/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-contact-center-insights/$1/google-cloud-contact-center-insights/src" -- source: "/google/cloud/contactcenterinsights/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-contact-center-insights/$1/samples/snippets/generated" - -api-name: contactcenterinsights diff --git a/java-container/.OwlBot-hermetic.yaml b/java-container/.OwlBot-hermetic.yaml deleted file mode 100644 index 8af14e8c8e41..000000000000 --- a/java-container/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-container/grpc-google-.*/src" -- "/java-container/proto-google-.*/src" -- "/java-container/google-.*/src" -- "/java-container/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-container/src/main/java/com/google/cloud/container/v1/SampleApp.java" -- "/.*google-cloud-container/src/test/java/com/google/cloud/container/v1/it/ITSystemTest.java" -- "/.*google-cloud-container/src/test/java/com/google/cloud/container/v1/it/Util.java" - -deep-copy-regex: -- source: "/google/container/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-container/$1/proto-google-cloud-container-$1/src" -- source: "/google/container/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-container/$1/grpc-google-cloud-container-$1/src" -- source: "/google/container/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-container/$1/google-cloud-container/src" -- source: "/google/container/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-container/$1/samples/snippets/generated" - -api-name: container diff --git a/java-containeranalysis/.OwlBot-hermetic.yaml b/java-containeranalysis/.OwlBot-hermetic.yaml deleted file mode 100644 index 8414051180a3..000000000000 --- a/java-containeranalysis/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-containeranalysis/grpc-google-cloud-containeranalysis-v1/src" -- "/java-containeranalysis/google-cloud-containeranalysis/src/.*/java/com/google/cloud/devtools/containeranalysis/v1" -- "/java-containeranalysis/samples/snippets/generated" -- "/java-containeranalysis/proto-google-*/src" -# TODO: remove resource name classes in next major update - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-containeranalysis/src/main/java/com/google/cloud/devtools/containeranalysis/v1/GrafeasUtils.java" -- "/.*google-cloud-containeranalysis/src/test/java/com/google/cloud/devtools/containeranalysis/v1/ITGrafeasInteropTest.java" - -deep-copy-regex: -- source: "/google/devtools/containeranalysis/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-containeranalysis/$1/proto-google-cloud-containeranalysis-$1/src" -- source: "/google/devtools/containeranalysis/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-containeranalysis/$1/grpc-google-cloud-containeranalysis-$1/src" -- source: "/google/devtools/containeranalysis/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-containeranalysis/$1/google-cloud-containeranalysis/src" - -api-name: containeranalysis diff --git a/java-contentwarehouse/.OwlBot-hermetic.yaml b/java-contentwarehouse/.OwlBot-hermetic.yaml deleted file mode 100644 index 2d22d56f04b7..000000000000 --- a/java-contentwarehouse/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-contentwarehouse/grpc-google-.*/src" -- "/java-contentwarehouse/proto-google-.*/src" -- "/java-contentwarehouse/google-.*/src" -- "/java-contentwarehouse/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/contentwarehouse/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-contentwarehouse/$1/proto-google-cloud-contentwarehouse-$1/src" -- source: "/google/cloud/contentwarehouse/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-contentwarehouse/$1/grpc-google-cloud-contentwarehouse-$1/src" -- source: "/google/cloud/contentwarehouse/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-contentwarehouse/$1/google-cloud-contentwarehouse/src" -- source: "/google/cloud/contentwarehouse/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-contentwarehouse/$1/samples/snippets/generated" diff --git a/java-data-fusion/.OwlBot-hermetic.yaml b/java-data-fusion/.OwlBot-hermetic.yaml deleted file mode 100644 index c841cc730970..000000000000 --- a/java-data-fusion/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-data-fusion/samples/snippets/generated" -- "/java-data-fusion/grpc-google-.*/src" -- "/java-data-fusion/proto-google-.*/src" -- "/java-data-fusion/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/datafusion/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-data-fusion/$1/proto-google-cloud-data-fusion-$1/src" -- source: "/google/cloud/datafusion/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-data-fusion/$1/grpc-google-cloud-data-fusion-$1/src" -- source: "/google/cloud/datafusion/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-data-fusion/$1/google-cloud-data-fusion/src" -- source: "/google/cloud/datafusion/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-data-fusion/$1/samples/snippets/generated" - -api-name: datafusion diff --git a/java-databasecenter/.OwlBot-hermetic.yaml b/java-databasecenter/.OwlBot-hermetic.yaml deleted file mode 100644 index bba598c45114..000000000000 --- a/java-databasecenter/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-databasecenter/grpc-google-.*/src" -- "/java-databasecenter/proto-google-.*/src" -- "/java-databasecenter/google-.*/src" -- "/java-databasecenter/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/databasecenter/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-databasecenter/$1/proto-google-cloud-databasecenter-$1/src" -- source: "/google/cloud/databasecenter/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-databasecenter/$1/grpc-google-cloud-databasecenter-$1/src" -- source: "/google/cloud/databasecenter/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-databasecenter/$1/google-cloud-databasecenter/src" -- source: "/google/cloud/databasecenter/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-databasecenter/$1/samples/snippets/generated" - -api-name: databasecenter \ No newline at end of file diff --git a/java-datacatalog/.OwlBot-hermetic.yaml b/java-datacatalog/.OwlBot-hermetic.yaml deleted file mode 100644 index 43aa06b891c7..000000000000 --- a/java-datacatalog/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-datacatalog/samples/snippets/generated" -- "/java-datacatalog/grpc-google-.*/src" -- "/java-datacatalog/proto-google-.*/src" -- "/java-datacatalog/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-datacatalog/src/test/java/com/google/cloud/datacatalog/v1beta1/it/ITSystemTest.java" -- "/.*proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/FieldName.java" - -deep-copy-regex: -- source: "/google/cloud/datacatalog/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-datacatalog/$1/proto-google-cloud-datacatalog-$1/src" -- source: "/google/cloud/datacatalog/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-datacatalog/$1/grpc-google-cloud-datacatalog-$1/src" -- source: "/google/cloud/datacatalog/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-datacatalog/$1/google-cloud-datacatalog/src" -- source: "/google/cloud/datacatalog/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-datacatalog/$1/samples/snippets/generated" - -api-name: datacatalog diff --git a/java-dataflow/.OwlBot-hermetic.yaml b/java-dataflow/.OwlBot-hermetic.yaml deleted file mode 100644 index c33fd0a03d96..000000000000 --- a/java-dataflow/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dataflow/grpc-google-.*/src" -- "/java-dataflow/proto-google-.*/src" -- "/java-dataflow/google-.*/src" -- "/java-dataflow/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/dataflow/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dataflow/$1/proto-google-cloud-dataflow-$1/src" -- source: "/google/dataflow/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dataflow/$1/grpc-google-cloud-dataflow-$1/src" -- source: "/google/dataflow/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dataflow/$1/google-cloud-dataflow/src" -- source: "/google/dataflow/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dataflow/$1/samples/snippets/generated" - -api-name: dataflow diff --git a/java-dataform/.OwlBot-hermetic.yaml b/java-dataform/.OwlBot-hermetic.yaml deleted file mode 100644 index 34672662be20..000000000000 --- a/java-dataform/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dataform/grpc-google-.*/src" -- "/java-dataform/proto-google-.*/src" -- "/java-dataform/google-.*/src" -- "/java-dataform/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/dataform/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dataform/$1/proto-google-cloud-dataform-$1/src" -- source: "/google/cloud/dataform/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dataform/$1/grpc-google-cloud-dataform-$1/src" -- source: "/google/cloud/dataform/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dataform/$1/google-cloud-dataform/src" -- source: "/google/cloud/dataform/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dataform/$1/samples/snippets/generated" - -api-name: dataform diff --git a/java-datalabeling/.OwlBot-hermetic.yaml b/java-datalabeling/.OwlBot-hermetic.yaml deleted file mode 100644 index 43f523395142..000000000000 --- a/java-datalabeling/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-datalabeling/samples/snippets/generated" -- "/java-datalabeling/grpc-google-.*/src" -- "/java-datalabeling/proto-google-.*/src" -- "/java-datalabeling/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-datalabeling/src/test/java/com/google/cloud/datalabeling/v1beta1/it/ITSystemTest.java" -- "/.*google-cloud-datalabeling/src/test/java/com/google/cloud/datalabeling/it/ITSystemTest.java" - - -deep-copy-regex: -- source: "/google/cloud/datalabeling/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-datalabeling/$1/proto-google-cloud-datalabeling-$1/src" -- source: "/google/cloud/datalabeling/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-datalabeling/$1/grpc-google-cloud-datalabeling-$1/src" -- source: "/google/cloud/datalabeling/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-datalabeling/$1/google-cloud-datalabeling/src" -- source: "/google/cloud/datalabeling/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-datalabeling/$1/samples/snippets/generated" - -api-name: datalabeling diff --git a/java-datalineage/.OwlBot-hermetic.yaml b/java-datalineage/.OwlBot-hermetic.yaml deleted file mode 100644 index c4631c60d9fe..000000000000 --- a/java-datalineage/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-datalineage/grpc-google-.*/src" -- "/java-datalineage/proto-google-.*/src" -- "/java-datalineage/google-.*/src" -- "/java-datalineage/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/datacatalog/lineage/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-datalineage/$1/proto-google-cloud-datalineage-$1/src" -- source: "/google/cloud/datacatalog/lineage/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-datalineage/$1/grpc-google-cloud-datalineage-$1/src" -- source: "/google/cloud/datacatalog/lineage/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-datalineage/$1/google-cloud-datalineage/src" -- source: "/google/cloud/datacatalog/lineage/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-datalineage/$1/samples/snippets/generated" -# configmanagement -- source: "/google/cloud/datacatalog/lineage/configmanagement/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-datalineage/$1/proto-google-cloud-datalineage-$1/src" -- source: "/google/cloud/datacatalog/lineage/configmanagement/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-datalineage/$1/grpc-google-cloud-datalineage-$1/src" -- source: "/google/cloud/datacatalog/lineage/configmanagement/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-datalineage/$1/google-cloud-datalineage/src" -- source: "/google/cloud/datacatalog/lineage/configmanagement/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-datalineage/$1/samples/snippets/generated" - -api-name: datalineage \ No newline at end of file diff --git a/java-datamanager/.OwlBot-hermetic.yaml b/java-datamanager/.OwlBot-hermetic.yaml deleted file mode 100644 index 0973cb3788d4..000000000000 --- a/java-datamanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-datamanager/grpc-google-.*/src" -- "/java-datamanager/proto-google-.*/src" -- "/java-datamanager/data-manager.*/src" -- "/java-datamanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*data-manager.*/src/main/java/.*/stub/Version.java" -- "/.*data-manager.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/ads/datamanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-datamanager/$1/proto-data-manager-$1/src" -- source: "/google/ads/datamanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-datamanager/$1/grpc-data-manager-$1/src" -- source: "/google/ads/datamanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-datamanager/$1/data-manager/src" -- source: "/google/ads/datamanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-datamanager/$1/samples/snippets/generated" - -api-name: datamanager \ No newline at end of file diff --git a/java-dataplex/.OwlBot-hermetic.yaml b/java-dataplex/.OwlBot-hermetic.yaml deleted file mode 100644 index b868b48c0cd4..000000000000 --- a/java-dataplex/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dataplex/samples/snippets/generated" -- "/java-dataplex/grpc-google-.*/src" -- "/java-dataplex/proto-google-.*/src" -- "/java-dataplex/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/dataplex/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dataplex/$1/proto-google-cloud-dataplex-$1/src" -- source: "/google/cloud/dataplex/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dataplex/$1/grpc-google-cloud-dataplex-$1/src" -- source: "/google/cloud/dataplex/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dataplex/$1/google-cloud-dataplex/src" -- source: "/google/cloud/dataplex/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dataplex/$1/samples/snippets/generated" - -api-name: dataplex diff --git a/java-dataproc-metastore/.OwlBot-hermetic.yaml b/java-dataproc-metastore/.OwlBot-hermetic.yaml deleted file mode 100644 index f682fd5ad824..000000000000 --- a/java-dataproc-metastore/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dataproc-metastore/grpc-google-.*/src" -- "/java-dataproc-metastore/proto-google-.*/src" -- "/java-dataproc-metastore/google-.*/src" -- "/java-dataproc-metastore/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/metastore/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dataproc-metastore/$1/proto-google-cloud-dataproc-metastore-$1/src" -- source: "/google/cloud/metastore/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dataproc-metastore/$1/grpc-google-cloud-dataproc-metastore-$1/src" -- source: "/google/cloud/metastore/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dataproc-metastore/$1/google-cloud-dataproc-metastore/src" -- source: "/google/cloud/metastore/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dataproc-metastore/$1/samples/snippets/generated" - -api-name: metastore diff --git a/java-dataproc/.OwlBot-hermetic.yaml b/java-dataproc/.OwlBot-hermetic.yaml deleted file mode 100644 index 0e36cb2965f5..000000000000 --- a/java-dataproc/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dataproc/samples/snippets/generated" -- "/java-dataproc/grpc-google-.*/src" -- "/java-dataproc/proto-google-.*/src" -- "/java-dataproc/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-dataproc/src/test/java/com/google/cloud/dataproc/v.*/it/ITSystemTest.java" - -deep-copy-regex: -- source: "/google/cloud/dataproc/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dataproc/$1/proto-google-cloud-dataproc-$1/src" -- source: "/google/cloud/dataproc/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dataproc/$1/grpc-google-cloud-dataproc-$1/src" -- source: "/google/cloud/dataproc/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dataproc/$1/google-cloud-dataproc/src" -- source: "/google/cloud/dataproc/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dataproc/$1/samples/snippets/generated" - -api-name: dataproc diff --git a/java-datastore/.OwlBot-hermetic.yaml b/java-datastore/.OwlBot-hermetic.yaml deleted file mode 100644 index dce59c74ec54..000000000000 --- a/java-datastore/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-remove-regex: -- /java-datastore/proto-google-.*/src -deep-preserve-regex: -- /.*google-.*/src/main/java/.*/stub/Version.java -- /.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java -deep-copy-regex: -- source: /google/datastore/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-datastore/$1/proto-google-cloud-datastore-$1/src -- source: /google/datastore/admin/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-datastore/$1/proto-google-cloud-datastore-admin-$1/src -- source: /google/datastore/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-datastore/$1/grpc-google-cloud-datastore-$1/src -- source: /google/datastore/admin/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-datastore/$1/grpc-google-cloud-datastore-admin-$1/src -- source: /google/datastore/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-datastore/$1/google-cloud-datastore/src -- source: /google/datastore/admin/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-datastore/$1/google-cloud-datastore/src diff --git a/java-datastream/.OwlBot-hermetic.yaml b/java-datastream/.OwlBot-hermetic.yaml deleted file mode 100644 index 8cc68058f04d..000000000000 --- a/java-datastream/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-datastream/samples/snippets/generated" -- "/java-datastream/grpc-google-.*/src" -- "/java-datastream/proto-google-.*/src" -- "/java-datastream/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/datastream/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-datastream/$1/proto-google-cloud-datastream-$1/src" -- source: "/google/cloud/datastream/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-datastream/$1/grpc-google-cloud-datastream-$1/src" -- source: "/google/cloud/datastream/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-datastream/$1/google-cloud-datastream/src" -- source: "/google/cloud/datastream/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-datastream/$1/samples/snippets/generated" - -api-name: datastream diff --git a/java-deploy/.OwlBot-hermetic.yaml b/java-deploy/.OwlBot-hermetic.yaml deleted file mode 100644 index 114057365364..000000000000 --- a/java-deploy/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-deploy/samples/snippets/generated" -- "/java-deploy/grpc-google-.*/src" -- "/java-deploy/proto-google-.*/src" -- "/java-deploy/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/deploy/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-deploy/$1/proto-google-cloud-deploy-$1/src" -- source: "/google/cloud/deploy/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-deploy/$1/grpc-google-cloud-deploy-$1/src" -- source: "/google/cloud/deploy/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-deploy/$1/google-cloud-deploy/src" -- source: "/google/cloud/deploy/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-deploy/$1/samples/snippets/generated" - -api-name: clouddeploy diff --git a/java-developerconnect/.OwlBot-hermetic.yaml b/java-developerconnect/.OwlBot-hermetic.yaml deleted file mode 100644 index d1e9cb274753..000000000000 --- a/java-developerconnect/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-developerconnect/grpc-google-.*/src" -- "/java-developerconnect/proto-google-.*/src" -- "/java-developerconnect/google-.*/src" -- "/java-developerconnect/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/developerconnect/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-developerconnect/$1/proto-google-cloud-developerconnect-$1/src" -- source: "/google/cloud/developerconnect/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-developerconnect/$1/grpc-google-cloud-developerconnect-$1/src" -- source: "/google/cloud/developerconnect/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-developerconnect/$1/google-cloud-developerconnect/src" -- source: "/google/cloud/developerconnect/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-developerconnect/$1/samples/snippets/generated" - -api-name: developerconnect \ No newline at end of file diff --git a/java-developerknowledge/.OwlBot-hermetic.yaml b/java-developerknowledge/.OwlBot-hermetic.yaml deleted file mode 100644 index 453bf6e1b842..000000000000 --- a/java-developerknowledge/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-developerknowledge/grpc-google-.*/src" -- "/java-developerknowledge/proto-google-.*/src" -- "/java-developerknowledge/google-.*/src" -- "/java-developerknowledge/samples/snippets/generated" - -deep-preserve-regex: -- "/java-developerknowledge/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/developers/knowledge/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-developerknowledge/$1/proto-google-cloud-developer-knowledge-$1/src" -- source: "/google/developers/knowledge/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-developerknowledge/$1/grpc-google-cloud-developer-knowledge-$1/src" -- source: "/google/developers/knowledge/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-developerknowledge/$1/google-cloud-developer-knowledge/src" -- source: "/google/developers/knowledge/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-developerknowledge/$1/samples/snippets/generated" - -api-name: developerknowledge \ No newline at end of file diff --git a/java-devicestreaming/.OwlBot-hermetic.yaml b/java-devicestreaming/.OwlBot-hermetic.yaml deleted file mode 100644 index 562181c3d889..000000000000 --- a/java-devicestreaming/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-devicestreaming/grpc-google-.*/src" -- "/java-devicestreaming/proto-google-.*/src" -- "/java-devicestreaming/google-.*/src" -- "/java-devicestreaming/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/devicestreaming/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-devicestreaming/$1/proto-google-cloud-devicestreaming-$1/src" -- source: "/google/cloud/devicestreaming/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-devicestreaming/$1/grpc-google-cloud-devicestreaming-$1/src" -- source: "/google/cloud/devicestreaming/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-devicestreaming/$1/google-cloud-devicestreaming/src" -- source: "/google/cloud/devicestreaming/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-devicestreaming/$1/samples/snippets/generated" - -api-name: devicestreaming \ No newline at end of file diff --git a/java-dialogflow-cx/.OwlBot-hermetic.yaml b/java-dialogflow-cx/.OwlBot-hermetic.yaml deleted file mode 100644 index ed47b4ae48a3..000000000000 --- a/java-dialogflow-cx/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dialogflow-cx/grpc-google-.*/src" -- "/java-dialogflow-cx/proto-google-.*/src" -- "/java-dialogflow-cx/google-.*/src" -- "/java-dialogflow-cx/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-dialogflow-cx/src/test/java/com/google/cloud/dialogflow/cx/v.*/it/ITSystemTest.java" - -deep-copy-regex: -- source: "/google/cloud/dialogflow/cx/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dialogflow-cx/$1/proto-google-cloud-dialogflow-cx-$1/src" -- source: "/google/cloud/dialogflow/cx/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dialogflow-cx/$1/grpc-google-cloud-dialogflow-cx-$1/src" -- source: "/google/cloud/dialogflow/cx/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dialogflow-cx/$1/google-cloud-dialogflow-cx/src" -- source: "/google/cloud/dialogflow/cx/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dialogflow-cx/$1/samples/snippets/generated" - -api-name: dialogflow-cx diff --git a/java-dialogflow/.OwlBot-hermetic.yaml b/java-dialogflow/.OwlBot-hermetic.yaml deleted file mode 100644 index 6760f0c2a39b..000000000000 --- a/java-dialogflow/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dialogflow/samples/snippets/generated" -- "/java-dialogflow/grpc-google-.*/src" -- "/java-dialogflow/proto-google-.*/src" -- "/java-dialogflow/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-dialogflow/src/test/java/com/google/cloud/dialogflow/v2/ContextManagementSmokeTest.java" -- "/.*proto-google-cloud-dialogflow-v2/src/main/java/com/google/cloud/dialogflow/v2/ConversationModelName.java" -- "/.*proto-google-cloud-dialogflow-v2/src/main/java/com/google/cloud/dialogflow/v2/ProjectAgentName.java" -- "/.*proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationModelName.java" -- "/.*proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/EnvironmentContextName.java" -- "/.*proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/EnvironmentSessionEntityTypeName.java" -- "/.*proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/EnvironmentSessionName.java" -- "/.*proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/ProjectAgentName.java" - - -deep-copy-regex: -- source: "/google/cloud/dialogflow/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dialogflow/$1/proto-google-cloud-dialogflow-$1/src" -- source: "/google/cloud/dialogflow/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dialogflow/$1/grpc-google-cloud-dialogflow-$1/src" -- source: "/google/cloud/dialogflow/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dialogflow/$1/google-cloud-dialogflow/src" -- source: "/google/cloud/dialogflow/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dialogflow/$1/samples/snippets/generated" - -api-name: dialogflow diff --git a/java-discoveryengine/.OwlBot-hermetic.yaml b/java-discoveryengine/.OwlBot-hermetic.yaml deleted file mode 100644 index 05388100d4f4..000000000000 --- a/java-discoveryengine/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-discoveryengine/grpc-google-.*/src" -- "/java-discoveryengine/proto-google-.*/src" -- "/java-discoveryengine/google-.*/src" -- "/java-discoveryengine/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/discoveryengine/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-discoveryengine/$1/proto-google-cloud-discoveryengine-$1/src" -- source: "/google/cloud/discoveryengine/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-discoveryengine/$1/grpc-google-cloud-discoveryengine-$1/src" -- source: "/google/cloud/discoveryengine/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-discoveryengine/$1/google-cloud-discoveryengine/src" -- source: "/google/cloud/discoveryengine/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-discoveryengine/$1/samples/snippets/generated" - -api-name: discoveryengine diff --git a/java-distributedcloudedge/.OwlBot-hermetic.yaml b/java-distributedcloudedge/.OwlBot-hermetic.yaml deleted file mode 100644 index 9f1ab595cbea..000000000000 --- a/java-distributedcloudedge/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-distributedcloudedge/grpc-google-.*/src" -- "/java-distributedcloudedge/proto-google-.*/src" -- "/java-distributedcloudedge/google-.*/src" -- "/java-distributedcloudedge/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/edgecontainer/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-distributedcloudedge/$1/proto-google-cloud-distributedcloudedge-$1/src" -- source: "/google/cloud/edgecontainer/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-distributedcloudedge/$1/grpc-google-cloud-distributedcloudedge-$1/src" -- source: "/google/cloud/edgecontainer/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-distributedcloudedge/$1/google-cloud-distributedcloudedge/src" -- source: "/google/cloud/edgecontainer/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-distributedcloudedge/$1/samples/snippets/generated" - -api-name: distributedcloudedge diff --git a/java-dlp/.OwlBot-hermetic.yaml b/java-dlp/.OwlBot-hermetic.yaml deleted file mode 100644 index bdf0a59ff171..000000000000 --- a/java-dlp/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dlp/grpc-google-.*/src" -- "/java-dlp/proto-google-.*/src" -- "/java-dlp/google-.*/src" -- "/java-dlp/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/DeidentifyTemplateNames.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/InspectFindingName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/InspectTemplateNames.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/OrganizationDeidentifyTemplateName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/OrganizationInspectTemplateName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/OrganizationStoredInfoTypeName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ProjectDeidentifyTemplateName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ProjectInspectTemplateName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ProjectJobTriggerName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ProjectStoredInfoTypeName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/StoredInfoTypeNames.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/UntypedDeidentifyTemplateName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/UntypedInspectTemplateName.java" -- "/.*proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/UntypedStoredInfoTypeName.java" - -deep-copy-regex: -- source: "/google/privacy/dlp/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dlp/$1/proto-google-cloud-dlp-$1/src" -- source: "/google/privacy/dlp/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dlp/$1/grpc-google-cloud-dlp-$1/src" -- source: "/google/privacy/dlp/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dlp/$1/google-cloud-dlp/src" -- source: "/google/privacy/dlp/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dlp/$1/samples/snippets/generated" - -api-name: dlp diff --git a/java-dms/.OwlBot-hermetic.yaml b/java-dms/.OwlBot-hermetic.yaml deleted file mode 100644 index ba833f573253..000000000000 --- a/java-dms/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-dms/samples/snippets/generated" -- "/java-dms/grpc-google-.*/src" -- "/java-dms/proto-google-.*/src" -- "/java-dms/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/clouddms/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-dms/$1/proto-google-cloud-dms-$1/src" -- source: "/google/cloud/clouddms/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-dms/$1/grpc-google-cloud-dms-$1/src" -- source: "/google/cloud/clouddms/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-dms/$1/google-cloud-dms/src" -- source: "/google/cloud/clouddms/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-dms/$1/samples/snippets/generated" - -api-name: datamigration diff --git a/java-dns/.OwlBot-hermetic.yaml b/java-dns/.OwlBot-hermetic.yaml deleted file mode 100644 index fea1c35b9cc3..000000000000 --- a/java-dns/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -api-name: dns -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - diff --git a/java-document-ai/.OwlBot-hermetic.yaml b/java-document-ai/.OwlBot-hermetic.yaml deleted file mode 100644 index 8959e8b04037..000000000000 --- a/java-document-ai/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-document-ai/samples/snippets/generated" -- "/java-document-ai/grpc-google-.*/src" -- "/java-document-ai/proto-google-.*/src" -- "/java-document-ai/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/documentai/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-document-ai/$1/proto-google-cloud-document-ai-$1/src" -- source: "/google/cloud/documentai/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-document-ai/$1/grpc-google-cloud-document-ai-$1/src" -- source: "/google/cloud/documentai/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-document-ai/$1/google-cloud-document-ai/src" -- source: "/google/cloud/documentai/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-document-ai/$1/samples/snippets/generated" - -api-name: documentai diff --git a/java-domains/.OwlBot-hermetic.yaml b/java-domains/.OwlBot-hermetic.yaml deleted file mode 100644 index 9a459f552625..000000000000 --- a/java-domains/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-domains/samples/snippets/generated" -- "/java-domains/grpc-google-.*/src" -- "/java-domains/proto-google-.*/src" -- "/java-domains/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/domains/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-domains/$1/proto-google-cloud-domains-$1/src" -- source: "/google/cloud/domains/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-domains/$1/grpc-google-cloud-domains-$1/src" -- source: "/google/cloud/domains/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-domains/$1/google-cloud-domains/src" -- source: "/google/cloud/domains/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-domains/$1/samples/snippets/generated" - -api-name: domains diff --git a/java-edgenetwork/.OwlBot-hermetic.yaml b/java-edgenetwork/.OwlBot-hermetic.yaml deleted file mode 100644 index 715992af0f10..000000000000 --- a/java-edgenetwork/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-edgenetwork/grpc-google-.*/src" -- "/java-edgenetwork/proto-google-.*/src" -- "/java-edgenetwork/google-.*/src" -- "/java-edgenetwork/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/edgenetwork/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-edgenetwork/$1/proto-google-cloud-edgenetwork-$1/src" -- source: "/google/cloud/edgenetwork/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-edgenetwork/$1/grpc-google-cloud-edgenetwork-$1/src" -- source: "/google/cloud/edgenetwork/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-edgenetwork/$1/google-cloud-edgenetwork/src" -- source: "/google/cloud/edgenetwork/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-edgenetwork/$1/samples/snippets/generated" - - -api-name: edgenetwork \ No newline at end of file diff --git a/java-enterpriseknowledgegraph/.OwlBot-hermetic.yaml b/java-enterpriseknowledgegraph/.OwlBot-hermetic.yaml deleted file mode 100644 index 6dee08352840..000000000000 --- a/java-enterpriseknowledgegraph/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-enterpriseknowledgegraph/grpc-google-.*/src" -- "/java-enterpriseknowledgegraph/proto-google-.*/src" -- "/java-enterpriseknowledgegraph/google-.*/src" -- "/java-enterpriseknowledgegraph/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/enterpriseknowledgegraph/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-enterpriseknowledgegraph/$1/proto-google-cloud-enterpriseknowledgegraph-$1/src" -- source: "/google/cloud/enterpriseknowledgegraph/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-enterpriseknowledgegraph/$1/grpc-google-cloud-enterpriseknowledgegraph-$1/src" -- source: "/google/cloud/enterpriseknowledgegraph/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-enterpriseknowledgegraph/$1/google-cloud-enterpriseknowledgegraph/src" -- source: "/google/cloud/enterpriseknowledgegraph/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-enterpriseknowledgegraph/$1/samples/snippets/generated" - -api-name: enterpriseknowledgegraph diff --git a/java-errorreporting/.OwlBot-hermetic.yaml b/java-errorreporting/.OwlBot-hermetic.yaml deleted file mode 100644 index a1e48c565f94..000000000000 --- a/java-errorreporting/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-errorreporting/grpc-google-.*/src" -- "/java-errorreporting/proto-google-.*/src" -- "/java-errorreporting/google-.*/src" -- "/java-errorreporting/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-errorreporting/src/test/java/com/google/devtools/clouderrorreporting/v1beta1/ITSystemTest.java" -- "/.*proto-google-cloud-error-reporting-v1beta1/src/main/java/com/google/devtools/clouderrorreporting/v1beta1/GroupName.java" - -deep-copy-regex: -- source: "/google/devtools/clouderrorreporting/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-errorreporting/$1/proto-google-cloud-error-reporting-$1/src" -- source: "/google/devtools/clouderrorreporting/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-errorreporting/$1/grpc-google-cloud-error-reporting-$1/src" -- source: "/google/devtools/clouderrorreporting/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-errorreporting/$1/google-cloud-errorreporting/src" -- source: "/google/devtools/clouderrorreporting/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-errorreporting/$1/samples/snippets/generated" - -api-name: clouderrorreporting diff --git a/java-essential-contacts/.OwlBot-hermetic.yaml b/java-essential-contacts/.OwlBot-hermetic.yaml deleted file mode 100644 index 680559efcaa3..000000000000 --- a/java-essential-contacts/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-essential-contacts/samples/snippets/generated" -- "/java-essential-contacts/grpc-google-.*/src" -- "/java-essential-contacts/proto-google-.*/src" -- "/java-essential-contacts/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/essentialcontacts/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-essential-contacts/$1/proto-google-cloud-essential-contacts-$1/src" -- source: "/google/cloud/essentialcontacts/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-essential-contacts/$1/grpc-google-cloud-essential-contacts-$1/src" -- source: "/google/cloud/essentialcontacts/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-essential-contacts/$1/google-cloud-essential-contacts/src" -- source: "/google/cloud/essentialcontacts/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-essential-contacts/$1/samples/snippets/generated" - -api-name: essentialcontacts diff --git a/java-eventarc-publishing/.OwlBot-hermetic.yaml b/java-eventarc-publishing/.OwlBot-hermetic.yaml deleted file mode 100644 index 3a4e887b35d8..000000000000 --- a/java-eventarc-publishing/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-eventarc-publishing/grpc-google-.*/src" -- "/java-eventarc-publishing/proto-google-.*/src" -- "/java-eventarc-publishing/google-.*/src" -- "/java-eventarc-publishing/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/eventarc/publishing/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-eventarc-publishing/$1/proto-google-cloud-eventarc-publishing-$1/src" -- source: "/google/cloud/eventarc/publishing/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-eventarc-publishing/$1/grpc-google-cloud-eventarc-publishing-$1/src" -- source: "/google/cloud/eventarc/publishing/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-eventarc-publishing/$1/google-cloud-eventarc-publishing/src" -- source: "/google/cloud/eventarc/publishing/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-eventarc-publishing/$1/samples/snippets/generated" - -api-name: eventarcpublishing diff --git a/java-eventarc/.OwlBot-hermetic.yaml b/java-eventarc/.OwlBot-hermetic.yaml deleted file mode 100644 index c8218dd34cad..000000000000 --- a/java-eventarc/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-eventarc/samples/snippets/generated" -- "/java-eventarc/grpc-google-.*/src" -- "/java-eventarc/proto-google-.*/src" -- "/java-eventarc/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/eventarc/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-eventarc/$1/proto-google-cloud-eventarc-$1/src" -- source: "/google/cloud/eventarc/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-eventarc/$1/grpc-google-cloud-eventarc-$1/src" -- source: "/google/cloud/eventarc/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-eventarc/$1/google-cloud-eventarc/src" -- source: "/google/cloud/eventarc/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-eventarc/$1/samples/snippets/generated" - -api-name: eventarc diff --git a/java-filestore/.OwlBot-hermetic.yaml b/java-filestore/.OwlBot-hermetic.yaml deleted file mode 100644 index ce2daa3e6763..000000000000 --- a/java-filestore/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-filestore/samples/snippets/generated" -- "/java-filestore/grpc-google-.*/src" -- "/java-filestore/proto-google-.*/src" -- "/java-filestore/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/filestore/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-filestore/$1/proto-google-cloud-filestore-$1/src" -- source: "/google/cloud/filestore/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-filestore/$1/grpc-google-cloud-filestore-$1/src" -- source: "/google/cloud/filestore/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-filestore/$1/google-cloud-filestore/src" -- source: "/google/cloud/filestore/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-filestore/$1/samples/snippets/generated" - -api-name: file diff --git a/java-financialservices/.OwlBot-hermetic.yaml b/java-financialservices/.OwlBot-hermetic.yaml deleted file mode 100644 index bd926e264c52..000000000000 --- a/java-financialservices/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-financialservices/grpc-google-.*/src" -- "/java-financialservices/proto-google-.*/src" -- "/java-financialservices/google-.*/src" -- "/java-financialservices/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/financialservices/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-financialservices/$1/proto-google-cloud-financialservices-$1/src" -- source: "/google/cloud/financialservices/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-financialservices/$1/grpc-google-cloud-financialservices-$1/src" -- source: "/google/cloud/financialservices/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-financialservices/$1/google-cloud-financialservices/src" -- source: "/google/cloud/financialservices/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-financialservices/$1/samples/snippets/generated" - -api-name: financialservices \ No newline at end of file diff --git a/java-firestore/.OwlBot-hermetic.yaml b/java-firestore/.OwlBot-hermetic.yaml deleted file mode 100644 index 93ff4775c964..000000000000 --- a/java-firestore/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,29 +0,0 @@ -deep-remove-regex: -- /java-firestore/grpc-google-.*/src -- /java-firestore/proto-google-.*/src -- /java-firestore/google-cloud-firestore/src/.*/java/com/google/cloud/firestore/v1/ -- /java-firestore/google-cloud-firestore-admin/src -deep-preserve-regex: -- /java-firestore/.*google-.*/src/main/java/.*/stub/(Version|FirestoreAdminVersion).java -- /java-firestore/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java -- /java-firestore/proto-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/DocumentPathName.java -- /java-firestore/proto-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/AnyPathName.java -- /java-firestore/proto-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/DatabaseRootName.java -- /java-firestore/proto-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/DocumentRootName.java -- /java-firestore/proto-google-cloud-firestore-admin-v1/src/main/java/com/google/firestore/admin/v1/ParentName.java -- /java-firestore/proto-google-cloud-firestore-v1/src/main/proto/firestore -deep-copy-regex: -- source: /google/firestore/(v\d)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-firestore/$1/proto-google-cloud-firestore-$1/src -- source: /google/firestore/(v\d)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-firestore/$1/grpc-google-cloud-firestore-$1/src -- source: /google/firestore/(v\d)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-firestore/$1/google-cloud-firestore/src -- source: /google/firestore/admin/(v\d)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-firestore/$1/proto-google-cloud-firestore-admin-$1/src -- source: /google/firestore/admin/(v\d)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-firestore/$1/grpc-google-cloud-firestore-admin-$1/src -- source: /google/firestore/admin/(v\d)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-firestore/$1/google-cloud-firestore-admin/src -- source: /google/firestore/bundle/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-firestore/v1/proto-google-cloud-firestore-bundle-v1/src diff --git a/java-functions/.OwlBot-hermetic.yaml b/java-functions/.OwlBot-hermetic.yaml deleted file mode 100644 index 81a03b0007ca..000000000000 --- a/java-functions/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-functions/samples/snippets/generated" -- "/java-functions/grpc-google-.*/src" -- "/java-functions/proto-google-.*/src" -- "/java-functions/google-.*/src" - - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/functions/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-functions/$1/proto-google-cloud-functions-$1/src" -- source: "/google/cloud/functions/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-functions/$1/grpc-google-cloud-functions-$1/src" -- source: "/google/cloud/functions/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-functions/$1/google-cloud-functions/src" -- source: "/google/cloud/functions/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-functions/$1/samples/snippets/generated" - -api-name: cloudfunctions diff --git a/java-gdchardwaremanagement/.OwlBot-hermetic.yaml b/java-gdchardwaremanagement/.OwlBot-hermetic.yaml deleted file mode 100644 index 70c7f35214c2..000000000000 --- a/java-gdchardwaremanagement/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-gdchardwaremanagement/grpc-google-.*/src" -- "/java-gdchardwaremanagement/proto-google-.*/src" -- "/java-gdchardwaremanagement/google-.*/src" -- "/java-gdchardwaremanagement/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/gdchardwaremanagement/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gdchardwaremanagement/$1/proto-google-cloud-gdchardwaremanagement-$1/src" -- source: "/google/cloud/gdchardwaremanagement/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-gdchardwaremanagement/$1/grpc-google-cloud-gdchardwaremanagement-$1/src" -- source: "/google/cloud/gdchardwaremanagement/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-gdchardwaremanagement/$1/google-cloud-gdchardwaremanagement/src" -- source: "/google/cloud/gdchardwaremanagement/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-gdchardwaremanagement/$1/samples/snippets/generated" - -api-name: gdchardwaremanagement \ No newline at end of file diff --git a/java-geminidataanalytics/.OwlBot-hermetic.yaml b/java-geminidataanalytics/.OwlBot-hermetic.yaml deleted file mode 100644 index b1949c92ae25..000000000000 --- a/java-geminidataanalytics/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-geminidataanalytics/grpc-google-.*/src" -- "/java-geminidataanalytics/proto-google-.*/src" -- "/java-geminidataanalytics/google-.*/src" -- "/java-geminidataanalytics/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/geminidataanalytics/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-geminidataanalytics/$1/proto-google-cloud-geminidataanalytics-$1/src" -- source: "/google/cloud/geminidataanalytics/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-geminidataanalytics/$1/grpc-google-cloud-geminidataanalytics-$1/src" -- source: "/google/cloud/geminidataanalytics/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-geminidataanalytics/$1/google-cloud-geminidataanalytics/src" -- source: "/google/cloud/geminidataanalytics/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-geminidataanalytics/$1/samples/snippets/generated" - -api-name: geminidataanalytics \ No newline at end of file diff --git a/java-gke-backup/.OwlBot-hermetic.yaml b/java-gke-backup/.OwlBot-hermetic.yaml deleted file mode 100644 index 51cb1bf65bb7..000000000000 --- a/java-gke-backup/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-gke-backup/samples/snippets/generated" -- "/java-gke-backup/grpc-google-.*/src" -- "/java-gke-backup/proto-google-.*/src" -- "/java-gke-backup/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/gkebackup/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gke-backup/$1/proto-google-cloud-gke-backup-$1/src" -- source: "/google/cloud/gkebackup/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-gke-backup/$1/grpc-google-cloud-gke-backup-$1/src" -- source: "/google/cloud/gkebackup/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-gke-backup/$1/google-cloud-gke-backup/src" -- source: "/google/cloud/gkebackup/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-gke-backup/$1/samples/snippets/generated" - -api-name: gke-backup diff --git a/java-gke-connect-gateway/.OwlBot-hermetic.yaml b/java-gke-connect-gateway/.OwlBot-hermetic.yaml deleted file mode 100644 index 16bd4a77ffbf..000000000000 --- a/java-gke-connect-gateway/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-gke-connect-gateway/samples/snippets/generated" -- "/java-gke-connect-gateway/proto-google-.*/src" -- "/java-gke-connect-gateway/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/gkeconnect/gateway/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gke-connect-gateway/$1/proto-google-cloud-gke-connect-gateway-$1/src" -- source: "/google/cloud/gkeconnect/gateway/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-gke-connect-gateway/$1/google-cloud-gke-connect-gateway/src" -- source: "/google/cloud/gkeconnect/gateway/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-gke-connect-gateway/$1/samples/snippets/generated" - -api-name: connectgateway diff --git a/java-gke-multi-cloud/.OwlBot-hermetic.yaml b/java-gke-multi-cloud/.OwlBot-hermetic.yaml deleted file mode 100644 index d0362b60f2d0..000000000000 --- a/java-gke-multi-cloud/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-gke-multi-cloud/samples/snippets/generated" -- "/java-gke-multi-cloud/grpc-google-.*/src" -- "/java-gke-multi-cloud/proto-google-.*/src" -- "/java-gke-multi-cloud/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/gkemulticloud/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gke-multi-cloud/$1/proto-google-cloud-gke-multi-cloud-$1/src" -- source: "/google/cloud/gkemulticloud/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-gke-multi-cloud/$1/grpc-google-cloud-gke-multi-cloud-$1/src" -- source: "/google/cloud/gkemulticloud/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-gke-multi-cloud/$1/google-cloud-gke-multi-cloud/src" -- source: "/google/cloud/gkemulticloud/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-gke-multi-cloud/$1/samples/snippets/generated" - -api-name: gke-multi-cloud diff --git a/java-gkehub/.OwlBot-hermetic.yaml b/java-gkehub/.OwlBot-hermetic.yaml deleted file mode 100644 index 9a55f24ec07e..000000000000 --- a/java-gkehub/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-gkehub/samples/snippets/generated" -- "/java-gkehub/grpc-google-.*/src" -- "/java-gkehub/proto-google-.*/src" -- "/java-gkehub/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/gkehub/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gkehub/$1/proto-google-cloud-gkehub-$1/src" -- source: "/google/cloud/gkehub/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-gkehub/$1/grpc-google-cloud-gkehub-$1/src" -- source: "/google/cloud/gkehub/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-gkehub/$1/google-cloud-gkehub/src" -- source: "/google/cloud/gkehub/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-gkehub/$1/samples/snippets/generated" -- source: "/google/cloud/gkehub/servicemesh/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gkehub/$1/proto-google-cloud-gkehub-$1/src" -- source: "/google/cloud/gkehub/policycontroller/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gkehub/$1/proto-google-cloud-gkehub-$1/src" - -api-name: gkehub diff --git a/java-gkerecommender/.OwlBot-hermetic.yaml b/java-gkerecommender/.OwlBot-hermetic.yaml deleted file mode 100644 index b4cf42e7300a..000000000000 --- a/java-gkerecommender/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-gkerecommender/grpc-google-.*/src" -- "/java-gkerecommender/proto-google-.*/src" -- "/java-gkerecommender/google-.*/src" -- "/java-gkerecommender/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/gkerecommender/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gkerecommender/$1/proto-google-cloud-gkerecommender-$1/src" -- source: "/google/cloud/gkerecommender/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-gkerecommender/$1/grpc-google-cloud-gkerecommender-$1/src" -- source: "/google/cloud/gkerecommender/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-gkerecommender/$1/google-cloud-gkerecommender/src" -- source: "/google/cloud/gkerecommender/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-gkerecommender/$1/samples/snippets/generated" - -api-name: gkerecommender \ No newline at end of file diff --git a/java-grafeas/.OwlBot-hermetic.yaml b/java-grafeas/.OwlBot-hermetic.yaml deleted file mode 100644 index f57dd3985cba..000000000000 --- a/java-grafeas/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/src" - -deep-preserve-regex: -- "/.*src/main/java/.*/stub/Version.java" -- "/.*src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*samples/snippets/generated" - -deep-copy-regex: -- source: "/grafeas/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-grafeas/$1/src" -- source: "/grafeas/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-grafeas/$1/src" -- source: "/grafeas/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-grafeas/$1/src" - -api-name: containeranalysis diff --git a/java-gsuite-addons/.OwlBot-hermetic.yaml b/java-gsuite-addons/.OwlBot-hermetic.yaml deleted file mode 100644 index ea7940af5140..000000000000 --- a/java-gsuite-addons/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-gsuite-addons/samples/snippets/generated" -- "/java-gsuite-addons/grpc-google-.*/src" -- "/java-gsuite-addons/proto-google-.*/src" -- "/java-gsuite-addons/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/gsuiteaddons/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/$1/proto-google-cloud-gsuite-addons-$1/src" -- source: "/google/cloud/gsuiteaddons/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/$1/grpc-google-cloud-gsuite-addons-$1/src" -- source: "/google/cloud/gsuiteaddons/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/$1/google-cloud-gsuite-addons/src" -- source: "/google/apps/script/type/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/v1/proto-google-apps-script-type-protos/src" -- source: "/google/apps/script/type/calendar/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/v1/proto-google-apps-script-type-protos/src" -- source: "/google/apps/script/type/docs/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/v1/proto-google-apps-script-type-protos/src" -- source: "/google/apps/script/type/drive/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/v1/proto-google-apps-script-type-protos/src" -- source: "/google/apps/script/type/gmail/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/v1/proto-google-apps-script-type-protos/src" -- source: "/google/apps/script/type/sheets/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/v1/proto-google-apps-script-type-protos/src" -- source: "/google/apps/script/type/slides/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-gsuite-addons/v1/proto-google-apps-script-type-protos/src" -- source: "/google/cloud/gsuiteaddons/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-gsuite-addons/$1/samples/snippets/generated" - -api-name: gsuiteaddons diff --git a/java-health/.OwlBot-hermetic.yaml b/java-health/.OwlBot-hermetic.yaml deleted file mode 100644 index 154283fb9b98..000000000000 --- a/java-health/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-health/grpc-google-.*/src" -- "/java-health/proto-google-.*/src" -- "/java-health/google-.*/src" -- "/java-health/samples/snippets/generated" - -deep-preserve-regex: -- "/java-health/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/devicesandservices/health/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-health/$1/proto-google-cloud-health-$1/src" -- source: "/google/devicesandservices/health/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-health/$1/grpc-google-cloud-health-$1/src" -- source: "/google/devicesandservices/health/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-health/$1/google-cloud-health/src" -- source: "/google/devicesandservices/health/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-health/$1/samples/snippets/generated" - -api-name: health \ No newline at end of file diff --git a/java-hypercomputecluster/.OwlBot-hermetic.yaml b/java-hypercomputecluster/.OwlBot-hermetic.yaml deleted file mode 100644 index 051c5d42a39f..000000000000 --- a/java-hypercomputecluster/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-hypercomputecluster/grpc-google-.*/src" -- "/java-hypercomputecluster/proto-google-.*/src" -- "/java-hypercomputecluster/google-.*/src" -- "/java-hypercomputecluster/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/hypercomputecluster/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-hypercomputecluster/$1/proto-google-cloud-hypercomputecluster-$1/src" -- source: "/google/cloud/hypercomputecluster/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-hypercomputecluster/$1/grpc-google-cloud-hypercomputecluster-$1/src" -- source: "/google/cloud/hypercomputecluster/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-hypercomputecluster/$1/google-cloud-hypercomputecluster/src" -- source: "/google/cloud/hypercomputecluster/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-hypercomputecluster/$1/samples/snippets/generated" - -api-name: hypercomputecluster \ No newline at end of file diff --git a/java-iam-admin/.OwlBot-hermetic.yaml b/java-iam-admin/.OwlBot-hermetic.yaml deleted file mode 100644 index e74f012edbc3..000000000000 --- a/java-iam-admin/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-iam-admin/grpc-google-.*/src" -- "/java-iam-admin/proto-google-.*/src" -- "/java-iam-admin/google-.*/src" -- "/java-iam-admin/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/iam/admin/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-iam-admin/$1/proto-google-iam-admin-$1/src" -- source: "/google/iam/admin/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-iam-admin/$1/grpc-google-iam-admin-$1/src" -- source: "/google/iam/admin/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-iam-admin/$1/google-iam-admin/src" -- source: "/google/iam/admin/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-iam-admin/$1/samples/snippets/generated" - -api-name: iam-admin diff --git a/java-iam-policy/.OwlBot-hermetic.yaml b/java-iam-policy/.OwlBot-hermetic.yaml deleted file mode 100644 index 2ef1c1ef9084..000000000000 --- a/java-iam-policy/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: - - "/java-iam-policy/grpc-google-.*/src" - - "/java-iam-policy/proto-google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - - "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - - "/.*samples/snippets/generated" - -deep-copy-regex: - - source: "/google/iam/v2beta/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-iam-policy/v2beta/google-iam-policy/src" - - source: "/google/iam/v2/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-iam-policy/v2/google-iam-policy/src" - - source: "/google/iam/v3/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-iam-policy/v3/google-iam-policy/src" - - source: "/google/iam/v3beta/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-iam-policy/v3beta/google-iam-policy/src" - -api-name: iam-policy diff --git a/java-iam/.OwlBot-hermetic.yaml b/java-iam/.OwlBot-hermetic.yaml deleted file mode 100644 index 0ea858eb780b..000000000000 --- a/java-iam/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: - - "/java-iam/grpc-google-.*/src" - - "/java-iam/proto-google-.*/src" - -deep-copy-regex: - - source: "/google/iam/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-iam/$1/grpc-google-iam-$1/src" - - source: "/google/iam/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-iam/$1/proto-google-iam-$1/src" - -api-name: iam diff --git a/java-iamcredentials/.OwlBot-hermetic.yaml b/java-iamcredentials/.OwlBot-hermetic.yaml deleted file mode 100644 index a46cb39bbbc4..000000000000 --- a/java-iamcredentials/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-iamcredentials/grpc-google-.*/src" -- "/java-iamcredentials/proto-google-.*/src" -- "/java-iamcredentials/google-.*/src" -- "/java-iamcredentials/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/iam/credentials/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-iamcredentials/$1/proto-google-cloud-iamcredentials-$1/src" -- source: "/google/iam/credentials/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-iamcredentials/$1/grpc-google-cloud-iamcredentials-$1/src" -- source: "/google/iam/credentials/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-iamcredentials/$1/google-cloud-iamcredentials/src" -- source: "/google/iam/credentials/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-iamcredentials/$1/samples/snippets/generated" - -api-name: iamcredentials diff --git a/java-iap/.OwlBot-hermetic.yaml b/java-iap/.OwlBot-hermetic.yaml deleted file mode 100644 index 8fa64f8e08e1..000000000000 --- a/java-iap/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-iap/grpc-google-.*/src" -- "/java-iap/proto-google-.*/src" -- "/java-iap/google-.*/src" -- "/java-iap/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/iap/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-iap/$1/proto-google-cloud-iap-$1/src" -- source: "/google/cloud/iap/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-iap/$1/grpc-google-cloud-iap-$1/src" -- source: "/google/cloud/iap/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-iap/$1/google-cloud-iap/src" -- source: "/google/cloud/iap/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-iap/$1/samples/snippets/generated" - -api-name: iap \ No newline at end of file diff --git a/java-ids/.OwlBot-hermetic.yaml b/java-ids/.OwlBot-hermetic.yaml deleted file mode 100644 index 6d6fc5e5c899..000000000000 --- a/java-ids/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-ids/samples/snippets/generated" -- "/java-ids/grpc-google-.*/src" -- "/java-ids/proto-google-.*/src" -- "/java-ids/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/ids/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-ids/$1/proto-google-cloud-ids-$1/src" -- source: "/google/cloud/ids/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-ids/$1/grpc-google-cloud-ids-$1/src" -- source: "/google/cloud/ids/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-ids/$1/google-cloud-ids/src" -- source: "/google/cloud/ids/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-ids/$1/samples/snippets/generated" - -api-name: ids diff --git a/java-infra-manager/.OwlBot-hermetic.yaml b/java-infra-manager/.OwlBot-hermetic.yaml deleted file mode 100644 index 470affd734f0..000000000000 --- a/java-infra-manager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-infra-manager/grpc-google-.*/src" -- "/java-infra-manager/proto-google-.*/src" -- "/java-infra-manager/google-.*/src" -- "/java-infra-manager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/config/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-infra-manager/$1/proto-google-cloud-infra-manager-$1/src" -- source: "/google/cloud/config/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-infra-manager/$1/grpc-google-cloud-infra-manager-$1/src" -- source: "/google/cloud/config/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-infra-manager/$1/google-cloud-infra-manager/src" -- source: "/google/cloud/config/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-infra-manager/$1/samples/snippets/generated" - - -api-name: infra-manager \ No newline at end of file diff --git a/java-iot/.OwlBot-hermetic.yaml b/java-iot/.OwlBot-hermetic.yaml deleted file mode 100644 index 3f3d084a78d2..000000000000 --- a/java-iot/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-iot/samples/snippets/generated" -- "/java-iot/grpc-google-.*/src" -- "/java-iot/proto-google-.*/src" -- "/java-iot/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-cloud-iot/src/test/java/com/google/cloud/iot/v1/it/ITSystemTest.java" - -deep-copy-regex: -- source: "/google/cloud/iot/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-iot/$1/proto-google-cloud-iot-$1/src" -- source: "/google/cloud/iot/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-iot/$1/grpc-google-cloud-iot-$1/src" -- source: "/google/cloud/iot/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-iot/$1/google-cloud-iot/src" -- source: "/google/cloud/iot/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-iot/$1/samples/snippets/generated" - -api-name: cloudiot diff --git a/java-java-shopping-merchant-issue-resolution/.OwlBot-hermetic.yaml b/java-java-shopping-merchant-issue-resolution/.OwlBot-hermetic.yaml deleted file mode 100644 index 4c537d62342e..000000000000 --- a/java-java-shopping-merchant-issue-resolution/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-java-shopping-merchant-issue-resolution/grpc-google-.*/src" -- "/java-java-shopping-merchant-issue-resolution/proto-google-.*/src" -- "/java-java-shopping-merchant-issue-resolution/google-.*/src" -- "/java-java-shopping-merchant-issue-resolution/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/issueresolution/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-java-shopping-merchant-issue-resolution/$1/proto-google-shopping-merchant-issue-resolution-$1/src" -- source: "/google/shopping/merchant/issueresolution/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-java-shopping-merchant-issue-resolution/$1/grpc-google-shopping-merchant-issue-resolution-$1/src" -- source: "/google/shopping/merchant/issueresolution/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-java-shopping-merchant-issue-resolution/$1/google-shopping-merchant-issue-resolution/src" -- source: "/google/shopping/merchant/issueresolution/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-java-shopping-merchant-issue-resolution/$1/samples/snippets/generated" - -api-name: merchantapi \ No newline at end of file diff --git a/java-java-shopping-merchant-order-tracking/.OwlBot-hermetic.yaml b/java-java-shopping-merchant-order-tracking/.OwlBot-hermetic.yaml deleted file mode 100644 index 676275b6ffed..000000000000 --- a/java-java-shopping-merchant-order-tracking/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-java-shopping-merchant-order-tracking/grpc-google-.*/src" -- "/java-java-shopping-merchant-order-tracking/proto-google-.*/src" -- "/java-java-shopping-merchant-order-tracking/google-.*/src" -- "/java-java-shopping-merchant-order-tracking/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/ordertracking/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-java-shopping-merchant-order-tracking/$1/proto-google-shopping-merchant-order-tracking-$1/src" -- source: "/google/shopping/merchant/ordertracking/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-java-shopping-merchant-order-tracking/$1/grpc-google-shopping-merchant-order-tracking-$1/src" -- source: "/google/shopping/merchant/ordertracking/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-java-shopping-merchant-order-tracking/$1/google-shopping-merchant-order-tracking/src" -- source: "/google/shopping/merchant/ordertracking/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-java-shopping-merchant-order-tracking/$1/samples/snippets/generated" - -api-name: merchantapi \ No newline at end of file diff --git a/java-kms/.OwlBot-hermetic.yaml b/java-kms/.OwlBot-hermetic.yaml deleted file mode 100644 index ae489e0d9529..000000000000 --- a/java-kms/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-kms/samples/snippets/generated" -- "/java-kms/grpc-google-.*/src" -- "/java-kms/proto-google-.*/src" -- "/java-kms/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*proto-google-cloud-kms-v1/src/main/java/com/google/cloud/kms/v1/UntypedKeyName.java" -- "/.*proto-google-cloud-kms-v1/src/main/java/com/google/cloud/kms/v1/KeyName.java" -- "/.*proto-google-cloud-kms-v1/src/main/java/com/google/cloud/kms/v1/KeyNames.java" -- "/.*google-cloud-kms/src/test/java/com/google/cloud/kms/it/ITKmsTest.java" -- "/.*proto-google-cloud-kms-v1/src/main/java/com/google/cloud/kms/v1/CryptoKeyPathName.java" - -deep-copy-regex: -- source: "/google/cloud/kms/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-kms/$1/proto-google-cloud-kms-$1/src" -- source: "/google/cloud/kms/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-kms/$1/grpc-google-cloud-kms-$1/src" -- source: "/google/cloud/kms/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-kms/$1/google-cloud-kms/src" -- source: "/google/cloud/kms/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-kms/$1/samples/snippets/generated" - -api-name: cloudkms diff --git a/java-kmsinventory/.OwlBot-hermetic.yaml b/java-kmsinventory/.OwlBot-hermetic.yaml deleted file mode 100644 index 7cf69b4cf3e8..000000000000 --- a/java-kmsinventory/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-kmsinventory/grpc-google-.*/src" -- "/java-kmsinventory/proto-google-.*/src" -- "/java-kmsinventory/google-.*/src" -- "/java-kmsinventory/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/kms/inventory/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-kmsinventory/$1/proto-google-cloud-kmsinventory-$1/src" -- source: "/google/cloud/kms/inventory/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-kmsinventory/$1/grpc-google-cloud-kmsinventory-$1/src" -- source: "/google/cloud/kms/inventory/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-kmsinventory/$1/google-cloud-kmsinventory/src" -- source: "/google/cloud/kms/inventory/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-kmsinventory/$1/samples/snippets/generated" - - -api-name: kmsinventory \ No newline at end of file diff --git a/java-language/.OwlBot-hermetic.yaml b/java-language/.OwlBot-hermetic.yaml deleted file mode 100644 index 3575314d1c5e..000000000000 --- a/java-language/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-language/samples/snippets/generated" -- "/java-language/grpc-google-.*/src" -- "/java-language/proto-google-.*/src" -- "/java-language/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/language/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-language/$1/proto-google-cloud-language-$1/src" -- source: "/google/cloud/language/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-language/$1/grpc-google-cloud-language-$1/src" -- source: "/google/cloud/language/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-language/$1/google-cloud-language/src" -- source: "/google/cloud/language/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-language/$1/samples/snippets/generated" - -api-name: language diff --git a/java-licensemanager/.OwlBot-hermetic.yaml b/java-licensemanager/.OwlBot-hermetic.yaml deleted file mode 100644 index 54141164978a..000000000000 --- a/java-licensemanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-licensemanager/grpc-google-.*/src" -- "/java-licensemanager/proto-google-.*/src" -- "/java-licensemanager/google-.*/src" -- "/java-licensemanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/licensemanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-licensemanager/$1/proto-google-cloud-licensemanager-$1/src" -- source: "/google/cloud/licensemanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-licensemanager/$1/grpc-google-cloud-licensemanager-$1/src" -- source: "/google/cloud/licensemanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-licensemanager/$1/google-cloud-licensemanager/src" -- source: "/google/cloud/licensemanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-licensemanager/$1/samples/snippets/generated" - -api-name: licensemanager \ No newline at end of file diff --git a/java-life-sciences/.OwlBot-hermetic.yaml b/java-life-sciences/.OwlBot-hermetic.yaml deleted file mode 100644 index ff8f09839eca..000000000000 --- a/java-life-sciences/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-life-sciences/samples/snippets/generated" -- "/java-life-sciences/grpc-google-.*/src" -- "/java-life-sciences/proto-google-.*/src" -- "/java-life-sciences/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/lifesciences/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-life-sciences/$1/proto-google-cloud-life-sciences-$1/src" -- source: "/google/cloud/lifesciences/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-life-sciences/$1/grpc-google-cloud-life-sciences-$1/src" -- source: "/google/cloud/lifesciences/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-life-sciences/$1/google-cloud-life-sciences/src" -- source: "/google/cloud/lifesciences/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-life-sciences/$1/samples/snippets/generated" - -api-name: lifesciences diff --git a/java-locationfinder/.OwlBot-hermetic.yaml b/java-locationfinder/.OwlBot-hermetic.yaml deleted file mode 100644 index 531e37fe2169..000000000000 --- a/java-locationfinder/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-locationfinder/grpc-google-.*/src" -- "/java-locationfinder/proto-google-.*/src" -- "/java-locationfinder/google-.*/src" -- "/java-locationfinder/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/locationfinder/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-locationfinder/$1/proto-google-cloud-locationfinder-$1/src" -- source: "/google/cloud/locationfinder/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-locationfinder/$1/grpc-google-cloud-locationfinder-$1/src" -- source: "/google/cloud/locationfinder/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-locationfinder/$1/google-cloud-locationfinder/src" -- source: "/google/cloud/locationfinder/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-locationfinder/$1/samples/snippets/generated" - -api-name: locationfinder \ No newline at end of file diff --git a/java-logging/.OwlBot-hermetic.yaml b/java-logging/.OwlBot-hermetic.yaml deleted file mode 100644 index 1d47ff31bd4f..000000000000 --- a/java-logging/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-remove-regex: -- /java-logging/grpc-google-.*/src -- /java-logging/proto-google-.*/src -- /java-logging/google-.*/src/v.* -deep-preserve-regex: -- /.*google-.*/src/main/java/.*/stub/Version.java -- /.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java -deep-copy-regex: -- source: /google/logging/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-logging/$1/proto-google-cloud-logging-$1/src -- source: /google/logging/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-logging/$1/grpc-google-cloud-logging-$1/src -- source: /google/logging/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-logging/$1/google-cloud-logging/src diff --git a/java-lustre/.OwlBot-hermetic.yaml b/java-lustre/.OwlBot-hermetic.yaml deleted file mode 100644 index 3c2b5a3e7c13..000000000000 --- a/java-lustre/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-lustre/grpc-google-.*/src" -- "/java-lustre/proto-google-.*/src" -- "/java-lustre/google-.*/src" -- "/java-lustre/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/lustre/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-lustre/$1/proto-google-cloud-lustre-$1/src" -- source: "/google/cloud/lustre/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-lustre/$1/grpc-google-cloud-lustre-$1/src" -- source: "/google/cloud/lustre/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-lustre/$1/google-cloud-lustre/src" -- source: "/google/cloud/lustre/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-lustre/$1/samples/snippets/generated" - -api-name: lustre \ No newline at end of file diff --git a/java-maintenance/.OwlBot-hermetic.yaml b/java-maintenance/.OwlBot-hermetic.yaml deleted file mode 100644 index b2f51e965a8b..000000000000 --- a/java-maintenance/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maintenance/grpc-google-.*/src" -- "/java-maintenance/proto-google-.*/src" -- "/java-maintenance/google-.*/src" -- "/java-maintenance/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/maintenance/api/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maintenance/$1/proto-google-cloud-maintenance-$1/src" -- source: "/google/cloud/maintenance/api/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maintenance/$1/grpc-google-cloud-maintenance-$1/src" -- source: "/google/cloud/maintenance/api/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maintenance/$1/google-cloud-maintenance/src" -- source: "/google/cloud/maintenance/api/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maintenance/$1/samples/snippets/generated" - -api-name: maintenance \ No newline at end of file diff --git a/java-managed-identities/.OwlBot-hermetic.yaml b/java-managed-identities/.OwlBot-hermetic.yaml deleted file mode 100644 index d6211988d561..000000000000 --- a/java-managed-identities/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-managed-identities/samples/snippets/generated" -- "/java-managed-identities/grpc-google-.*/src" -- "/java-managed-identities/proto-google-.*/src" -- "/java-managed-identities/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/managedidentities/(v\\d)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-managed-identities/$1/proto-google-cloud-managed-identities-$1/src" -- source: "/google/cloud/managedidentities/(v\\d)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-managed-identities/$1/grpc-google-cloud-managed-identities-$1/src" -- source: "/google/cloud/managedidentities/(v\\d)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-managed-identities/$1/google-cloud-managed-identities/src" -- source: "/google/cloud/managedidentities/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-managed-identities/$1/samples/snippets/generated" - -api-name: managedidentities diff --git a/java-managedkafka/.OwlBot-hermetic.yaml b/java-managedkafka/.OwlBot-hermetic.yaml deleted file mode 100644 index fe5fb3a73323..000000000000 --- a/java-managedkafka/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-managedkafka/grpc-google-.*/src" -- "/java-managedkafka/proto-google-.*/src" -- "/java-managedkafka/google-.*/src" -- "/java-managedkafka/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/managedkafka/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-managedkafka/$1/proto-google-cloud-managedkafka-$1/src" -- source: "/google/cloud/managedkafka/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-managedkafka/$1/grpc-google-cloud-managedkafka-$1/src" -- source: "/google/cloud/managedkafka/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-managedkafka/$1/google-cloud-managedkafka/src" -- source: "/google/cloud/managedkafka/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-managedkafka/$1/samples/snippets/generated" - -api-name: managedkafka \ No newline at end of file diff --git a/java-maps-addressvalidation/.OwlBot-hermetic.yaml b/java-maps-addressvalidation/.OwlBot-hermetic.yaml deleted file mode 100644 index 6beb4c93ba5b..000000000000 --- a/java-maps-addressvalidation/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-addressvalidation/grpc-google-.*/src" -- "/java-maps-addressvalidation/proto-google-.*/src" -- "/java-maps-addressvalidation/google-.*/src" -- "/java-maps-addressvalidation/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/addressvalidation/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-addressvalidation/$1/proto-google-maps-addressvalidation-$1/src" -- source: "/google/maps/addressvalidation/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-addressvalidation/$1/grpc-google-maps-addressvalidation-$1/src" -- source: "/google/maps/addressvalidation/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-addressvalidation/$1/google-maps-addressvalidation/src" -- source: "/google/maps/addressvalidation/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-addressvalidation/$1/samples/snippets/generated" - -api-name: maps-addressvalidation diff --git a/java-maps-area-insights/.OwlBot-hermetic.yaml b/java-maps-area-insights/.OwlBot-hermetic.yaml deleted file mode 100644 index 8cec6d3a27e9..000000000000 --- a/java-maps-area-insights/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-area-insights/grpc-google-.*/src" -- "/java-maps-area-insights/proto-google-.*/src" -- "/java-maps-area-insights/google-.*/src" -- "/java-maps-area-insights/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/areainsights/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-area-insights/$1/proto-google-maps-area-insights-$1/src" -- source: "/google/maps/areainsights/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-area-insights/$1/grpc-google-maps-area-insights-$1/src" -- source: "/google/maps/areainsights/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-area-insights/$1/google-maps-area-insights/src" -- source: "/google/maps/areainsights/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-area-insights/$1/samples/snippets/generated" - -api-name: maps-area-insights \ No newline at end of file diff --git a/java-maps-fleetengine-delivery/.OwlBot-hermetic.yaml b/java-maps-fleetengine-delivery/.OwlBot-hermetic.yaml deleted file mode 100644 index d708960cb963..000000000000 --- a/java-maps-fleetengine-delivery/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-fleetengine-delivery/grpc-google-.*/src" -- "/java-maps-fleetengine-delivery/proto-google-.*/src" -- "/java-maps-fleetengine-delivery/google-.*/src" -- "/java-maps-fleetengine-delivery/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/fleetengine/delivery/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-fleetengine-delivery/$1/proto-google-maps-fleetengine-delivery-$1/src" -- source: "/google/maps/fleetengine/delivery/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-fleetengine-delivery/$1/grpc-google-maps-fleetengine-delivery-$1/src" -- source: "/google/maps/fleetengine/delivery/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-fleetengine-delivery/$1/google-maps-fleetengine-delivery/src" -- source: "/google/maps/fleetengine/delivery/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-fleetengine-delivery/$1/samples/snippets/generated" - -api-name: maps-fleetengine-delivery \ No newline at end of file diff --git a/java-maps-fleetengine/.OwlBot-hermetic.yaml b/java-maps-fleetengine/.OwlBot-hermetic.yaml deleted file mode 100644 index fc575f9d47a9..000000000000 --- a/java-maps-fleetengine/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-fleetengine/grpc-google-.*/src" -- "/java-maps-fleetengine/proto-google-.*/src" -- "/java-maps-fleetengine/google-.*/src" -- "/java-maps-fleetengine/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/fleetengine/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-fleetengine/$1/proto-google-maps-fleetengine-$1/src" -- source: "/google/maps/fleetengine/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-fleetengine/$1/grpc-google-maps-fleetengine-$1/src" -- source: "/google/maps/fleetengine/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-fleetengine/$1/google-maps-fleetengine/src" -- source: "/google/maps/fleetengine/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-fleetengine/$1/samples/snippets/generated" - -api-name: maps-fleetengine \ No newline at end of file diff --git a/java-maps-geocode/.OwlBot-hermetic.yaml b/java-maps-geocode/.OwlBot-hermetic.yaml deleted file mode 100644 index 0eb3d1729c18..000000000000 --- a/java-maps-geocode/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-geocode/grpc-google-.*/src" -- "/java-maps-geocode/proto-google-.*/src" -- "/java-maps-geocode/google-.*/src" -- "/java-maps-geocode/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/maps/geocode/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-geocode/$1/proto-google-maps-geocode-$1/src" -- source: "/google/maps/geocode/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-geocode/$1/grpc-google-maps-geocode-$1/src" -- source: "/google/maps/geocode/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-geocode/$1/google-maps-geocode/src" -- source: "/google/maps/geocode/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-geocode/$1/samples/snippets/generated" - -api-name: geocode \ No newline at end of file diff --git a/java-maps-mapmanagement/.OwlBot-hermetic.yaml b/java-maps-mapmanagement/.OwlBot-hermetic.yaml deleted file mode 100644 index 9cd55603c491..000000000000 --- a/java-maps-mapmanagement/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-mapmanagement/grpc-google-.*/src" -- "/java-maps-mapmanagement/proto-google-.*/src" -- "/java-maps-mapmanagement/google-.*/src" -- "/java-maps-mapmanagement/samples/snippets/generated" - -deep-preserve-regex: -- "/java-maps-mapmanagement/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/mapmanagement/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-mapmanagement/$1/proto-google-maps-mapmanagement-$1/src" -- source: "/google/maps/mapmanagement/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-mapmanagement/$1/grpc-google-maps-mapmanagement-$1/src" -- source: "/google/maps/mapmanagement/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-mapmanagement/$1/google-maps-mapmanagement/src" -- source: "/google/maps/mapmanagement/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-mapmanagement/$1/samples/snippets/generated" - -api-name: mapmanagement \ No newline at end of file diff --git a/java-maps-mapsplatformdatasets/.OwlBot-hermetic.yaml b/java-maps-mapsplatformdatasets/.OwlBot-hermetic.yaml deleted file mode 100644 index 048353339568..000000000000 --- a/java-maps-mapsplatformdatasets/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-mapsplatformdatasets/grpc-google-.*/src" -- "/java-maps-mapsplatformdatasets/proto-google-.*/src" -- "/java-maps-mapsplatformdatasets/google-.*/src" -- "/java-maps-mapsplatformdatasets/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/mapsplatformdatasets/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-mapsplatformdatasets/$1/proto-google-maps-mapsplatformdatasets-$1/src" -- source: "/google/maps/mapsplatformdatasets/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-mapsplatformdatasets/$1/grpc-google-maps-mapsplatformdatasets-$1/src" -- source: "/google/maps/mapsplatformdatasets/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-mapsplatformdatasets/$1/google-maps-mapsplatformdatasets/src" -- source: "/google/maps/mapsplatformdatasets/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-mapsplatformdatasets/$1/samples/snippets/generated" - - -api-name: maps-mapsplatformdatasets \ No newline at end of file diff --git a/java-maps-places/.OwlBot-hermetic.yaml b/java-maps-places/.OwlBot-hermetic.yaml deleted file mode 100644 index d0d48165c534..000000000000 --- a/java-maps-places/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-places/grpc-google-.*/src" -- "/java-maps-places/proto-google-.*/src" -- "/java-maps-places/google-.*/src" -- "/java-maps-places/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/places/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-places/$1/proto-google-maps-places-$1/src" -- source: "/google/maps/places/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-places/$1/grpc-google-maps-places-$1/src" -- source: "/google/maps/places/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-places/$1/google-maps-places/src" -- source: "/google/maps/places/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-places/$1/samples/snippets/generated" - - -api-name: maps-places \ No newline at end of file diff --git a/java-maps-routeoptimization/.OwlBot-hermetic.yaml b/java-maps-routeoptimization/.OwlBot-hermetic.yaml deleted file mode 100644 index e05ba15b2aa4..000000000000 --- a/java-maps-routeoptimization/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-routeoptimization/grpc-google-.*/src" -- "/java-maps-routeoptimization/proto-google-.*/src" -- "/java-maps-routeoptimization/google-.*/src" -- "/java-maps-routeoptimization/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/routeoptimization/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-routeoptimization/$1/proto-google-maps-routeoptimization-$1/src" -- source: "/google/maps/routeoptimization/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-routeoptimization/$1/grpc-google-maps-routeoptimization-$1/src" -- source: "/google/maps/routeoptimization/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-routeoptimization/$1/google-maps-routeoptimization/src" -- source: "/google/maps/routeoptimization/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-routeoptimization/$1/samples/snippets/generated" - -api-name: routeoptimization \ No newline at end of file diff --git a/java-maps-routing/.OwlBot-hermetic.yaml b/java-maps-routing/.OwlBot-hermetic.yaml deleted file mode 100644 index 75058a8ea00d..000000000000 --- a/java-maps-routing/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-routing/grpc-google-.*/src" -- "/java-maps-routing/proto-google-.*/src" -- "/java-maps-routing/google-.*/src" -- "/java-maps-routing/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/routing/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-routing/$1/proto-google-maps-routing-$1/src" -- source: "/google/maps/routing/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-routing/$1/grpc-google-maps-routing-$1/src" -- source: "/google/maps/routing/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-routing/$1/google-maps-routing/src" -- source: "/google/maps/routing/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-routing/$1/samples/snippets/generated" - -api-name: maps-routing diff --git a/java-maps-solar/.OwlBot-hermetic.yaml b/java-maps-solar/.OwlBot-hermetic.yaml deleted file mode 100644 index 3939a2705e84..000000000000 --- a/java-maps-solar/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-maps-solar/grpc-google-.*/src" -- "/java-maps-solar/proto-google-.*/src" -- "/java-maps-solar/google-.*/src" -- "/java-maps-solar/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/maps/solar/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-maps-solar/$1/proto-google-maps-solar-$1/src" -- source: "/google/maps/solar/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-maps-solar/$1/grpc-google-maps-solar-$1/src" -- source: "/google/maps/solar/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-maps-solar/$1/google-maps-solar/src" -- source: "/google/maps/solar/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-maps-solar/$1/samples/snippets/generated" - -api-name: maps-solar \ No newline at end of file diff --git a/java-marketingplatformadminapi/.OwlBot-hermetic.yaml b/java-marketingplatformadminapi/.OwlBot-hermetic.yaml deleted file mode 100644 index 4634763f98b4..000000000000 --- a/java-marketingplatformadminapi/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-marketingplatformadminapi/grpc-google-.*/src" -- "/java-marketingplatformadminapi/proto-google-.*/src" -- "/java-marketingplatformadminapi/admin/src" -- "/java-marketingplatformadminapi/samples/snippets/generated" - -deep-preserve-regex: -- "/.*admin.*/src/main/java/.*/stub/Version.java" -- "/.*admin.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/marketingplatform/admin/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-marketingplatformadminapi/$1/proto-admin-$1/src" -- source: "/google/marketingplatform/admin/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-marketingplatformadminapi/$1/grpc-admin-$1/src" -- source: "/google/marketingplatform/admin/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-marketingplatformadminapi/$1/admin/src" -- source: "/google/marketingplatform/admin/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-marketingplatformadminapi/$1/samples/snippets/generated" - -api-name: marketingplatformadminapi \ No newline at end of file diff --git a/java-mediatranslation/.OwlBot-hermetic.yaml b/java-mediatranslation/.OwlBot-hermetic.yaml deleted file mode 100644 index 2f0f15ea1354..000000000000 --- a/java-mediatranslation/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-mediatranslation/samples/snippets/generated" -- "/java-mediatranslation/grpc-google-.*/src" -- "/java-mediatranslation/proto-google-.*/src" -- "/java-mediatranslation/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/mediatranslation/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-mediatranslation/$1/proto-google-cloud-mediatranslation-$1/src" -- source: "/google/cloud/mediatranslation/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-mediatranslation/$1/grpc-google-cloud-mediatranslation-$1/src" -- source: "/google/cloud/mediatranslation/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-mediatranslation/$1/google-cloud-mediatranslation/src" -- source: "/google/cloud/mediatranslation/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-mediatranslation/$1/samples/snippets/generated" - -api-name: mediatranslation diff --git a/java-meet/.OwlBot-hermetic.yaml b/java-meet/.OwlBot-hermetic.yaml deleted file mode 100644 index 98c1a22ecfae..000000000000 --- a/java-meet/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-meet/grpc-google-.*/src" -- "/java-meet/proto-google-.*/src" -- "/java-meet/google-.*/src" -- "/java-meet/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/apps/meet/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-meet/$1/proto-google-cloud-meet-$1/src" -- source: "/google/apps/meet/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-meet/$1/grpc-google-cloud-meet-$1/src" -- source: "/google/apps/meet/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-meet/$1/google-cloud-meet/src" -- source: "/google/apps/meet/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-meet/$1/samples/snippets/generated" - - -api-name: meet \ No newline at end of file diff --git a/java-memcache/.OwlBot-hermetic.yaml b/java-memcache/.OwlBot-hermetic.yaml deleted file mode 100644 index e8277f172055..000000000000 --- a/java-memcache/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-memcache/samples/snippets/generated" -- "/java-memcache/grpc-google-.*/src" -- "/java-memcache/proto-google-.*/src" -- "/java-memcache/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/memcache/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-memcache/$1/proto-google-cloud-memcache-$1/src" -- source: "/google/cloud/memcache/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-memcache/$1/grpc-google-cloud-memcache-$1/src" -- source: "/google/cloud/memcache/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-memcache/$1/google-cloud-memcache/src" -- source: "/google/cloud/memcache/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-memcache/$1/samples/snippets/generated" - -api-name: memcache diff --git a/java-migrationcenter/.OwlBot-hermetic.yaml b/java-migrationcenter/.OwlBot-hermetic.yaml deleted file mode 100644 index 4b7671f76131..000000000000 --- a/java-migrationcenter/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-migrationcenter/grpc-google-.*/src" -- "/java-migrationcenter/proto-google-.*/src" -- "/java-migrationcenter/google-.*/src" -- "/java-migrationcenter/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/migrationcenter/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-migrationcenter/$1/proto-google-cloud-migrationcenter-$1/src" -- source: "/google/cloud/migrationcenter/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-migrationcenter/$1/grpc-google-cloud-migrationcenter-$1/src" -- source: "/google/cloud/migrationcenter/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-migrationcenter/$1/google-cloud-migrationcenter/src" -- source: "/google/cloud/migrationcenter/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-migrationcenter/$1/samples/snippets/generated" - - -api-name: migrationcenter \ No newline at end of file diff --git a/java-modelarmor/.OwlBot-hermetic.yaml b/java-modelarmor/.OwlBot-hermetic.yaml deleted file mode 100644 index 5d05fe9ead89..000000000000 --- a/java-modelarmor/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-modelarmor/grpc-google-.*/src" -- "/java-modelarmor/proto-google-.*/src" -- "/java-modelarmor/google-.*/src" -- "/java-modelarmor/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/modelarmor/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-modelarmor/$1/proto-google-cloud-modelarmor-$1/src" -- source: "/google/cloud/modelarmor/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-modelarmor/$1/grpc-google-cloud-modelarmor-$1/src" -- source: "/google/cloud/modelarmor/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-modelarmor/$1/google-cloud-modelarmor/src" -- source: "/google/cloud/modelarmor/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-modelarmor/$1/samples/snippets/generated" - -api-name: modelarmor \ No newline at end of file diff --git a/java-monitoring-dashboards/.OwlBot-hermetic.yaml b/java-monitoring-dashboards/.OwlBot-hermetic.yaml deleted file mode 100644 index 2324e9bb2d73..000000000000 --- a/java-monitoring-dashboards/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-monitoring-dashboards/grpc-google-.*/src" -- "/java-monitoring-dashboards/proto-google-.*/src" -- "/java-monitoring-dashboards/google-.*/src" -- "/java-monitoring-dashboards/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/monitoring/dashboard/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-monitoring-dashboards/$1/proto-google-cloud-monitoring-dashboard-$1/src" -- source: "/google/monitoring/dashboard/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-monitoring-dashboards/$1/grpc-google-cloud-monitoring-dashboard-$1/src" -- source: "/google/monitoring/dashboard/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-monitoring-dashboards/$1/google-cloud-monitoring-dashboard/src" -- source: "/google/monitoring/dashboard/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-monitoring-dashboards/$1/samples/snippets/generated" - -api-name: monitoring-dashboards diff --git a/java-monitoring-metricsscope/.OwlBot-hermetic.yaml b/java-monitoring-metricsscope/.OwlBot-hermetic.yaml deleted file mode 100644 index 4b49090291c1..000000000000 --- a/java-monitoring-metricsscope/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-monitoring-metricsscope/grpc-google-.*/src" -- "/java-monitoring-metricsscope/proto-google-.*/src" -- "/java-monitoring-metricsscope/google-.*/src" -- "/java-monitoring-metricsscope/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/monitoring/metricsscope/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-monitoring-metricsscope/$1/proto-google-cloud-monitoring-metricsscope-$1/src" -- source: "/google/monitoring/metricsscope/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-monitoring-metricsscope/$1/grpc-google-cloud-monitoring-metricsscope-$1/src" -- source: "/google/monitoring/metricsscope/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-monitoring-metricsscope/$1/google-cloud-monitoring-metricsscope/src" -- source: "/google/monitoring/metricsscope/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-monitoring-metricsscope/$1/samples/snippets/generated" - -api-name: monitoring-metricsscope diff --git a/java-monitoring/.OwlBot-hermetic.yaml b/java-monitoring/.OwlBot-hermetic.yaml deleted file mode 100644 index c840ec761edc..000000000000 --- a/java-monitoring/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-monitoring/grpc-google-.*/src" -- "/java-monitoring/proto-google-.*/src" -- "/java-monitoring/google-.*/src" -- "/java-monitoring/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-monitoring/src/test/java/com/google/cloud/monitoring/v3/ITVPCServiceControlTest.java" - -deep-copy-regex: -- source: "/google/monitoring/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-monitoring/$1/proto-google-cloud-monitoring-$1/src" -- source: "/google/monitoring/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-monitoring/$1/grpc-google-cloud-monitoring-$1/src" -- source: "/google/monitoring/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-monitoring/$1/google-cloud-monitoring/src" -- source: "/google/monitoring/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-monitoring/$1/samples/snippets/generated" - -api-name: monitoring diff --git a/java-netapp/.OwlBot-hermetic.yaml b/java-netapp/.OwlBot-hermetic.yaml deleted file mode 100644 index a6e9ede88ec3..000000000000 --- a/java-netapp/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-netapp/grpc-google-.*/src" -- "/java-netapp/proto-google-.*/src" -- "/java-netapp/google-.*/src" -- "/java-netapp/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/netapp/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-netapp/$1/proto-google-cloud-netapp-$1/src" -- source: "/google/cloud/netapp/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-netapp/$1/grpc-google-cloud-netapp-$1/src" -- source: "/google/cloud/netapp/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-netapp/$1/google-cloud-netapp/src" -- source: "/google/cloud/netapp/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-netapp/$1/samples/snippets/generated" - - -api-name: netapp \ No newline at end of file diff --git a/java-network-management/.OwlBot-hermetic.yaml b/java-network-management/.OwlBot-hermetic.yaml deleted file mode 100644 index 0bf790166b3b..000000000000 --- a/java-network-management/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-network-management/samples/snippets/generated" -- "/java-network-management/grpc-google-.*/src" -- "/java-network-management/proto-google-.*/src" -- "/java-network-management/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/networkmanagement/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-network-management/$1/proto-google-cloud-network-management-$1/src" -- source: "/google/cloud/networkmanagement/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-network-management/$1/grpc-google-cloud-network-management-$1/src" -- source: "/google/cloud/networkmanagement/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-network-management/$1/google-cloud-network-management/src" -- source: "/google/cloud/networkmanagement/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-network-management/$1/samples/snippets/generated" - -api-name: networkmanagement diff --git a/java-network-security/.OwlBot-hermetic.yaml b/java-network-security/.OwlBot-hermetic.yaml deleted file mode 100644 index c4f54c956193..000000000000 --- a/java-network-security/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-network-security/samples/snippets/generated" -- "/java-network-security/grpc-google-.*/src" -- "/java-network-security/proto-google-.*/src" -- "/java-network-security/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/networksecurity/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-network-security/$1/proto-google-cloud-network-security-$1/src" -- source: "/google/cloud/networksecurity/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-network-security/$1/grpc-google-cloud-network-security-$1/src" -- source: "/google/cloud/networksecurity/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-network-security/$1/google-cloud-network-security/src" -- source: "/google/cloud/networksecurity/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-network-security/$1/samples/snippets/generated" - -api-name: networksecurity diff --git a/java-networkconnectivity/.OwlBot-hermetic.yaml b/java-networkconnectivity/.OwlBot-hermetic.yaml deleted file mode 100644 index caf9c6a0961f..000000000000 --- a/java-networkconnectivity/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-networkconnectivity/samples/snippets/generated" -- "/java-networkconnectivity/grpc-google-.*/src" -- "/java-networkconnectivity/proto-google-.*/src" -- "/java-networkconnectivity/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/networkconnectivity/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-networkconnectivity/$1/proto-google-cloud-networkconnectivity-$1/src" -- source: "/google/cloud/networkconnectivity/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-networkconnectivity/$1/grpc-google-cloud-networkconnectivity-$1/src" -- source: "/google/cloud/networkconnectivity/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-networkconnectivity/$1/google-cloud-networkconnectivity/src" -- source: "/google/cloud/networkconnectivity/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-networkconnectivity/$1/samples/snippets/generated" - -api-name: networkconnectivity diff --git a/java-networkservices/.OwlBot-hermetic.yaml b/java-networkservices/.OwlBot-hermetic.yaml deleted file mode 100644 index c8fc49ee0d72..000000000000 --- a/java-networkservices/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-networkservices/grpc-google-.*/src" -- "/java-networkservices/proto-google-.*/src" -- "/java-networkservices/google-.*/src" -- "/java-networkservices/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/networkservices/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-networkservices/$1/proto-google-cloud-networkservices-$1/src" -- source: "/google/cloud/networkservices/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-networkservices/$1/grpc-google-cloud-networkservices-$1/src" -- source: "/google/cloud/networkservices/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-networkservices/$1/google-cloud-networkservices/src" -- source: "/google/cloud/networkservices/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-networkservices/$1/samples/snippets/generated" - -api-name: networkservices \ No newline at end of file diff --git a/java-notebooks/.OwlBot-hermetic.yaml b/java-notebooks/.OwlBot-hermetic.yaml deleted file mode 100644 index b27fb18c1f19..000000000000 --- a/java-notebooks/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-notebooks/samples/snippets/generated" -- "/java-notebooks/grpc-google-.*/src" -- "/java-notebooks/proto-google-.*/src" -- "/java-notebooks/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/.*.java" - -deep-copy-regex: -- source: "/google/cloud/notebooks/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-notebooks/$1/google-cloud-notebooks/src" -- source: "/google/cloud/notebooks/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-notebooks/$1/proto-google-cloud-notebooks-$1/src" -- source: "/google/cloud/notebooks/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-notebooks/$1/grpc-google-cloud-notebooks-$1/src" -- source: "/google/cloud/notebooks/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-notebooks/$1/samples/snippets/generated" - -api-name: notebooks diff --git a/java-notification/.OwlBot-hermetic.yaml b/java-notification/.OwlBot-hermetic.yaml deleted file mode 100644 index 0ede688209b9..000000000000 --- a/java-notification/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -api-name: notification -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - diff --git a/java-optimization/.OwlBot-hermetic.yaml b/java-optimization/.OwlBot-hermetic.yaml deleted file mode 100644 index 5a09812f1ae0..000000000000 --- a/java-optimization/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-optimization/samples/snippets/generated" -- "/java-optimization/grpc-google-.*/src" -- "/java-optimization/proto-google-.*/src" -- "/java-optimization/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/optimization/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-optimization/$1/proto-google-cloud-optimization-$1/src" -- source: "/google/cloud/optimization/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-optimization/$1/grpc-google-cloud-optimization-$1/src" -- source: "/google/cloud/optimization/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-optimization/$1/google-cloud-optimization/src" -- source: "/google/cloud/optimization/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-optimization/$1/samples/snippets/generated" - -api-name: cloudoptimization diff --git a/java-oracledatabase/.OwlBot-hermetic.yaml b/java-oracledatabase/.OwlBot-hermetic.yaml deleted file mode 100644 index 37dfe543f944..000000000000 --- a/java-oracledatabase/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-oracledatabase/grpc-google-.*/src" -- "/java-oracledatabase/proto-google-.*/src" -- "/java-oracledatabase/google-.*/src" -- "/java-oracledatabase/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/oracledatabase/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-oracledatabase/$1/proto-google-cloud-oracledatabase-$1/src" -- source: "/google/cloud/oracledatabase/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-oracledatabase/$1/grpc-google-cloud-oracledatabase-$1/src" -- source: "/google/cloud/oracledatabase/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-oracledatabase/$1/google-cloud-oracledatabase/src" -- source: "/google/cloud/oracledatabase/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-oracledatabase/$1/samples/snippets/generated" - -api-name: oracledatabase \ No newline at end of file diff --git a/java-orchestration-airflow/.OwlBot-hermetic.yaml b/java-orchestration-airflow/.OwlBot-hermetic.yaml deleted file mode 100644 index ddfd96e63ec0..000000000000 --- a/java-orchestration-airflow/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-orchestration-airflow/samples/snippets/generated" -- "/java-orchestration-airflow/grpc-google-.*/src" -- "/java-orchestration-airflow/proto-google-.*/src" -- "/java-orchestration-airflow/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/orchestration/airflow/service/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-orchestration-airflow/$1/proto-google-cloud-orchestration-airflow-$1/src" -- source: "/google/cloud/orchestration/airflow/service/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-orchestration-airflow/$1/grpc-google-cloud-orchestration-airflow-$1/src" -- source: "/google/cloud/orchestration/airflow/service/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-orchestration-airflow/$1/google-cloud-orchestration-airflow/src" -- source: "/google/cloud/orchestration/airflow/service/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-orchestration-airflow/$1/samples/snippets/generated" - -api-name: orchestration-airflow diff --git a/java-orgpolicy/.OwlBot-hermetic.yaml b/java-orgpolicy/.OwlBot-hermetic.yaml deleted file mode 100644 index 437136e05bc4..000000000000 --- a/java-orgpolicy/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-orgpolicy/samples/snippets/generated" -- "/java-orgpolicy/grpc-google-.*/src" -- "/java-orgpolicy/proto-google-.*/src" -- "/java-orgpolicy/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/orgpolicy/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-orgpolicy/$1/proto-google-cloud-orgpolicy-$1/src" -- source: "/google/cloud/orgpolicy/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-orgpolicy/$1/grpc-google-cloud-orgpolicy-$1/src" -- source: "/google/cloud/orgpolicy/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-orgpolicy/$1/google-cloud-orgpolicy/src" -- source: "/google/cloud/orgpolicy/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-orgpolicy/$1/samples/snippets/generated" - -api-name: orgpolicy diff --git a/java-os-config/.OwlBot-hermetic.yaml b/java-os-config/.OwlBot-hermetic.yaml deleted file mode 100644 index efe2c1a78e2a..000000000000 --- a/java-os-config/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-os-config/samples/snippets/generated" -- "/java-os-config/grpc-google-.*/src" -- "/java-os-config/proto-google-.*/src" -- "/java-os-config/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/osconfig/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-os-config/$1/proto-google-cloud-os-config-$1/src" -- source: "/google/cloud/osconfig/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-os-config/$1/grpc-google-cloud-os-config-$1/src" -- source: "/google/cloud/osconfig/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-os-config/$1/google-cloud-os-config/src" -- source: "/google/cloud/osconfig/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-os-config/$1/samples/snippets/generated" - -api-name: osconfig diff --git a/java-os-login/.OwlBot-hermetic.yaml b/java-os-login/.OwlBot-hermetic.yaml deleted file mode 100644 index aab0a7cbc0b7..000000000000 --- a/java-os-login/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-os-login/grpc-google-.*/src" -- "/java-os-login/proto-google-.*/src" -- "/java-os-login/google-.*/src" -- "/java-os-login/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*proto-google-cloud-os-login-v1/src/main/java/com/google/cloud/oslogin/common/FingerprintName.java" -- "/.*proto-google-cloud-os-login-v1/src/main/java/com/google/cloud/oslogin/common/ProjectName.java" -- "/.*proto-google-cloud-os-login-v1/src/main/java/com/google/cloud/oslogin/v1/FingerprintName.java" -- "/.*proto-google-cloud-os-login-v1/src/main/java/com/google/cloud/oslogin/v1/PosixAccountName.java" -- "/.*proto-google-cloud-os-login-v1/src/main/java/com/google/cloud/oslogin/v1/ProjectName.java" -- "/.*proto-google-cloud-os-login-v1/src/main/java/com/google/cloud/oslogin/v1/SshPublicKeyName.java" - -deep-copy-regex: -- source: "/google/cloud/oslogin/(v\\d)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-os-login/$1/proto-google-cloud-os-login-$1/src" -- source: "/google/cloud/oslogin/(v\\d)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-os-login/$1/grpc-google-cloud-os-login-$1/src" -- source: "/google/cloud/oslogin/(v\\d)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-os-login/$1/google-cloud-os-login/src" -- source: "/google/cloud/oslogin/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-os-login/$1/samples/snippets/generated" - -api-name: oslogin diff --git a/java-parallelstore/.OwlBot-hermetic.yaml b/java-parallelstore/.OwlBot-hermetic.yaml deleted file mode 100644 index b3da915e88a5..000000000000 --- a/java-parallelstore/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-parallelstore/grpc-google-.*/src" -- "/java-parallelstore/proto-google-.*/src" -- "/java-parallelstore/google-.*/src" -- "/java-parallelstore/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/parallelstore/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-parallelstore/$1/proto-google-cloud-parallelstore-$1/src" -- source: "/google/cloud/parallelstore/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-parallelstore/$1/grpc-google-cloud-parallelstore-$1/src" -- source: "/google/cloud/parallelstore/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-parallelstore/$1/google-cloud-parallelstore/src" -- source: "/google/cloud/parallelstore/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-parallelstore/$1/samples/snippets/generated" - -api-name: parallelstore \ No newline at end of file diff --git a/java-parametermanager/.OwlBot-hermetic.yaml b/java-parametermanager/.OwlBot-hermetic.yaml deleted file mode 100644 index 00211c303626..000000000000 --- a/java-parametermanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-parametermanager/grpc-google-.*/src" -- "/java-parametermanager/proto-google-.*/src" -- "/java-parametermanager/google-.*/src" -- "/java-parametermanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/parametermanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-parametermanager/$1/proto-google-cloud-parametermanager-$1/src" -- source: "/google/cloud/parametermanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-parametermanager/$1/grpc-google-cloud-parametermanager-$1/src" -- source: "/google/cloud/parametermanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-parametermanager/$1/google-cloud-parametermanager/src" -- source: "/google/cloud/parametermanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-parametermanager/$1/samples/snippets/generated" - -api-name: parametermanager \ No newline at end of file diff --git a/java-phishingprotection/.OwlBot-hermetic.yaml b/java-phishingprotection/.OwlBot-hermetic.yaml deleted file mode 100644 index 141ac0ffafed..000000000000 --- a/java-phishingprotection/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-phishingprotection/samples/snippets/generated" -- "/java-phishingprotection/grpc-google-.*/src" -- "/java-phishingprotection/proto-google-.*/src" -- "/java-phishingprotection/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/phishingprotection/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-phishingprotection/$1/proto-google-cloud-phishingprotection-$1/src" -- source: "/google/cloud/phishingprotection/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-phishingprotection/$1/grpc-google-cloud-phishingprotection-$1/src" -- source: "/google/cloud/phishingprotection/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-phishingprotection/$1/google-cloud-phishingprotection/src" -- source: "/google/cloud/phishingprotection/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-phishingprotection/$1/samples/snippets/generated" - -api-name: phishingprotection diff --git a/java-policy-troubleshooter/.OwlBot-hermetic.yaml b/java-policy-troubleshooter/.OwlBot-hermetic.yaml deleted file mode 100644 index f71b01061bdd..000000000000 --- a/java-policy-troubleshooter/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-policy-troubleshooter/samples/snippets/generated" -- "/java-policy-troubleshooter/grpc-google-.*/src" -- "/java-policy-troubleshooter/proto-google-.*/src" -- "/java-policy-troubleshooter/google-.*/src" -- "/java-policy-troubleshooter/iam/samples/snippets/generated" -- "/java-policy-troubleshooter/iam/grpc-google-.*/src" -- "/java-policy-troubleshooter/iam/proto-google-.*/src" -- "/java-policy-troubleshooter/iam/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/policytroubleshooter/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-policy-troubleshooter/$1/proto-google-cloud-policy-troubleshooter-$1/src" -- source: "/google/cloud/policytroubleshooter/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-policy-troubleshooter/$1/grpc-google-cloud-policy-troubleshooter-$1/src" -- source: "/google/cloud/policytroubleshooter/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-policy-troubleshooter/$1/google-cloud-policy-troubleshooter/src" -- source: "/google/cloud/policytroubleshooter/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-policy-troubleshooter/$1/samples/snippets/generated" -- source: "/google/cloud/policytroubleshooter/iam/v3/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-policy-troubleshooter/v3/proto-google-cloud-policy-troubleshooter-v3/src" -- source: "/google/cloud/policytroubleshooter/iam/v3/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-policy-troubleshooter/v3/grpc-google-cloud-policy-troubleshooter-v3/src" -- source: "/google/cloud/policytroubleshooter/iam/v3/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-policy-troubleshooter/v3/google-cloud-policy-troubleshooter/src" -- source: "/google/cloud/policytroubleshooter/iam/v3/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-policy-troubleshooter/v3/samples/snippets/generated" - -api-name: policytroubleshooter diff --git a/java-policysimulator/.OwlBot-hermetic.yaml b/java-policysimulator/.OwlBot-hermetic.yaml deleted file mode 100644 index 7e9118fd3106..000000000000 --- a/java-policysimulator/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-policysimulator/grpc-google-.*/src" -- "/java-policysimulator/proto-google-.*/src" -- "/java-policysimulator/google-.*/src" -- "/java-policysimulator/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/policysimulator/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-policysimulator/$1/proto-google-cloud-policysimulator-$1/src" -- source: "/google/cloud/policysimulator/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-policysimulator/$1/grpc-google-cloud-policysimulator-$1/src" -- source: "/google/cloud/policysimulator/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-policysimulator/$1/google-cloud-policysimulator/src" -- source: "/google/cloud/policysimulator/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-policysimulator/$1/samples/snippets/generated" - - -api-name: policysimulator \ No newline at end of file diff --git a/java-private-catalog/.OwlBot-hermetic.yaml b/java-private-catalog/.OwlBot-hermetic.yaml deleted file mode 100644 index 9551923182c5..000000000000 --- a/java-private-catalog/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-private-catalog/samples/snippets/generated" -- "/java-private-catalog/grpc-google-.*/src" -- "/java-private-catalog/proto-google-.*/src" -- "/java-private-catalog/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/privatecatalog/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-private-catalog/$1/proto-google-cloud-private-catalog-$1/src" -- source: "/google/cloud/privatecatalog/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-private-catalog/$1/grpc-google-cloud-private-catalog-$1/src" -- source: "/google/cloud/privatecatalog/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-private-catalog/$1/google-cloud-private-catalog/src" -- source: "/google/cloud/privatecatalog/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-private-catalog/$1/samples/snippets/generated" - -api-name: cloudprivatecatalog diff --git a/java-privilegedaccessmanager/.OwlBot-hermetic.yaml b/java-privilegedaccessmanager/.OwlBot-hermetic.yaml deleted file mode 100644 index 87b05f09c97c..000000000000 --- a/java-privilegedaccessmanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-privilegedaccessmanager/grpc-google-.*/src" -- "/java-privilegedaccessmanager/proto-google-.*/src" -- "/java-privilegedaccessmanager/google-.*/src" -- "/java-privilegedaccessmanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/privilegedaccessmanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-privilegedaccessmanager/$1/proto-google-cloud-privilegedaccessmanager-$1/src" -- source: "/google/cloud/privilegedaccessmanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-privilegedaccessmanager/$1/grpc-google-cloud-privilegedaccessmanager-$1/src" -- source: "/google/cloud/privilegedaccessmanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-privilegedaccessmanager/$1/google-cloud-privilegedaccessmanager/src" -- source: "/google/cloud/privilegedaccessmanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-privilegedaccessmanager/$1/samples/snippets/generated" - -api-name: privilegedaccessmanager \ No newline at end of file diff --git a/java-profiler/.OwlBot-hermetic.yaml b/java-profiler/.OwlBot-hermetic.yaml deleted file mode 100644 index 6e89cccb43a8..000000000000 --- a/java-profiler/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-profiler/grpc-google-.*/src" -- "/java-profiler/proto-google-.*/src" -- "/java-profiler/google-.*/src" -- "/java-profiler/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/devtools/cloudprofiler/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-profiler/$1/proto-google-cloud-profiler-$1/src" -- source: "/google/devtools/cloudprofiler/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-profiler/$1/grpc-google-cloud-profiler-$1/src" -- source: "/google/devtools/cloudprofiler/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-profiler/$1/google-cloud-profiler/src" -- source: "/google/devtools/cloudprofiler/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-profiler/$1/samples/snippets/generated" - -api-name: cloudprofiler diff --git a/java-publicca/.OwlBot-hermetic.yaml b/java-publicca/.OwlBot-hermetic.yaml deleted file mode 100644 index 812ff0774bef..000000000000 --- a/java-publicca/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-publicca/grpc-google-.*/src" -- "/java-publicca/proto-google-.*/src" -- "/java-publicca/google-.*/src" -- "/java-publicca/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/security/publicca/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-publicca/$1/proto-google-cloud-publicca-$1/src" -- source: "/google/cloud/security/publicca/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-publicca/$1/grpc-google-cloud-publicca-$1/src" -- source: "/google/cloud/security/publicca/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-publicca/$1/google-cloud-publicca/src" -- source: "/google/cloud/security/publicca/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-publicca/$1/samples/snippets/generated" - -api-name: publicca diff --git a/java-pubsub/.OwlBot-hermetic.yaml b/java-pubsub/.OwlBot-hermetic.yaml deleted file mode 100644 index 531290bdfeba..000000000000 --- a/java-pubsub/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-remove-regex: -- /java-pubsub/grpc-google-.*/src -- /java-pubsub/proto-google-.*/src -- /java-pubsub/google-.*/src -deep-preserve-regex: -- /java-pubsub/.*google-.*/src/main/java/.*/stub/Version.java -- /java-pubsub/google-cloud-pubsub/src/test/resources/META-INF/native-image/.* -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/.*/v.*/it/IT.*Test.java -- /java-pubsub/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java -- /java-pubsub/proto-google-cloud-pubsub-v1/src/main/java/com/google/pubsub/v1/DeletedTopic.java -- /java-pubsub/proto-google-cloud-pubsub-v1/src/main/java/com/google/pubsub/v1/ProjectSnapshotName.java -- /java-pubsub/proto-google-cloud-pubsub-v1/src/main/java/com/google/pubsub/v1/ProjectSubscriptionName.java -- /java-pubsub/proto-google-cloud-pubsub-v1/src/main/java/com/google/pubsub/v1/ProjectTopicName.java -- /java-pubsub/proto-google-cloud-pubsub-v1/src/main/java/com/google/pubsub/v1/TopicNames.java -- /java-pubsub/proto-google-cloud-pubsub-v1/src/main/java/com/google/pubsub/v1/UntypedTopicName.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/it/ITPubSubTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/CustomArgumentMatchers.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/FakeClock.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/FakePublisherServiceImpl.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/FakeScheduledExecutorService.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/FakeSubscriberServiceImpl.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/MessageDataMatcher.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/MessageDispatcherTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/OpenCensusUtilTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/OpenTelemetryTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/PublisherImplTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/SequentialExecutorServiceTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/StatusUtilTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/StreamingSubscriberConnectionTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/SubscriberShutdownSettingsTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/SubscriberTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/TopicAdminSmokeTest.java -- /java-pubsub/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/v1/WaiterTest.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/AckReplyConsumer.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/AckReplyConsumerImpl.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/AckReplyConsumerWithResponse.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/AckReplyConsumerWithResponseImpl.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/AckRequestData.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/AckResponse.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/MessageDispatcher.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/MessageReceiver.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/MessageReceiverWithAckResponse.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/ModackRequestData.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/OpenCensusUtil.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/OpenTelemetryPubsubTracer.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/Publisher.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/PublisherInterface.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/PubsubMessageWrapper.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/SequentialExecutorService.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/StatusUtil.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/StreamingSubscriberConnection.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/Subscriber.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/SubscriberInterface.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/SubscriberShutdownSettings.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/SubscriberStats.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/Waiter.java -- /java-pubsub/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/LoggingUtil.java -deep-copy-regex: -- source: /google/pubsub/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-pubsub/$1/proto-google-cloud-pubsub-$1/src -- source: /google/pubsub/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-pubsub/$1/grpc-google-cloud-pubsub-$1/src -- source: /google/pubsub/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-pubsub/$1/google-cloud-pubsub/src diff --git a/java-rapidmigrationassessment/.OwlBot-hermetic.yaml b/java-rapidmigrationassessment/.OwlBot-hermetic.yaml deleted file mode 100644 index d18e49ea762b..000000000000 --- a/java-rapidmigrationassessment/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-rapidmigrationassessment/grpc-google-.*/src" -- "/java-rapidmigrationassessment/proto-google-.*/src" -- "/java-rapidmigrationassessment/google-.*/src" -- "/java-rapidmigrationassessment/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/rapidmigrationassessment/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-rapidmigrationassessment/$1/proto-google-cloud-rapidmigrationassessment-$1/src" -- source: "/google/cloud/rapidmigrationassessment/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-rapidmigrationassessment/$1/grpc-google-cloud-rapidmigrationassessment-$1/src" -- source: "/google/cloud/rapidmigrationassessment/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-rapidmigrationassessment/$1/google-cloud-rapidmigrationassessment/src" -- source: "/google/cloud/rapidmigrationassessment/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-rapidmigrationassessment/$1/samples/snippets/generated" - - -api-name: rapidmigrationassessment \ No newline at end of file diff --git a/java-recaptchaenterprise/.OwlBot-hermetic.yaml b/java-recaptchaenterprise/.OwlBot-hermetic.yaml deleted file mode 100644 index bb5926bac69a..000000000000 --- a/java-recaptchaenterprise/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-recaptchaenterprise/samples/snippets/generated" -- "/java-recaptchaenterprise/grpc-google-.*/src" -- "/java-recaptchaenterprise/proto-google-.*/src" -- "/java-recaptchaenterprise/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/recaptchaenterprise/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-recaptchaenterprise/$1/proto-google-cloud-recaptchaenterprise-$1/src" -- source: "/google/cloud/recaptchaenterprise/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-recaptchaenterprise/$1/grpc-google-cloud-recaptchaenterprise-$1/src" -- source: "/google/cloud/recaptchaenterprise/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-recaptchaenterprise/$1/google-cloud-recaptchaenterprise/src" -- source: "/google/cloud/recaptchaenterprise/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-recaptchaenterprise/$1/samples/snippets/generated" - -api-name: recaptchaenterprise diff --git a/java-recommendations-ai/.OwlBot-hermetic.yaml b/java-recommendations-ai/.OwlBot-hermetic.yaml deleted file mode 100644 index 4ccc8487eb32..000000000000 --- a/java-recommendations-ai/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-recommendations-ai/samples/snippets/generated" -- "/java-recommendations-ai/grpc-google-.*/src" -- "/java-recommendations-ai/proto-google-.*/src" -- "/java-recommendations-ai/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/recommendationengine/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-recommendations-ai/$1/proto-google-cloud-recommendations-ai-$1/src" -- source: "/google/cloud/recommendationengine/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-recommendations-ai/$1/grpc-google-cloud-recommendations-ai-$1/src" -- source: "/google/cloud/recommendationengine/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-recommendations-ai/$1/google-cloud-recommendations-ai/src" -- source: "/google/cloud/recommendationengine/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-recommendations-ai/$1/samples/snippets/generated" - -api-name: recommendationengine diff --git a/java-recommender/.OwlBot-hermetic.yaml b/java-recommender/.OwlBot-hermetic.yaml deleted file mode 100644 index db000cc53ca4..000000000000 --- a/java-recommender/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-recommender/samples/snippets/generated" -- "/java-recommender/grpc-google-.*/src" -- "/java-recommender/proto-google-.*/src" -- "/java-recommender/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/recommender/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-recommender/$1/proto-google-cloud-recommender-$1/src" -- source: "/google/cloud/recommender/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-recommender/$1/grpc-google-cloud-recommender-$1/src" -- source: "/google/cloud/recommender/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-recommender/$1/google-cloud-recommender/src" -- source: "/google/cloud/recommender/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-recommender/$1/samples/snippets/generated" - -api-name: recommender diff --git a/java-redis-cluster/.OwlBot-hermetic.yaml b/java-redis-cluster/.OwlBot-hermetic.yaml deleted file mode 100644 index 87d1431b9b08..000000000000 --- a/java-redis-cluster/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-redis-cluster/grpc-google-.*/src" -- "/java-redis-cluster/proto-google-.*/src" -- "/java-redis-cluster/google-.*/src" -- "/java-redis-cluster/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/redis/cluster/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-redis-cluster/$1/proto-google-cloud-redis-cluster-$1/src" -- source: "/google/cloud/redis/cluster/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-redis-cluster/$1/grpc-google-cloud-redis-cluster-$1/src" -- source: "/google/cloud/redis/cluster/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-redis-cluster/$1/google-cloud-redis-cluster/src" -- source: "/google/cloud/redis/cluster/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-redis-cluster/$1/samples/snippets/generated" - - -api-name: redis-cluster \ No newline at end of file diff --git a/java-redis/.OwlBot-hermetic.yaml b/java-redis/.OwlBot-hermetic.yaml deleted file mode 100644 index 72c59c860a4e..000000000000 --- a/java-redis/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-redis/samples/snippets/generated" -- "/java-redis/grpc-google-.*/src" -- "/java-redis/proto-google-.*/src" -- "/java-redis/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/redis/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-redis/$1/proto-google-cloud-redis-$1/src" -- source: "/google/cloud/redis/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-redis/$1/grpc-google-cloud-redis-$1/src" -- source: "/google/cloud/redis/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-redis/$1/google-cloud-redis/src" -- source: "/google/cloud/redis/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-redis/$1/samples/snippets/generated" - -api-name: redis diff --git a/java-resourcemanager/.OwlBot-hermetic.yaml b/java-resourcemanager/.OwlBot-hermetic.yaml deleted file mode 100644 index 7ea3b55c29f1..000000000000 --- a/java-resourcemanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-resourcemanager/samples/snippets/generated" -- "/java-resourcemanager/grpc-google-.*/src" -- "/java-resourcemanager/proto-google-.*/src" -- "/java-resourcemanager/google-.*/src/main/java/com/google/cloud/resourcemanager/v3/" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/resourcemanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-resourcemanager/$1/proto-google-cloud-resourcemanager-$1/src" -- source: "/google/cloud/resourcemanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-resourcemanager/$1/grpc-google-cloud-resourcemanager-$1/src" -- source: "/google/cloud/resourcemanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-resourcemanager/$1/google-cloud-resourcemanager/src" -- source: "/google/cloud/resourcemanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-resourcemanager/$1/samples/snippets/generated" - -api-name: cloudresourcemanager diff --git a/java-retail/.OwlBot-hermetic.yaml b/java-retail/.OwlBot-hermetic.yaml deleted file mode 100644 index 8d86aea4aea3..000000000000 --- a/java-retail/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-retail/samples/snippets/generated" -- "/java-retail/grpc-google-.*/src" -- "/java-retail/proto-google-.*/src" -- "/java-retail/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/retail/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-retail/$1/proto-google-cloud-retail-$1/src" -- source: "/google/cloud/retail/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-retail/$1/grpc-google-cloud-retail-$1/src" -- source: "/google/cloud/retail/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-retail/$1/google-cloud-retail/src" -- source: "/google/cloud/retail/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-retail/$1/samples/snippets/generated" - -api-name: retail diff --git a/java-run/.OwlBot-hermetic.yaml b/java-run/.OwlBot-hermetic.yaml deleted file mode 100644 index c87b38d3872e..000000000000 --- a/java-run/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-run/samples/snippets/generated" -- "/java-run/grpc-google-.*/src" -- "/java-run/proto-google-.*/src" -- "/java-run/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/run/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-run/$1/proto-google-cloud-run-$1/src" -- source: "/google/cloud/run/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-run/$1/grpc-google-cloud-run-$1/src" -- source: "/google/cloud/run/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-run/$1/google-cloud-run/src" -- source: "/google/cloud/run/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-run/$1/samples/snippets/generated" - -api-name: run diff --git a/java-saasservicemgmt/.OwlBot-hermetic.yaml b/java-saasservicemgmt/.OwlBot-hermetic.yaml deleted file mode 100644 index c8a8bce6df2f..000000000000 --- a/java-saasservicemgmt/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-saasservicemgmt/grpc-google-.*/src" -- "/java-saasservicemgmt/proto-google-.*/src" -- "/java-saasservicemgmt/google-.*/src" -- "/java-saasservicemgmt/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/saasplatform/saasservicemgmt/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-saasservicemgmt/$1/proto-google-cloud-saasservicemgmt-$1/src" -- source: "/google/cloud/saasplatform/saasservicemgmt/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-saasservicemgmt/$1/grpc-google-cloud-saasservicemgmt-$1/src" -- source: "/google/cloud/saasplatform/saasservicemgmt/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-saasservicemgmt/$1/google-cloud-saasservicemgmt/src" -- source: "/google/cloud/saasplatform/saasservicemgmt/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-saasservicemgmt/$1/samples/snippets/generated" - -api-name: saasservicemgmt \ No newline at end of file diff --git a/java-scheduler/.OwlBot-hermetic.yaml b/java-scheduler/.OwlBot-hermetic.yaml deleted file mode 100644 index d918ac117207..000000000000 --- a/java-scheduler/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-scheduler/samples/snippets/generated" -- "/java-scheduler/grpc-google-.*/src" -- "/java-scheduler/proto-google-.*/src" -- "/java-scheduler/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*proto-google-cloud-scheduler-v1/src/main/java/com/google/cloud/scheduler/v1/ProjectName.java" -- "/.*proto-google-cloud-scheduler-v1beta1/src/main/java/com/google/cloud/scheduler/v1beta1/ProjectName.java" - -deep-copy-regex: -- source: "/google/cloud/scheduler/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-scheduler/$1/proto-google-cloud-scheduler-$1/src" -- source: "/google/cloud/scheduler/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-scheduler/$1/grpc-google-cloud-scheduler-$1/src" -- source: "/google/cloud/scheduler/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-scheduler/$1/google-cloud-scheduler/src" -- source: "/google/cloud/scheduler/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-scheduler/$1/samples/snippets/generated" - -api-name: cloudscheduler diff --git a/java-secretmanager/.OwlBot-hermetic.yaml b/java-secretmanager/.OwlBot-hermetic.yaml deleted file mode 100644 index 8b7f3693af79..000000000000 --- a/java-secretmanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-secretmanager/samples/snippets/generated" -- "/java-secretmanager/grpc-google-.*/src" -- "/java-secretmanager/proto-google-.*/src" -- "/java-secretmanager/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v1/it/IT.*Test.java" -- "/.*proto-google-cloud-secretmanager-v1/src/main/java/com/google/cloud/secretmanager/v1/TopicName.java" - - -deep-copy-regex: -# The first four configurations are for v1beta1 configured in /google/cloud/secrets/{version} -- source: "/google/cloud/secrets/(v\\d.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-secretmanager/$1/proto-google-cloud-secretmanager-$1/src" -- source: "/google/cloud/secrets/(v\\d.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-secretmanager/$1/grpc-google-cloud-secretmanager-$1/src" -- source: "/google/cloud/secrets/(v\\d.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-secretmanager/$1/google-cloud-secretmanager/src" -- source: "/google/cloud/secrets/(v\\d.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-secretmanager/$1/samples/snippets/generated" -# The next four configurations are for all others versions configured in /google/cloud/secretmanager/{version} -- source: "/google/cloud/secretmanager/(v\\d.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-secretmanager/$1/proto-google-cloud-secretmanager-$1/src" -- source: "/google/cloud/secretmanager/(v\\d.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-secretmanager/$1/grpc-google-cloud-secretmanager-$1/src" -- source: "/google/cloud/secretmanager/(v\\d.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-secretmanager/$1/google-cloud-secretmanager/src" -- source: "/google/cloud/secretmanager/(v\\d.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-secretmanager/$1/samples/snippets/generated" - -api-name: secretmanager diff --git a/java-securesourcemanager/.OwlBot-hermetic.yaml b/java-securesourcemanager/.OwlBot-hermetic.yaml deleted file mode 100644 index d428f4797afd..000000000000 --- a/java-securesourcemanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-securesourcemanager/grpc-google-.*/src" -- "/java-securesourcemanager/proto-google-.*/src" -- "/java-securesourcemanager/google-.*/src" -- "/java-securesourcemanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/securesourcemanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-securesourcemanager/$1/proto-google-cloud-securesourcemanager-$1/src" -- source: "/google/cloud/securesourcemanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-securesourcemanager/$1/grpc-google-cloud-securesourcemanager-$1/src" -- source: "/google/cloud/securesourcemanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-securesourcemanager/$1/google-cloud-securesourcemanager/src" -- source: "/google/cloud/securesourcemanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-securesourcemanager/$1/samples/snippets/generated" - - -api-name: securesourcemanager \ No newline at end of file diff --git a/java-security-private-ca/.OwlBot-hermetic.yaml b/java-security-private-ca/.OwlBot-hermetic.yaml deleted file mode 100644 index ebe9982eff85..000000000000 --- a/java-security-private-ca/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-security-private-ca/samples/snippets/generated" -- "/java-security-private-ca/grpc-google-.*/src" -- "/java-security-private-ca/proto-google-.*/src" -- "/java-security-private-ca/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/security/privateca/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-security-private-ca/$1/proto-google-cloud-security-private-ca-$1/src" -- source: "/google/cloud/security/privateca/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-security-private-ca/$1/grpc-google-cloud-security-private-ca-$1/src" -- source: "/google/cloud/security/privateca/v.*/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-security-private-ca/$1/google-cloud-security-private-ca/src" -- source: "/google/cloud/security/privateca/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-security-private-ca/$1/samples/snippets/generated" - -api-name: privateca diff --git a/java-securitycenter-settings/.OwlBot-hermetic.yaml b/java-securitycenter-settings/.OwlBot-hermetic.yaml deleted file mode 100644 index b7a7fea9c7b1..000000000000 --- a/java-securitycenter-settings/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-securitycenter-settings/grpc-google-.*/src" -- "/java-securitycenter-settings/proto-google-.*/src" -- "/java-securitycenter-settings/google-.*/src" -- "/java-securitycenter-settings/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/securitycenter/settings/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-securitycenter-settings/$1/proto-google-cloud-securitycenter-settings-$1/src" -- source: "/google/cloud/securitycenter/settings/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-securitycenter-settings/$1/grpc-google-cloud-securitycenter-settings-$1/src" -- source: "/google/cloud/securitycenter/settings/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-securitycenter-settings/$1/google-cloud-securitycenter-settings/src" -- source: "/google/cloud/securitycenter/settings/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-securitycenter-settings/$1/samples/snippets/generated" - -api-name: securitycenter diff --git a/java-securitycenter/.OwlBot-hermetic.yaml b/java-securitycenter/.OwlBot-hermetic.yaml deleted file mode 100644 index 887a17fde535..000000000000 --- a/java-securitycenter/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-securitycenter/samples/snippets/generated" -- "/java-securitycenter/grpc-google-.*/src" -- "/java-securitycenter/proto-google-.*/src" -- "/java-securitycenter/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*proto-google-cloud-securitycenter-v1beta1/src/main/java/com/google/cloud/securitycenter/v1beta1/UntypedSecuritymarksName.java" -- "/.*proto-google-cloud-securitycenter-v1beta1/src/main/java/com/google/cloud/securitycenter/v1beta1/SecuritymarksNames.java" -- "/.*proto-google-cloud-securitycenter-v1beta1/src/main/java/com/google/cloud/securitycenter/v1beta1/SecuritymarksName.java" -- "/.*proto-google-cloud-securitycenter-v1beta1/src/main/java/com/google/cloud/securitycenter/v1beta1/FindingSecurityMarksName.java" -- "/.*proto-google-cloud-securitycenter-v1beta1/src/main/java/com/google/cloud/securitycenter/v1beta1/AssetSecurityMarksName.java" - -deep-copy-regex: -- source: "/google/cloud/securitycenter/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-securitycenter/$1/proto-google-cloud-securitycenter-$1/src" -- source: "/google/cloud/securitycenter/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-securitycenter/$1/grpc-google-cloud-securitycenter-$1/src" -- source: "/google/cloud/securitycenter/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-securitycenter/$1/google-cloud-securitycenter/src" -- source: "/google/cloud/securitycenter/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-securitycenter/$1/samples/snippets/generated" - -api-name: securitycenter diff --git a/java-securitycentermanagement/.OwlBot-hermetic.yaml b/java-securitycentermanagement/.OwlBot-hermetic.yaml deleted file mode 100644 index 111d059bd078..000000000000 --- a/java-securitycentermanagement/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-securitycentermanagement/grpc-google-.*/src" -- "/java-securitycentermanagement/proto-google-.*/src" -- "/java-securitycentermanagement/google-.*/src" -- "/java-securitycentermanagement/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/securitycentermanagement/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-securitycentermanagement/$1/proto-google-cloud-securitycentermanagement-$1/src" -- source: "/google/cloud/securitycentermanagement/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-securitycentermanagement/$1/grpc-google-cloud-securitycentermanagement-$1/src" -- source: "/google/cloud/securitycentermanagement/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-securitycentermanagement/$1/google-cloud-securitycentermanagement/src" -- source: "/google/cloud/securitycentermanagement/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-securitycentermanagement/$1/samples/snippets/generated" - - -api-name: securitycentermanagement \ No newline at end of file diff --git a/java-securityposture/.OwlBot-hermetic.yaml b/java-securityposture/.OwlBot-hermetic.yaml deleted file mode 100644 index 157dd1ca34bf..000000000000 --- a/java-securityposture/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-securityposture/grpc-google-.*/src" -- "/java-securityposture/proto-google-.*/src" -- "/java-securityposture/google-.*/src" -- "/java-securityposture/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/securityposture/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-securityposture/$1/proto-google-cloud-securityposture-$1/src" -- source: "/google/cloud/securityposture/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-securityposture/$1/grpc-google-cloud-securityposture-$1/src" -- source: "/google/cloud/securityposture/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-securityposture/$1/google-cloud-securityposture/src" -- source: "/google/cloud/securityposture/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-securityposture/$1/samples/snippets/generated" - - -api-name: securityposture \ No newline at end of file diff --git a/java-service-control/.OwlBot-hermetic.yaml b/java-service-control/.OwlBot-hermetic.yaml deleted file mode 100644 index b1ab44a4737e..000000000000 --- a/java-service-control/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-service-control/grpc-google-.*/src" -- "/java-service-control/proto-google-.*/src" -- "/java-service-control/google-.*/src" -- "/java-service-control/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/api/servicecontrol/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-service-control/$1/proto-google-cloud-service-control-$1/src" -- source: "/google/api/servicecontrol/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-service-control/$1/grpc-google-cloud-service-control-$1/src" -- source: "/google/api/servicecontrol/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-service-control/$1/google-cloud-service-control/src" -- source: "/google/api/servicecontrol/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-service-control/$1/samples/snippets/generated" - -api-name: servicecontrol diff --git a/java-service-management/.OwlBot-hermetic.yaml b/java-service-management/.OwlBot-hermetic.yaml deleted file mode 100644 index c436920dc409..000000000000 --- a/java-service-management/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-service-management/grpc-google-.*/src" -- "/java-service-management/proto-google-.*/src" -- "/java-service-management/google-.*/src" -- "/java-service-management/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-service-management/src/test/java/com/google/cloud/api/servicemanagement/v1/ServiceManagerClientHttpJsonTest.java" - -deep-copy-regex: -- source: "/google/api/servicemanagement/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-service-management/$1/proto-google-cloud-service-management-$1/src" -- source: "/google/api/servicemanagement/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-service-management/$1/grpc-google-cloud-service-management-$1/src" -- source: "/google/api/servicemanagement/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-service-management/$1/google-cloud-service-management/src" -- source: "/google/api/servicemanagement/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-service-management/$1/samples/snippets/generated" - -api-name: servicemanagement diff --git a/java-service-usage/.OwlBot-hermetic.yaml b/java-service-usage/.OwlBot-hermetic.yaml deleted file mode 100644 index 67c408dc52ab..000000000000 --- a/java-service-usage/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-service-usage/grpc-google-.*/src" -- "/java-service-usage/proto-google-.*/src" -- "/java-service-usage/google-.*/src" -- "/java-service-usage/samples/snippets/generated" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/api/serviceusage/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-service-usage/$1/proto-google-cloud-service-usage-$1/src" -- source: "/google/api/serviceusage/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-service-usage/$1/grpc-google-cloud-service-usage-$1/src" -- source: "/google/api/serviceusage/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-service-usage/$1/google-cloud-service-usage/src" -- source: "/google/api/serviceusage/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-service-usage/$1/samples/snippets/generated" - -api-name: serviceusage diff --git a/java-servicedirectory/.OwlBot-hermetic.yaml b/java-servicedirectory/.OwlBot-hermetic.yaml deleted file mode 100644 index 868555902c36..000000000000 --- a/java-servicedirectory/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-servicedirectory/samples/snippets/generated" -- "/java-servicedirectory/grpc-google-.*/src" -- "/java-servicedirectory/proto-google-.*/src" -- "/java-servicedirectory/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/servicedirectory/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-servicedirectory/$1/proto-google-cloud-servicedirectory-$1/src" -- source: "/google/cloud/servicedirectory/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-servicedirectory/$1/grpc-google-cloud-servicedirectory-$1/src" -- source: "/google/cloud/servicedirectory/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-servicedirectory/$1/google-cloud-servicedirectory/src" -- source: "/google/cloud/servicedirectory/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-servicedirectory/$1/samples/snippets/generated" - -api-name: servicedirectory diff --git a/java-servicehealth/.OwlBot-hermetic.yaml b/java-servicehealth/.OwlBot-hermetic.yaml deleted file mode 100644 index b6a92928c1f7..000000000000 --- a/java-servicehealth/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-servicehealth/grpc-google-.*/src" -- "/java-servicehealth/proto-google-.*/src" -- "/java-servicehealth/google-.*/src" -- "/java-servicehealth/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/servicehealth/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-servicehealth/$1/proto-google-cloud-servicehealth-$1/src" -- source: "/google/cloud/servicehealth/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-servicehealth/$1/grpc-google-cloud-servicehealth-$1/src" -- source: "/google/cloud/servicehealth/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-servicehealth/$1/google-cloud-servicehealth/src" -- source: "/google/cloud/servicehealth/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-servicehealth/$1/samples/snippets/generated" - - -api-name: servicehealth \ No newline at end of file diff --git a/java-shell/.OwlBot-hermetic.yaml b/java-shell/.OwlBot-hermetic.yaml deleted file mode 100644 index eb45f01c0d80..000000000000 --- a/java-shell/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shell/samples/snippets/generated" -- "/java-shell/grpc-google-.*/src" -- "/java-shell/proto-google-.*/src" -- "/java-shell/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/shell/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shell/$1/proto-google-cloud-shell-$1/src" -- source: "/google/cloud/shell/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shell/$1/grpc-google-cloud-shell-$1/src" -- source: "/google/cloud/shell/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shell/$1/google-cloud-shell/src" -- source: "/google/cloud/shell/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shell/$1/samples/snippets/generated" - -api-name: cloudshell diff --git a/java-shopping-css/.OwlBot-hermetic.yaml b/java-shopping-css/.OwlBot-hermetic.yaml deleted file mode 100644 index 85dc9638c585..000000000000 --- a/java-shopping-css/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-css/grpc-google-.*/src" -- "/java-shopping-css/proto-google-.*/src" -- "/java-shopping-css/google-.*/src" -- "/java-shopping-css/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/css/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-css/$1/proto-google-shopping-css-$1/src" -- source: "/google/shopping/css/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-css/$1/grpc-google-shopping-css-$1/src" -- source: "/google/shopping/css/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-css/$1/google-shopping-css/src" -- source: "/google/shopping/css/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-css/$1/samples/snippets/generated" - - -api-name: css \ No newline at end of file diff --git a/java-shopping-merchant-accounts/.OwlBot-hermetic.yaml b/java-shopping-merchant-accounts/.OwlBot-hermetic.yaml deleted file mode 100644 index 9625b0161907..000000000000 --- a/java-shopping-merchant-accounts/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-accounts/grpc-google-.*/src" -- "/java-shopping-merchant-accounts/proto-google-.*/src" -- "/java-shopping-merchant-accounts/google-.*/src" -- "/java-shopping-merchant-accounts/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/accounts/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-accounts/$1/proto-google-shopping-merchant-accounts-$1/src" -- source: "/google/shopping/merchant/accounts/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-accounts/$1/grpc-google-shopping-merchant-accounts-$1/src" -- source: "/google/shopping/merchant/accounts/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-accounts/$1/google-shopping-merchant-accounts/src" -- source: "/google/shopping/merchant/accounts/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-accounts/$1/samples/snippets/generated" - -api-name: merchantapi \ No newline at end of file diff --git a/java-shopping-merchant-conversions/.OwlBot-hermetic.yaml b/java-shopping-merchant-conversions/.OwlBot-hermetic.yaml deleted file mode 100644 index f3dd37243f40..000000000000 --- a/java-shopping-merchant-conversions/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-conversions/grpc-google-.*/src" -- "/java-shopping-merchant-conversions/proto-google-.*/src" -- "/java-shopping-merchant-conversions/google-.*/src" -- "/java-shopping-merchant-conversions/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/conversions/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-conversions/$1/proto-google-shopping-merchant-conversions-$1/src" -- source: "/google/shopping/merchant/conversions/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-conversions/$1/grpc-google-shopping-merchant-conversions-$1/src" -- source: "/google/shopping/merchant/conversions/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-conversions/$1/google-shopping-merchant-conversions/src" -- source: "/google/shopping/merchant/conversions/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-conversions/$1/samples/snippets/generated" - -api-name: shopping-merchant-conversions \ No newline at end of file diff --git a/java-shopping-merchant-datasources/.OwlBot-hermetic.yaml b/java-shopping-merchant-datasources/.OwlBot-hermetic.yaml deleted file mode 100644 index bd1291e3f8c9..000000000000 --- a/java-shopping-merchant-datasources/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-datasources/grpc-google-.*/src" -- "/java-shopping-merchant-datasources/proto-google-.*/src" -- "/java-shopping-merchant-datasources/google-.*/src" -- "/java-shopping-merchant-datasources/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/datasources/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-datasources/$1/proto-google-shopping-merchant-datasources-$1/src" -- source: "/google/shopping/merchant/datasources/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-datasources/$1/grpc-google-shopping-merchant-datasources-$1/src" -- source: "/google/shopping/merchant/datasources/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-datasources/$1/google-shopping-merchant-datasources/src" -- source: "/google/shopping/merchant/datasources/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-datasources/$1/samples/snippets/generated" - -api-name: merchantapi \ No newline at end of file diff --git a/java-shopping-merchant-inventories/.OwlBot-hermetic.yaml b/java-shopping-merchant-inventories/.OwlBot-hermetic.yaml deleted file mode 100644 index aa2ed61270d0..000000000000 --- a/java-shopping-merchant-inventories/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-inventories/grpc-google-.*/src" -- "/java-shopping-merchant-inventories/proto-google-.*/src" -- "/java-shopping-merchant-inventories/google-.*/src" -- "/java-shopping-merchant-inventories/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/inventories/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-inventories/$1/proto-google-shopping-merchant-inventories-$1/src" -- source: "/google/shopping/merchant/inventories/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-inventories/$1/grpc-google-shopping-merchant-inventories-$1/src" -- source: "/google/shopping/merchant/inventories/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-inventories/$1/google-shopping-merchant-inventories/src" -- source: "/google/shopping/merchant/inventories/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-inventories/$1/samples/snippets/generated" - - -api-name: merchantapi \ No newline at end of file diff --git a/java-shopping-merchant-lfp/.OwlBot-hermetic.yaml b/java-shopping-merchant-lfp/.OwlBot-hermetic.yaml deleted file mode 100644 index 8d0d80e1258c..000000000000 --- a/java-shopping-merchant-lfp/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-lfp/grpc-google-.*/src" -- "/java-shopping-merchant-lfp/proto-google-.*/src" -- "/java-shopping-merchant-lfp/google-.*/src" -- "/java-shopping-merchant-lfp/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/lfp/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-lfp/$1/proto-google-shopping-merchant-lfp-$1/src" -- source: "/google/shopping/merchant/lfp/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-lfp/$1/grpc-google-shopping-merchant-lfp-$1/src" -- source: "/google/shopping/merchant/lfp/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-lfp/$1/google-shopping-merchant-lfp/src" -- source: "/google/shopping/merchant/lfp/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-lfp/$1/samples/snippets/generated" - -api-name: shopping-merchant-lfp \ No newline at end of file diff --git a/java-shopping-merchant-notifications/.OwlBot-hermetic.yaml b/java-shopping-merchant-notifications/.OwlBot-hermetic.yaml deleted file mode 100644 index 7f4bbbdc24c2..000000000000 --- a/java-shopping-merchant-notifications/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-notifications/grpc-google-.*/src" -- "/java-shopping-merchant-notifications/proto-google-.*/src" -- "/java-shopping-merchant-notifications/google-.*/src" -- "/java-shopping-merchant-notifications/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/notifications/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-notifications/$1/proto-google-shopping-merchant-notifications-$1/src" -- source: "/google/shopping/merchant/notifications/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-notifications/$1/grpc-google-shopping-merchant-notifications-$1/src" -- source: "/google/shopping/merchant/notifications/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-notifications/$1/google-shopping-merchant-notifications/src" -- source: "/google/shopping/merchant/notifications/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-notifications/$1/samples/snippets/generated" - -api-name: shopping-merchant-notifications \ No newline at end of file diff --git a/java-shopping-merchant-product-studio/.OwlBot-hermetic.yaml b/java-shopping-merchant-product-studio/.OwlBot-hermetic.yaml deleted file mode 100644 index 92eb584e5bae..000000000000 --- a/java-shopping-merchant-product-studio/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-product-studio/grpc-google-.*/src" -- "/java-shopping-merchant-product-studio/proto-google-.*/src" -- "/java-shopping-merchant-product-studio/google-.*/src" -- "/java-shopping-merchant-product-studio/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/productstudio/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-product-studio/$1/proto-google-shopping-merchant-productstudio-$1/src" -- source: "/google/shopping/merchant/productstudio/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-product-studio/$1/grpc-google-shopping-merchant-productstudio-$1/src" -- source: "/google/shopping/merchant/productstudio/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-product-studio/$1/google-shopping-merchant-productstudio/src" -- source: "/google/shopping/merchant/productstudio/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-product-studio/$1/samples/snippets/generated" - -api-name: merchantapi \ No newline at end of file diff --git a/java-shopping-merchant-products/.OwlBot-hermetic.yaml b/java-shopping-merchant-products/.OwlBot-hermetic.yaml deleted file mode 100644 index a1b39aa14f9b..000000000000 --- a/java-shopping-merchant-products/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-products/grpc-google-.*/src" -- "/java-shopping-merchant-products/proto-google-.*/src" -- "/java-shopping-merchant-products/google-.*/src" -- "/java-shopping-merchant-products/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/products/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-products/$1/proto-google-shopping-merchant-products-$1/src" -- source: "/google/shopping/merchant/products/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-products/$1/grpc-google-shopping-merchant-products-$1/src" -- source: "/google/shopping/merchant/products/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-products/$1/google-shopping-merchant-products/src" -- source: "/google/shopping/merchant/products/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-products/$1/samples/snippets/generated" - -api-name: merchantapi \ No newline at end of file diff --git a/java-shopping-merchant-promotions/.OwlBot-hermetic.yaml b/java-shopping-merchant-promotions/.OwlBot-hermetic.yaml deleted file mode 100644 index daa80c453010..000000000000 --- a/java-shopping-merchant-promotions/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-promotions/grpc-google-.*/src" -- "/java-shopping-merchant-promotions/proto-google-.*/src" -- "/java-shopping-merchant-promotions/google-.*/src" -- "/java-shopping-merchant-promotions/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/promotions/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-promotions/$1/proto-google-shopping-merchant-promotions-$1/src" -- source: "/google/shopping/merchant/promotions/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-promotions/$1/grpc-google-shopping-merchant-promotions-$1/src" -- source: "/google/shopping/merchant/promotions/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-promotions/$1/google-shopping-merchant-promotions/src" -- source: "/google/shopping/merchant/promotions/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-promotions/$1/samples/snippets/generated" - -api-name: merchantapi \ No newline at end of file diff --git a/java-shopping-merchant-quota/.OwlBot-hermetic.yaml b/java-shopping-merchant-quota/.OwlBot-hermetic.yaml deleted file mode 100644 index 845a84f44df0..000000000000 --- a/java-shopping-merchant-quota/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-quota/grpc-google-.*/src" -- "/java-shopping-merchant-quota/proto-google-.*/src" -- "/java-shopping-merchant-quota/google-.*/src" -- "/java-shopping-merchant-quota/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/quota/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-quota/$1/proto-google-shopping-merchant-quota-$1/src" -- source: "/google/shopping/merchant/quota/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-quota/$1/grpc-google-shopping-merchant-quota-$1/src" -- source: "/google/shopping/merchant/quota/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-quota/$1/google-shopping-merchant-quota/src" -- source: "/google/shopping/merchant/quota/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-quota/$1/samples/snippets/generated" - -api-name: shopping-merchant-quota \ No newline at end of file diff --git a/java-shopping-merchant-reports/.OwlBot-hermetic.yaml b/java-shopping-merchant-reports/.OwlBot-hermetic.yaml deleted file mode 100644 index c2696556538a..000000000000 --- a/java-shopping-merchant-reports/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-reports/grpc-google-.*/src" -- "/java-shopping-merchant-reports/proto-google-.*/src" -- "/java-shopping-merchant-reports/google-.*/src" -- "/java-shopping-merchant-reports/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/reports/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-reports/$1/proto-google-shopping-merchant-reports-$1/src" -- source: "/google/shopping/merchant/reports/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-reports/$1/grpc-google-shopping-merchant-reports-$1/src" -- source: "/google/shopping/merchant/reports/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-reports/$1/google-shopping-merchant-reports/src" -- source: "/google/shopping/merchant/reports/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-reports/$1/samples/snippets/generated" - - -api-name: merchantapi \ No newline at end of file diff --git a/java-shopping-merchant-reviews/.OwlBot-hermetic.yaml b/java-shopping-merchant-reviews/.OwlBot-hermetic.yaml deleted file mode 100644 index e0d092823073..000000000000 --- a/java-shopping-merchant-reviews/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-shopping-merchant-reviews/grpc-google-.*/src" -- "/java-shopping-merchant-reviews/proto-google-.*/src" -- "/java-shopping-merchant-reviews/google-.*/src" -- "/java-shopping-merchant-reviews/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/shopping/merchant/reviews/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-reviews/$1/proto-google-shopping-merchant-reviews-$1/src" -- source: "/google/shopping/merchant/reviews/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-reviews/$1/grpc-google-shopping-merchant-reviews-$1/src" -- source: "/google/shopping/merchant/reviews/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-shopping-merchant-reviews/$1/google-shopping-merchant-reviews/src" -- source: "/google/shopping/merchant/reviews/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-shopping-merchant-reviews/$1/samples/snippets/generated" - -api-name: merchantapi \ No newline at end of file diff --git a/java-showcase/.OwlBot-hermetic.yaml b/java-showcase/.OwlBot-hermetic.yaml deleted file mode 100644 index f71ceabac975..000000000000 --- a/java-showcase/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-showcase/grpc-gapic-showcase-v1beta1/src" -- "/java-showcase/proto-gapic-showcase-v1beta1/src" -- "/java-showcase/gapic-showcase/src" -- "/java-showcase/samples/snippets/generated" - -deep-preserve-regex: -- "/java-showcase/gapic-showcase/src/test" -- "/java-showcase/gapic-showcase/src/main/java/com/google/showcase/v1beta1/Version.java" - -deep-copy-regex: -- source: "/schema/google/showcase/(v.*)/.*-java/proto-.*/src" - dest: "/owl-bot-staging/showcase/$1/proto-gapic-showcase-$1/src" -- source: "/schema/google/showcase/(v.*)/.*-java/grpc-.*/src" - dest: "/owl-bot-staging/showcase/$1/grpc-gapic-showcase-$1/src" -- source: "/schema/google/showcase/(v.*)/.*-java/gapic-.*/src" - dest: "/owl-bot-staging/showcase/$1/gapic-showcase/src" -- source: "/schema/google/showcase/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/showcase/$1/samples/snippets/generated" - -api-name: showcase \ No newline at end of file diff --git a/java-spanner/.OwlBot-hermetic.yaml b/java-spanner/.OwlBot-hermetic.yaml deleted file mode 100644 index 11cafc11a5c3..000000000000 --- a/java-spanner/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-remove-regex: -- /java-spanner/grpc-google-.*/src -- /java-spanner/proto-google-.*/src -- /java-spanner/google-cloud-spanner/src/main/java/com/google/cloud/spanner/v1 -- /java-spanner/google-cloud-spanner/src/main/java/com/google/cloud/spanner/admin -deep-preserve-regex: -- /.*google-.*/src/main/java/.*/stub/Version.java -- /.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java -- /.*proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CryptoKeyName.java -- /.*proto-google-cloud-spanner-admin-database-v1/src/main/java/com/google/spanner/admin/database/v1/CryptoKeyVersionName.java -deep-copy-regex: -- source: /google/spanner/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/proto-google-cloud-spanner-$1/src -- source: /google/spanner/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/grpc-google-cloud-spanner-$1/src -- source: /google/spanner/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/google-cloud-spanner/src -- source: /google/spanner/admin/database/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/proto-google-cloud-spanner-admin-database-$1/src -- source: /google/spanner/admin/database/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/grpc-google-cloud-spanner-admin-database-$1/src -- source: /google/spanner/admin/database/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/google-cloud-spanner/src -- source: /google/spanner/admin/instance/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/proto-google-cloud-spanner-admin-instance-$1/src -- source: /google/spanner/admin/instance/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/grpc-google-cloud-spanner-admin-instance-$1/src -- source: /google/spanner/admin/instance/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/google-cloud-spanner/src -- source: /google/spanner/executor/(v.*)/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/proto-google-cloud-spanner-executor-$1/src -- source: /google/spanner/executor/(v.*)/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/grpc-google-cloud-spanner-executor-$1/src -- source: /google/spanner/executor/(v.*)/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-spanner/$1/google-cloud-spanner-executor/src diff --git a/java-spanneradapter/.OwlBot-hermetic.yaml b/java-spanneradapter/.OwlBot-hermetic.yaml deleted file mode 100644 index e1613bb2f512..000000000000 --- a/java-spanneradapter/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-spanneradapter/grpc-google-.*/src" -- "/java-spanneradapter/proto-google-.*/src" -- "/java-spanneradapter/google-.*/src" -- "/java-spanneradapter/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/spanner/adapter/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-spanneradapter/$1/proto-google-cloud-spanneradapter-$1/src" -- source: "/google/spanner/adapter/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-spanneradapter/$1/grpc-google-cloud-spanneradapter-$1/src" -- source: "/google/spanner/adapter/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-spanneradapter/$1/google-cloud-spanneradapter/src" -- source: "/google/spanner/adapter/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-spanneradapter/$1/samples/snippets/generated" - -api-name: spanneradapter \ No newline at end of file diff --git a/java-speech/.OwlBot-hermetic.yaml b/java-speech/.OwlBot-hermetic.yaml deleted file mode 100644 index cccfac32ddd0..000000000000 --- a/java-speech/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-speech/samples/snippets/generated" -- "/java-speech/grpc-google-.*/src" -- "/java-speech/proto-google-.*/src" -- "/java-speech/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-speech/src/test/java/com/google/cloud/speech/v1/SpeechSmokeTest.java" -- "/.*google-cloud-speech/src/test/java/com/google/cloud/speech/v1p1beta1/SpeechSmokeTest.java" -- "/.*google-cloud-speech/src/test/resources/hello.flac" -- "/.*google-cloud-speech/src/test/resources/META-INF/native-image/" - -deep-copy-regex: -- source: "/google/cloud/speech/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-speech/$1/proto-google-cloud-speech-$1/src" -- source: "/google/cloud/speech/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-speech/$1/grpc-google-cloud-speech-$1/src" -- source: "/google/cloud/speech/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-speech/$1/google-cloud-speech/src" -- source: "/google/cloud/speech/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-speech/$1/samples/snippets/generated" - -api-name: speech diff --git a/java-storage-transfer/.OwlBot-hermetic.yaml b/java-storage-transfer/.OwlBot-hermetic.yaml deleted file mode 100644 index d27a909724d3..000000000000 --- a/java-storage-transfer/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-storage-transfer/grpc-google-.*/src" -- "/java-storage-transfer/proto-google-.*/src" -- "/java-storage-transfer/google-.*/src" -- "/java-storage-transfer/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/storagetransfer/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-storage-transfer/$1/proto-google-cloud-storage-transfer-$1/src" -- source: "/google/storagetransfer/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-storage-transfer/$1/grpc-google-cloud-storage-transfer-$1/src" -- source: "/google/storagetransfer/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-storage-transfer/$1/google-cloud-storage-transfer/src" -- source: "/google/storagetransfer/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-storage-transfer/$1/samples/snippets/generated" - -api-name: storagetransfer diff --git a/java-storage/.OwlBot-hermetic.yaml b/java-storage/.OwlBot-hermetic.yaml deleted file mode 100644 index 3b8eff6dc388..000000000000 --- a/java-storage/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - -deep-preserve-regex: -- /.*google-.*/src/main/java/.*/stub/Version.java -- /.*google-.*/src/test/java/com/google/storage/control/v2/ITFoldersTest.java -deep-remove-regex: -- /.*grpc-google-.*/src -- /.*proto-google-.*/src -- /.*gapic-google-.*/src -- /.*google-cloud-storage-control/src -deep-copy-regex: -- source: /google/storage/v2/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-storage/v2/proto-google-cloud-storage-v2/src -- source: /google/storage/v2/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-storage/v2/grpc-google-cloud-storage-v2/src -- source: /google/storage/v2/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-storage/v2/gapic-google-cloud-storage-v2/src -- source: /google/storage/v2/.*-java/gapic-google-.*/src/main/java/com/google/storage/v2/gapic_metadata.json - dest: /owl-bot-staging/java-storage/v2/gapic-google-cloud-storage-v2/src/main/resources/com/google/storage/v2/gapic_metadata.json -- source: /google/storage/control/v2/.*-java/proto-google-.*/src - dest: /owl-bot-staging/java-storage/v2/proto-google-cloud-storage-control-v2/src -- source: /google/storage/control/v2/.*-java/grpc-google-.*/src - dest: /owl-bot-staging/java-storage/v2/grpc-google-cloud-storage-control-v2/src -- source: /google/storage/control/v2/.*-java/gapic-google-.*/src - dest: /owl-bot-staging/java-storage/v2/google-cloud-storage-control/src -- source: /google/storage/control/v2/.*-java/gapic-google-.*/src/main/java/com/google/storage/control/v2/gapic_metadata.json - dest: /owl-bot-staging/java-storage/v2/google-cloud-storage-control/src/main/resources/com/google/storage/control/v2/gapic_metadata.json diff --git a/java-storagebatchoperations/.OwlBot-hermetic.yaml b/java-storagebatchoperations/.OwlBot-hermetic.yaml deleted file mode 100644 index 5740ca2e28b9..000000000000 --- a/java-storagebatchoperations/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-storagebatchoperations/grpc-google-.*/src" -- "/java-storagebatchoperations/proto-google-.*/src" -- "/java-storagebatchoperations/google-.*/src" -- "/java-storagebatchoperations/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/storagebatchoperations/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-storagebatchoperations/$1/proto-google-cloud-storagebatchoperations-$1/src" -- source: "/google/cloud/storagebatchoperations/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-storagebatchoperations/$1/grpc-google-cloud-storagebatchoperations-$1/src" -- source: "/google/cloud/storagebatchoperations/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-storagebatchoperations/$1/google-cloud-storagebatchoperations/src" -- source: "/google/cloud/storagebatchoperations/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-storagebatchoperations/$1/samples/snippets/generated" - -api-name: storagebatchoperations \ No newline at end of file diff --git a/java-storageinsights/.OwlBot-hermetic.yaml b/java-storageinsights/.OwlBot-hermetic.yaml deleted file mode 100644 index e07bfe54426c..000000000000 --- a/java-storageinsights/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-storageinsights/grpc-google-.*/src" -- "/java-storageinsights/proto-google-.*/src" -- "/java-storageinsights/google-.*/src" -- "/java-storageinsights/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/storageinsights/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-storageinsights/$1/proto-google-cloud-storageinsights-$1/src" -- source: "/google/cloud/storageinsights/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-storageinsights/$1/grpc-google-cloud-storageinsights-$1/src" -- source: "/google/cloud/storageinsights/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-storageinsights/$1/google-cloud-storageinsights/src" -- source: "/google/cloud/storageinsights/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-storageinsights/$1/samples/snippets/generated" - - -api-name: storageinsights \ No newline at end of file diff --git a/java-talent/.OwlBot-hermetic.yaml b/java-talent/.OwlBot-hermetic.yaml deleted file mode 100644 index 2144d70d7b19..000000000000 --- a/java-talent/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-talent/samples/snippets/generated" -- "/java-talent/grpc-google-.*/src" -- "/java-talent/proto-google-.*/src" -- "/java-talent/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/talent/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-talent/$1/proto-google-cloud-talent-$1/src" -- source: "/google/cloud/talent/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-talent/$1/grpc-google-cloud-talent-$1/src" -- source: "/google/cloud/talent/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-talent/$1/google-cloud-talent/src" -- source: "/google/cloud/talent/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-talent/$1/samples/snippets/generated" - -api-name: jobs diff --git a/java-tasks/.OwlBot-hermetic.yaml b/java-tasks/.OwlBot-hermetic.yaml deleted file mode 100644 index 0c6e99f9fa6d..000000000000 --- a/java-tasks/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-tasks/samples/snippets/generated" -- "/java-tasks/grpc-google-.*/src" -- "/java-tasks/proto-google-.*/src" -- "/java-tasks/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-tasks/src/test/java/com/google/cloud/tasks/v2beta3/CloudTasksSmokeTest.java" -- "/.*proto-google-cloud-tasks-v2/src/main/java/com/google/cloud/tasks/v2/ProjectName.java" -- "/.*proto-google-cloud-tasks-v2beta2/src/main/java/com/google/cloud/tasks/v2beta2/ProjectName.java" -- "/.*proto-google-cloud-tasks-v2beta3/src/main/java/com/google/cloud/tasks/v2beta3/ProjectName.java" - -deep-copy-regex: -- source: "/google/cloud/tasks/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-tasks/$1/proto-google-cloud-tasks-$1/src" -- source: "/google/cloud/tasks/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-tasks/$1/grpc-google-cloud-tasks-$1/src" -- source: "/google/cloud/tasks/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-tasks/$1/google-cloud-tasks/src" -- source: "/google/cloud/tasks/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-tasks/$1/samples/snippets/generated" - -api-name: cloudtasks diff --git a/java-telcoautomation/.OwlBot-hermetic.yaml b/java-telcoautomation/.OwlBot-hermetic.yaml deleted file mode 100644 index d8f63cf283f9..000000000000 --- a/java-telcoautomation/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-telcoautomation/grpc-google-.*/src" -- "/java-telcoautomation/proto-google-.*/src" -- "/java-telcoautomation/google-.*/src" -- "/java-telcoautomation/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/telcoautomation/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-telcoautomation/$1/proto-google-cloud-telcoautomation-$1/src" -- source: "/google/cloud/telcoautomation/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-telcoautomation/$1/grpc-google-cloud-telcoautomation-$1/src" -- source: "/google/cloud/telcoautomation/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-telcoautomation/$1/google-cloud-telcoautomation/src" -- source: "/google/cloud/telcoautomation/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-telcoautomation/$1/samples/snippets/generated" - - -api-name: telcoautomation \ No newline at end of file diff --git a/java-texttospeech/.OwlBot-hermetic.yaml b/java-texttospeech/.OwlBot-hermetic.yaml deleted file mode 100644 index 4ef41ea7d2bb..000000000000 --- a/java-texttospeech/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-texttospeech/samples/snippets/generated" -- "/java-texttospeech/grpc-google-.*/src" -- "/java-texttospeech/proto-google-.*/src" -- "/java-texttospeech/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-texttospeech/src/test/java/com/google/cloud/texttospeech/v1/TextToSpeechSmokeTest.java" -- "/.*google-cloud-texttospeech/src/test/java/com/google/cloud/texttospeech/v1beta1/TextToSpeechSmokeTest.java" - - -deep-copy-regex: -- source: "/google/cloud/texttospeech/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-texttospeech/$1/proto-google-cloud-texttospeech-$1/src" -- source: "/google/cloud/texttospeech/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-texttospeech/$1/grpc-google-cloud-texttospeech-$1/src" -- source: "/google/cloud/texttospeech/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-texttospeech/$1/google-cloud-texttospeech/src" -- source: "/google/cloud/texttospeech/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-texttospeech/$1/samples/snippets/generated" - -api-name: texttospeech diff --git a/java-tpu/.OwlBot-hermetic.yaml b/java-tpu/.OwlBot-hermetic.yaml deleted file mode 100644 index 3794e77bf685..000000000000 --- a/java-tpu/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-tpu/samples/snippets/generated" -- "/java-tpu/grpc-google-.*/src" -- "/java-tpu/proto-google-.*/src" -- "/java-tpu/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/tpu/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-tpu/$1/proto-google-cloud-tpu-$1/src" -- source: "/google/cloud/tpu/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-tpu/$1/grpc-google-cloud-tpu-$1/src" -- source: "/google/cloud/tpu/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-tpu/$1/google-cloud-tpu/src" -- source: "/google/cloud/tpu/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-tpu/$1/samples/snippets/generated" - -api-name: tpu diff --git a/java-trace/.OwlBot-hermetic.yaml b/java-trace/.OwlBot-hermetic.yaml deleted file mode 100644 index fa7122e5a04c..000000000000 --- a/java-trace/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-trace/grpc-google-.*/src" -- "/java-trace/proto-google-.*/src" -- "/java-trace/google-.*/src" -- "/java-trace/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-trace/src/test/java/com/google/cloud/trace/v1/VPCServiceControlTest.java" -- "/.*google-cloud-trace/src/test/java/com/google/cloud/trace/v2/VPCServiceControlTest.java" - -deep-copy-regex: -- source: "/google/devtools/cloudtrace/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-trace/$1/proto-google-cloud-trace-$1/src" -- source: "/google/devtools/cloudtrace/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-trace/$1/grpc-google-cloud-trace-$1/src" -- source: "/google/devtools/cloudtrace/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-trace/$1/google-cloud-trace/src" -- source: "/google/devtools/cloudtrace/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-trace/$1/samples/snippets/generated" - -api-name: cloudtrace diff --git a/java-translate/.OwlBot-hermetic.yaml b/java-translate/.OwlBot-hermetic.yaml deleted file mode 100644 index 06da19fd5cb5..000000000000 --- a/java-translate/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-translate/samples/snippets/generated" -- "/java-translate/grpc-google-.*/src" -- "/java-translate/proto-google-.*/src" -- "/java-translate/google-.*/src/com/google/cloud/translate/v3" -- "/java-translate/google-.*/src/com/google/cloud/translate/v3beta1" - - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/translate/(v.*)/.*-java/proto-google-.*/src/main/java/com/google/cloud/translate" - dest: "/owl-bot-staging/java-translate/$1/proto-google-cloud-translate-$1/src/main/java/com/google/cloud/translate" -- source: "/google/cloud/translate/(v.*)/.*-java/proto-google-.*/src/main/proto/google/cloud/translate" - dest: "/owl-bot-staging/java-translate/$1/proto-google-cloud-translate-$1/src/main/proto/google/cloud/translate" -- source: "/google/cloud/translate/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-translate/$1/grpc-google-cloud-translate-$1/src" -- source: "/google/cloud/translate/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-translate/$1/google-cloud-translate/src" -- source: "/google/cloud/translate/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-translate/$1/samples/snippets/generated" - -api-name: translate diff --git a/java-valkey/.OwlBot-hermetic.yaml b/java-valkey/.OwlBot-hermetic.yaml deleted file mode 100644 index 0648c0ad5d99..000000000000 --- a/java-valkey/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-valkey/grpc-google-.*/src" -- "/java-valkey/proto-google-.*/src" -- "/java-valkey/google-.*/src" -- "/java-valkey/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/memorystore/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-valkey/$1/proto-google-cloud-valkey-$1/src" -- source: "/google/cloud/memorystore/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-valkey/$1/grpc-google-cloud-valkey-$1/src" -- source: "/google/cloud/memorystore/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-valkey/$1/google-cloud-valkey/src" -- source: "/google/cloud/memorystore/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-valkey/$1/samples/snippets/generated" - -api-name: memorystore \ No newline at end of file diff --git a/java-vectorsearch/.OwlBot-hermetic.yaml b/java-vectorsearch/.OwlBot-hermetic.yaml deleted file mode 100644 index b3fa7977161f..000000000000 --- a/java-vectorsearch/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-vectorsearch/grpc-google-.*/src" -- "/java-vectorsearch/proto-google-.*/src" -- "/java-vectorsearch/google-.*/src" -- "/java-vectorsearch/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/vectorsearch/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-vectorsearch/$1/proto-google-cloud-vectorsearch-$1/src" -- source: "/google/cloud/vectorsearch/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-vectorsearch/$1/grpc-google-cloud-vectorsearch-$1/src" -- source: "/google/cloud/vectorsearch/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-vectorsearch/$1/google-cloud-vectorsearch/src" -- source: "/google/cloud/vectorsearch/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-vectorsearch/$1/samples/snippets/generated" - -api-name: vectorsearch \ No newline at end of file diff --git a/java-video-intelligence/.OwlBot-hermetic.yaml b/java-video-intelligence/.OwlBot-hermetic.yaml deleted file mode 100644 index d45a10f8a927..000000000000 --- a/java-video-intelligence/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-video-intelligence/samples/snippets/generated" -- "/java-video-intelligence/grpc-google-.*/src" -- "/java-video-intelligence/proto-google-.*/src" -- "/java-video-intelligence/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/videointelligence/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-video-intelligence/$1/proto-google-cloud-video-intelligence-$1/src" -- source: "/google/cloud/videointelligence/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-video-intelligence/$1/grpc-google-cloud-video-intelligence-$1/src" -- source: "/google/cloud/videointelligence/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-video-intelligence/$1/google-cloud-video-intelligence/src" -- source: "/google/cloud/videointelligence/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-video-intelligence/$1/samples/snippets/generated" - -api-name: videointelligence diff --git a/java-video-live-stream/.OwlBot-hermetic.yaml b/java-video-live-stream/.OwlBot-hermetic.yaml deleted file mode 100644 index d5a2876a1ffd..000000000000 --- a/java-video-live-stream/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-video-live-stream/samples/snippets/generated" -- "/java-video-live-stream/grpc-google-.*/src" -- "/java-video-live-stream/proto-google-.*/src" -- "/java-video-live-stream/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/video/livestream/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-video-live-stream/$1/proto-google-cloud-live-stream-$1/src" -- source: "/google/cloud/video/livestream/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-video-live-stream/$1/grpc-google-cloud-live-stream-$1/src" -- source: "/google/cloud/video/livestream/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-video-live-stream/$1/google-cloud-live-stream/src" -- source: "/google/cloud/video/livestream/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-video-live-stream/$1/samples/snippets/generated" - -api-name: livestream diff --git a/java-video-stitcher/.OwlBot-hermetic.yaml b/java-video-stitcher/.OwlBot-hermetic.yaml deleted file mode 100644 index 4a79449cfdbd..000000000000 --- a/java-video-stitcher/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-video-stitcher/grpc-google-.*/src" -- "/java-video-stitcher/proto-google-.*/src" -- "/java-video-stitcher/google-.*/src" -- "/java-video-stitcher/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/video/stitcher/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-video-stitcher/$1/proto-google-cloud-video-stitcher-$1/src" -- source: "/google/cloud/video/stitcher/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-video-stitcher/$1/grpc-google-cloud-video-stitcher-$1/src" -- source: "/google/cloud/video/stitcher/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-video-stitcher/$1/google-cloud-video-stitcher/src" -- source: "/google/cloud/video/stitcher/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-video-stitcher/$1/samples/snippets/generated" - -api-name: videostitcher diff --git a/java-video-transcoder/.OwlBot-hermetic.yaml b/java-video-transcoder/.OwlBot-hermetic.yaml deleted file mode 100644 index f6e4e1a4a4ff..000000000000 --- a/java-video-transcoder/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-video-transcoder/samples/snippets/generated" -- "/java-video-transcoder/grpc-google-.*/src" -- "/java-video-transcoder/proto-google-.*/src" -- "/java-video-transcoder/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/video/transcoder/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-video-transcoder/$1/proto-google-cloud-video-transcoder-$1/src" -- source: "/google/cloud/video/transcoder/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-video-transcoder/$1/grpc-google-cloud-video-transcoder-$1/src" -- source: "/google/cloud/video/transcoder/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-video-transcoder/$1/google-cloud-video-transcoder/src" -- source: "/google/cloud/video/transcoder/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-video-transcoder/$1/samples/snippets/generated" - -api-name: transcoder diff --git a/java-vision/.OwlBot-hermetic.yaml b/java-vision/.OwlBot-hermetic.yaml deleted file mode 100644 index e394616ef3c0..000000000000 --- a/java-vision/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-vision/samples/snippets/generated" -- "/java-vision/grpc-google-.*/src" -- "/java-vision/proto-google-.*/src" -- "/java-vision/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*proto-google-cloud-vision-v1/src/main/java/com/google/cloud/vision/v1/ImageName.java" -- "/.*google-cloud-vision/src/test/java/com/google/cloud/vision/it/ITSystemTest.java" -- "/.*google-cloud-vision/src/test/resources/city.jpg" -- "/.*google-cloud-vision/src/test/resources/face_no_surprise.jpg" -- "/.*google-cloud-vision/src/test/resources/landmark.jpg" -- "/.*google-cloud-vision/src/test/resources/logos.png" -- "/.*google-cloud-vision/src/test/resources/puppies.jpg" -- "/.*google-cloud-vision/src/test/resources/text.jpg" -- "/.*google-cloud-vision/src/test/resources/wakeupcat.jpg" - -deep-copy-regex: -- source: "/google/cloud/vision/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-vision/$1/proto-google-cloud-vision-$1/src" -- source: "/google/cloud/vision/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-vision/$1/grpc-google-cloud-vision-$1/src" -- source: "/google/cloud/vision/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-vision/$1/google-cloud-vision/src" -- source: "/google/cloud/vision/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-vision/$1/samples/snippets/generated" - -api-name: vision diff --git a/java-visionai/.OwlBot-hermetic.yaml b/java-visionai/.OwlBot-hermetic.yaml deleted file mode 100644 index 05f7525e913b..000000000000 --- a/java-visionai/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-visionai/grpc-google-.*/src" -- "/java-visionai/proto-google-.*/src" -- "/java-visionai/google-.*/src" -- "/java-visionai/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/visionai/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-visionai/$1/proto-google-cloud-visionai-$1/src" -- source: "/google/cloud/visionai/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-visionai/$1/grpc-google-cloud-visionai-$1/src" -- source: "/google/cloud/visionai/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-visionai/$1/google-cloud-visionai/src" -- source: "/google/cloud/visionai/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-visionai/$1/samples/snippets/generated" - -api-name: visionai \ No newline at end of file diff --git a/java-vmmigration/.OwlBot-hermetic.yaml b/java-vmmigration/.OwlBot-hermetic.yaml deleted file mode 100644 index 56746503806f..000000000000 --- a/java-vmmigration/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-vmmigration/samples/snippets/generated" -- "/java-vmmigration/grpc-google-.*/src" -- "/java-vmmigration/proto-google-.*/src" -- "/java-vmmigration/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/vmmigration/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-vmmigration/$1/proto-google-cloud-vmmigration-$1/src" -- source: "/google/cloud/vmmigration/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-vmmigration/$1/grpc-google-cloud-vmmigration-$1/src" -- source: "/google/cloud/vmmigration/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-vmmigration/$1/google-cloud-vmmigration/src" -- source: "/google/cloud/vmmigration/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-vmmigration/$1/samples/snippets/generated" - -api-name: vmmigration diff --git a/java-vmwareengine/.OwlBot-hermetic.yaml b/java-vmwareengine/.OwlBot-hermetic.yaml deleted file mode 100644 index 32625de40188..000000000000 --- a/java-vmwareengine/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-vmwareengine/grpc-google-.*/src" -- "/java-vmwareengine/proto-google-.*/src" -- "/java-vmwareengine/google-.*/src" -- "/java-vmwareengine/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/vmwareengine/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-vmwareengine/$1/proto-google-cloud-vmwareengine-$1/src" -- source: "/google/cloud/vmwareengine/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-vmwareengine/$1/grpc-google-cloud-vmwareengine-$1/src" -- source: "/google/cloud/vmwareengine/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-vmwareengine/$1/google-cloud-vmwareengine/src" -- source: "/google/cloud/vmwareengine/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-vmwareengine/$1/samples/snippets/generated" - -api-name: vmwareengine diff --git a/java-vpcaccess/.OwlBot-hermetic.yaml b/java-vpcaccess/.OwlBot-hermetic.yaml deleted file mode 100644 index b59f9f7eb2cd..000000000000 --- a/java-vpcaccess/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-vpcaccess/samples/snippets/generated" -- "/java-vpcaccess/grpc-google-.*/src" -- "/java-vpcaccess/proto-google-.*/src" -- "/java-vpcaccess/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/vpcaccess/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-vpcaccess/$1/proto-google-cloud-vpcaccess-$1/src" -- source: "/google/cloud/vpcaccess/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-vpcaccess/$1/grpc-google-cloud-vpcaccess-$1/src" -- source: "/google/cloud/vpcaccess/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-vpcaccess/$1/google-cloud-vpcaccess/src" -- source: "/google/cloud/vpcaccess/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-vpcaccess/$1/samples/snippets/generated" - -api-name: vpcaccess diff --git a/java-webrisk/.OwlBot-hermetic.yaml b/java-webrisk/.OwlBot-hermetic.yaml deleted file mode 100644 index 5f7551f9c27b..000000000000 --- a/java-webrisk/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-webrisk/samples/snippets/generated" -- "/java-webrisk/grpc-google-.*/src" -- "/java-webrisk/proto-google-.*/src" -- "/java-webrisk/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/webrisk/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-webrisk/$1/proto-google-cloud-webrisk-$1/src" -- source: "/google/cloud/webrisk/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-webrisk/$1/grpc-google-cloud-webrisk-$1/src" -- source: "/google/cloud/webrisk/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-webrisk/$1/google-cloud-webrisk/src" -- source: "/google/cloud/webrisk/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-webrisk/$1/samples/snippets/generated" - -api-name: webrisk diff --git a/java-websecurityscanner/.OwlBot-hermetic.yaml b/java-websecurityscanner/.OwlBot-hermetic.yaml deleted file mode 100644 index cb099f7e32c5..000000000000 --- a/java-websecurityscanner/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-websecurityscanner/samples/snippets/generated" -- "/java-websecurityscanner/grpc-google-.*/src" -- "/java-websecurityscanner/proto-google-.*/src" -- "/java-websecurityscanner/google-.*/src" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" -- "/.*google-cloud-websecurityscanner/src/test/java/com/google/cloud/websecurityscanner/it/v1beta/VPCServiceControlNegativeTest.java" -- "/.*google-cloud-websecurityscanner/src/test/java/com/google/cloud/websecurityscanner/it/v1beta/VPCServiceControlPositiveTest.java" - - -deep-copy-regex: -- source: "/google/cloud/websecurityscanner/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-websecurityscanner/$1/proto-google-cloud-websecurityscanner-$1/src" -- source: "/google/cloud/websecurityscanner/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-websecurityscanner/$1/grpc-google-cloud-websecurityscanner-$1/src" -- source: "/google/cloud/websecurityscanner/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-websecurityscanner/$1/google-cloud-websecurityscanner/src" -- source: "/google/cloud/websecurityscanner/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-websecurityscanner/$1/samples/snippets/generated" - -api-name: websecurityscanner diff --git a/java-workflow-executions/.OwlBot-hermetic.yaml b/java-workflow-executions/.OwlBot-hermetic.yaml deleted file mode 100644 index db20f01d0b75..000000000000 --- a/java-workflow-executions/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-workflow-executions/grpc-google-.*/src" -- "/java-workflow-executions/proto-google-.*/src" -- "/java-workflow-executions/google-.*/src" -- "/java-workflow-executions/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/workflows/executions/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-workflow-executions/$1/proto-google-cloud-workflow-executions-$1/src" -- source: "/google/cloud/workflows/executions/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-workflow-executions/$1/grpc-google-cloud-workflow-executions-$1/src" -- source: "/google/cloud/workflows/executions/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-workflow-executions/$1/google-cloud-workflow-executions/src" -- source: "/google/cloud/workflows/executions/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-workflow-executions/$1/samples/snippets/generated" - -api-name: workflowexecutions diff --git a/java-workflows/.OwlBot-hermetic.yaml b/java-workflows/.OwlBot-hermetic.yaml deleted file mode 100644 index cdee73a24d38..000000000000 --- a/java-workflows/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-workflows/samples/snippets/generated" -- "/java-workflows/grpc-google-.*/src" -- "/java-workflows/proto-google-.*/src" -- "/java-workflows/google-.*/src" - -deep-preserve-regex: - - "/.*google-.*/src/main/java/.*/stub/Version.java" - -deep-copy-regex: -- source: "/google/cloud/workflows/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-workflows/$1/proto-google-cloud-workflows-$1/src" -- source: "/google/cloud/workflows/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-workflows/$1/grpc-google-cloud-workflows-$1/src" -- source: "/google/cloud/workflows/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-workflows/$1/google-cloud-workflows/src" -- source: "/google/cloud/workflows/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-workflows/$1/samples/snippets/generated" - -api-name: workflows diff --git a/java-workloadmanager/.OwlBot-hermetic.yaml b/java-workloadmanager/.OwlBot-hermetic.yaml deleted file mode 100644 index 35136c7ef699..000000000000 --- a/java-workloadmanager/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-workloadmanager/grpc-google-.*/src" -- "/java-workloadmanager/proto-google-.*/src" -- "/java-workloadmanager/google-.*/src" -- "/java-workloadmanager/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/workloadmanager/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-workloadmanager/$1/proto-google-cloud-workloadmanager-$1/src" -- source: "/google/cloud/workloadmanager/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-workloadmanager/$1/grpc-google-cloud-workloadmanager-$1/src" -- source: "/google/cloud/workloadmanager/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-workloadmanager/$1/google-cloud-workloadmanager/src" -- source: "/google/cloud/workloadmanager/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-workloadmanager/$1/samples/snippets/generated" - -api-name: workloadmanager \ No newline at end of file diff --git a/java-workspaceevents/.OwlBot-hermetic.yaml b/java-workspaceevents/.OwlBot-hermetic.yaml deleted file mode 100644 index 34ebbcc9793e..000000000000 --- a/java-workspaceevents/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-workspaceevents/grpc-google-.*/src" -- "/java-workspaceevents/proto-google-.*/src" -- "/java-workspaceevents/google-.*/src" -- "/java-workspaceevents/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/apps/events/subscriptions/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-workspaceevents/$1/proto-google-cloud-workspaceevents-$1/src" -- source: "/google/apps/events/subscriptions/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-workspaceevents/$1/grpc-google-cloud-workspaceevents-$1/src" -- source: "/google/apps/events/subscriptions/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-workspaceevents/$1/google-cloud-workspaceevents/src" -- source: "/google/apps/events/subscriptions/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-workspaceevents/$1/samples/snippets/generated" - - -api-name: workspaceevents \ No newline at end of file diff --git a/java-workstations/.OwlBot-hermetic.yaml b/java-workstations/.OwlBot-hermetic.yaml deleted file mode 100644 index 2e2118bed884..000000000000 --- a/java-workstations/.OwlBot-hermetic.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.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. - - -deep-remove-regex: -- "/java-workstations/grpc-google-.*/src" -- "/java-workstations/proto-google-.*/src" -- "/java-workstations/google-.*/src" -- "/java-workstations/samples/snippets/generated" - -deep-preserve-regex: -- "/.*google-.*/src/main/java/.*/stub/Version.java" -- "/.*google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java" - -deep-copy-regex: -- source: "/google/cloud/workstations/(v.*)/.*-java/proto-google-.*/src" - dest: "/owl-bot-staging/java-workstations/$1/proto-google-cloud-workstations-$1/src" -- source: "/google/cloud/workstations/(v.*)/.*-java/grpc-google-.*/src" - dest: "/owl-bot-staging/java-workstations/$1/grpc-google-cloud-workstations-$1/src" -- source: "/google/cloud/workstations/(v.*)/.*-java/gapic-google-.*/src" - dest: "/owl-bot-staging/java-workstations/$1/google-cloud-workstations/src" -- source: "/google/cloud/workstations/(v.*)/.*-java/samples/snippets/generated" - dest: "/owl-bot-staging/java-workstations/$1/samples/snippets/generated" - - -api-name: workstations \ No newline at end of file