google-apis-containeranalysis_v1 0.64.0 → 0.65.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: 7840caec35037295c090e80c0a9b5e6ff836e9728b17c7859d30d836905ab916
|
|
4
|
+
data.tar.gz: 9a8e97d40c6f0ca9453440d060ae1da7dd819274876fa4dcf84846e5cabb018a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d83b411f232a5a42c935613443444e9bf32cee033a066178be3e8082476d1c4624573692eb0cebb0a5ea74df3c851446c3ab156b573dcf0407144f9e98c1b8de
|
|
7
|
+
data.tar.gz: a307d5f72f1a235bad405a4bf84a67e16ac2d7792ec6c61bb1746ff9fc4022cca4139864dfa41175f28c0b39f27a86142db4e7b9f417138e244cdbef899fbc1f
|
data/CHANGELOG.md
CHANGED
|
@@ -2402,6 +2402,11 @@ module Google
|
|
|
2402
2402
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage
|
|
2403
2403
|
include Google::Apis::Core::Hashable
|
|
2404
2404
|
|
|
2405
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
2406
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
2407
|
+
# @return [String]
|
|
2408
|
+
attr_accessor :artifact_registry_package
|
|
2409
|
+
|
|
2405
2410
|
# Docker Registry 2.0 digest.
|
|
2406
2411
|
# Corresponds to the JSON property `digest`
|
|
2407
2412
|
# @return [String]
|
|
@@ -2424,6 +2429,7 @@ module Google
|
|
|
2424
2429
|
|
|
2425
2430
|
# Update properties of this object
|
|
2426
2431
|
def update!(**args)
|
|
2432
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
2427
2433
|
@digest = args[:digest] if args.key?(:digest)
|
|
2428
2434
|
@name = args[:name] if args.key?(:name)
|
|
2429
2435
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
@@ -3203,6 +3209,11 @@ module Google
|
|
|
3203
3209
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
3204
3210
|
include Google::Apis::Core::Hashable
|
|
3205
3211
|
|
|
3212
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3213
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3214
|
+
# @return [String]
|
|
3215
|
+
attr_accessor :artifact_registry_package
|
|
3216
|
+
|
|
3206
3217
|
# Container message for hashes of byte content of files, used in
|
|
3207
3218
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3208
3219
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -3225,6 +3236,7 @@ module Google
|
|
|
3225
3236
|
|
|
3226
3237
|
# Update properties of this object
|
|
3227
3238
|
def update!(**args)
|
|
3239
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3228
3240
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3229
3241
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3230
3242
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -3235,6 +3247,11 @@ module Google
|
|
|
3235
3247
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
|
3236
3248
|
include Google::Apis::Core::Hashable
|
|
3237
3249
|
|
|
3250
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3251
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3252
|
+
# @return [String]
|
|
3253
|
+
attr_accessor :artifact_registry_package
|
|
3254
|
+
|
|
3238
3255
|
# Container message for hashes of byte content of files, used in
|
|
3239
3256
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3240
3257
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -3257,6 +3274,7 @@ module Google
|
|
|
3257
3274
|
|
|
3258
3275
|
# Update properties of this object
|
|
3259
3276
|
def update!(**args)
|
|
3277
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3260
3278
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3261
3279
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3262
3280
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -3267,6 +3285,11 @@ module Google
|
|
|
3267
3285
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
|
|
3268
3286
|
include Google::Apis::Core::Hashable
|
|
3269
3287
|
|
|
3288
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3289
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3290
|
+
# @return [String]
|
|
3291
|
+
attr_accessor :artifact_registry_package
|
|
3292
|
+
|
|
3270
3293
|
# Container message for hashes of byte content of files, used in
|
|
3271
3294
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3272
3295
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -3289,6 +3312,7 @@ module Google
|
|
|
3289
3312
|
|
|
3290
3313
|
# Update properties of this object
|
|
3291
3314
|
def update!(**args)
|
|
3315
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3292
3316
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3293
3317
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3294
3318
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -3299,6 +3323,11 @@ module Google
|
|
|
3299
3323
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
|
|
3300
3324
|
include Google::Apis::Core::Hashable
|
|
3301
3325
|
|
|
3326
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3327
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3328
|
+
# @return [String]
|
|
3329
|
+
attr_accessor :artifact_registry_package
|
|
3330
|
+
|
|
3302
3331
|
# Container message for hashes of byte content of files, used in
|
|
3303
3332
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3304
3333
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -3321,6 +3350,7 @@ module Google
|
|
|
3321
3350
|
|
|
3322
3351
|
# Update properties of this object
|
|
3323
3352
|
def update!(**args)
|
|
3353
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3324
3354
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3325
3355
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3326
3356
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -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.65.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251030"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1683,6 +1683,7 @@ module Google
|
|
|
1683
1683
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage
|
|
1684
1684
|
# @private
|
|
1685
1685
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1686
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1686
1687
|
property :digest, as: 'digest'
|
|
1687
1688
|
property :name, as: 'name'
|
|
1688
1689
|
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
@@ -1913,6 +1914,7 @@ module Google
|
|
|
1913
1914
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
1914
1915
|
# @private
|
|
1915
1916
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1917
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1916
1918
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
1917
1919
|
|
|
1918
1920
|
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
@@ -1924,6 +1926,7 @@ module Google
|
|
|
1924
1926
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
|
1925
1927
|
# @private
|
|
1926
1928
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1929
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1927
1930
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
1928
1931
|
|
|
1929
1932
|
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
@@ -1935,6 +1938,7 @@ module Google
|
|
|
1935
1938
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
|
|
1936
1939
|
# @private
|
|
1937
1940
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1941
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1938
1942
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
1939
1943
|
|
|
1940
1944
|
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
@@ -1946,6 +1950,7 @@ module Google
|
|
|
1946
1950
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
|
|
1947
1951
|
# @private
|
|
1948
1952
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1953
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1949
1954
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
1950
1955
|
|
|
1951
1956
|
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.65.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.65.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|