mirror of
https://github.com/openshift/source-to-image.git
synced 2026-02-05 12:44:54 +01:00
Changes: - Update go version to 1.25.3 - Update dependencies to mitigate CVEs - Fix tests to work with broken APIs after update - Remove/Replace deprecated methods - Update Git command to ignore pre-commit hooks - Update Go builder image to 1.25 in docker files and Openshift CI - Update tekton pipeline task bundles to have updated golang image Signed-off-by: Sayan Biswas <sayan-biswas@live.com>
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
/*
|
|
* HCS API
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: 2.1
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package hcsschema
|
|
|
|
import (
|
|
v1 "github.com/containerd/cgroups/v3/cgroup1/stats"
|
|
)
|
|
|
|
type Properties struct {
|
|
Id string `json:"Id,omitempty"`
|
|
|
|
SystemType string `json:"SystemType,omitempty"`
|
|
|
|
RuntimeOsType string `json:"RuntimeOsType,omitempty"`
|
|
|
|
Name string `json:"Name,omitempty"`
|
|
|
|
Owner string `json:"Owner,omitempty"`
|
|
|
|
RuntimeId string `json:"RuntimeId,omitempty"`
|
|
|
|
SystemGUID string `json:"SystemGUID,omitempty"`
|
|
|
|
RuntimeTemplateId string `json:"RuntimeTemplateId,omitempty"`
|
|
|
|
State string `json:"State,omitempty"`
|
|
|
|
Stopped bool `json:"Stopped,omitempty"`
|
|
|
|
ExitType string `json:"ExitType,omitempty"`
|
|
|
|
Memory *MemoryInformationForVm `json:"Memory,omitempty"`
|
|
|
|
Statistics *Statistics `json:"Statistics,omitempty"`
|
|
|
|
ProcessList []ProcessDetails `json:"ProcessList,omitempty"`
|
|
|
|
TerminateOnLastHandleClosed bool `json:"TerminateOnLastHandleClosed,omitempty"`
|
|
|
|
HostingSystemId string `json:"HostingSystemId,omitempty"`
|
|
|
|
SharedMemoryRegionInfo []SharedMemoryRegionInfo `json:"SharedMemoryRegionInfo,omitempty"`
|
|
|
|
GuestConnectionInfo *GuestConnectionInfo `json:"GuestConnectionInfo,omitempty"`
|
|
|
|
// Metrics is not part of the API for HCS but this is used for LCOW v2 to
|
|
// return the full cgroup metrics from the guest.
|
|
Metrics *v1.Metrics `json:"LCOWMetrics,omitempty"`
|
|
}
|