google-apis-containeranalysis_v1beta1 0.69.0 → 0.71.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: 4ac20d7a4b3cd7eeaca2e81ce77b325fe3b847de97c6a1359d7221227e9f844c
4
- data.tar.gz: d87a83c05b4623c6563048d816c0a96eaaa428656251f8fd0aa20773a5abd75f
3
+ metadata.gz: 2d215065abbe070f0d816bdac814a27efeb867cf9a379ea81a202aa4a29970e6
4
+ data.tar.gz: 3201bfda4cea4853b39b389d022c836f295e6510dc5403eb9eb25d6dfb19b045
5
5
  SHA512:
6
- metadata.gz: fd688c21766661daca5ac49b28d9826b9296010a0f0f4856ba4661af003564cafbca0e34961fd985a630b0e30939fe10f2eca8b3064f524c745663bcb8bae969
7
- data.tar.gz: fe3b711a4b02018fcfa1c9c13c0fcc13c925b1ab38c2e81c9aa720d1f58ddc0497c3ad311d5dc7c4636c54c148a09bb99f1ef45546ee68ffc17ebd16cc46d336
6
+ metadata.gz: a15b6b701a6d65184596ec304f6d0957fac7034e4b5b34b679d568620f2452a2ec3a135fd86dc46672e0225ada9ca501d6c9db9a7080ca4520e06f705b718b0a
7
+ data.tar.gz: cbe73697382fc35ac60c96de29da53a74b94e02f789b4b8ca4aac120534618a086ccf211fc6012d665ef4420252465933bd61d663455791021898de745ff9dbd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.71.0 (2026-02-01)
4
+
5
+ * Regenerated from discovery document revision 20260123
6
+
7
+ ### v0.70.0 (2025-12-14)
8
+
9
+ * Regenerated from discovery document revision 20251203
10
+
3
11
  ### v0.69.0 (2025-11-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20251030
@@ -1426,6 +1426,14 @@ module Google
1426
1426
  # @return [String]
1427
1427
  attr_accessor :artifact_id
1428
1428
 
1429
+ # Optional. Path to a folder containing the files to upload to Artifact Registry.
1430
+ # This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a
1431
+ # relative path from /workspace, e.g. `my-app/target/`. This field is mutually
1432
+ # exclusive with the `path` field.
1433
+ # Corresponds to the JSON property `deployFolder`
1434
+ # @return [String]
1435
+ attr_accessor :deploy_folder
1436
+
1429
1437
  # Maven `groupId` value used when uploading the artifact to Artifact Registry.
1430
1438
  # Corresponds to the JSON property `groupId`
1431
1439
  # @return [String]
@@ -1458,6 +1466,7 @@ module Google
1458
1466
  # Update properties of this object
1459
1467
  def update!(**args)
1460
1468
  @artifact_id = args[:artifact_id] if args.key?(:artifact_id)
1469
+ @deploy_folder = args[:deploy_folder] if args.key?(:deploy_folder)
1461
1470
  @group_id = args[:group_id] if args.key?(:group_id)
1462
1471
  @path = args[:path] if args.key?(:path)
1463
1472
  @repository = args[:repository] if args.key?(:repository)
@@ -3479,6 +3488,11 @@ module Google
3479
3488
  # @return [String]
3480
3489
  attr_accessor :last_scan_time
3481
3490
 
3491
+ # The last time vulnerability scan results changed.
3492
+ # Corresponds to the JSON property `lastVulnerabilityUpdateTime`
3493
+ # @return [String]
3494
+ attr_accessor :last_vulnerability_update_time
3495
+
3482
3496
  # The status of an SBOM generation.
3483
3497
  # Corresponds to the JSON property `sbomStatus`
3484
3498
  # @return [Google::Apis::ContaineranalysisV1beta1::SbomStatus]
@@ -3498,6 +3512,7 @@ module Google
3498
3512
  @files = args[:files] if args.key?(:files)
3499
3513
  @last_analysis_time = args[:last_analysis_time] if args.key?(:last_analysis_time)
3500
3514
  @last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
3515
+ @last_vulnerability_update_time = args[:last_vulnerability_update_time] if args.key?(:last_vulnerability_update_time)
3501
3516
  @sbom_status = args[:sbom_status] if args.key?(:sbom_status)
3502
3517
  end
3503
3518
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1beta1
18
18
  # Version of the google-apis-containeranalysis_v1beta1 gem
19
- GEM_VERSION = "0.69.0"
19
+ GEM_VERSION = "0.71.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 = "20251030"
25
+ REVISION = "20260123"
26
26
  end
27
27
  end
28
28
  end
@@ -1408,6 +1408,7 @@ module Google
1408
1408
  # @private
1409
1409
  class Representation < Google::Apis::Core::JsonRepresentation
1410
1410
  property :artifact_id, as: 'artifactId'
1411
+ property :deploy_folder, as: 'deployFolder'
1411
1412
  property :group_id, as: 'groupId'
1412
1413
  property :path, as: 'path'
1413
1414
  property :repository, as: 'repository'
@@ -1939,6 +1940,7 @@ module Google
1939
1940
 
1940
1941
  property :last_analysis_time, as: 'lastAnalysisTime'
1941
1942
  property :last_scan_time, as: 'lastScanTime'
1943
+ property :last_vulnerability_update_time, as: 'lastVulnerabilityUpdateTime'
1942
1944
  property :sbom_status, as: 'sbomStatus', class: Google::Apis::ContaineranalysisV1beta1::SbomStatus, decorator: Google::Apis::ContaineranalysisV1beta1::SbomStatus::Representation
1943
1945
 
1944
1946
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.69.0
4
+ version: 0.71.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.69.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.71.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: