@@ -17,6 +17,7 @@ syntax = "proto3";
17
17
package google.cloud.osconfig.agentendpoint.v1 ;
18
18
19
19
import "google/protobuf/timestamp.proto" ;
20
+ import "google/type/date.proto" ;
20
21
21
22
option go_package = "google.golang.org/genproto/googleapis/cloud/osconfig/agentendpoint/v1;agentendpoint" ;
22
23
option java_multiple_files = true ;
@@ -100,6 +101,9 @@ message Inventory {
100
101
101
102
// Details of a COS package.
102
103
VersionedPackage cos_package = 8 ;
104
+
105
+ // Details of Windows Application.
106
+ WindowsApplication windows_application = 9 ;
103
107
}
104
108
}
105
109
@@ -116,6 +120,24 @@ message Inventory {
116
120
string version = 3 ;
117
121
}
118
122
123
+ // Information related to a Quick Fix Engineering package.
124
+ // Fields are taken from Windows QuickFixEngineering Interface and match
125
+ // the source names:
126
+ // https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
127
+ message WindowsQuickFixEngineeringPackage {
128
+ // A short textual description of the QFE update.
129
+ string caption = 1 ;
130
+
131
+ // A textual description of the QFE update.
132
+ string description = 2 ;
133
+
134
+ // Unique identifier associated with a particular QFE update.
135
+ string hot_fix_id = 3 ;
136
+
137
+ // Date that the QFE update was installed. Mapped from installed_on field.
138
+ google.protobuf.Timestamp install_time = 4 ;
139
+ }
140
+
119
141
// Details related to a Zypper Patch.
120
142
message ZypperPatch {
121
143
// The name of the patch.
@@ -177,22 +199,24 @@ message Inventory {
177
199
google.protobuf.Timestamp last_deployment_change_time = 9 ;
178
200
}
179
201
180
- // Information related to a Quick Fix Engineering package.
181
- // Fields are taken from Windows QuickFixEngineering Interface and match
182
- // the source names:
183
- // https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
184
- message WindowsQuickFixEngineeringPackage {
185
- // A short textual description of the QFE update.
186
- string caption = 1 ;
202
+ // Details about Windows Application - based on Windows Registry.
203
+ // All fields in this message are taken from:
204
+ // https://docs.microsoft.com/en-us/windows/win32/msi/uninstall-registry-key
205
+ message WindowsApplication {
206
+ // DisplayName field from Windows Registry.
207
+ string display_name = 1 ;
187
208
188
- // A textual description of the QFE update .
189
- string description = 2 ;
209
+ // DisplayVersion field from Windows Registry .
210
+ string display_version = 2 ;
190
211
191
- // Unique identifier associated with a particular QFE update .
192
- string hot_fix_id = 3 ;
212
+ // Publisher field from Windows Registry .
213
+ string publisher = 3 ;
193
214
194
- // Date that the QFE update was installed. Mapped from installed_on field.
195
- google.protobuf.Timestamp install_time = 4 ;
215
+ // Installation date field from Windows Registry.
216
+ google.type.Date install_date = 4 ;
217
+
218
+ // HelpLink field from Windows Registry.
219
+ string help_link = 5 ;
196
220
}
197
221
198
222
// Base level operating system information for the VM.
0 commit comments