File tree 2 files changed +17
-6
lines changed 2 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -775,6 +775,13 @@ def udf(
775
775
Name of the BigQuery connection. It is used to provide an
776
776
identity to the serverless instances running the user code. It
777
777
helps BigQuery manage and track the resources used by the udf.
778
+ This connection is required for internet access and for
779
+ interacting with other GCP services. To access GCP services, the
780
+ appropriate IAM permissions must also be granted to the
781
+ connection's Service Account. When it defaults to None, the udf
782
+ will be created without any connection. A udf without a
783
+ connection has no internet access and no access to other GCP
784
+ services.
778
785
name (str, Optional):
779
786
Explicit name of the persisted BigQuery managed function. Use it
780
787
with caution, because more than one users working in the same
Original file line number Diff line number Diff line change @@ -1513,12 +1513,16 @@ def udf(
1513
1513
format. If this parameter is not provided then session dataset
1514
1514
id is used.
1515
1515
bigquery_connection (str, Optional):
1516
- Name of the BigQuery connection. You should either have the
1517
- connection already created in the `location` you have chosen, or
1518
- you should have the Project IAM Admin role to enable the service
1519
- to create the connection for you if you need it. If this
1520
- parameter is not provided then the BigQuery connection from the
1521
- session is used.
1516
+ Name of the BigQuery connection. It is used to provide an
1517
+ identity to the serverless instances running the user code. It
1518
+ helps BigQuery manage and track the resources used by the udf.
1519
+ This connection is required for internet access and for
1520
+ interacting with other GCP services. To access GCP services, the
1521
+ appropriate IAM permissions must also be granted to the
1522
+ connection's Service Account. When it defaults to None, the udf
1523
+ will be created without any connection. A udf without a
1524
+ connection has no internet access and no access to other GCP
1525
+ services.
1522
1526
name (str, Optional):
1523
1527
Explicit name of the persisted BigQuery managed function. Use it
1524
1528
with caution, because more than one users working in the same
You can’t perform that action at this time.
0 commit comments