本文整理匯總了Golang中github.com/juju/juju/apiserver/params.ModelConfigResult.Config方法的典型用法代碼示例。如果您正苦於以下問題:Golang ModelConfigResult.Config方法的具體用法?Golang ModelConfigResult.Config怎麽用?Golang ModelConfigResult.Config使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/juju/juju/apiserver/params.ModelConfigResult
的用法示例。
在下文中一共展示了ModelConfigResult.Config方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ModelConfig
// ModelConfig returns the current environment's configuration.
func (e *ModelWatcher) ModelConfig() (params.ModelConfigResult, error) {
result := params.ModelConfigResult{}
config, err := e.st.ModelConfig()
if err != nil {
return result, err
}
allAttrs := config.AllAttrs()
if !e.authorizer.AuthModelManager() {
// Mask out any secrets in the environment configuration
// with values of the same type, so it'll pass validation.
//
// TODO(dimitern) 201309-26 bug #1231384
// Delete the code below and mark the bug as fixed,
// once it's live tested on MAAS and 1.16 compatibility
// is dropped.
provider, err := environs.Provider(config.Type())
if err != nil {
return result, err
}
secretAttrs, err := provider.SecretAttrs(config)
for k := range secretAttrs {
allAttrs[k] = "not available"
}
}
result.Config = allAttrs
return result, nil
}
示例2: ModelConfig
// ModelConfig returns the model's configuration.
func (u *UndertakerAPI) ModelConfig() (params.ModelConfigResult, error) {
result := params.ModelConfigResult{}
config, err := u.st.ModelConfig()
if err != nil {
return result, err
}
allAttrs := config.AllAttrs()
result.Config = allAttrs
return result, nil
}
示例3: ModelConfig
// ModelConfig returns the current model's configuration.
func (api *DiscoverSpacesAPI) ModelConfig() (params.ModelConfigResult, error) {
result := params.ModelConfigResult{}
config, err := api.st.ModelConfig()
if err != nil {
return result, err
}
allAttrs := config.AllAttrs()
// No need to obscure any secrets as caller needs to be a ModelManager to
// call any api methods.
result.Config = allAttrs
return result, nil
}
示例4: ConfigSkeleton
// ConfigSkeleton returns config values to be used as a starting point for the
// API caller to construct a valid model specific config. The provider
// and region params are there for future use, and current behaviour expects
// both of these to be empty.
func (mm *ModelManagerAPI) ConfigSkeleton(args params.ModelSkeletonConfigArgs) (params.ModelConfigResult, error) {
var result params.ModelConfigResult
if args.Region != "" {
return result, errors.NotValidf("region value %q", args.Region)
}
controllerEnv, err := mm.state.ControllerModel()
if err != nil {
return result, errors.Trace(err)
}
config, err := mm.configSkeleton(controllerEnv, args.Provider)
if err != nil {
return result, errors.Trace(err)
}
result.Config = config
return result, nil
}