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 736ebc2 commit 3ca8f30Copy full SHA for 3ca8f30
api/container/v1beta1/container_sdk.go
@@ -943,6 +943,15 @@ type Container struct {
943
// - concurrent_requests_threshold: Scale depending on the number of concurrent requests being processed per container instance.
944
ScalingOption *ContainerScalingOption `json:"scaling_option"`
945
946
+ // CreatedAt: creation date of the container.
947
+ CreatedAt *time.Time `json:"created_at"`
948
+
949
+ // UpdatedAt: last update date of the container.
950
+ UpdatedAt *time.Time `json:"updated_at"`
951
952
+ // ReadyAt: last date when the container was successfully deployed and set to ready.
953
+ ReadyAt *time.Time `json:"ready_at"`
954
955
// Region: region in which the container will be deployed.
956
Region scw.Region `json:"region"`
957
}
0 commit comments