Skip to content

Commit

Permalink
chore: upgrade gapic-generator-python to 0.46.3 (#88)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 373649163

Source-Link: googleapis/googleapis@7e1b14e

Source-Link: googleapis/googleapis-gen@0a3c7d2
  • Loading branch information
gcf-owl-bot[bot] authored May 14, 2021
1 parent ce2bc3c commit 58b4598
Show file tree
Hide file tree
Showing 42 changed files with 1,566 additions and 1,185 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ CloudScheduler
:members:
:inherited-members:


.. automodule:: google.cloud.scheduler_v1.services.cloud_scheduler.pagers
:members:
:inherited-members:
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ CloudScheduler
:members:
:inherited-members:


.. automodule:: google.cloud.scheduler_v1beta1.services.cloud_scheduler.pagers
:members:
:inherited-members:
30 changes: 15 additions & 15 deletions packages/google-cloud-scheduler/google/cloud/scheduler/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -15,12 +14,13 @@
# limitations under the License.
#

from google.cloud.scheduler_v1.services.cloud_scheduler.async_client import (
CloudSchedulerAsyncClient,
)
from google.cloud.scheduler_v1.services.cloud_scheduler.client import (
CloudSchedulerClient,
)
from google.cloud.scheduler_v1.services.cloud_scheduler.async_client import (
CloudSchedulerAsyncClient,
)

from google.cloud.scheduler_v1.types.cloudscheduler import CreateJobRequest
from google.cloud.scheduler_v1.types.cloudscheduler import DeleteJobRequest
from google.cloud.scheduler_v1.types.cloudscheduler import GetJobRequest
Expand All @@ -34,31 +34,31 @@
from google.cloud.scheduler_v1.types.job import RetryConfig
from google.cloud.scheduler_v1.types.target import AppEngineHttpTarget
from google.cloud.scheduler_v1.types.target import AppEngineRouting
from google.cloud.scheduler_v1.types.target import HttpMethod
from google.cloud.scheduler_v1.types.target import HttpTarget
from google.cloud.scheduler_v1.types.target import OAuthToken
from google.cloud.scheduler_v1.types.target import OidcToken
from google.cloud.scheduler_v1.types.target import PubsubTarget
from google.cloud.scheduler_v1.types.target import HttpMethod

__all__ = (
"AppEngineHttpTarget",
"AppEngineRouting",
"CloudSchedulerAsyncClient",
"CloudSchedulerClient",
"CloudSchedulerAsyncClient",
"CreateJobRequest",
"DeleteJobRequest",
"GetJobRequest",
"HttpMethod",
"HttpTarget",
"Job",
"ListJobsRequest",
"ListJobsResponse",
"OAuthToken",
"OidcToken",
"PauseJobRequest",
"PubsubTarget",
"ResumeJobRequest",
"RetryConfig",
"RunJobRequest",
"UpdateJobRequest",
"Job",
"RetryConfig",
"AppEngineHttpTarget",
"AppEngineRouting",
"HttpTarget",
"OAuthToken",
"OidcToken",
"PubsubTarget",
"HttpMethod",
)
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -16,6 +15,8 @@
#

from .services.cloud_scheduler import CloudSchedulerClient
from .services.cloud_scheduler import CloudSchedulerAsyncClient

from .types.cloudscheduler import CreateJobRequest
from .types.cloudscheduler import DeleteJobRequest
from .types.cloudscheduler import GetJobRequest
Expand All @@ -29,16 +30,17 @@
from .types.job import RetryConfig
from .types.target import AppEngineHttpTarget
from .types.target import AppEngineRouting
from .types.target import HttpMethod
from .types.target import HttpTarget
from .types.target import OAuthToken
from .types.target import OidcToken
from .types.target import PubsubTarget

from .types.target import HttpMethod

__all__ = (
"CloudSchedulerAsyncClient",
"AppEngineHttpTarget",
"AppEngineRouting",
"CloudSchedulerClient",
"CreateJobRequest",
"DeleteJobRequest",
"GetJobRequest",
Expand All @@ -55,5 +57,4 @@
"RetryConfig",
"RunJobRequest",
"UpdateJobRequest",
"CloudSchedulerClient",
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
{
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
"language": "python",
"libraryPackage": "google.cloud.scheduler_v1",
"protoPackage": "google.cloud.scheduler.v1",
"schema": "1.0",
"services": {
"CloudScheduler": {
"clients": {
"grpc": {
"libraryClient": "CloudSchedulerClient",
"rpcs": {
"CreateJob": {
"methods": [
"create_job"
]
},
"DeleteJob": {
"methods": [
"delete_job"
]
},
"GetJob": {
"methods": [
"get_job"
]
},
"ListJobs": {
"methods": [
"list_jobs"
]
},
"PauseJob": {
"methods": [
"pause_job"
]
},
"ResumeJob": {
"methods": [
"resume_job"
]
},
"RunJob": {
"methods": [
"run_job"
]
},
"UpdateJob": {
"methods": [
"update_job"
]
}
}
},
"grpc-async": {
"libraryClient": "CloudSchedulerAsyncClient",
"rpcs": {
"CreateJob": {
"methods": [
"create_job"
]
},
"DeleteJob": {
"methods": [
"delete_job"
]
},
"GetJob": {
"methods": [
"get_job"
]
},
"ListJobs": {
"methods": [
"list_jobs"
]
},
"PauseJob": {
"methods": [
"pause_job"
]
},
"ResumeJob": {
"methods": [
"resume_job"
]
},
"RunJob": {
"methods": [
"run_job"
]
},
"UpdateJob": {
"methods": [
"update_job"
]
}
}
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -14,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

from .client import CloudSchedulerClient
from .async_client import CloudSchedulerAsyncClient

Expand Down
Loading

0 comments on commit 58b4598

Please sign in to comment.