Skip to content

Commit

Permalink
feat: add autoscaling policy service client (via synth) (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Feb 19, 2020
1 parent d2e2923 commit 3939c2d
Show file tree
Hide file tree
Showing 10 changed files with 1,226 additions and 31 deletions.
2 changes: 2 additions & 0 deletions packages/google-cloud-dataproc/google/cloud/dataproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

from __future__ import absolute_import

from google.cloud.dataproc_v1 import AutoscalingPolicyServiceClient
from google.cloud.dataproc_v1 import ClusterControllerClient
from google.cloud.dataproc_v1 import JobControllerClient
from google.cloud.dataproc_v1 import WorkflowTemplateServiceClient
Expand All @@ -30,4 +31,5 @@
"ClusterControllerClient",
"JobControllerClient",
"WorkflowTemplateServiceClient",
"AutoscalingPolicyServiceClient",
)
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import warnings

from google.cloud.dataproc_v1 import types
from google.cloud.dataproc_v1.gapic import autoscaling_policy_service_client
from google.cloud.dataproc_v1.gapic import cluster_controller_client
from google.cloud.dataproc_v1.gapic import enums
from google.cloud.dataproc_v1.gapic import job_controller_client
Expand Down Expand Up @@ -52,10 +53,18 @@ class WorkflowTemplateServiceClient(
enums = enums


class AutoscalingPolicyServiceClient(
autoscaling_policy_service_client.AutoscalingPolicyServiceClient
):
__doc__ = autoscaling_policy_service_client.AutoscalingPolicyServiceClient.__doc__
enums = enums


__all__ = (
"enums",
"types",
"ClusterControllerClient",
"JobControllerClient",
"WorkflowTemplateServiceClient",
"AutoscalingPolicyServiceClient",
)
Loading

0 comments on commit 3939c2d

Please sign in to comment.