google-apis-containeranalysis_v1 0.3.0 → 0.7.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b6cc33806be10821e68fe453bb4357f378d86ce1cf3184be6f0bf87a5ea9c8a
|
4
|
+
data.tar.gz: 867523fa4a6f6a77e61d3d64bbb9613203f74b5778e4562289a8b6c81feb10c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c14d17807f940e5ba70726adc97d6ed78cc0388cc547b57151c69800255fa40d37fa09f447da83cae5698891b9d9cb1ade723c06d28e99f74b35194380a7b5a
|
7
|
+
data.tar.gz: 775a662c961085ef878124adf0719a5b34c1e980aa80aeacf197ad87103be551094fa4f1479f5054c010bdd7cfb31062a385592af0dc6f6b0f88d233e63ffbd2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2022-02-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220204
|
6
|
+
|
7
|
+
### v0.6.0 (2022-01-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220112
|
10
|
+
|
11
|
+
### v0.5.0 (2022-01-13)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220107
|
14
|
+
* Regenerated using generator version 0.4.1
|
15
|
+
|
16
|
+
### v0.4.0 (2021-12-16)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
3
20
|
### v0.3.0 (2021-12-09)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20211203
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/containeranalysis_v1"
|
|
51
51
|
client = Google::Apis::ContaineranalysisV1::ContainerAnalysisService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
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.
|
@@ -2479,6 +2479,12 @@ module Google
|
|
2479
2479
|
# @return [Google::Apis::ContaineranalysisV1::Status]
|
2480
2480
|
attr_accessor :analysis_status_error
|
2481
2481
|
|
2482
|
+
# Output only. The time occurrences related to this discovery occurrence were
|
2483
|
+
# archived.
|
2484
|
+
# Corresponds to the JSON property `archiveTime`
|
2485
|
+
# @return [String]
|
2486
|
+
attr_accessor :archive_time
|
2487
|
+
|
2482
2488
|
# Whether the resource is continuously analyzed.
|
2483
2489
|
# Corresponds to the JSON property `continuousAnalysis`
|
2484
2490
|
# @return [String]
|
@@ -2502,6 +2508,7 @@ module Google
|
|
2502
2508
|
def update!(**args)
|
2503
2509
|
@analysis_status = args[:analysis_status] if args.key?(:analysis_status)
|
2504
2510
|
@analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error)
|
2511
|
+
@archive_time = args[:archive_time] if args.key?(:archive_time)
|
2505
2512
|
@continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
|
2506
2513
|
@cpe = args[:cpe] if args.key?(:cpe)
|
2507
2514
|
@last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
|
@@ -3111,12 +3118,12 @@ module Google
|
|
3111
3118
|
class InTotoStatement
|
3112
3119
|
include Google::Apis::Core::Hashable
|
3113
3120
|
|
3114
|
-
# Always
|
3121
|
+
# Always `https://in-toto.io/Statement/v0.1`.
|
3115
3122
|
# Corresponds to the JSON property `_type`
|
3116
3123
|
# @return [String]
|
3117
3124
|
attr_accessor :_type
|
3118
3125
|
|
3119
|
-
#
|
3126
|
+
# `https://slsa.dev/provenance/v0.1` for SlsaProvenance.
|
3120
3127
|
# Corresponds to the JSON property `predicateType`
|
3121
3128
|
# @return [String]
|
3122
3129
|
attr_accessor :predicate_type
|
@@ -3406,7 +3413,10 @@ module Google
|
|
3406
3413
|
end
|
3407
3414
|
end
|
3408
3415
|
|
3409
|
-
# Details about files that caused a compliance check to fail.
|
3416
|
+
# Details about files that caused a compliance check to fail. display_command is
|
3417
|
+
# a single command that can be used to display a list of non compliant files.
|
3418
|
+
# When there is no such command, we can also iterate a list of non compliant
|
3419
|
+
# file using 'path'.
|
3410
3420
|
class NonCompliantFile
|
3411
3421
|
include Google::Apis::Core::Hashable
|
3412
3422
|
|
@@ -3415,9 +3425,7 @@ module Google
|
|
3415
3425
|
# @return [String]
|
3416
3426
|
attr_accessor :display_command
|
3417
3427
|
|
3418
|
-
# display_command is
|
3419
|
-
# compliant files. When there is no such command, we can also iterate a list of
|
3420
|
-
# non compliant file using 'path'. Empty if `display_command` is set.
|
3428
|
+
# Empty if `display_command` is set.
|
3421
3429
|
# Corresponds to the JSON property `path`
|
3422
3430
|
# @return [String]
|
3423
3431
|
attr_accessor :path
|
@@ -4512,7 +4520,7 @@ module Google
|
|
4512
4520
|
class Subject
|
4513
4521
|
include Google::Apis::Core::Hashable
|
4514
4522
|
|
4515
|
-
# "": "" Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/
|
4523
|
+
# `"": ""` Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/
|
4516
4524
|
# attestation/blob/main/spec/field_types.md#DigestSet
|
4517
4525
|
# Corresponds to the JSON property `digest`
|
4518
4526
|
# @return [Hash<String,String>]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContaineranalysisV1
|
18
18
|
# Version of the google-apis-containeranalysis_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.7.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 = "20220204"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1369,6 +1369,7 @@ module Google
|
|
1369
1369
|
property :analysis_status, as: 'analysisStatus'
|
1370
1370
|
property :analysis_status_error, as: 'analysisStatusError', class: Google::Apis::ContaineranalysisV1::Status, decorator: Google::Apis::ContaineranalysisV1::Status::Representation
|
1371
1371
|
|
1372
|
+
property :archive_time, as: 'archiveTime'
|
1372
1373
|
property :continuous_analysis, as: 'continuousAnalysis'
|
1373
1374
|
property :cpe, as: 'cpe'
|
1374
1375
|
property :last_scan_time, as: 'lastScanTime'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.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: 2022-02-14 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-containeranalysis_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.7.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_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.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Container Analysis API V1
|