faas/gateway/requests/requests.go
Jonatas Baldin 1cc93860d4 Add Namespace to Secret type
Signed-off-by: Jonatas Baldin <jonatas.baldin@gmail.com>
2019-10-05 18:58:47 +01:00

26 lines
802 B
Go

// Copyright (c) Alex Ellis 2017. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// Package requests package provides a client SDK or library for
// the OpenFaaS gateway REST API
package requests
// AsyncReport is the report from a function executed on a queue worker.
type AsyncReport struct {
FunctionName string `json:"name"`
StatusCode int `json:"statusCode"`
TimeTaken float64 `json:"timeTaken"`
}
// DeleteFunctionRequest delete a deployed function
type DeleteFunctionRequest struct {
FunctionName string `json:"functionName"`
}
// Secret for underlying orchestrator
type Secret struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
Value string `json:"value,omitempty"`
}