google-apis-ondemandscanning_v1beta1 0.15.0 → 0.18.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: 8e7fda1d157ea594b3b73177139e1f7623e6bbbbe0e45acc279451e5e415cdb5
4
- data.tar.gz: 295c42fe10a76e79b490b19e6a72a360f5e38df21f45dc7c1b1fbcf6b6dafd99
3
+ metadata.gz: 738f1b9fb083bec970aed7afe0f3c02f8503a37bfd2325bd2d4a169bd46c5782
4
+ data.tar.gz: c7079a8a784f3953899ea53d6dfd728ad085522b7e4e9487310ad98a55c591ba
5
5
  SHA512:
6
- metadata.gz: 3cb46cbd6e5fb17e6814fb13b840b77b7e97b787f6c87215819782a3946528a807deb1cd45b1a6ca8d0e2773576824b3d2cf59b71bda814d323dc11695307d81
7
- data.tar.gz: 525c0ff10d16556cd8d4a6b48525335f67385937f2eb9e6cc92632eacc8f1183729c085fc94441b8f7a69098a9005ebf0260068e64e48e838bbbb07452ceb70b
6
+ metadata.gz: b4abba9a3bfc068dc6f1bb9ee51e552da980d6fed9b9b1c02ad5c4e84af0b57cc3f8bcfef9728ac58299c02ebb490ae2b06580f4ac3ce030842b2d8b39a26c67
7
+ data.tar.gz: 6b21df2b82a8c319bbc1ce766f09175d864e546ec8fb1f5e8b3f996fb645f504121e5b4c7ee975e0425e368aa37f28fff6daaf2c0ebb1e9211b84e7b9d5ee6bb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-ondemandscanning_v1beta1
2
2
 
3
+ ### v0.18.0 (2022-03-30)
4
+
5
+ * Regenerated from discovery document revision 20220326
6
+
7
+ ### v0.17.0 (2022-01-12)
8
+
9
+ * Regenerated from discovery document revision 20220107
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.16.0 (2021-12-14)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.15.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_v1beta1"
51
51
  client = Google::Apis::OndemandscanningV1beta1::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.
@@ -777,6 +777,12 @@ module Google
777
777
  # @return [Google::Apis::OndemandscanningV1beta1::Status]
778
778
  attr_accessor :analysis_status_error
779
779
 
780
+ # Output only. The time occurrences related to this discovery occurrence were
781
+ # archived.
782
+ # Corresponds to the JSON property `archiveTime`
783
+ # @return [String]
784
+ attr_accessor :archive_time
785
+
780
786
  # Whether the resource is continuously analyzed.
781
787
  # Corresponds to the JSON property `continuousAnalysis`
782
788
  # @return [String]
@@ -800,6 +806,7 @@ module Google
800
806
  def update!(**args)
801
807
  @analysis_status = args[:analysis_status] if args.key?(:analysis_status)
802
808
  @analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error)
809
+ @archive_time = args[:archive_time] if args.key?(:archive_time)
803
810
  @continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
804
811
  @cpe = args[:cpe] if args.key?(:cpe)
805
812
  @last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
@@ -809,8 +816,7 @@ module Google
809
816
  # A generic empty message that you can re-use to avoid defining duplicated empty
810
817
  # messages in your APIs. A typical example is to use it as the request or the
811
818
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
812
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
813
- # `Empty` is empty JSON object ````.
819
+ # protobuf.Empty) returns (google.protobuf.Empty); `
814
820
  class Empty
815
821
  include Google::Apis::Core::Hashable
816
822
 
@@ -1139,12 +1145,12 @@ module Google
1139
1145
  class InTotoStatement
1140
1146
  include Google::Apis::Core::Hashable
1141
1147
 
1142
- # Always "https://in-toto.io/Statement/v0.1".
1148
+ # Always `https://in-toto.io/Statement/v0.1`.
1143
1149
  # Corresponds to the JSON property `_type`
1144
1150
  # @return [String]
1145
1151
  attr_accessor :_type
1146
1152
 
1147
- # "https://slsa.dev/provenance/v0.1" for SlsaProvenance.
1153
+ # `https://slsa.dev/provenance/v0.1` for SlsaProvenance.
1148
1154
  # Corresponds to the JSON property `predicateType`
1149
1155
  # @return [String]
1150
1156
  attr_accessor :predicate_type
@@ -1383,7 +1389,10 @@ module Google
1383
1389
  end
1384
1390
  end
1385
1391
 
1386
- # Details about files that caused a compliance check to fail.
1392
+ # Details about files that caused a compliance check to fail. display_command is
1393
+ # a single command that can be used to display a list of non compliant files.
1394
+ # When there is no such command, we can also iterate a list of non compliant
1395
+ # file using 'path'.
1387
1396
  class NonCompliantFile
1388
1397
  include Google::Apis::Core::Hashable
1389
1398
 
@@ -1392,9 +1401,7 @@ module Google
1392
1401
  # @return [String]
1393
1402
  attr_accessor :display_command
1394
1403
 
1395
- # display_command is a single command that can be used to display a list of non
1396
- # compliant files. When there is no such command, we can also iterate a list of
1397
- # non compliant file using 'path'. Empty if `display_command` is set.
1404
+ # Empty if `display_command` is set.
1398
1405
  # Corresponds to the JSON property `path`
1399
1406
  # @return [String]
1400
1407
  attr_accessor :path
@@ -2303,7 +2310,7 @@ module Google
2303
2310
  class Subject
2304
2311
  include Google::Apis::Core::Hashable
2305
2312
 
2306
- # "": "" Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/
2313
+ # `"": ""` Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/
2307
2314
  # attestation/blob/main/spec/field_types.md#DigestSet
2308
2315
  # Corresponds to the JSON property `digest`
2309
2316
  # @return [Hash<String,String>]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OndemandscanningV1beta1
18
18
  # Version of the google-apis-ondemandscanning_v1beta1 gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.18.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
@@ -611,6 +611,7 @@ module Google
611
611
  property :analysis_status, as: 'analysisStatus'
612
612
  property :analysis_status_error, as: 'analysisStatusError', class: Google::Apis::OndemandscanningV1beta1::Status, decorator: Google::Apis::OndemandscanningV1beta1::Status::Representation
613
613
 
614
+ property :archive_time, as: 'archiveTime'
614
615
  property :continuous_analysis, as: 'continuousAnalysis'
615
616
  property :cpe, as: 'cpe'
616
617
  property :last_scan_time, as: 'lastScanTime'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-ondemandscanning_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.18.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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1beta1
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 V1beta1