google-apis-containeranalysis_v1beta1 0.60.0 → 0.61.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: 4a37c6c29f1099e55bb5cc3f7f7771faa5e404758cd4d815927cba094285eb74
|
4
|
+
data.tar.gz: 58128da00a424664e5074cdf01d32a66e9b0b39c8d65364724153a1bbb7ef605
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44917def3b6f38e12fe21fd1a00de4228dde53e9bfa887def96d392ea300bfbce2216517cbb5f5eff81d77057d46cbaa47923a8ff25b942156fc398dcef32ed7
|
7
|
+
data.tar.gz: 61d124e398f49998a4e6e82a08517dc2ba47348944be326664861121950f5aff88b46ddfb64a1af915534707ca00a9ce5a61444997ec3edd92b7608c91e834ff
|
data/CHANGELOG.md
CHANGED
@@ -731,7 +731,7 @@ module Google
|
|
731
731
|
end
|
732
732
|
end
|
733
733
|
|
734
|
-
# A step in the build pipeline. Next ID:
|
734
|
+
# A step in the build pipeline. Next ID: 22
|
735
735
|
class BuildStep
|
736
736
|
include Google::Apis::Core::Hashable
|
737
737
|
|
@@ -822,6 +822,11 @@ module Google
|
|
822
822
|
# @return [Google::Apis::ContaineranalysisV1beta1::TimeSpan]
|
823
823
|
attr_accessor :pull_timing
|
824
824
|
|
825
|
+
#
|
826
|
+
# Corresponds to the JSON property `results`
|
827
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::StepResult>]
|
828
|
+
attr_accessor :results
|
829
|
+
|
825
830
|
# A shell script to be executed in the step. When script is provided, the user
|
826
831
|
# cannot specify the entrypoint or args.
|
827
832
|
# Corresponds to the JSON property `script`
|
@@ -888,6 +893,7 @@ module Google
|
|
888
893
|
@id = args[:id] if args.key?(:id)
|
889
894
|
@name = args[:name] if args.key?(:name)
|
890
895
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
896
|
+
@results = args[:results] if args.key?(:results)
|
891
897
|
@script = args[:script] if args.key?(:script)
|
892
898
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
893
899
|
@status = args[:status] if args.key?(:status)
|
@@ -6740,6 +6746,37 @@ module Google
|
|
6740
6746
|
end
|
6741
6747
|
end
|
6742
6748
|
|
6749
|
+
# StepResult is the declaration of a result for a build step.
|
6750
|
+
class StepResult
|
6751
|
+
include Google::Apis::Core::Hashable
|
6752
|
+
|
6753
|
+
#
|
6754
|
+
# Corresponds to the JSON property `attestationContentName`
|
6755
|
+
# @return [String]
|
6756
|
+
attr_accessor :attestation_content_name
|
6757
|
+
|
6758
|
+
#
|
6759
|
+
# Corresponds to the JSON property `attestationType`
|
6760
|
+
# @return [String]
|
6761
|
+
attr_accessor :attestation_type
|
6762
|
+
|
6763
|
+
#
|
6764
|
+
# Corresponds to the JSON property `name`
|
6765
|
+
# @return [String]
|
6766
|
+
attr_accessor :name
|
6767
|
+
|
6768
|
+
def initialize(**args)
|
6769
|
+
update!(**args)
|
6770
|
+
end
|
6771
|
+
|
6772
|
+
# Update properties of this object
|
6773
|
+
def update!(**args)
|
6774
|
+
@attestation_content_name = args[:attestation_content_name] if args.key?(:attestation_content_name)
|
6775
|
+
@attestation_type = args[:attestation_type] if args.key?(:attestation_type)
|
6776
|
+
@name = args[:name] if args.key?(:name)
|
6777
|
+
end
|
6778
|
+
end
|
6779
|
+
|
6743
6780
|
# Set of software artifacts that the attestation applies to. Each element
|
6744
6781
|
# represents a single software artifact.
|
6745
6782
|
class Subject
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.61.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250307"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -952,6 +952,12 @@ module Google
|
|
952
952
|
include Google::Apis::Core::JsonObjectSupport
|
953
953
|
end
|
954
954
|
|
955
|
+
class StepResult
|
956
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
957
|
+
|
958
|
+
include Google::Apis::Core::JsonObjectSupport
|
959
|
+
end
|
960
|
+
|
955
961
|
class Subject
|
956
962
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
957
963
|
|
@@ -1225,6 +1231,8 @@ module Google
|
|
1225
1231
|
property :name, as: 'name'
|
1226
1232
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1beta1::TimeSpan, decorator: Google::Apis::ContaineranalysisV1beta1::TimeSpan::Representation
|
1227
1233
|
|
1234
|
+
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1beta1::StepResult, decorator: Google::Apis::ContaineranalysisV1beta1::StepResult::Representation
|
1235
|
+
|
1228
1236
|
property :script, as: 'script'
|
1229
1237
|
collection :secret_env, as: 'secretEnv'
|
1230
1238
|
property :status, as: 'status'
|
@@ -2778,6 +2786,15 @@ module Google
|
|
2778
2786
|
end
|
2779
2787
|
end
|
2780
2788
|
|
2789
|
+
class StepResult
|
2790
|
+
# @private
|
2791
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2792
|
+
property :attestation_content_name, as: 'attestationContentName'
|
2793
|
+
property :attestation_type, as: 'attestationType'
|
2794
|
+
property :name, as: 'name'
|
2795
|
+
end
|
2796
|
+
end
|
2797
|
+
|
2781
2798
|
class Subject
|
2782
2799
|
# @private
|
2783
2800
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.61.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.61.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:
|