google-cloud-os_config-v1 0.4.3 → 0.5.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: e4284acf923425f615454a1530f3fe43e3e1562b668cb3d64493b1c298990706
4
- data.tar.gz: 86f7de19237ba378c5ca748ec64ef76d28a5114bec86b73134cce3a13d07337b
3
+ metadata.gz: 5d9187f869fcaaca31c9ca726624e3e13ada724a95067cb08d04991e18593f77
4
+ data.tar.gz: 0c610a02c6eeab23bc6bfa93c72b5f3d4449d99758e2d2785401de0b3e11b41a
5
5
  SHA512:
6
- metadata.gz: bc3c3a3b5a19ad69d08b077e9efa075fff1504a126e21f957a9fd740cf9d191ac54bf2e36849ea39ba395735e4061c769cf6fb4cc136c4995c6450d1aa291ce2
7
- data.tar.gz: b925c1ba6a1a2a307de6a72aade14edfb5af0b2388911f66c66f254e2debc681e902df6280cc3a21cdae6167a021a13333388a29ea1f0d34cb02453457b49d9e
6
+ metadata.gz: cf9a8a77ee20dd0a749e4c9623902b30506eb2903d4676700fd009eabca8fee14d4327834aa817edbfab8567e39ae93445435d58dd9177b6568c97073cb977d8
7
+ data.tar.gz: 953f3ea969b89b46830773b5e4846700e930365484a5b63953506d2b3c3633d99f33ff549336006c0eda476530b9931b2d2e68ee16ef28c7b98728d3f45b7347
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module OsConfig
23
23
  module V1
24
- VERSION = "0.4.3"
24
+ VERSION = "0.5.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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,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
@@ -21,7 +21,7 @@ module Google
21
21
  module Type
22
22
  # Represents a time of day. The date and time zone are either not significant
23
23
  # or are specified elsewhere. An API may choose to allow leap seconds. Related
24
- # types are [google.type.Date][google.type.Date] and
24
+ # types are {::Google::Type::Date google.type.Date} and
25
25
  # `google.protobuf.Timestamp`.
26
26
  # @!attribute [rw] hours
27
27
  # @return [::Integer]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-os_config-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.5.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 00:00:00.000000000 Z
11
+ date: 2021-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -193,6 +193,7 @@ files:
193
193
  - proto_docs/google/protobuf/duration.rb
194
194
  - proto_docs/google/protobuf/empty.rb
195
195
  - proto_docs/google/protobuf/timestamp.rb
196
+ - proto_docs/google/type/date.rb
196
197
  - proto_docs/google/type/datetime.rb
197
198
  - proto_docs/google/type/dayofweek.rb
198
199
  - proto_docs/google/type/timeofday.rb