-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-workflows/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #30 🦕
- Loading branch information
1 parent
63569a1
commit ef3e019
Showing
43 changed files
with
10,043 additions
and
75 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
packages/google-cloud-workflows/docs/executions_v1/executions.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Executions | ||
---------------------------- | ||
|
||
.. automodule:: google.cloud.workflows.executions_v1.services.executions | ||
:members: | ||
:inherited-members: | ||
|
||
|
||
.. automodule:: google.cloud.workflows.executions_v1.services.executions.pagers | ||
:members: | ||
:inherited-members: |
6 changes: 6 additions & 0 deletions
6
packages/google-cloud-workflows/docs/executions_v1/services.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Services for Google Cloud Workflows Executions v1 API | ||
===================================================== | ||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
executions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Types for Google Cloud Workflows Executions v1 API | ||
================================================== | ||
|
||
.. automodule:: google.cloud.workflows.executions_v1.types | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
packages/google-cloud-workflows/docs/workflows_v1/services.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Services for Google Cloud Workflows v1 API | ||
========================================== | ||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
workflows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Types for Google Cloud Workflows v1 API | ||
======================================= | ||
|
||
.. automodule:: google.cloud.workflows_v1.types | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
11 changes: 11 additions & 0 deletions
11
packages/google-cloud-workflows/docs/workflows_v1/workflows.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Workflows | ||
--------------------------- | ||
|
||
.. automodule:: google.cloud.workflows_v1.services.workflows | ||
:members: | ||
:inherited-members: | ||
|
||
|
||
.. automodule:: google.cloud.workflows_v1.services.workflows.pagers | ||
:members: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
packages/google-cloud-workflows/google/cloud/workflows/executions_v1/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# 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 .services.executions import ExecutionsClient | ||
from .types.executions import CancelExecutionRequest | ||
from .types.executions import CreateExecutionRequest | ||
from .types.executions import Execution | ||
from .types.executions import ExecutionView | ||
from .types.executions import GetExecutionRequest | ||
from .types.executions import ListExecutionsRequest | ||
from .types.executions import ListExecutionsResponse | ||
|
||
|
||
__all__ = ( | ||
"CancelExecutionRequest", | ||
"CreateExecutionRequest", | ||
"Execution", | ||
"ExecutionView", | ||
"GetExecutionRequest", | ||
"ListExecutionsRequest", | ||
"ListExecutionsResponse", | ||
"ExecutionsClient", | ||
) |
2 changes: 2 additions & 0 deletions
2
packages/google-cloud-workflows/google/cloud/workflows/executions_v1/py.typed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Marker file for PEP 561. | ||
# The google-cloud-workflows-executions package uses inline types. |
16 changes: 16 additions & 0 deletions
16
packages/google-cloud-workflows/google/cloud/workflows/executions_v1/services/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# 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. | ||
# |
24 changes: 24 additions & 0 deletions
24
...ogle-cloud-workflows/google/cloud/workflows/executions_v1/services/executions/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# 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 .client import ExecutionsClient | ||
from .async_client import ExecutionsAsyncClient | ||
|
||
__all__ = ( | ||
"ExecutionsClient", | ||
"ExecutionsAsyncClient", | ||
) |
Oops, something went wrong.