mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
16 lines
751 B
Go
16 lines
751 B
Go
package oval_input
|
|
|
|
// RpmInfoStateXML see https://oval.mitre.org/language/version5.10.1/ovaldefinition/documentation/linux-definitions-schema.html#rpminfo_state.
|
|
type RpmInfoStateXML struct {
|
|
Id string `xml:"id,attr"`
|
|
Name *SimpleTypeXML `xml:"name"`
|
|
Arch *SimpleTypeXML `xml:"arch"`
|
|
Epoch *SimpleTypeXML `xml:"epoch,omitempty"`
|
|
Release *SimpleTypeXML `xml:"release,omitempty"`
|
|
Version *SimpleTypeXML `xml:"version,omitempty"`
|
|
Evr *SimpleTypeXML `xml:"evr"`
|
|
SignatureKeyId *SimpleTypeXML `xml:"signature_keyid"`
|
|
ExtendedName *SimpleTypeXML `xml:"extended_name"`
|
|
Filepath *SimpleTypeXML `xml:"filepath"`
|
|
Operator *string `xml:"operator,attr"`
|
|
}
|