Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

Commit 1e0ec96

Browse files
chore: rename Function to FunctionExpression (#1155)
Rename Function to FunctionExpression, and add a warning that other changes in the API surface may come before GA
1 parent bbe8f45 commit 1e0ec96

16 files changed

Lines changed: 287 additions & 243 deletions

google/cloud/firestore_v1/async_pipeline.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14+
"""
15+
.. warning::
16+
**Preview API**: Firestore Pipelines is currently in preview and is
17+
subject to potential breaking changes in future releases
18+
"""
1419

1520
from __future__ import annotations
1621
from typing import TYPE_CHECKING
@@ -50,6 +55,10 @@ class AsyncPipeline(_BasePipeline):
5055
... print(result)
5156
5257
Use `client.pipeline()` to create instances of this class.
58+
59+
.. warning::
60+
**Preview API**: Firestore Pipelines is currently in preview and is
61+
subject to potential breaking changes in future releases
5362
"""
5463

5564
def __init__(self, client: AsyncClient, *stages: stages.Stage):

google/cloud/firestore_v1/pipeline.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14+
"""
15+
.. warning::
16+
**Preview API**: Firestore Pipelines is currently in preview and is
17+
subject to potential breaking changes in future releases.
18+
"""
1419

1520
from __future__ import annotations
1621
from typing import TYPE_CHECKING
@@ -47,6 +52,10 @@ class Pipeline(_BasePipeline):
4752
... print(result)
4853
4954
Use `client.pipeline()` to create instances of this class.
55+
56+
.. warning::
57+
**Preview API**: Firestore Pipelines is currently in preview and is
58+
subject to potential breaking changes in future releases.
5059
"""
5160

5261
def __init__(self, client: Client, *stages: stages.Stage):

0 commit comments

Comments
 (0)