google-cloud-asset-v1 0.15.0 → 0.16.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: f29a81a5b81ba9a18fdb3445dbc93abb5943acd5d28e9b27bd566c4f74605388
|
4
|
+
data.tar.gz: 632943db028e6ee69455f7063a017e4297e2e555a677d3ffec2eab38250559a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87e8b83b57a2259b714d839cd5be408a291c894ce3cfd64f0e22982d61ec18aee3fffac59315ae682dc4608ac81a5da394b0ce7510815ab99875f07871b94d5c
|
7
|
+
data.tar.gz: 3e8de05638b3fbb2ac37185fca93fc4a8d1ea155457e58037038877336e78ca85f52f534ef624578b0a6137c84061d9ff8b5ebd1cf9af3b1d181660ce4286619
|
@@ -4,6 +4,7 @@
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
6
|
require 'google/protobuf/timestamp_pb'
|
7
|
+
require 'google/type/date_pb'
|
7
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
9
|
add_file("google/cloud/osconfig/v1/inventory.proto", :syntax => :proto3) do
|
9
10
|
add_message "google.cloud.osconfig.v1.Inventory" do
|
@@ -50,6 +51,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
50
51
|
optional :wua_package, :message, 6, "google.cloud.osconfig.v1.Inventory.WindowsUpdatePackage"
|
51
52
|
optional :qfe_package, :message, 7, "google.cloud.osconfig.v1.Inventory.WindowsQuickFixEngineeringPackage"
|
52
53
|
optional :cos_package, :message, 8, "google.cloud.osconfig.v1.Inventory.VersionedPackage"
|
54
|
+
optional :windows_application, :message, 9, "google.cloud.osconfig.v1.Inventory.WindowsApplication"
|
53
55
|
end
|
54
56
|
end
|
55
57
|
add_message "google.cloud.osconfig.v1.Inventory.VersionedPackage" do
|
@@ -84,6 +86,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
84
86
|
optional :hot_fix_id, :string, 3
|
85
87
|
optional :install_time, :message, 5, "google.protobuf.Timestamp"
|
86
88
|
end
|
89
|
+
add_message "google.cloud.osconfig.v1.Inventory.WindowsApplication" do
|
90
|
+
optional :display_name, :string, 1
|
91
|
+
optional :display_version, :string, 2
|
92
|
+
optional :publisher, :string, 3
|
93
|
+
optional :install_date, :message, 4, "google.type.Date"
|
94
|
+
optional :help_link, :string, 5
|
95
|
+
end
|
87
96
|
end
|
88
97
|
end
|
89
98
|
|
@@ -102,6 +111,7 @@ module Google
|
|
102
111
|
Inventory::WindowsUpdatePackage::WindowsUpdateCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.Inventory.WindowsUpdatePackage.WindowsUpdateCategory").msgclass
|
103
112
|
Inventory::ZypperPatch = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.Inventory.ZypperPatch").msgclass
|
104
113
|
Inventory::WindowsQuickFixEngineeringPackage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.Inventory.WindowsQuickFixEngineeringPackage").msgclass
|
114
|
+
Inventory::WindowsApplication = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.Inventory.WindowsApplication").msgclass
|
105
115
|
end
|
106
116
|
end
|
107
117
|
end
|
@@ -157,6 +157,9 @@ module Google
|
|
157
157
|
# @!attribute [rw] cos_package
|
158
158
|
# @return [::Google::Cloud::OsConfig::V1::Inventory::VersionedPackage]
|
159
159
|
# Details of a COS package.
|
160
|
+
# @!attribute [rw] windows_application
|
161
|
+
# @return [::Google::Cloud::OsConfig::V1::Inventory::WindowsApplication]
|
162
|
+
# Details of a Windows Application
|
160
163
|
class SoftwarePackage
|
161
164
|
include ::Google::Protobuf::MessageExts
|
162
165
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -269,6 +272,34 @@ module Google
|
|
269
272
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
270
273
|
end
|
271
274
|
|
275
|
+
# Contains information about a Windows application as retrieved from the
|
276
|
+
# Windows Registry. For more information about these fields, see
|
277
|
+
#
|
278
|
+
# [Windows Installer Properties for the Uninstall
|
279
|
+
# Registry](https://docs.microsoft.com/en-us/windows/win32/msi/uninstall-registry-key){:
|
280
|
+
# class="external" }
|
281
|
+
# @!attribute [rw] display_name
|
282
|
+
# @return [::String]
|
283
|
+
# The name of the application or product.
|
284
|
+
# @!attribute [rw] display_version
|
285
|
+
# @return [::String]
|
286
|
+
# The version of the product or application in string format.
|
287
|
+
# @!attribute [rw] publisher
|
288
|
+
# @return [::String]
|
289
|
+
# The name of the manufacturer for the product or application.
|
290
|
+
# @!attribute [rw] install_date
|
291
|
+
# @return [::Google::Type::Date]
|
292
|
+
# The last time this product received service. The value of this property
|
293
|
+
# is replaced each time a patch is applied or removed from the product or
|
294
|
+
# the command-line option is used to repair the product.
|
295
|
+
# @!attribute [rw] help_link
|
296
|
+
# @return [::String]
|
297
|
+
# The internet address for technical support.
|
298
|
+
class WindowsApplication
|
299
|
+
include ::Google::Protobuf::MessageExts
|
300
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
301
|
+
end
|
302
|
+
|
272
303
|
# @!attribute [rw] key
|
273
304
|
# @return [::String]
|
274
305
|
# @!attribute [rw] value
|
@@ -0,0 +1,50 @@
|
|
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, e.g. a birthday. The time of day
|
23
|
+
# and time zone are either specified elsewhere or are not significant. The date
|
24
|
+
# is relative to the Proleptic Gregorian Calendar. This can represent:
|
25
|
+
#
|
26
|
+
# * A full date, with non-zero year, month and day values
|
27
|
+
# * A month and day value, with a zero year, e.g. an anniversary
|
28
|
+
# * A year on its own, with zero month and day values
|
29
|
+
# * A year and month value, with a zero day, e.g. a credit card expiration date
|
30
|
+
#
|
31
|
+
# Related types are [google.type.TimeOfDay][google.type.TimeOfDay] and `google.protobuf.Timestamp`.
|
32
|
+
# @!attribute [rw] year
|
33
|
+
# @return [::Integer]
|
34
|
+
# Year of date. Must be from 1 to 9999, or 0 if specifying a date without
|
35
|
+
# a year.
|
36
|
+
# @!attribute [rw] month
|
37
|
+
# @return [::Integer]
|
38
|
+
# Month of year. Must be from 1 to 12, or 0 if specifying a year without a
|
39
|
+
# month and day.
|
40
|
+
# @!attribute [rw] day
|
41
|
+
# @return [::Integer]
|
42
|
+
# Day of month. Must be from 1 to 31 and valid for the year and month, or 0
|
43
|
+
# if specifying a year by itself or a year and month where the day is not
|
44
|
+
# significant.
|
45
|
+
class Date
|
46
|
+
include ::Google::Protobuf::MessageExts
|
47
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-asset-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.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
|
@@ -228,6 +228,7 @@ files:
|
|
228
228
|
- proto_docs/google/protobuf/timestamp.rb
|
229
229
|
- proto_docs/google/rpc/code.rb
|
230
230
|
- proto_docs/google/rpc/status.rb
|
231
|
+
- proto_docs/google/type/date.rb
|
231
232
|
- proto_docs/google/type/expr.rb
|
232
233
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
233
234
|
licenses:
|