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

Update azure_storage_account table to include blob service logging details. Closes #79 #80

Merged
merged 2 commits into from
Apr 7, 2021

Conversation

Subhajit97
Copy link
Contributor

Integration test logs

Logs
N/A

Example query results

Results
select
  name,
  blob_service_logging ->> 'Read' as logging_read,
  blob_service_logging ->> 'Write' as logging_write,
  blob_service_logging ->> 'Delete' as logging_delete
from 
  azure_storage_account
where
  (blob_service_logging ->> 'Read')::boolean
  and (blob_service_logging ->> 'Write')::boolean
  and (blob_service_logging ->> 'Delete')::boolean;
+-----------+--------------+---------------+----------------+
| name      | logging_read | logging_write | logging_delete |
+-----------+--------------+---------------+----------------+
| test123aq | true         | true          | true           |
+-----------+--------------+---------------+----------------+

Copy link
Contributor

@LalitLab LalitLab left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Subhajit97 Changes looks good
Please add example for the added hydrate call in table examples

@cbruno10 cbruno10 merged commit 2dafbea into main Apr 7, 2021
@cbruno10 cbruno10 deleted the issue-79 branch April 7, 2021 16:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants