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

Add table gcp_app_engine_application Closes #528 #537

Merged
merged 5 commits into from Feb 2, 2024
Merged

Conversation

ParthaI
Copy link
Contributor

@ParthaI ParthaI commented Jan 15, 2024

Integration test logs

Logs
N/A

Example query results

Results
> select * from gcp_app_engine_application
+------------+-----------------+----------------------------------------+-------------+--------------------------------+-----------------+------------------------+---------------------------+-----------------------------+------------+----------------+----------------+->
| id         | name            | service_account                        | auth_domain | code_bucket                    | database_type   | default_bucket         | default_cookie_expiration | default_hostname            | gcr_domain | serving_status | dispatch_rules | >
+------------+-----------------+----------------------------------------+-------------+--------------------------------+-----------------+------------------------+---------------------------+-----------------------------+------------+----------------+----------------+->
| tester-aaa | apps/tester-aaa | tester-aaa@appspot.gserviceaccount.com | gmail.com   | staging.tester-aaa.appspot.com | CLOUD_FIRESTORE | tester-aaa.appspot.com | 0s                        | tester-aaa.uc.r.appspot.com | us.gcr.io  | SERVING        | <null>         | >
+------------+-----------------+----------------------------------------+-------------+--------------------------------+-----------------+------------------------+---------------------------+-----------------------------+------------+----------------+----------------+->

> select
  a.name,
  a.service_account,
  s.email,
  s.disabled,
  s.oauth2_client_id,
  s.iam_policy
from
  gcp_app_engine_application as a,
  gcp_service_account as s
where
  s.name = a.service_account;
+-----------------+----------------------------------------+----------------------------------------+----------+-----------------------+-----------------+
| name            | service_account                        | email                                  | disabled | oauth2_client_id      | iam_policy      |
+-----------------+----------------------------------------+----------------------------------------+----------+-----------------------+-----------------+
| apps/tester-aaa | tester-aaa@appspot.gserviceaccount.com | tester-aaa@appspot.gserviceaccount.com | false    | 109440621885192947873 | {"etag":"ACAB"} |
+-----------------+----------------------------------------+----------------------------------------+----------+-----------------------+-----------------+

@ParthaI ParthaI self-assigned this Jan 15, 2024
@ParthaI ParthaI linked an issue Jan 15, 2024 that may be closed by this pull request
ParthaI and others added 2 commits February 1, 2024 15:51
Co-authored-by: Khushboo <46913995+khushboo9024@users.noreply.github.com>
@bigdatasourav bigdatasourav merged commit 4860e7c into main Feb 2, 2024
1 check passed
@bigdatasourav bigdatasourav deleted the issue-528 branch February 2, 2024 06:08
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.

Add table gcp_app_engine_application
3 participants