├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature-request---new-table.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── add-issue-to-project.yml │ ├── golangci-lint.yml │ ├── registry-publish.yml │ ├── stale.yml │ ├── steampipe-anywhere.yml │ └── sync-labels.yml ├── .gitignore ├── .goreleaser.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── config └── googledirectory.spc ├── docs ├── LICENSE ├── index.md └── tables │ ├── googledirectory_domain.md │ ├── googledirectory_domain_alias.md │ ├── googledirectory_group.md │ ├── googledirectory_group_member.md │ ├── googledirectory_org_unit.md │ ├── googledirectory_privilege.md │ ├── googledirectory_role.md │ ├── googledirectory_role_assignment.md │ └── googledirectory_user.md ├── go.mod ├── go.sum ├── googledirectory ├── connection_config.go ├── not_found.go ├── plugin.go ├── service.go ├── table_googledirectory_domain.go ├── table_googledirectory_domain_alias.go ├── table_googledirectory_group.go ├── table_googledirectory_group_member.go ├── table_googledirectory_org_unit.go ├── table_googledirectory_privilege.go ├── table_googledirectory_role.go ├── table_googledirectory_role_assignment.go ├── table_googledirectory_user.go └── utils.go └── main.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request---new-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/ISSUE_TEMPLATE/feature-request---new-table.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-issue-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/workflows/add-issue-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/registry-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/workflows/registry-publish.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/steampipe-anywhere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/workflows/steampipe-anywhere.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/README.md -------------------------------------------------------------------------------- /config/googledirectory.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/config/googledirectory.spc -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_domain.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_domain_alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_domain_alias.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_group.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_group_member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_group_member.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_org_unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_org_unit.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_privilege.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_privilege.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_role.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_role_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_role_assignment.md -------------------------------------------------------------------------------- /docs/tables/googledirectory_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/docs/tables/googledirectory_user.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/go.sum -------------------------------------------------------------------------------- /googledirectory/connection_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/connection_config.go -------------------------------------------------------------------------------- /googledirectory/not_found.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/not_found.go -------------------------------------------------------------------------------- /googledirectory/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/plugin.go -------------------------------------------------------------------------------- /googledirectory/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/service.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_domain.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_domain_alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_domain_alias.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_group.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_group_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_group_member.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_org_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_org_unit.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_privilege.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_privilege.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_role.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_role_assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_role_assignment.go -------------------------------------------------------------------------------- /googledirectory/table_googledirectory_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/table_googledirectory_user.go -------------------------------------------------------------------------------- /googledirectory/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/googledirectory/utils.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-googledirectory/HEAD/main.go --------------------------------------------------------------------------------