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>
30 lines
808 B
Go
30 lines
808 B
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
|
|
|
|
type Chipset struct {
|
|
Uefi *Uefi `json:"Uefi,omitempty"`
|
|
|
|
IsNumLockDisabled bool `json:"IsNumLockDisabled,omitempty"`
|
|
|
|
BaseBoardSerialNumber string `json:"BaseBoardSerialNumber,omitempty"`
|
|
|
|
ChassisSerialNumber string `json:"ChassisSerialNumber,omitempty"`
|
|
|
|
ChassisAssetTag string `json:"ChassisAssetTag,omitempty"`
|
|
|
|
UseUtc bool `json:"UseUtc,omitempty"`
|
|
|
|
// LinuxKernelDirect - Added in v2.2 Builds >=181117
|
|
LinuxKernelDirect *LinuxKernelDirect `json:"LinuxKernelDirect,omitempty"`
|
|
|
|
FirmwareFile *FirmwareFile `json:"FirmwareFile,omitempty"`
|
|
}
|