google-apis-containeranalysis_v1beta1 0.59.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
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1beta1
|
2
2
|
|
3
|
+
### v0.61.0 (2025-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250307
|
6
|
+
|
7
|
+
### v0.60.0 (2025-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250207
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.59.0 (2024-12-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240924
|
@@ -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)
|
@@ -1248,6 +1254,13 @@ module Google
|
|
1248
1254
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
1249
1255
|
include Google::Apis::Core::Hashable
|
1250
1256
|
|
1257
|
+
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
1258
|
+
# successful completion of all build steps. If any objects fail to be pushed,
|
1259
|
+
# the build is marked FAILURE.
|
1260
|
+
# Corresponds to the JSON property `goModules`
|
1261
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule>]
|
1262
|
+
attr_accessor :go_modules
|
1263
|
+
|
1251
1264
|
# A list of images to be pushed upon the successful completion of all build
|
1252
1265
|
# steps. The images will be pushed using the builder service account's
|
1253
1266
|
# credentials. The digests of the pushed images will be stored in the Build
|
@@ -1295,6 +1308,7 @@ module Google
|
|
1295
1308
|
|
1296
1309
|
# Update properties of this object
|
1297
1310
|
def update!(**args)
|
1311
|
+
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
1298
1312
|
@images = args[:images] if args.key?(:images)
|
1299
1313
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
1300
1314
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
@@ -1338,6 +1352,64 @@ module Google
|
|
1338
1352
|
end
|
1339
1353
|
end
|
1340
1354
|
|
1355
|
+
# Go module to upload to Artifact Registry upon successful completion of all
|
1356
|
+
# build steps. A module refers to all dependencies in a go.mod file.
|
1357
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
1358
|
+
include Google::Apis::Core::Hashable
|
1359
|
+
|
1360
|
+
# Optional. The Go module's "module path". e.g. example.com/foo/v2
|
1361
|
+
# Corresponds to the JSON property `modulePath`
|
1362
|
+
# @return [String]
|
1363
|
+
attr_accessor :module_path
|
1364
|
+
|
1365
|
+
# Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-
|
1366
|
+
# release identifiers can also be added by appending a dash and dot separated
|
1367
|
+
# ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5
|
1368
|
+
# Corresponds to the JSON property `moduleVersion`
|
1369
|
+
# @return [String]
|
1370
|
+
attr_accessor :module_version
|
1371
|
+
|
1372
|
+
# Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults
|
1373
|
+
# to the build’s location.
|
1374
|
+
# Corresponds to the JSON property `repositoryLocation`
|
1375
|
+
# @return [String]
|
1376
|
+
attr_accessor :repository_location
|
1377
|
+
|
1378
|
+
# Optional. Artifact Registry repository name. Specified Go modules will be
|
1379
|
+
# zipped and uploaded to Artifact Registry with this location as a prefix. e.g.
|
1380
|
+
# my-go-repo
|
1381
|
+
# Corresponds to the JSON property `repositoryName`
|
1382
|
+
# @return [String]
|
1383
|
+
attr_accessor :repository_name
|
1384
|
+
|
1385
|
+
# Optional. Project ID of the Artifact Registry repository. Defaults to the
|
1386
|
+
# build project.
|
1387
|
+
# Corresponds to the JSON property `repositoryProjectId`
|
1388
|
+
# @return [String]
|
1389
|
+
attr_accessor :repository_project_id
|
1390
|
+
|
1391
|
+
# Optional. Source path of the go.mod file in the build's workspace. If not
|
1392
|
+
# specified, this will default to the current directory. e.g. ~/code/go/
|
1393
|
+
# mypackage
|
1394
|
+
# Corresponds to the JSON property `sourcePath`
|
1395
|
+
# @return [String]
|
1396
|
+
attr_accessor :source_path
|
1397
|
+
|
1398
|
+
def initialize(**args)
|
1399
|
+
update!(**args)
|
1400
|
+
end
|
1401
|
+
|
1402
|
+
# Update properties of this object
|
1403
|
+
def update!(**args)
|
1404
|
+
@module_path = args[:module_path] if args.key?(:module_path)
|
1405
|
+
@module_version = args[:module_version] if args.key?(:module_version)
|
1406
|
+
@repository_location = args[:repository_location] if args.key?(:repository_location)
|
1407
|
+
@repository_name = args[:repository_name] if args.key?(:repository_name)
|
1408
|
+
@repository_project_id = args[:repository_project_id] if args.key?(:repository_project_id)
|
1409
|
+
@source_path = args[:source_path] if args.key?(:source_path)
|
1410
|
+
end
|
1411
|
+
end
|
1412
|
+
|
1341
1413
|
# A Maven artifact to upload to Artifact Registry upon successful completion of
|
1342
1414
|
# all build steps.
|
1343
1415
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
|
@@ -1487,6 +1559,12 @@ module Google
|
|
1487
1559
|
# @return [String]
|
1488
1560
|
attr_accessor :create_time
|
1489
1561
|
|
1562
|
+
# Optional. Dependencies that the Cloud Build worker will fetch before executing
|
1563
|
+
# user steps.
|
1564
|
+
# Corresponds to the JSON property `dependencies`
|
1565
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency>]
|
1566
|
+
attr_accessor :dependencies
|
1567
|
+
|
1490
1568
|
# A fatal problem encountered during the execution of the build.
|
1491
1569
|
# Corresponds to the JSON property `failureInfo`
|
1492
1570
|
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo]
|
@@ -1648,6 +1726,7 @@ module Google
|
|
1648
1726
|
@available_secrets = args[:available_secrets] if args.key?(:available_secrets)
|
1649
1727
|
@build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
|
1650
1728
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1729
|
+
@dependencies = args[:dependencies] if args.key?(:dependencies)
|
1651
1730
|
@failure_info = args[:failure_info] if args.key?(:failure_info)
|
1652
1731
|
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
1653
1732
|
@git_config = args[:git_config] if args.key?(:git_config)
|
@@ -1767,6 +1846,13 @@ module Google
|
|
1767
1846
|
attr_accessor :dynamic_substitutions
|
1768
1847
|
alias_method :dynamic_substitutions?, :dynamic_substitutions
|
1769
1848
|
|
1849
|
+
# Optional. Option to specify whether structured logging is enabled. If true,
|
1850
|
+
# JSON-formatted logs are parsed as structured logs.
|
1851
|
+
# Corresponds to the JSON property `enableStructuredLogging`
|
1852
|
+
# @return [Boolean]
|
1853
|
+
attr_accessor :enable_structured_logging
|
1854
|
+
alias_method :enable_structured_logging?, :enable_structured_logging
|
1855
|
+
|
1770
1856
|
# A list of global environment variable definitions that will exist for all
|
1771
1857
|
# build steps in this build. If a variable is defined in both globally and in a
|
1772
1858
|
# build step, the variable will use the build step value. The elements are of
|
@@ -1799,6 +1885,11 @@ module Google
|
|
1799
1885
|
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption]
|
1800
1886
|
attr_accessor :pool
|
1801
1887
|
|
1888
|
+
# Optional. Option to specify the Pub/Sub topic to receive build status updates.
|
1889
|
+
# Corresponds to the JSON property `pubsubTopic`
|
1890
|
+
# @return [String]
|
1891
|
+
attr_accessor :pubsub_topic
|
1892
|
+
|
1802
1893
|
# Requested verifiability options.
|
1803
1894
|
# Corresponds to the JSON property `requestedVerifyOption`
|
1804
1895
|
# @return [String]
|
@@ -1848,11 +1939,13 @@ module Google
|
|
1848
1939
|
@default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
|
1849
1940
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1850
1941
|
@dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
|
1942
|
+
@enable_structured_logging = args[:enable_structured_logging] if args.key?(:enable_structured_logging)
|
1851
1943
|
@env = args[:env] if args.key?(:env)
|
1852
1944
|
@log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
|
1853
1945
|
@logging = args[:logging] if args.key?(:logging)
|
1854
1946
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
1855
1947
|
@pool = args[:pool] if args.key?(:pool)
|
1948
|
+
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
1856
1949
|
@requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
|
1857
1950
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
1858
1951
|
@source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
|
@@ -2142,6 +2235,106 @@ module Google
|
|
2142
2235
|
end
|
2143
2236
|
end
|
2144
2237
|
|
2238
|
+
# A dependency that the Cloud Build worker will fetch before executing user
|
2239
|
+
# steps.
|
2240
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
|
2241
|
+
include Google::Apis::Core::Hashable
|
2242
|
+
|
2243
|
+
# If set to true disable all dependency fetching (ignoring the default source as
|
2244
|
+
# well).
|
2245
|
+
# Corresponds to the JSON property `empty`
|
2246
|
+
# @return [Boolean]
|
2247
|
+
attr_accessor :empty
|
2248
|
+
alias_method :empty?, :empty
|
2249
|
+
|
2250
|
+
# Represents a git repository as a build dependency.
|
2251
|
+
# Corresponds to the JSON property `gitSource`
|
2252
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
|
2253
|
+
attr_accessor :git_source
|
2254
|
+
|
2255
|
+
def initialize(**args)
|
2256
|
+
update!(**args)
|
2257
|
+
end
|
2258
|
+
|
2259
|
+
# Update properties of this object
|
2260
|
+
def update!(**args)
|
2261
|
+
@empty = args[:empty] if args.key?(:empty)
|
2262
|
+
@git_source = args[:git_source] if args.key?(:git_source)
|
2263
|
+
end
|
2264
|
+
end
|
2265
|
+
|
2266
|
+
# Represents a git repository as a build dependency.
|
2267
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
2268
|
+
include Google::Apis::Core::Hashable
|
2269
|
+
|
2270
|
+
# Optional. How much history should be fetched for the build (default 1, -1 for
|
2271
|
+
# all history).
|
2272
|
+
# Corresponds to the JSON property `depth`
|
2273
|
+
# @return [Fixnum]
|
2274
|
+
attr_accessor :depth
|
2275
|
+
|
2276
|
+
# Required. Where should the files be placed on the worker.
|
2277
|
+
# Corresponds to the JSON property `destPath`
|
2278
|
+
# @return [String]
|
2279
|
+
attr_accessor :dest_path
|
2280
|
+
|
2281
|
+
# Optional. True if submodules should be fetched too (default false).
|
2282
|
+
# Corresponds to the JSON property `recurseSubmodules`
|
2283
|
+
# @return [Boolean]
|
2284
|
+
attr_accessor :recurse_submodules
|
2285
|
+
alias_method :recurse_submodules?, :recurse_submodules
|
2286
|
+
|
2287
|
+
# A repository for a git source.
|
2288
|
+
# Corresponds to the JSON property `repository`
|
2289
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository]
|
2290
|
+
attr_accessor :repository
|
2291
|
+
|
2292
|
+
# Required. The revision that we will fetch the repo at.
|
2293
|
+
# Corresponds to the JSON property `revision`
|
2294
|
+
# @return [String]
|
2295
|
+
attr_accessor :revision
|
2296
|
+
|
2297
|
+
def initialize(**args)
|
2298
|
+
update!(**args)
|
2299
|
+
end
|
2300
|
+
|
2301
|
+
# Update properties of this object
|
2302
|
+
def update!(**args)
|
2303
|
+
@depth = args[:depth] if args.key?(:depth)
|
2304
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
2305
|
+
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
2306
|
+
@repository = args[:repository] if args.key?(:repository)
|
2307
|
+
@revision = args[:revision] if args.key?(:revision)
|
2308
|
+
end
|
2309
|
+
end
|
2310
|
+
|
2311
|
+
# A repository for a git source.
|
2312
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
|
2313
|
+
include Google::Apis::Core::Hashable
|
2314
|
+
|
2315
|
+
# The Developer Connect Git repository link or the url that matches a repository
|
2316
|
+
# link in the current project, formatted as `projects/*/locations/*/connections/*
|
2317
|
+
# /gitRepositoryLink/*`
|
2318
|
+
# Corresponds to the JSON property `developerConnect`
|
2319
|
+
# @return [String]
|
2320
|
+
attr_accessor :developer_connect
|
2321
|
+
|
2322
|
+
# Location of the Git repository.
|
2323
|
+
# Corresponds to the JSON property `url`
|
2324
|
+
# @return [String]
|
2325
|
+
attr_accessor :url
|
2326
|
+
|
2327
|
+
def initialize(**args)
|
2328
|
+
update!(**args)
|
2329
|
+
end
|
2330
|
+
|
2331
|
+
# Update properties of this object
|
2332
|
+
def update!(**args)
|
2333
|
+
@developer_connect = args[:developer_connect] if args.key?(:developer_connect)
|
2334
|
+
@url = args[:url] if args.key?(:url)
|
2335
|
+
end
|
2336
|
+
end
|
2337
|
+
|
2145
2338
|
# This config defines the location of a source through Developer Connect.
|
2146
2339
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
2147
2340
|
include Google::Apis::Core::Hashable
|
@@ -2432,6 +2625,12 @@ module Google
|
|
2432
2625
|
# @return [Array<String>]
|
2433
2626
|
attr_accessor :build_step_outputs
|
2434
2627
|
|
2628
|
+
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
2629
|
+
# build.
|
2630
|
+
# Corresponds to the JSON property `goModules`
|
2631
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule>]
|
2632
|
+
attr_accessor :go_modules
|
2633
|
+
|
2435
2634
|
# Container images that were built as a part of the build.
|
2436
2635
|
# Corresponds to the JSON property `images`
|
2437
2636
|
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage>]
|
@@ -2468,6 +2667,7 @@ module Google
|
|
2468
2667
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
2469
2668
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
2470
2669
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
2670
|
+
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
2471
2671
|
@images = args[:images] if args.key?(:images)
|
2472
2672
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
2473
2673
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
@@ -2771,6 +2971,39 @@ module Google
|
|
2771
2971
|
end
|
2772
2972
|
end
|
2773
2973
|
|
2974
|
+
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
2975
|
+
# directive.
|
2976
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
2977
|
+
include Google::Apis::Core::Hashable
|
2978
|
+
|
2979
|
+
# Container message for hashes of byte content of files, used in
|
2980
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
2981
|
+
# Corresponds to the JSON property `fileHashes`
|
2982
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
2983
|
+
attr_accessor :file_hashes
|
2984
|
+
|
2985
|
+
# Start and end times for a build execution phase.
|
2986
|
+
# Corresponds to the JSON property `pushTiming`
|
2987
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
2988
|
+
attr_accessor :push_timing
|
2989
|
+
|
2990
|
+
# URI of the uploaded artifact.
|
2991
|
+
# Corresponds to the JSON property `uri`
|
2992
|
+
# @return [String]
|
2993
|
+
attr_accessor :uri
|
2994
|
+
|
2995
|
+
def initialize(**args)
|
2996
|
+
update!(**args)
|
2997
|
+
end
|
2998
|
+
|
2999
|
+
# Update properties of this object
|
3000
|
+
def update!(**args)
|
3001
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
3002
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
3003
|
+
@uri = args[:uri] if args.key?(:uri)
|
3004
|
+
end
|
3005
|
+
end
|
3006
|
+
|
2774
3007
|
# A Maven artifact uploaded using the MavenArtifact directive.
|
2775
3008
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
2776
3009
|
include Google::Apis::Core::Hashable
|
@@ -6513,6 +6746,37 @@ module Google
|
|
6513
6746
|
end
|
6514
6747
|
end
|
6515
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
|
+
|
6516
6780
|
# Set of software artifacts that the attestation applies to. Each element
|
6517
6781
|
# represents a single software artifact.
|
6518
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
|
-
GENERATOR_VERSION = "0.
|
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
|
@@ -196,6 +196,12 @@ module Google
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
197
197
|
end
|
198
198
|
|
199
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
199
205
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
|
200
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
207
|
|
@@ -268,6 +274,24 @@ module Google
|
|
268
274
|
include Google::Apis::Core::JsonObjectSupport
|
269
275
|
end
|
270
276
|
|
277
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
289
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
271
295
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
272
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
297
|
|
@@ -370,6 +394,12 @@ module Google
|
|
370
394
|
include Google::Apis::Core::JsonObjectSupport
|
371
395
|
end
|
372
396
|
|
397
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
373
403
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
374
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
405
|
|
@@ -922,6 +952,12 @@ module Google
|
|
922
952
|
include Google::Apis::Core::JsonObjectSupport
|
923
953
|
end
|
924
954
|
|
955
|
+
class StepResult
|
956
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
957
|
+
|
958
|
+
include Google::Apis::Core::JsonObjectSupport
|
959
|
+
end
|
960
|
+
|
925
961
|
class Subject
|
926
962
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
927
963
|
|
@@ -1195,6 +1231,8 @@ module Google
|
|
1195
1231
|
property :name, as: 'name'
|
1196
1232
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1beta1::TimeSpan, decorator: Google::Apis::ContaineranalysisV1beta1::TimeSpan::Representation
|
1197
1233
|
|
1234
|
+
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1beta1::StepResult, decorator: Google::Apis::ContaineranalysisV1beta1::StepResult::Representation
|
1235
|
+
|
1198
1236
|
property :script, as: 'script'
|
1199
1237
|
collection :secret_env, as: 'secretEnv'
|
1200
1238
|
property :status, as: 'status'
|
@@ -1293,6 +1331,8 @@ module Google
|
|
1293
1331
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
1294
1332
|
# @private
|
1295
1333
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1334
|
+
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
|
1335
|
+
|
1296
1336
|
collection :images, as: 'images'
|
1297
1337
|
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact::Representation
|
1298
1338
|
|
@@ -1315,6 +1355,18 @@ module Google
|
|
1315
1355
|
end
|
1316
1356
|
end
|
1317
1357
|
|
1358
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
1359
|
+
# @private
|
1360
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1361
|
+
property :module_path, as: 'modulePath'
|
1362
|
+
property :module_version, as: 'moduleVersion'
|
1363
|
+
property :repository_location, as: 'repositoryLocation'
|
1364
|
+
property :repository_name, as: 'repositoryName'
|
1365
|
+
property :repository_project_id, as: 'repositoryProjectId'
|
1366
|
+
property :source_path, as: 'sourcePath'
|
1367
|
+
end
|
1368
|
+
end
|
1369
|
+
|
1318
1370
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
|
1319
1371
|
# @private
|
1320
1372
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1353,6 +1405,8 @@ module Google
|
|
1353
1405
|
|
1354
1406
|
property :build_trigger_id, as: 'buildTriggerId'
|
1355
1407
|
property :create_time, as: 'createTime'
|
1408
|
+
collection :dependencies, as: 'dependencies', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency::Representation
|
1409
|
+
|
1356
1410
|
property :failure_info, as: 'failureInfo', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo::Representation
|
1357
1411
|
|
1358
1412
|
property :finish_time, as: 'finishTime'
|
@@ -1417,12 +1471,14 @@ module Google
|
|
1417
1471
|
property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
|
1418
1472
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
1419
1473
|
property :dynamic_substitutions, as: 'dynamicSubstitutions'
|
1474
|
+
property :enable_structured_logging, as: 'enableStructuredLogging'
|
1420
1475
|
collection :env, as: 'env'
|
1421
1476
|
property :log_streaming_option, as: 'logStreamingOption'
|
1422
1477
|
property :logging, as: 'logging'
|
1423
1478
|
property :machine_type, as: 'machineType'
|
1424
1479
|
property :pool, as: 'pool', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption::Representation
|
1425
1480
|
|
1481
|
+
property :pubsub_topic, as: 'pubsubTopic'
|
1426
1482
|
property :requested_verify_option, as: 'requestedVerifyOption'
|
1427
1483
|
collection :secret_env, as: 'secretEnv'
|
1428
1484
|
collection :source_provenance_hash, as: 'sourceProvenanceHash'
|
@@ -1494,6 +1550,35 @@ module Google
|
|
1494
1550
|
end
|
1495
1551
|
end
|
1496
1552
|
|
1553
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
|
1554
|
+
# @private
|
1555
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1556
|
+
property :empty, as: 'empty'
|
1557
|
+
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
|
1558
|
+
|
1559
|
+
end
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
1563
|
+
# @private
|
1564
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1565
|
+
property :depth, :numeric_string => true, as: 'depth'
|
1566
|
+
property :dest_path, as: 'destPath'
|
1567
|
+
property :recurse_submodules, as: 'recurseSubmodules'
|
1568
|
+
property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation
|
1569
|
+
|
1570
|
+
property :revision, as: 'revision'
|
1571
|
+
end
|
1572
|
+
end
|
1573
|
+
|
1574
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
|
1575
|
+
# @private
|
1576
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1577
|
+
property :developer_connect, as: 'developerConnect'
|
1578
|
+
property :url, as: 'url'
|
1579
|
+
end
|
1580
|
+
end
|
1581
|
+
|
1497
1582
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
1498
1583
|
# @private
|
1499
1584
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1573,6 +1658,8 @@ module Google
|
|
1573
1658
|
|
1574
1659
|
collection :build_step_images, as: 'buildStepImages'
|
1575
1660
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
1661
|
+
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
|
1662
|
+
|
1576
1663
|
collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
|
1577
1664
|
|
1578
1665
|
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact::Representation
|
@@ -1674,6 +1761,17 @@ module Google
|
|
1674
1761
|
end
|
1675
1762
|
end
|
1676
1763
|
|
1764
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
1765
|
+
# @private
|
1766
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1767
|
+
property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
1768
|
+
|
1769
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
1770
|
+
|
1771
|
+
property :uri, as: 'uri'
|
1772
|
+
end
|
1773
|
+
end
|
1774
|
+
|
1677
1775
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
1678
1776
|
# @private
|
1679
1777
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2688,6 +2786,15 @@ module Google
|
|
2688
2786
|
end
|
2689
2787
|
end
|
2690
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
|
+
|
2691
2798
|
class Subject
|
2692
2799
|
# @private
|
2693
2800
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +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
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1/CHANGELOG.md
|
61
|
-
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
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Container Analysis API V1beta1
|
82
79
|
test_files: []
|