Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix get call in gcp_cloudfunctions_function table. Fixes #402 #403

Merged
merged 1 commit into from
Nov 2, 2022

Conversation

bigdatasourav
Copy link
Contributor

Example query results

Results
> select * from gcp_cloudfunctions_function
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------
| name         | status | self_link                                                                                              | description | runtime  | available_memory_mb | build_environment_variables | build_
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------
| function-2-m | ACTIVE | https://cloudfunctions.googleapis.com/v1/projects/parker-aaa/locations/us-east1/functions/function-2-m |             | nodejs16 | 256                 | <null>                      | 003652
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------
> .cache off
> .cache clear
> select * from gcp_cloudfunctions_function where name = 'function-2-m' and location = 'us-east1'
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------
| name         | status | self_link                                                                                              | description | runtime  | available_memory_mb | build_environment_variables | build_
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------
| function-2-m | ACTIVE | https://cloudfunctions.googleapis.com/v1/projects/parker-aaa/locations/us-east1/functions/function-2-m |             | nodejs16 | 256                 | <null>                      | 003652
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------
> select * from gcp_cloudfunctions_function where name = 'function-2-m'
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------
| name         | status | self_link                                                                                              | description | runtime  | available_memory_mb | build_environment_variables | build_
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------
| function-2-m | ACTIVE | https://cloudfunctions.googleapis.com/v1/projects/parker-aaa/locations/us-east1/functions/function-2-m |             | nodejs16 | 256                 | <null>                      | 003652
+--------------+--------+--------------------------------------------------------------------------------------------------------+-------------+----------+---------------------+-----------------------------+-------

@bigdatasourav bigdatasourav self-assigned this Nov 1, 2022
@bigdatasourav bigdatasourav changed the title Fix get call in gcp_cloudfunctions_function table Fix get call in gcp_cloudfunctions_function table. Fixes #402 Nov 1, 2022
@bigdatasourav bigdatasourav linked an issue Nov 1, 2022 that may be closed by this pull request
@bigdatasourav bigdatasourav merged commit b22ec76 into main Nov 2, 2022
@bigdatasourav bigdatasourav deleted the issue-402 branch November 2, 2022 12:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Get call not working for table gcp_cloudfunctions_function
2 participants