google-cloud-os_config-v1 0.5.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 +4 -4
- data/lib/google/cloud/os_config/v1/os_config_service/client.rb +198 -27
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/client.rb +1628 -0
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/credentials.rb +51 -0
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/operations.rb +767 -0
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/paths.rb +192 -0
- data/lib/google/cloud/os_config/v1/os_config_zonal_service.rb +53 -0
- data/lib/google/cloud/os_config/v1/version.rb +1 -1
- data/lib/google/cloud/os_config/v1.rb +1 -0
- data/lib/google/cloud/osconfig/v1/inventory_pb.rb +37 -9
- data/lib/google/cloud/osconfig/v1/os_policy_assignment_reports_pb.rb +92 -0
- data/lib/google/cloud/osconfig/v1/os_policy_assignments_pb.rb +134 -0
- data/lib/google/cloud/osconfig/v1/os_policy_pb.rb +204 -0
- data/lib/google/cloud/osconfig/v1/osconfig_service_pb.rb +2 -2
- data/lib/google/cloud/osconfig/v1/osconfig_service_services_pb.rb +1 -1
- data/lib/google/cloud/osconfig/v1/osconfig_zonal_service_pb.rb +25 -0
- data/lib/google/cloud/osconfig/v1/osconfig_zonal_service_services_pb.rb +107 -0
- data/lib/google/cloud/osconfig/v1/patch_deployments_pb.rb +3 -2
- data/lib/google/cloud/osconfig/v1/patch_jobs_pb.rb +2 -2
- data/lib/google/cloud/osconfig/v1/vulnerability_pb.rb +127 -0
- data/proto_docs/google/cloud/osconfig/v1/inventory.rb +111 -20
- data/proto_docs/google/cloud/osconfig/v1/os_policy.rb +597 -0
- data/proto_docs/google/cloud/osconfig/v1/os_policy_assignment_reports.rb +293 -0
- data/proto_docs/google/cloud/osconfig/v1/os_policy_assignments.rb +392 -0
- data/proto_docs/google/cloud/osconfig/v1/patch_deployments.rb +4 -0
- data/proto_docs/google/cloud/osconfig/v1/vulnerability.rb +374 -0
- data/proto_docs/google/longrunning/operations.rb +164 -0
- data/proto_docs/google/protobuf/any.rb +141 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/rpc/status.rb +46 -0
- metadata +21 -2
@@ -21,7 +21,19 @@ module Google
|
|
21
21
|
module Cloud
|
22
22
|
module OsConfig
|
23
23
|
module V1
|
24
|
-
#
|
24
|
+
# This API resource represents the available inventory data for a
|
25
|
+
# Compute Engine virtual machine (VM) instance at a given point in time.
|
26
|
+
#
|
27
|
+
# You can use this API resource to determine the inventory data of your VM.
|
28
|
+
#
|
29
|
+
# For more information, see [Information provided by OS inventory
|
30
|
+
# management](https://cloud.google.com/compute/docs/instances/os-inventory-management#data-collected).
|
31
|
+
# @!attribute [r] name
|
32
|
+
# @return [::String]
|
33
|
+
# Output only. The `Inventory` API resource name.
|
34
|
+
#
|
35
|
+
# Format:
|
36
|
+
# `projects/{project_number}/locations/{location}/instances/{instance_id}/inventory`
|
25
37
|
# @!attribute [rw] os_info
|
26
38
|
# @return [::Google::Cloud::OsConfig::V1::Inventory::OsInfo]
|
27
39
|
# Base level operating system information for the VM.
|
@@ -31,6 +43,9 @@ module Google
|
|
31
43
|
# each inventory item. The identifier is unique to each distinct and
|
32
44
|
# addressable inventory item and will change, when there is a new package
|
33
45
|
# version.
|
46
|
+
# @!attribute [r] update_time
|
47
|
+
# @return [::Google::Protobuf::Timestamp]
|
48
|
+
# Output only. Timestamp of the last reported inventory for the VM.
|
34
49
|
class Inventory
|
35
50
|
include ::Google::Protobuf::MessageExts
|
36
51
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -159,7 +174,7 @@ module Google
|
|
159
174
|
# Details of a COS package.
|
160
175
|
# @!attribute [rw] windows_application
|
161
176
|
# @return [::Google::Cloud::OsConfig::V1::Inventory::WindowsApplication]
|
162
|
-
# Details of
|
177
|
+
# Details of Windows Application.
|
163
178
|
class SoftwarePackage
|
164
179
|
include ::Google::Protobuf::MessageExts
|
165
180
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -181,6 +196,24 @@ module Google
|
|
181
196
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
182
197
|
end
|
183
198
|
|
199
|
+
# Details related to a Zypper Patch.
|
200
|
+
# @!attribute [rw] patch_name
|
201
|
+
# @return [::String]
|
202
|
+
# The name of the patch.
|
203
|
+
# @!attribute [rw] category
|
204
|
+
# @return [::String]
|
205
|
+
# The category of the patch.
|
206
|
+
# @!attribute [rw] severity
|
207
|
+
# @return [::String]
|
208
|
+
# The severity specified for this patch
|
209
|
+
# @!attribute [rw] summary
|
210
|
+
# @return [::String]
|
211
|
+
# Any summary information provided about this patch.
|
212
|
+
class ZypperPatch
|
213
|
+
include ::Google::Protobuf::MessageExts
|
214
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
215
|
+
end
|
216
|
+
|
184
217
|
# Details related to a Windows Update package.
|
185
218
|
# Field data and names are taken from Windows Update API IUpdate Interface:
|
186
219
|
# https://docs.microsoft.com/en-us/windows/win32/api/_wua/
|
@@ -233,24 +266,6 @@ module Google
|
|
233
266
|
end
|
234
267
|
end
|
235
268
|
|
236
|
-
# Details related to a Zypper Patch.
|
237
|
-
# @!attribute [rw] patch_name
|
238
|
-
# @return [::String]
|
239
|
-
# The name of the patch.
|
240
|
-
# @!attribute [rw] category
|
241
|
-
# @return [::String]
|
242
|
-
# The category of the patch.
|
243
|
-
# @!attribute [rw] severity
|
244
|
-
# @return [::String]
|
245
|
-
# The severity specified for this patch
|
246
|
-
# @!attribute [rw] summary
|
247
|
-
# @return [::String]
|
248
|
-
# Any summary information provided about this patch.
|
249
|
-
class ZypperPatch
|
250
|
-
include ::Google::Protobuf::MessageExts
|
251
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
252
|
-
end
|
253
|
-
|
254
269
|
# Information related to a Quick Fix Engineering package.
|
255
270
|
# Fields are taken from Windows QuickFixEngineering Interface and match
|
256
271
|
# the source names:
|
@@ -309,6 +324,82 @@ module Google
|
|
309
324
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
310
325
|
end
|
311
326
|
end
|
327
|
+
|
328
|
+
# A request message for getting inventory data for the specified VM.
|
329
|
+
# @!attribute [rw] name
|
330
|
+
# @return [::String]
|
331
|
+
# Required. API resource name for inventory resource.
|
332
|
+
#
|
333
|
+
# Format:
|
334
|
+
# `projects/{project}/locations/{location}/instances/{instance}/inventory`
|
335
|
+
#
|
336
|
+
# For `{project}`, either `project-number` or `project-id` can be provided.
|
337
|
+
# For `{instance}`, either Compute Engine `instance-id` or `instance-name`
|
338
|
+
# can be provided.
|
339
|
+
# @!attribute [rw] view
|
340
|
+
# @return [::Google::Cloud::OsConfig::V1::InventoryView]
|
341
|
+
# Inventory view indicating what information should be included in the
|
342
|
+
# inventory resource. If unspecified, the default view is BASIC.
|
343
|
+
class GetInventoryRequest
|
344
|
+
include ::Google::Protobuf::MessageExts
|
345
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
346
|
+
end
|
347
|
+
|
348
|
+
# A request message for listing inventory data for all VMs in the specified
|
349
|
+
# location.
|
350
|
+
# @!attribute [rw] parent
|
351
|
+
# @return [::String]
|
352
|
+
# Required. The parent resource name.
|
353
|
+
#
|
354
|
+
# Format: `projects/{project}/locations/{location}/instances/-`
|
355
|
+
#
|
356
|
+
# For `{project}`, either `project-number` or `project-id` can be provided.
|
357
|
+
# @!attribute [rw] view
|
358
|
+
# @return [::Google::Cloud::OsConfig::V1::InventoryView]
|
359
|
+
# Inventory view indicating what information should be included in the
|
360
|
+
# inventory resource. If unspecified, the default view is BASIC.
|
361
|
+
# @!attribute [rw] page_size
|
362
|
+
# @return [::Integer]
|
363
|
+
# The maximum number of results to return.
|
364
|
+
# @!attribute [rw] page_token
|
365
|
+
# @return [::String]
|
366
|
+
# A pagination token returned from a previous call to
|
367
|
+
# `ListInventories` that indicates where this listing
|
368
|
+
# should continue from.
|
369
|
+
# @!attribute [rw] filter
|
370
|
+
# @return [::String]
|
371
|
+
# If provided, this field specifies the criteria that must be met by a
|
372
|
+
# `Inventory` API resource to be included in the response.
|
373
|
+
class ListInventoriesRequest
|
374
|
+
include ::Google::Protobuf::MessageExts
|
375
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
376
|
+
end
|
377
|
+
|
378
|
+
# A response message for listing inventory data for all VMs in a specified
|
379
|
+
# location.
|
380
|
+
# @!attribute [rw] inventories
|
381
|
+
# @return [::Array<::Google::Cloud::OsConfig::V1::Inventory>]
|
382
|
+
# List of inventory objects.
|
383
|
+
# @!attribute [rw] next_page_token
|
384
|
+
# @return [::String]
|
385
|
+
# The pagination token to retrieve the next page of inventory objects.
|
386
|
+
class ListInventoriesResponse
|
387
|
+
include ::Google::Protobuf::MessageExts
|
388
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
389
|
+
end
|
390
|
+
|
391
|
+
# The view for inventory objects.
|
392
|
+
module InventoryView
|
393
|
+
# The default value.
|
394
|
+
# The API defaults to the BASIC view.
|
395
|
+
INVENTORY_VIEW_UNSPECIFIED = 0
|
396
|
+
|
397
|
+
# Returns the basic inventory information that includes `os_info`.
|
398
|
+
BASIC = 1
|
399
|
+
|
400
|
+
# Returns all fields.
|
401
|
+
FULL = 2
|
402
|
+
end
|
312
403
|
end
|
313
404
|
end
|
314
405
|
end
|