1 Star 0 Fork 0

zhuchance/kubernetes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
delegate.go 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
package tokens
import (
"errors"
"github.com/rackspace/gophercloud"
os "github.com/rackspace/gophercloud/openstack/identity/v2/tokens"
)
var (
// ErrPasswordProvided is returned if both a password and an API key are provided to Create.
ErrPasswordProvided = errors.New("Please provide either a password or an API key.")
)
// AuthOptions wraps the OpenStack AuthOptions struct to be able to customize the request body
// when API key authentication is used.
type AuthOptions struct {
os.AuthOptions
}
// WrapOptions embeds a root AuthOptions struct in a package-specific one.
func WrapOptions(original gophercloud.AuthOptions) AuthOptions {
return AuthOptions{AuthOptions: os.WrapOptions(original)}
}
// ToTokenCreateMap serializes an AuthOptions into a request body. If an API key is provided, it
// will be used, otherwise
func (auth AuthOptions) ToTokenCreateMap() (map[string]interface{}, error) {
if auth.APIKey == "" {
return auth.AuthOptions.ToTokenCreateMap()
}
// Verify that other required attributes are present.
if auth.Username == "" {
return nil, os.ErrUsernameRequired
}
authMap := make(map[string]interface{})
authMap["RAX-KSKEY:apiKeyCredentials"] = map[string]interface{}{
"username": auth.Username,
"apiKey": auth.APIKey,
}
if auth.TenantID != "" {
authMap["tenantId"] = auth.TenantID
}
if auth.TenantName != "" {
authMap["tenantName"] = auth.TenantName
}
return map[string]interface{}{"auth": authMap}, nil
}
// Create authenticates to Rackspace's identity service and attempts to acquire a Token. Rather
// than interact with this service directly, users should generally call
// rackspace.AuthenticatedClient().
func Create(client *gophercloud.ServiceClient, auth AuthOptions) os.CreateResult {
return os.Create(client, auth)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/meoom/kubernetes.git
git@gitee.com:meoom/kubernetes.git
meoom
kubernetes
kubernetes
v0.17.1

搜索帮助

Cb406eda 1850385 E526c682 1850385