(dependencies map[string]string)
| 697 | } |
| 698 | |
| 699 | func 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 | |
| 712 | func inputSecretsToActionSecrets(secrets map[string]string) *[]management.ActionSecret { |
| 713 | actionSecrets := make([]management.ActionSecret, 0) |
no outgoing calls