Skip to content

Commit fc6803d

Browse files
authoredMay 8, 2024··
feat: [routeoptimization] new module for routeoptimization (#10809)
* feat: [routeoptimization] new module for routeoptimization * chore: generate libraries at Wed May 8 15:22:23 UTC 2024
1 parent 55367d6 commit fc6803d

File tree

92 files changed

+113323
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+113323
-0
lines changed
 

‎generation_config.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1175,6 +1175,28 @@ libraries:
11751175
GAPICs:
11761176
- proto_path: google/maps/places/v1
11771177

1178+
- api_shortname: routeoptimization
1179+
name_pretty: Route Optimization API
1180+
product_documentation: https://developers.google.com/maps/documentation/route-optimization
1181+
api_description: The Route Optimization API assigns tasks and routes to a vehicle
1182+
fleet, optimizing against the objectives and constraints that you supply for your
1183+
transportation goals.
1184+
client_documentation:
1185+
https://cloud.google.com/java/docs/reference/google-maps-routeoptimization/latest/overview
1186+
release_level: preview
1187+
distribution_name: com.google.maps:google-maps-routeoptimization
1188+
api_id: routeoptimization.googleapis.com
1189+
library_type: GAPIC_AUTO
1190+
group_id: com.google.maps
1191+
cloud_api: false
1192+
GAPICs:
1193+
- proto_path: google/maps/routeoptimization/v1
1194+
library_name: maps-routeoptimization
1195+
requires_billing: true
1196+
rest_documentation:
1197+
https://developers.google.com/maps/documentation/route-optimization/reference/rest/
1198+
rpc_documentation:
1199+
https://developers.google.com/maps/documentation/route-optimization/reference/rpc
11781200
- api_shortname: maps-routing
11791201
name_pretty: Routes API
11801202
product_documentation: https://developers.google.com/maps/documentation/routes
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Copyright 2024 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
16+
deep-remove-regex:
17+
- "/java-maps-routeoptimization/grpc-google-.*/src"
18+
- "/java-maps-routeoptimization/proto-google-.*/src"
19+
- "/java-maps-routeoptimization/google-.*/src"
20+
- "/java-maps-routeoptimization/samples/snippets/generated"
21+
22+
deep-preserve-regex:
23+
- "/java-maps-routeoptimization/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java"
24+
25+
deep-copy-regex:
26+
- source: "/google/maps/routeoptimization/(v.*)/.*-java/proto-google-.*/src"
27+
dest: "/owl-bot-staging/java-maps-routeoptimization/$1/proto-google-maps-routeoptimization-$1/src"
28+
- source: "/google/maps/routeoptimization/(v.*)/.*-java/grpc-google-.*/src"
29+
dest: "/owl-bot-staging/java-maps-routeoptimization/$1/grpc-google-maps-routeoptimization-$1/src"
30+
- source: "/google/maps/routeoptimization/(v.*)/.*-java/gapic-google-.*/src"
31+
dest: "/owl-bot-staging/java-maps-routeoptimization/$1/google-maps-routeoptimization/src"
32+
- source: "/google/maps/routeoptimization/(v.*)/.*-java/samples/snippets/generated"
33+
dest: "/owl-bot-staging/java-maps-routeoptimization/$1/samples/snippets/generated"
34+
35+
api-name: routeoptimization

0 commit comments

Comments
 (0)
Please sign in to comment.