Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 33 additions & 34 deletions ov/firmware_drivers.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,40 +29,39 @@ type FWComponents struct {
}

type FirmwareDrivers struct {
BaselineShortName string `json:"baselineShortName,omitempty"`
BundleSize int `json:"bundleSize,omitempty"`
BundleType string `json:"bundleType,omitempty"`
Category string `json:"category,omitempty"`
Created string `json:"created,omitempty"`
Description string `json:"description,omitempty"`
ETAG string `json:"eTag,omitempty"`
EsxiOsDriverMetaData []utils.Nstring `json:"esxiOsDriverMetaData,omitempty"`
FwComponents []FWComponents `json:"fwComponents,omitempty"`
Hotfixes []HotFixes `json:"hotfixes,omitempty"`
HpsumVersion string `json:"hpsumVersion,omitempty"`
IsoFileName string `json:"isoFileName,omitempty"`
LastTaskUri string `json:"lastTaskUri,omitempty"`
Locations map[string]string `json:"locations,omitempty"`
Mirrorlist map[string][]string `json:"mirrorlist,omitempty"`
Modified string `json:"modified,omitempty"`
Name string `json:"name,omitempty"`
ParentBundle parentBundle `json:"parentBundle,omitempty"`
ReleaseDate string `json:"releaseDate,omitempty"`
ResourceId string `json:"resourceId,omitempty"`
ResourceState string `json:"resourceState,omitempty"`
ScopesUri string `json:"scopesUri,omitempty"`
SignatureFileName string `json:"signatureFileName,omitempty"`
SignatureFileRequired bool `json:"signatureFileRequired,omitempty"`
State string `json:"state,omitempty"`
Status string `json:"status,omitempty"`
SupportedLanguages string `json:"supportedLanguages,omitempty"`
SupportedOSList []utils.Nstring `json:"supportedOSList,omitempty"`
SwPackagesFullPath string `json:"swPackagesFullPath,omitempty"`
Type string `json:"type,omitempty"`
Uri utils.Nstring `json:"uri,omitempty"`
Uuid string `json:"uuid,omitempty"`
Version string `json:"version,omitempty"`
XmlKeyName string `json:"xmlKeyName,omitempty"`
BaselineShortName string `json:"baselineShortName,omitempty"`
BundleSize int `json:"bundleSize,omitempty"`
BundleType string `json:"bundleType,omitempty"`
Category string `json:"category,omitempty"`
Created string `json:"created,omitempty"`
Description string `json:"description,omitempty"`
ETAG string `json:"eTag,omitempty"`
EsxiOsDriverMetaData []utils.Nstring `json:"esxiOsDriverMetaData,omitempty"`
FwComponents []FWComponents `json:"fwComponents,omitempty"`
Hotfixes []HotFixes `json:"hotfixes,omitempty"`
HpsumVersion string `json:"hpsumVersion,omitempty"`
IsoFileName string `json:"isoFileName,omitempty"`
LastTaskUri string `json:"lastTaskUri,omitempty"`
Locations map[string]string `json:"locations,omitempty"`
Modified string `json:"modified,omitempty"`
Name string `json:"name,omitempty"`
ParentBundle parentBundle `json:"parentBundle,omitempty"`
ReleaseDate string `json:"releaseDate,omitempty"`
ResourceId string `json:"resourceId,omitempty"`
ResourceState string `json:"resourceState,omitempty"`
ScopesUri string `json:"scopesUri,omitempty"`
SignatureFileName string `json:"signatureFileName,omitempty"`
SignatureFileRequired bool `json:"signatureFileRequired,omitempty"`
State string `json:"state,omitempty"`
Status string `json:"status,omitempty"`
SupportedLanguages string `json:"supportedLanguages,omitempty"`
SupportedOSList []utils.Nstring `json:"supportedOSList,omitempty"`
SwPackagesFullPath string `json:"swPackagesFullPath,omitempty"`
Type string `json:"type,omitempty"`
Uri utils.Nstring `json:"uri,omitempty"`
Uuid string `json:"uuid,omitempty"`
Version string `json:"version,omitempty"`
XmlKeyName string `json:"xmlKeyName,omitempty"`
}

type FirmwareDriversList struct {
Expand Down