Skip to content

Commit 0d398dd

Browse files
committed
remove preview warnings
1 parent 4615c41 commit 0d398dd

File tree

4 files changed

+0
-36
lines changed

4 files changed

+0
-36
lines changed

packages/google-cloud-firestore/google/cloud/firestore_v1/pipeline_expressions.py

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
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-
"""
1914

2015
from __future__ import annotations
2116

@@ -1832,10 +1827,6 @@ def array_agg(self) -> "Expression":
18321827
`None`. The order of elements in the output array is not stable and
18331828
shouldn't be relied upon.
18341829
1835-
This API is provided as a preview for developers and may change based
1836-
on feedback that we receive. Do not use this API in a production
1837-
environment.
1838-
18391830
Example:
18401831
>>> # Collect all values of field 'color' into an array
18411832
>>> Field.of("color").array_agg()
@@ -1854,10 +1845,6 @@ def array_agg_distinct(self) -> "Expression":
18541845
`None`. The order of elements in the output array is not stable and
18551846
shouldn't be relied upon.
18561847
1857-
This API is provided as a preview for developers and may change based
1858-
on feedback that we receive. Do not use this API in a production
1859-
environment.
1860-
18611848
Example:
18621849
>>> # Collect distinct values of field 'color' into an array
18631850
>>> Field.of("color").array_agg_distinct()
@@ -1872,10 +1859,6 @@ def first(self) -> "Expression":
18721859
"""Creates an aggregation that finds the first value of an expression
18731860
across multiple stage inputs.
18741861
1875-
This API is provided as a preview for developers and may change based
1876-
on feedback that we receive. Do not use this API in a production
1877-
environment.
1878-
18791862
Example:
18801863
>>> # Select the first value of field 'color'
18811864
>>> Field.of("color").first()
@@ -1890,10 +1873,6 @@ def last(self) -> "Expression":
18901873
"""Creates an aggregation that finds the last value of an expression
18911874
across multiple stage inputs.
18921875
1893-
This API is provided as a preview for developers and may change based
1894-
on feedback that we receive. Do not use this API in a production
1895-
environment.
1896-
18971876
Example:
18981877
>>> # Select the last value of field 'color'
18991878
>>> Field.of("color").last()

packages/google-cloud-firestore/google/cloud/firestore_v1/pipeline_result.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
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-
"""
1914

2015
from __future__ import annotations
2116

packages/google-cloud-firestore/google/cloud/firestore_v1/pipeline_source.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
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-
"""
1914

2015
from __future__ import annotations
2116

packages/google-cloud-firestore/google/cloud/firestore_v1/pipeline_stages.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
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-
"""
1914

2015
from __future__ import annotations
2116

0 commit comments

Comments
 (0)