We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b801999 commit ae1f1e8Copy full SHA for ae1f1e8
kedro_vertexai/client.py
@@ -10,9 +10,6 @@
10
11
from google.cloud import aiplatform as aip
12
from google.cloud.aiplatform import PipelineJob
13
-from google.cloud.scheduler_v1.services.cloud_scheduler import (
14
- CloudSchedulerClient,
15
-)
16
from kfp import compiler
17
from tabulate import tabulate
18
@@ -30,7 +27,6 @@ class VertexAIPipelinesClient:
30
27
def __init__(self, config: PluginConfig, project_name, context):
31
28
32
29
aip.init(project=config.project_id, location=config.region)
33
- self.cloud_scheduler_client = CloudSchedulerClient()
34
self.location = f"projects/{config.project_id}/locations/{config.region}"
35
self.run_config = config.run_config
36
self.run_name = self._generate_run_name(config)
0 commit comments