We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f78995 commit 3f147e5Copy full SHA for 3f147e5
api/function/v1beta1/function_sdk.go
@@ -1098,6 +1098,15 @@ type Function struct {
1098
// Sandbox: execution environment of the function.
1099
// Default value: unknown_sandbox
1100
Sandbox FunctionSandbox `json:"sandbox"`
1101
+
1102
+ // CreatedAt: creation date of the function.
1103
+ CreatedAt *time.Time `json:"created_at"`
1104
1105
+ // UpdatedAt: last update date of the function.
1106
+ UpdatedAt *time.Time `json:"updated_at"`
1107
1108
+ // ReadyAt: last date when the function was successfully deployed and set to ready.
1109
+ ReadyAt *time.Time `json:"ready_at"`
1110
}
1111
1112
// Namespace: namespace.
0 commit comments