本文整理汇总了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
}