google-cloud-os_config-v1 0.13.0 → 0.15.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/AUTHENTICATION.md +72 -101
- data/lib/google/cloud/os_config/v1/os_config_service/client.rb +41 -9
- data/lib/google/cloud/os_config/v1/os_config_service/rest/client.rb +237 -7
- data/lib/google/cloud/os_config/v1/os_config_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/client.rb +42 -9
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/operations.rb +38 -7
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/rest/client.rb +267 -7
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/rest/operations.rb +108 -8
- data/lib/google/cloud/os_config/v1/os_config_zonal_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/os_config/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/cloud/osconfig/v1/vulnerability.rb +2 -0
- metadata +5 -5
@@ -66,6 +66,20 @@ module Google
|
|
66
66
|
# a non-empty value will be returned. The user will not be aware of what
|
67
67
|
# non-empty value to expect.
|
68
68
|
NON_EMPTY_DEFAULT = 7
|
69
|
+
|
70
|
+
# Denotes that the field in a resource (a message annotated with
|
71
|
+
# google.api.resource) is used in the resource name to uniquely identify the
|
72
|
+
# resource. For AIP-compliant APIs, this should only be applied to the
|
73
|
+
# `name` field on the resource.
|
74
|
+
#
|
75
|
+
# This behavior should not be applied to references to other resources within
|
76
|
+
# the message.
|
77
|
+
#
|
78
|
+
# The identifier field of resources often have different field behavior
|
79
|
+
# depending on the request it is embedded in (e.g. for Create methods name
|
80
|
+
# is optional and unused, while for Update methods it is required). Instead
|
81
|
+
# of method-specific annotations, only `IDENTIFIER` is required.
|
82
|
+
IDENTIFIER = 8
|
69
83
|
end
|
70
84
|
end
|
71
85
|
end
|
@@ -49,6 +49,7 @@ module Google
|
|
49
49
|
# Contains metadata as per the upstream feed of the operating system and
|
50
50
|
# NVD.
|
51
51
|
# @!attribute [rw] installed_inventory_item_ids
|
52
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
52
53
|
# @return [::Array<::String>]
|
53
54
|
# Corresponds to the `INSTALLED_PACKAGE` inventory item on the VM.
|
54
55
|
# This field displays the inventory items affected by this vulnerability.
|
@@ -56,6 +57,7 @@ module Google
|
|
56
57
|
# update, these values might not display in VM inventory. For some distros,
|
57
58
|
# this field may be empty.
|
58
59
|
# @!attribute [rw] available_inventory_item_ids
|
60
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
59
61
|
# @return [::Array<::String>]
|
60
62
|
# Corresponds to the `AVAILABLE_PACKAGE` inventory item on the VM.
|
61
63
|
# If the vulnerability report was not updated after the VM inventory
|
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
|
+
version: 0.15.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:
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.21.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.21.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -245,7 +245,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
245
245
|
- !ruby/object:Gem::Version
|
246
246
|
version: '0'
|
247
247
|
requirements: []
|
248
|
-
rubygems_version: 3.
|
248
|
+
rubygems_version: 3.5.3
|
249
249
|
signing_key:
|
250
250
|
specification_version: 4
|
251
251
|
summary: OS management tools that can be used for patch management, patch compliance,
|