33 lines
1.3 KiB
Go
33 lines
1.3 KiB
Go
// Copyright (c) OpenFaaS Author(s) 2019. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
package v2
|
|
|
|
//StoreFunction represents a multi-arch function in the store
|
|
type StoreFunction struct {
|
|
Icon string `json:"icon"`
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
Name string `json:"name"`
|
|
Fprocess string `json:"fprocess"`
|
|
Network string `json:"network"`
|
|
RepoURL string `json:"repo_url"`
|
|
ReadOnlyRootFilesystem bool `json:"readOnlyRootFilesystem"`
|
|
Environment map[string]string `json:"environment"`
|
|
Labels map[string]string `json:"labels"`
|
|
Annotations map[string]string `json:"annotations"`
|
|
Images map[string]string `json:"images"`
|
|
}
|
|
|
|
//GetImageName get image name of function for a platform
|
|
func (s *StoreFunction) GetImageName(platform string) string {
|
|
imageName, _ := s.Images[platform]
|
|
return imageName
|
|
}
|
|
|
|
// Store represents an item of store for version 2
|
|
type Store struct {
|
|
Version string `json:"version"`
|
|
Functions []StoreFunction `json:"functions"`
|
|
}
|