google-apis-ondemandscanning_v1 0.14.0 → 0.17.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6fd0147cc156e48e87d90783bb88f7cdeb4c7379edd2f6cc8df661e4f7cd3f9d
|
4
|
+
data.tar.gz: 8f1717748079515b2195de73d2322f9ce861b77583f611bd5e2f278acef63ddc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cacbd1b0427d34feff92f8b4465ad8391d1e6ffe148dc7a69ead8dba2fda3d7cd174a8a155bd465cdb564ee70bcc1847a2d4f33b4381dfee878a8cc20849e6d9
|
7
|
+
data.tar.gz: 6323f3e1024870dbcca2e9df917015fca28c5551e2b5f85af01134bc6f9e01ca614a3686713078a188e458d9b1d62f9538de7122eb681845d59663adf1d2ff1a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-ondemandscanning_v1
|
2
2
|
|
3
|
+
### v0.17.0 (2022-04-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220415
|
6
|
+
|
7
|
+
### v0.16.0 (2022-03-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220326
|
10
|
+
|
11
|
+
### v0.15.0 (2022-01-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220107
|
14
|
+
* Regenerated using generator version 0.4.1
|
15
|
+
|
3
16
|
### v0.14.0 (2021-12-14)
|
4
17
|
|
5
18
|
* Unspecified changes
|
@@ -785,6 +785,12 @@ module Google
|
|
785
785
|
# @return [Google::Apis::OndemandscanningV1::Status]
|
786
786
|
attr_accessor :analysis_status_error
|
787
787
|
|
788
|
+
# Output only. The time occurrences related to this discovery occurrence were
|
789
|
+
# archived.
|
790
|
+
# Corresponds to the JSON property `archiveTime`
|
791
|
+
# @return [String]
|
792
|
+
attr_accessor :archive_time
|
793
|
+
|
788
794
|
# Whether the resource is continuously analyzed.
|
789
795
|
# Corresponds to the JSON property `continuousAnalysis`
|
790
796
|
# @return [String]
|
@@ -808,6 +814,7 @@ module Google
|
|
808
814
|
def update!(**args)
|
809
815
|
@analysis_status = args[:analysis_status] if args.key?(:analysis_status)
|
810
816
|
@analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error)
|
817
|
+
@archive_time = args[:archive_time] if args.key?(:archive_time)
|
811
818
|
@continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
|
812
819
|
@cpe = args[:cpe] if args.key?(:cpe)
|
813
820
|
@last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
|
@@ -817,8 +824,7 @@ module Google
|
|
817
824
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
818
825
|
# messages in your APIs. A typical example is to use it as the request or the
|
819
826
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
820
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
821
|
-
# `Empty` is empty JSON object ````.
|
827
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
822
828
|
class Empty
|
823
829
|
include Google::Apis::Core::Hashable
|
824
830
|
|
@@ -1147,12 +1153,12 @@ module Google
|
|
1147
1153
|
class InTotoStatement
|
1148
1154
|
include Google::Apis::Core::Hashable
|
1149
1155
|
|
1150
|
-
# Always
|
1156
|
+
# Always `https://in-toto.io/Statement/v0.1`.
|
1151
1157
|
# Corresponds to the JSON property `_type`
|
1152
1158
|
# @return [String]
|
1153
1159
|
attr_accessor :_type
|
1154
1160
|
|
1155
|
-
#
|
1161
|
+
# `https://slsa.dev/provenance/v0.1` for SlsaProvenance.
|
1156
1162
|
# Corresponds to the JSON property `predicateType`
|
1157
1163
|
# @return [String]
|
1158
1164
|
attr_accessor :predicate_type
|
@@ -1391,7 +1397,10 @@ module Google
|
|
1391
1397
|
end
|
1392
1398
|
end
|
1393
1399
|
|
1394
|
-
# Details about files that caused a compliance check to fail.
|
1400
|
+
# Details about files that caused a compliance check to fail. display_command is
|
1401
|
+
# a single command that can be used to display a list of non compliant files.
|
1402
|
+
# When there is no such command, we can also iterate a list of non compliant
|
1403
|
+
# file using 'path'.
|
1395
1404
|
class NonCompliantFile
|
1396
1405
|
include Google::Apis::Core::Hashable
|
1397
1406
|
|
@@ -1400,9 +1409,7 @@ module Google
|
|
1400
1409
|
# @return [String]
|
1401
1410
|
attr_accessor :display_command
|
1402
1411
|
|
1403
|
-
# display_command is
|
1404
|
-
# compliant files. When there is no such command, we can also iterate a list of
|
1405
|
-
# non compliant file using 'path'. Empty if `display_command` is set.
|
1412
|
+
# Empty if `display_command` is set.
|
1406
1413
|
# Corresponds to the JSON property `path`
|
1407
1414
|
# @return [String]
|
1408
1415
|
attr_accessor :path
|
@@ -1660,6 +1667,12 @@ module Google
|
|
1660
1667
|
# @return [String]
|
1661
1668
|
attr_accessor :package_type
|
1662
1669
|
|
1670
|
+
# The path to the jar file / go binary file. The same jar file can be in
|
1671
|
+
# multiple locations - all of them will be listed.
|
1672
|
+
# Corresponds to the JSON property `pathToFile`
|
1673
|
+
# @return [Array<String>]
|
1674
|
+
attr_accessor :path_to_file
|
1675
|
+
|
1663
1676
|
#
|
1664
1677
|
# Corresponds to the JSON property `unused`
|
1665
1678
|
# @return [String]
|
@@ -1681,6 +1694,7 @@ module Google
|
|
1681
1694
|
@os_version = args[:os_version] if args.key?(:os_version)
|
1682
1695
|
@package = args[:package] if args.key?(:package)
|
1683
1696
|
@package_type = args[:package_type] if args.key?(:package_type)
|
1697
|
+
@path_to_file = args[:path_to_file] if args.key?(:path_to_file)
|
1684
1698
|
@unused = args[:unused] if args.key?(:unused)
|
1685
1699
|
@version = args[:version] if args.key?(:version)
|
1686
1700
|
end
|
@@ -2311,7 +2325,7 @@ module Google
|
|
2311
2325
|
class Subject
|
2312
2326
|
include Google::Apis::Core::Hashable
|
2313
2327
|
|
2314
|
-
# "": "" Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/
|
2328
|
+
# `"": ""` Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/
|
2315
2329
|
# attestation/blob/main/spec/field_types.md#DigestSet
|
2316
2330
|
# Corresponds to the JSON property `digest`
|
2317
2331
|
# @return [Hash<String,String>]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module OndemandscanningV1
|
18
18
|
# Version of the google-apis-ondemandscanning_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220415"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -612,6 +612,7 @@ module Google
|
|
612
612
|
property :analysis_status, as: 'analysisStatus'
|
613
613
|
property :analysis_status_error, as: 'analysisStatusError', class: Google::Apis::OndemandscanningV1::Status, decorator: Google::Apis::OndemandscanningV1::Status::Representation
|
614
614
|
|
615
|
+
property :archive_time, as: 'archiveTime'
|
615
616
|
property :continuous_analysis, as: 'continuousAnalysis'
|
616
617
|
property :cpe, as: 'cpe'
|
617
618
|
property :last_scan_time, as: 'lastScanTime'
|
@@ -860,6 +861,7 @@ module Google
|
|
860
861
|
property :os_version, as: 'osVersion'
|
861
862
|
property :package, as: 'package'
|
862
863
|
property :package_type, as: 'packageType'
|
864
|
+
collection :path_to_file, as: 'pathToFile'
|
863
865
|
property :unused, as: 'unused'
|
864
866
|
property :version, as: 'version'
|
865
867
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-ondemandscanning_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.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: 2022-
|
11
|
+
date: 2022-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.17.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for On-Demand Scanning API V1
|