MCPcopy Create free account
hub / github.com/auth0/auth0-cli / inputDependenciesToActionDependencies

Function inputDependenciesToActionDependencies

internal/cli/actions.go:699–710  ·  view source on GitHub ↗
(dependencies map[string]string)

Source from the content-addressed store, hash-verified

697}
698
699func inputDependenciesToActionDependencies(dependencies map[string]string) *[]management.ActionDependency {
700 actionDependencyList := make([]management.ActionDependency, 0)
701
702 for name, version := range dependencies {
703 actionDependencyList = append(actionDependencyList, management.ActionDependency{
704 Name: auth0.String(name),
705 Version: auth0.String(version),
706 })
707 }
708
709 return &actionDependencyList
710}
711
712func inputSecretsToActionSecrets(secrets map[string]string) *[]management.ActionSecret {
713 actionSecrets := make([]management.ActionSecret, 0)

Callers 3

createActionCmdFunction · 0.85
updateActionCmdFunction · 0.85

Calls

no outgoing calls