Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions google/cloud/firestore_v1/async_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
# 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.
"""
.. warning::
**Preview API**: Firestore Pipelines is currently in preview and is
subject to potential breaking changes in future releases
"""

from __future__ import annotations
from typing import TYPE_CHECKING
Expand Down Expand Up @@ -50,6 +55,10 @@ class AsyncPipeline(_BasePipeline):
... print(result)

Use `client.pipeline()` to create instances of this class.

.. warning::
**Preview API**: Firestore Pipelines is currently in preview and is
subject to potential breaking changes in future releases
"""

def __init__(self, client: AsyncClient, *stages: stages.Stage):
Expand Down
9 changes: 9 additions & 0 deletions google/cloud/firestore_v1/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
# 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.
"""
.. warning::
**Preview API**: Firestore Pipelines is currently in preview and is
subject to potential breaking changes in future releases.
"""

from __future__ import annotations
from typing import TYPE_CHECKING
Expand Down Expand Up @@ -47,6 +52,10 @@ class Pipeline(_BasePipeline):
... print(result)

Use `client.pipeline()` to create instances of this class.

.. warning::
**Preview API**: Firestore Pipelines is currently in preview and is
subject to potential breaking changes in future releases.
"""

def __init__(self, client: Client, *stages: stages.Stage):
Expand Down
Loading