google-apis-ondemandscanning_v1 0.13.0 → 0.16.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: 5847ab3aa2c975b2dabec7bf1d4bceb13582e5d63574af9e8c53eabe76971c12
4
- data.tar.gz: f4c58348f580414d22070a1b4d397a95034ba83abd3e7025685c9d23e29e287b
3
+ metadata.gz: a87d33960f4f977d6b3b940a20f7b531925f6791a80f5260ac703baefba96f81
4
+ data.tar.gz: b96d6248e649c0282e120be4d9f2fac64f15879b6905c057838ed58f18d12010
5
5
  SHA512:
6
- metadata.gz: c0343d75e15a0378707781e1c0d11bcb9b80e32259cf13246c7249dbfbf606bd152182a71c32c04640a0e30eb6ee5fc49eda02c3d4edce4def06012ff96ffd36
7
- data.tar.gz: 90d9cbff7611f6244aa55296f06de3080b9260b78ee6e08b058d32db82eccd1d0bddec86ea8d998b8565a6ec68c48657d263add064c24aeb5f9396a19de0fdda
6
+ metadata.gz: 224c6dcb34a1c30ecf039c29541cea5d5d4032c1c2bd5c8c18dc81911829bb39b115bb4e682a398224f4ad8414fbfc8cc85780d435f202eb792915b1e9dd4bad
7
+ data.tar.gz: c5aa3d7a43a1876576a8ce7a91d389aa815261892b149960357a76fc7b2d724968beab69b334f9c7b21780e28287995a0b69d6b111a3a8038bfa8fcb77833651
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-ondemandscanning_v1
2
2
 
3
+ ### v0.16.0 (2022-03-30)
4
+
5
+ * Regenerated from discovery document revision 20220326
6
+
7
+ ### v0.15.0 (2022-01-12)
8
+
9
+ * Regenerated from discovery document revision 20220107
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.14.0 (2021-12-14)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.13.0 (2021-12-09)
4
17
 
5
18
  * Regenerated from discovery document revision 20211206
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/ondemandscanning_v1"
51
51
  client = Google::Apis::OndemandscanningV1::OnDemandScanningService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -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); ` The JSON representation for
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 "https://in-toto.io/Statement/v0.1".
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
- # "https://slsa.dev/provenance/v0.1" for SlsaProvenance.
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 a single command that can be used to display a list of non
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
@@ -2311,7 +2318,7 @@ module Google
2311
2318
  class Subject
2312
2319
  include Google::Apis::Core::Hashable
2313
2320
 
2314
- # "": "" Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/
2321
+ # `"": ""` Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/
2315
2322
  # attestation/blob/main/spec/field_types.md#DigestSet
2316
2323
  # Corresponds to the JSON property `digest`
2317
2324
  # @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.13.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211206"
25
+ REVISION = "20220326"
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'
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.13.0
4
+ version: 0.16.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-12-13 00:00:00.000000000 Z
11
+ date: 2022-04-04 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.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.16.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.2.17
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