Skip to content

Commit 17a7a0b

Browse files
Google APIscopybara-github
Google APIs
authored andcommitted
feat: OSConfig AgentEndpoint: add basic os info to RegisterAgentRequest, add WindowsApplication type to Inventory
Committer: @adjackura PiperOrigin-RevId: 385699419
1 parent ee8c183 commit 17a7a0b

File tree

3 files changed

+55
-15
lines changed

3 files changed

+55
-15
lines changed

google/cloud/osconfig/agentendpoint/v1/BUILD.bazel

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ proto_library(
3030
],
3131
deps = [
3232
"//google/api:client_proto",
33+
"//google/type:date_proto",
3334
"//google/api:field_behavior_proto",
3435
"//google/api:resource_proto",
3536
"@com_google_protobuf//:timestamp_proto",
@@ -116,6 +117,7 @@ go_proto_library(
116117
protos = [":agentendpoint_proto"],
117118
deps = [
118119
"//google/api:annotations_go_proto",
120+
"//google/type:date_go_proto",
119121
],
120122
)
121123

google/cloud/osconfig/agentendpoint/v1/agentendpoint.proto

+16-2
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,22 @@ message RegisterAgentRequest {
190190
// PATCH_GA
191191
// GUEST_POLICY_BETA
192192
// CONFIG_V1
193-
repeated string supported_capabilities = 3
194-
[(google.api.field_behavior) = REQUIRED];
193+
repeated string supported_capabilities = 3 [(google.api.field_behavior) = REQUIRED];
194+
195+
// The operating system long name.
196+
// For example 'Debian GNU/Linux 9' or 'Microsoft Window Server 2019
197+
// Datacenter'.
198+
string os_long_name = 4;
199+
200+
// The operating system short name.
201+
// For example, 'windows' or 'debian'.
202+
string os_short_name = 5;
203+
204+
// The version of the operating system.
205+
string os_version = 6;
206+
207+
// The system architecture of the operating system.
208+
string os_architecture = 7;
195209
}
196210

197211
// The response message after the agent registered.

google/cloud/osconfig/agentendpoint/v1/inventory.proto

+37-13
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ syntax = "proto3";
1717
package google.cloud.osconfig.agentendpoint.v1;
1818

1919
import "google/protobuf/timestamp.proto";
20+
import "google/type/date.proto";
2021

2122
option go_package = "google.golang.org/genproto/googleapis/cloud/osconfig/agentendpoint/v1;agentendpoint";
2223
option java_multiple_files = true;
@@ -100,6 +101,9 @@ message Inventory {
100101

101102
// Details of a COS package.
102103
VersionedPackage cos_package = 8;
104+
105+
// Details of Windows Application.
106+
WindowsApplication windows_application = 9;
103107
}
104108
}
105109

@@ -116,6 +120,24 @@ message Inventory {
116120
string version = 3;
117121
}
118122

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+
119141
// Details related to a Zypper Patch.
120142
message ZypperPatch {
121143
// The name of the patch.
@@ -177,22 +199,24 @@ message Inventory {
177199
google.protobuf.Timestamp last_deployment_change_time = 9;
178200
}
179201

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;
187208

188-
// A textual description of the QFE update.
189-
string description = 2;
209+
// DisplayVersion field from Windows Registry.
210+
string display_version = 2;
190211

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;
193214

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;
196220
}
197221

198222
// Base level operating system information for the VM.

0 commit comments

Comments
 (0)