google-cloud-os_config-v1 0.8.0 → 0.9.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: a6b03ff236fbfb5835f57916a990a462bd860d433eafffcc8be9081a369b5947
4
- data.tar.gz: 0151f856f131254682fac334325dc74eb64b1a4c0d9b1faff29b9895ea3153a3
3
+ metadata.gz: 66f5342ff41bd581692d6cc4adaeb516a8cd47218cf9f5683f1e496b01d05a03
4
+ data.tar.gz: 2583eefe1c8de893594aaa8e46e95c2eb2cda4dbbfe5be54755f7c2e41ef2fc4
5
5
  SHA512:
6
- metadata.gz: ef9e9f405b617ee99337f00dc2fd82d79cae7b8f64e64b60e4cc1080f89109e5702a61d6bc8096ea2e5b3ebe9ca04c731ec62bea146c7ea39186b03895068111
7
- data.tar.gz: e5d4d3904564615614f5cb41c2d39c8f2e0d9a3846dd5953ae37ac432b32499bba4309cf5d9571d548c6c1351d32fcd8cc9bf6720ae6cbc3255566e56ecfc04c
6
+ metadata.gz: 7bfef61debb5b1720653bb8487fef27779052b07706ac19335630e899b3bed461de001c4047ceffb8a2b1786f7fab11a8cd2ea41d8fdb7bbf7f6399532496c9d
7
+ data.tar.gz: fbb0c874425b403e61fbbe64de49a645db637c37c16dd7df3b7525880a38d9668901721e7340e5be7b31e1d0156f57fa454f69a3c6d60ab3647103814fef8bc5
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module OsConfig
23
23
  module V1
24
- VERSION = "0.8.0"
24
+ VERSION = "0.9.0"
25
25
  end
26
26
  end
27
27
  end
@@ -19,6 +19,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
19
19
  repeated :available_inventory_item_ids, :string, 3
20
20
  optional :create_time, :message, 4, "google.protobuf.Timestamp"
21
21
  optional :update_time, :message, 5, "google.protobuf.Timestamp"
22
+ repeated :items, :message, 6, "google.cloud.osconfig.v1.VulnerabilityReport.Vulnerability.Item"
22
23
  end
23
24
  add_message "google.cloud.osconfig.v1.VulnerabilityReport.Vulnerability.Details" do
24
25
  optional :cve, :string, 1
@@ -32,6 +33,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
32
33
  optional :url, :string, 1
33
34
  optional :source, :string, 2
34
35
  end
36
+ add_message "google.cloud.osconfig.v1.VulnerabilityReport.Vulnerability.Item" do
37
+ optional :installed_inventory_item_id, :string, 1
38
+ optional :available_inventory_item_id, :string, 2
39
+ optional :fixed_cpe_uri, :string, 3
40
+ optional :upstream_fix, :string, 4
41
+ end
35
42
  add_message "google.cloud.osconfig.v1.GetVulnerabilityReportRequest" do
36
43
  optional :name, :string, 1
37
44
  end
@@ -103,6 +110,7 @@ module Google
103
110
  VulnerabilityReport::Vulnerability = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.VulnerabilityReport.Vulnerability").msgclass
104
111
  VulnerabilityReport::Vulnerability::Details = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.VulnerabilityReport.Vulnerability.Details").msgclass
105
112
  VulnerabilityReport::Vulnerability::Details::Reference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.VulnerabilityReport.Vulnerability.Details.Reference").msgclass
113
+ VulnerabilityReport::Vulnerability::Item = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.VulnerabilityReport.Vulnerability.Item").msgclass
106
114
  GetVulnerabilityReportRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.GetVulnerabilityReportRequest").msgclass
107
115
  ListVulnerabilityReportsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.ListVulnerabilityReportsRequest").msgclass
108
116
  ListVulnerabilityReportsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.osconfig.v1.ListVulnerabilityReportsResponse").msgclass
@@ -69,6 +69,9 @@ module Google
69
69
  # @!attribute [rw] update_time
70
70
  # @return [::Google::Protobuf::Timestamp]
71
71
  # The timestamp for when the vulnerability was last modified.
72
+ # @!attribute [rw] items
73
+ # @return [::Array<::Google::Cloud::OsConfig::V1::VulnerabilityReport::Vulnerability::Item>]
74
+ # List of items affected by the vulnerability.
72
75
  class Vulnerability
73
76
  include ::Google::Protobuf::MessageExts
74
77
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -112,6 +115,35 @@ module Google
112
115
  extend ::Google::Protobuf::MessageExts::ClassMethods
113
116
  end
114
117
  end
118
+
119
+ # OS inventory item that is affected by a vulnerability or fixed as a
120
+ # result of a vulnerability.
121
+ # @!attribute [rw] installed_inventory_item_id
122
+ # @return [::String]
123
+ # Corresponds to the `INSTALLED_PACKAGE` inventory item on the VM.
124
+ # This field displays the inventory items affected by this vulnerability.
125
+ # If the vulnerability report was not updated after the VM inventory
126
+ # update, these values might not display in VM inventory. For some
127
+ # operating systems, this field might be empty.
128
+ # @!attribute [rw] available_inventory_item_id
129
+ # @return [::String]
130
+ # Corresponds to the `AVAILABLE_PACKAGE` inventory item on the VM.
131
+ # If the vulnerability report was not updated after the VM inventory
132
+ # update, these values might not display in VM inventory. If there is no
133
+ # available fix, the field is empty. The `inventory_item` value specifies
134
+ # the latest `SoftwarePackage` available to the VM that fixes the
135
+ # vulnerability.
136
+ # @!attribute [rw] fixed_cpe_uri
137
+ # @return [::String]
138
+ # The recommended [CPE URI](https://cpe.mitre.org/specification/) update
139
+ # that contains a fix for this vulnerability.
140
+ # @!attribute [rw] upstream_fix
141
+ # @return [::String]
142
+ # The upstream OS patch, packages or KB that fixes the vulnerability.
143
+ class Item
144
+ include ::Google::Protobuf::MessageExts
145
+ extend ::Google::Protobuf::MessageExts::ClassMethods
146
+ end
115
147
  end
116
148
  end
117
149
 
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.8.0
4
+ version: 0.9.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-11-08 00:00:00.000000000 Z
11
+ date: 2021-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common