-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #330 from yjinjo/master
Add list_basic_role method
- Loading branch information
Showing
6 changed files
with
93 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
from spaceone.identity.model.agent.database import Agent | ||
from spaceone.identity.model.app.database import App | ||
from spaceone.identity.model.domain.database import Domain | ||
from spaceone.identity.model.external_auth.database import ExternalAuth | ||
from spaceone.identity.model.workspace.database import Workspace | ||
from spaceone.identity.model.project_group.database import ProjectGroup | ||
from spaceone.identity.model.job.database import Job | ||
from spaceone.identity.model.project.database import Project | ||
from spaceone.identity.model.project_group.database import ProjectGroup | ||
from spaceone.identity.model.provider.database import Provider | ||
from spaceone.identity.model.schema.database import Schema | ||
from spaceone.identity.model.trusted_account.database import TrustedAccount | ||
from spaceone.identity.model.service_account.database import ServiceAccount | ||
from spaceone.identity.model.job.database import Job | ||
from spaceone.identity.model.role.database import Role | ||
from spaceone.identity.model.role_binding.database import RoleBinding | ||
from spaceone.identity.model.schema.database import Schema | ||
from spaceone.identity.model.service_account.database import ServiceAccount | ||
from spaceone.identity.model.trusted_account.database import TrustedAccount | ||
from spaceone.identity.model.user.database import User | ||
from spaceone.identity.model.user_group.database import UserGroup | ||
from spaceone.identity.model.app.database import App | ||
from spaceone.identity.model.agent.database import Agent | ||
from spaceone.identity.model.workspace.database import Workspace | ||
from spaceone.identity.model.workspace_group.database import WorkspaceGroup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters