firebase-admin-python icon indicating copy to clipboard operation
firebase-admin-python copied to clipboard

FR: Manage projects and security rules

Open radyz opened this issue 5 years ago • 1 comments

I recently came across a project where I needed it the following functionality and had to implement it via the rest api:

  • Manage projects: https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/projects
  • Manage operations: https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/operations/get
  • Manage security rules: https://firebase.google.com/docs/reference/admin/node/admin.securityRules

I'll be glad to integrate those into the sdk

radyz avatar Jun 26 '20 02:06 radyz

Managing projects is already supported: https://firebase.google.com/docs/reference/admin/python/firebase_admin.project_management

We do not wish to expose operations management directly. But we already use it internally for certain use cases.

Security rules management is currently available in our Node.js SDK. If you or somebody wishes to port that to Python that would be great :)

hiranya911 avatar Jun 26 '20 18:06 hiranya911