This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 27af0b7ebe1641d998b890858b0081ccf1472add Author: Mai Nakagawa <[email protected]> AuthorDate: Wed Apr 20 10:00:22 2022 +0900 Add the new parameter to the docstring --- airflow/providers/google/cloud/operators/vertex_ai/endpoint_service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/providers/google/cloud/operators/vertex_ai/endpoint_service.py b/airflow/providers/google/cloud/operators/vertex_ai/endpoint_service.py index bb7aa45dd4..935575a5fc 100644 --- a/airflow/providers/google/cloud/operators/vertex_ai/endpoint_service.py +++ b/airflow/providers/google/cloud/operators/vertex_ai/endpoint_service.py @@ -55,6 +55,7 @@ class CreateEndpointOperator(BaseOperator): :param project_id: Required. The ID of the Google Cloud project that the service belongs to. :param region: Required. The ID of the Google Cloud region that the service belongs to. :param endpoint: Required. The Endpoint to create. + :param endpoint_id: The ID of Endpoint. If not provided, Vertex AI will generate a value for this ID. :param retry: Designation of what errors, if any, should be retried. :param timeout: The timeout for this request. :param metadata: Strings which should be sent along with the request as metadata.
