29 lines
1.3 KiB
Python
29 lines
1.3 KiB
Python
# Copyright 2020 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from kfp.dsl._pipeline_param import PipelineParam, match_serialized_pipelineparam
|
|
from kfp.v2.dsl._pipeline import Pipeline
|
|
from kfp.dsl._pipeline import pipeline
|
|
from kfp.dsl._container_op import ContainerOp, InputArgumentPath, UserContainer, Sidecar
|
|
from kfp.dsl._resource_op import ResourceOp
|
|
from kfp.dsl._volume_op import (
|
|
VolumeOp, VOLUME_MODE_RWO, VOLUME_MODE_RWM, VOLUME_MODE_ROM
|
|
)
|
|
from kfp.dsl._pipeline_volume import PipelineVolume
|
|
from kfp.dsl._volume_snapshot_op import VolumeSnapshotOp
|
|
from kfp.dsl._ops_group import OpsGroup
|
|
from kfp.v2.dsl._ops_group import ExitHandler, Condition, ParallelFor
|
|
from kfp.dsl._component import python_component, component
|
|
from kfp.v2.dsl._component import graph_component
|