google-cloud-os_config-v1alpha 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9cbf2a8f476d9c7e7d9508d46e4233c7656cc4a1176f9006ad278346e0b5255d
|
4
|
+
data.tar.gz: 2571ec7911624a5188d80de6eb0075b09cdec962a6bbf28e0ad339763f275d3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08c5c610dd0e419d3d5bdf36bdf58a2bf5d44b1b0888f1184c30ffaa6a19d9c07bf01afb28e9cc9aae9d9aabb0f728738c6dddb76bc470bcb7f5f532f1fcab53'
|
7
|
+
data.tar.gz: a53f0124a54ad10e666f8a31a3123bb2613a73f27b83a71d7a857f48c9ec7112488386ac3296de83796e35be18c6f5e2d43079a92f0a6cd9f56951d0c23bf0cf
|
@@ -6,6 +6,7 @@ require 'google/protobuf'
|
|
6
6
|
require 'google/api/field_behavior_pb'
|
7
7
|
require 'google/api/resource_pb'
|
8
8
|
require 'google/protobuf/timestamp_pb'
|
9
|
+
require 'google/type/date_pb'
|
9
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
11
|
add_file("google/cloud/osconfig/v1alpha/inventory.proto", :syntax => :proto3) do
|
11
12
|
add_message "google.cloud.osconfig.v1alpha.Inventory" do
|
@@ -54,6 +55,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
54
55
|
optional :wua_package, :message, 6, "google.cloud.osconfig.v1alpha.Inventory.WindowsUpdatePackage"
|
55
56
|
optional :qfe_package, :message, 7, "google.cloud.osconfig.v1alpha.Inventory.WindowsQuickFixEngineeringPackage"
|
56
57
|
optional :cos_package, :message, 8, "google.cloud.osconfig.v1alpha.Inventory.VersionedPackage"
|
58
|
+
optional :windows_application, :message, 9, "google.cloud.osconfig.v1alpha.Inventory.WindowsApplication"
|
57
59
|
end
|
58
60
|
end
|
59
61
|
add_message "google.cloud.osconfig.v1alpha.Inventory.VersionedPackage" do
|
@@ -88,6 +90,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
88
90
|
optional :hot_fix_id, :string, 3
|
89
91
|
optional :install_time, :message, 5, "google.protobuf.Timestamp"
|
90
92
|
end
|
93
|
+
add_message "google.cloud.osconfig.v1alpha.Inventory.WindowsApplication" do
|
94
|
+
optional :display_name, :string, 1
|
95
|
+
optional :display_version, :string, 2
|
96
|
+
optional :publisher, :string, 3
|
97
|
+
optional :install_date, :message, 4, "google.type.Date"
|
98
|
+
optional :help_link, :string, 5
|
99
|
+
end
|
91
100
|
add_message "google.cloud.osconfig.v1alpha.GetInventoryRequest" do
|
92
101
|
optional :name, :string, 1
|
93
102
|
optional :view, :enum, 2, "google.cloud.osconfig.v1alpha.InventoryView"
|
@@ -126,6 +135,7 @@ module Google
|
|
126
135
|
Inventory::WindowsUpdatePackage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1alpha.Inventory.WindowsUpdatePackage").msgclass
|
127
136
|
Inventory::WindowsUpdatePackage::WindowsUpdateCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1alpha.Inventory.WindowsUpdatePackage.WindowsUpdateCategory").msgclass
|
128
137
|
Inventory::WindowsQuickFixEngineeringPackage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1alpha.Inventory.WindowsQuickFixEngineeringPackage").msgclass
|
138
|
+
Inventory::WindowsApplication = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1alpha.Inventory.WindowsApplication").msgclass
|
129
139
|
GetInventoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1alpha.GetInventoryRequest").msgclass
|
130
140
|
ListInventoriesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1alpha.ListInventoriesRequest").msgclass
|
131
141
|
ListInventoriesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1alpha.ListInventoriesResponse").msgclass
|
@@ -39,10 +39,10 @@ module Google
|
|
39
39
|
# Output only. Base level operating system information for the VM.
|
40
40
|
# @!attribute [r] items
|
41
41
|
# @return [::Google::Protobuf::Map{::String => ::Google::Cloud::OsConfig::V1alpha::Inventory::Item}]
|
42
|
-
# Output only. Inventory items related to the VM keyed by an opaque unique
|
43
|
-
# each inventory item. The identifier is unique to each
|
44
|
-
# addressable inventory item and will change, when there is a
|
45
|
-
# version.
|
42
|
+
# Output only. Inventory items related to the VM keyed by an opaque unique
|
43
|
+
# identifier for each inventory item. The identifier is unique to each
|
44
|
+
# distinct and addressable inventory item and will change, when there is a
|
45
|
+
# new package version.
|
46
46
|
# @!attribute [r] update_time
|
47
47
|
# @return [::Google::Protobuf::Timestamp]
|
48
48
|
# Output only. Timestamp of the last reported inventory for the VM.
|
@@ -172,6 +172,9 @@ module Google
|
|
172
172
|
# @!attribute [rw] cos_package
|
173
173
|
# @return [::Google::Cloud::OsConfig::V1alpha::Inventory::VersionedPackage]
|
174
174
|
# Details of a COS package.
|
175
|
+
# @!attribute [rw] windows_application
|
176
|
+
# @return [::Google::Cloud::OsConfig::V1alpha::Inventory::WindowsApplication]
|
177
|
+
# Details of Windows Application.
|
175
178
|
class SoftwarePackage
|
176
179
|
include ::Google::Protobuf::MessageExts
|
177
180
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -284,6 +287,34 @@ module Google
|
|
284
287
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
285
288
|
end
|
286
289
|
|
290
|
+
# Contains information about a Windows application as retrieved from the
|
291
|
+
# Windows Registry. For more information about these fields, see
|
292
|
+
#
|
293
|
+
# [Windows Installer Properties for the Uninstall
|
294
|
+
# Registry](https://docs.microsoft.com/en-us/windows/win32/msi/uninstall-registry-key){:
|
295
|
+
# class="external" }
|
296
|
+
# @!attribute [rw] display_name
|
297
|
+
# @return [::String]
|
298
|
+
# The name of the application or product.
|
299
|
+
# @!attribute [rw] display_version
|
300
|
+
# @return [::String]
|
301
|
+
# The version of the product or application in string format.
|
302
|
+
# @!attribute [rw] publisher
|
303
|
+
# @return [::String]
|
304
|
+
# The name of the manufacturer for the product or application.
|
305
|
+
# @!attribute [rw] install_date
|
306
|
+
# @return [::Google::Type::Date]
|
307
|
+
# The last time this product received service. The value of this property
|
308
|
+
# is replaced each time a patch is applied or removed from the product or
|
309
|
+
# the command-line option is used to repair the product.
|
310
|
+
# @!attribute [rw] help_link
|
311
|
+
# @return [::String]
|
312
|
+
# The internet address for technical support.
|
313
|
+
class WindowsApplication
|
314
|
+
include ::Google::Protobuf::MessageExts
|
315
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
316
|
+
end
|
317
|
+
|
287
318
|
# @!attribute [rw] key
|
288
319
|
# @return [::String]
|
289
320
|
# @!attribute [rw] value
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2021 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Type
|
22
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
23
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
24
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
25
|
+
# following:
|
26
|
+
#
|
27
|
+
# * A full date, with non-zero year, month, and day values
|
28
|
+
# * A month and day value, with a zero year, such as an anniversary
|
29
|
+
# * A year on its own, with zero month and day values
|
30
|
+
# * A year and month value, with a zero day, such as a credit card expiration
|
31
|
+
# date
|
32
|
+
#
|
33
|
+
# Related types are [google.type.TimeOfDay][google.type.TimeOfDay] and
|
34
|
+
# `google.protobuf.Timestamp`.
|
35
|
+
# @!attribute [rw] year
|
36
|
+
# @return [::Integer]
|
37
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without
|
38
|
+
# a year.
|
39
|
+
# @!attribute [rw] month
|
40
|
+
# @return [::Integer]
|
41
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a
|
42
|
+
# month and day.
|
43
|
+
# @!attribute [rw] day
|
44
|
+
# @return [::Integer]
|
45
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
|
46
|
+
# to specify a year by itself or a year and month where the day isn't
|
47
|
+
# significant.
|
48
|
+
class Date
|
49
|
+
include ::Google::Protobuf::MessageExts
|
50
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-os_config-v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
11
|
+
date: 2021-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -204,6 +204,7 @@ files:
|
|
204
204
|
- proto_docs/google/protobuf/field_mask.rb
|
205
205
|
- proto_docs/google/protobuf/timestamp.rb
|
206
206
|
- proto_docs/google/rpc/status.rb
|
207
|
+
- proto_docs/google/type/date.rb
|
207
208
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
208
209
|
licenses:
|
209
210
|
- Apache-2.0
|