class AuthingRuby::AclManagementClient

Public Class Methods

new(options = {}, graphqlClient = nil, httpClient = nil, tokenProvider = nil) click to toggle source
# File lib/authing_ruby/management/AclManagementClient.rb, line 7
def initialize(options = {}, graphqlClient = nil, httpClient = nil, tokenProvider = nil)
  @options = options
  @graphqlClient = graphqlClient
  @httpClient = httpClient
  @tokenProvider = tokenProvider
end

Public Instance Methods

createNamespace() click to toggle source

创建权限分组

# File lib/authing_ruby/management/AclManagementClient.rb, line 18
def createNamespace
end
createResource() click to toggle source

创建资源

# File lib/authing_ruby/management/AclManagementClient.rb, line 34
def createResource
end
deleteNamespace() click to toggle source

删除权限分组

# File lib/authing_ruby/management/AclManagementClient.rb, line 26
def deleteNamespace
end
deleteResource() click to toggle source

删除资源

# File lib/authing_ruby/management/AclManagementClient.rb, line 42
def deleteResource
end
isAllowed() click to toggle source
# File lib/authing_ruby/management/AclManagementClient.rb, line 14
def isAllowed
end
listNamespaces() click to toggle source

获取权限分组列表

# File lib/authing_ruby/management/AclManagementClient.rb, line 22
def listNamespaces
end
listResources() click to toggle source

获取资源列表

# File lib/authing_ruby/management/AclManagementClient.rb, line 30
def listResources
end
updateResource() click to toggle source

更新资源

# File lib/authing_ruby/management/AclManagementClient.rb, line 38
def updateResource
end