blob: dc29428cd4cab42a8988c8e1edb144dab1fb6d88 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// RegistryKeyState undocumented
type RegistryKeyState struct {
// Object is the base model of RegistryKeyState
Object
// Hive undocumented
Hive *RegistryHive `json:"hive,omitempty"`
// Key undocumented
Key *string `json:"key,omitempty"`
// OldKey undocumented
OldKey *string `json:"oldKey,omitempty"`
// OldValueData undocumented
OldValueData *string `json:"oldValueData,omitempty"`
// OldValueName undocumented
OldValueName *string `json:"oldValueName,omitempty"`
// Operation undocumented
Operation *RegistryOperation `json:"operation,omitempty"`
// ProcessID undocumented
ProcessID *int `json:"processId,omitempty"`
// ValueData undocumented
ValueData *string `json:"valueData,omitempty"`
// ValueName undocumented
ValueName *string `json:"valueName,omitempty"`
// ValueType undocumented
ValueType *RegistryValueType `json:"valueType,omitempty"`
}
|