Skip to content

Commit

Permalink
feat: Update osconfig v1 and v1alpha with WindowsApplication (#548)
Browse files Browse the repository at this point in the history
* feat: Update osconfig v1 and v1alpha with WindowsApplication

Committer: @coodie
PiperOrigin-RevId: 393730900

Source-Link: googleapis/googleapis@69fe13f

Source-Link: googleapis/googleapis-gen@6950931

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Aug 30, 2021
1 parent fc08c61 commit 2836074
Show file tree
Hide file tree
Showing 4 changed files with 851 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ syntax = "proto3";
package google.cloud.osconfig.v1;

import "google/protobuf/timestamp.proto";
import "google/type/date.proto";

option csharp_namespace = "Google.Cloud.OsConfig.V1";
option go_package = "google.golang.org/genproto/googleapis/cloud/osconfig/v1;osconfig";
Expand Down Expand Up @@ -152,6 +153,9 @@ message Inventory {

// Details of a COS package.
VersionedPackage cos_package = 8;

// Details of a Windows Application
WindowsApplication windows_application = 9;
}
}

Expand Down Expand Up @@ -247,6 +251,31 @@ message Inventory {
google.protobuf.Timestamp install_time = 5;
}

// Contains information about a Windows application as retrieved from the
// Windows Registry. For more information about these fields, see
//
// [Windows Installer Properties for the Uninstall
// Registry](https://docs.microsoft.com/en-us/windows/win32/msi/uninstall-registry-key){:
// class="external" }
message WindowsApplication {
// The name of the application or product.
string display_name = 1;

// The version of the product or application in string format.
string display_version = 2;

// The name of the manufacturer for the product or application.
string publisher = 3;

// The last time this product received service. The value of this property
// is replaced each time a patch is applied or removed from the product or
// the command-line option is used to repair the product.
google.type.Date install_date = 4;

// The internet address for technical support.
string help_link = 5;
}

// Base level operating system information for the VM.
OsInfo os_info = 1;

Expand Down
224 changes: 223 additions & 1 deletion packages/google-cloud-asset/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2836074

Please sign in to comment.