mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-05-02 03:00:36 -04:00
This tool is almost identical to create_pyspark_batch, but for Java Spark batches. There are some minor differences in how the main files and args are provided.
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
# Copyright 2025 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
sources:
|
|
serverless-spark-source:
|
|
kind: serverless-spark
|
|
project: ${SERVERLESS_SPARK_PROJECT}
|
|
location: ${SERVERLESS_SPARK_LOCATION}
|
|
|
|
tools:
|
|
list_batches:
|
|
kind: serverless-spark-list-batches
|
|
source: serverless-spark-source
|
|
get_batch:
|
|
kind: serverless-spark-get-batch
|
|
source: serverless-spark-source
|
|
cancel_batch:
|
|
kind: serverless-spark-cancel-batch
|
|
source: serverless-spark-source
|
|
create_pyspark_batch:
|
|
kind: serverless-spark-create-pyspark-batch
|
|
source: serverless-spark-source
|
|
create_spark_batch:
|
|
kind: serverless-spark-create-spark-batch
|
|
source: serverless-spark-source
|
|
|
|
toolsets:
|
|
serverless_spark_tools:
|
|
- list_batches
|
|
- get_batch
|
|
- cancel_batch
|
|
- create_pyspark_batch
|
|
- create_spark_batch
|