In order to use auto-completion for Python in vscode I type-annotate my functions parameters:
A google-cloud-function when triggered has the following type signature:
from google.cloud import functions_v1
def my_function(data: Dict[Text, Any],
context: functions_v1.context.Context) -> None:
...
Is it possible to install the google.cloud.functions_v1 package?
Checked on the gcloudpypi page and there is no package available.
