google-apis-containeranalysis_v1alpha1 0.46.0 → 0.48.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: 4ca5e369853aca2815c9242bee7bf41a50892cacb76c8197fd2bcee54bb70744
|
4
|
+
data.tar.gz: de08a98044f4e966463e7c3e3ad340f790da6b0df5751d64da274d9bc499e4d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20ffd8671248ac761ea6a0876cdd3bd0bcc20b20b4cfcac88836e5d7eadf208cce502c6a4be544bd65ee44a56681bfc69c3004f5328544829ec5b508c7c12eff
|
7
|
+
data.tar.gz: 40f58d4d0fd6e093e5a78f1d6be7303b89379aa4ce4a5b3b641beb815050a542a03980215c2f9291e081374fc785eb3bd352728e1c6274d5df784bbdbce1a6fc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
2
2
|
|
3
|
+
### v0.48.0 (2023-05-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230519
|
6
|
+
|
7
|
+
### v0.47.0 (2023-04-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230414
|
10
|
+
|
3
11
|
### v0.46.0 (2023-04-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230324
|
@@ -1158,6 +1158,15 @@ module Google
|
|
1158
1158
|
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact>]
|
1159
1159
|
attr_accessor :maven_artifacts
|
1160
1160
|
|
1161
|
+
# A list of npm packages to be uploaded to Artifact Registry upon successful
|
1162
|
+
# completion of all build steps. Npm packages in the specified paths will be
|
1163
|
+
# uploaded to the specified Artifact Registry repository using the builder
|
1164
|
+
# service account's credentials. If any packages fail to be pushed, the build is
|
1165
|
+
# marked FAILURE.
|
1166
|
+
# Corresponds to the JSON property `npmPackages`
|
1167
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage>]
|
1168
|
+
attr_accessor :npm_packages
|
1169
|
+
|
1161
1170
|
# Files in the workspace to upload to Cloud Storage upon successful completion
|
1162
1171
|
# of all build steps.
|
1163
1172
|
# Corresponds to the JSON property `objects`
|
@@ -1180,6 +1189,7 @@ module Google
|
|
1180
1189
|
def update!(**args)
|
1181
1190
|
@images = args[:images] if args.key?(:images)
|
1182
1191
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
1192
|
+
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
1183
1193
|
@objects = args[:objects] if args.key?(:objects)
|
1184
1194
|
@python_packages = args[:python_packages] if args.key?(:python_packages)
|
1185
1195
|
end
|
@@ -1269,6 +1279,34 @@ module Google
|
|
1269
1279
|
end
|
1270
1280
|
end
|
1271
1281
|
|
1282
|
+
# Npm package to upload to Artifact Registry upon successful completion of all
|
1283
|
+
# build steps.
|
1284
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage
|
1285
|
+
include Google::Apis::Core::Hashable
|
1286
|
+
|
1287
|
+
# Path to the package.json. e.g. workspace/path/to/package
|
1288
|
+
# Corresponds to the JSON property `packagePath`
|
1289
|
+
# @return [String]
|
1290
|
+
attr_accessor :package_path
|
1291
|
+
|
1292
|
+
# Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$
|
1293
|
+
# PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be
|
1294
|
+
# zipped and uploaded to Artifact Registry with this location as a prefix.
|
1295
|
+
# Corresponds to the JSON property `repository`
|
1296
|
+
# @return [String]
|
1297
|
+
attr_accessor :repository
|
1298
|
+
|
1299
|
+
def initialize(**args)
|
1300
|
+
update!(**args)
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
# Update properties of this object
|
1304
|
+
def update!(**args)
|
1305
|
+
@package_path = args[:package_path] if args.key?(:package_path)
|
1306
|
+
@repository = args[:repository] if args.key?(:repository)
|
1307
|
+
end
|
1308
|
+
end
|
1309
|
+
|
1272
1310
|
# Python package to upload to Artifact Registry upon successful completion of
|
1273
1311
|
# all build steps. A package can encapsulate multiple objects to be uploaded to
|
1274
1312
|
# a single repository.
|
@@ -1371,7 +1409,7 @@ module Google
|
|
1371
1409
|
# @return [String]
|
1372
1410
|
attr_accessor :log_url
|
1373
1411
|
|
1374
|
-
#
|
1412
|
+
# Cloud Storage bucket where logs should be written (see [Bucket Name
|
1375
1413
|
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
|
1376
1414
|
# ). Logs file names will be of the format `$`logs_bucket`/log-$`build_id`.txt`.
|
1377
1415
|
# Corresponds to the JSON property `logsBucket`
|
@@ -1617,7 +1655,7 @@ module Google
|
|
1617
1655
|
# @return [Array<String>]
|
1618
1656
|
attr_accessor :env
|
1619
1657
|
|
1620
|
-
# Option to define build log streaming behavior to
|
1658
|
+
# Option to define build log streaming behavior to Cloud Storage.
|
1621
1659
|
# Corresponds to the JSON property `logStreamingOption`
|
1622
1660
|
# @return [String]
|
1623
1661
|
attr_accessor :log_streaming_option
|
@@ -1961,6 +1999,46 @@ module Google
|
|
1961
1999
|
end
|
1962
2000
|
end
|
1963
2001
|
|
2002
|
+
# Location of the source in any accessible Git repository.
|
2003
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
|
2004
|
+
include Google::Apis::Core::Hashable
|
2005
|
+
|
2006
|
+
# Directory, relative to the source root, in which to run the build. This must
|
2007
|
+
# be a relative path. If a step's `dir` is specified and is an absolute path,
|
2008
|
+
# this value is ignored for that step's execution.
|
2009
|
+
# Corresponds to the JSON property `dir`
|
2010
|
+
# @return [String]
|
2011
|
+
attr_accessor :dir
|
2012
|
+
|
2013
|
+
# The revision to fetch from the Git repository such as a branch, a tag, a
|
2014
|
+
# commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the revision
|
2015
|
+
# from the Git repository; therefore make sure that the string you provide for `
|
2016
|
+
# revision` is parsable by the command. For information on string values
|
2017
|
+
# accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
|
2018
|
+
# _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
|
2019
|
+
# docs/git-fetch.
|
2020
|
+
# Corresponds to the JSON property `revision`
|
2021
|
+
# @return [String]
|
2022
|
+
attr_accessor :revision
|
2023
|
+
|
2024
|
+
# Location of the Git repo to build. This will be used as a `git remote`, see
|
2025
|
+
# https://git-scm.com/docs/git-remote.
|
2026
|
+
# Corresponds to the JSON property `url`
|
2027
|
+
# @return [String]
|
2028
|
+
attr_accessor :url
|
2029
|
+
|
2030
|
+
def initialize(**args)
|
2031
|
+
update!(**args)
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
# Update properties of this object
|
2035
|
+
def update!(**args)
|
2036
|
+
@dir = args[:dir] if args.key?(:dir)
|
2037
|
+
@revision = args[:revision] if args.key?(:revision)
|
2038
|
+
@url = args[:url] if args.key?(:url)
|
2039
|
+
end
|
2040
|
+
end
|
2041
|
+
|
1964
2042
|
# Container message for hash values.
|
1965
2043
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Hash
|
1966
2044
|
include Google::Apis::Core::Hashable
|
@@ -2125,6 +2203,11 @@ module Google
|
|
2125
2203
|
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact>]
|
2126
2204
|
attr_accessor :maven_artifacts
|
2127
2205
|
|
2206
|
+
# Npm packages uploaded to Artifact Registry at the end of the build.
|
2207
|
+
# Corresponds to the JSON property `npmPackages`
|
2208
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage>]
|
2209
|
+
attr_accessor :npm_packages
|
2210
|
+
|
2128
2211
|
# Number of non-container artifacts uploaded to Cloud Storage. Only populated
|
2129
2212
|
# when artifacts are uploaded to Cloud Storage.
|
2130
2213
|
# Corresponds to the JSON property `numArtifacts`
|
@@ -2148,6 +2231,7 @@ module Google
|
|
2148
2231
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
2149
2232
|
@images = args[:images] if args.key?(:images)
|
2150
2233
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
2234
|
+
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
2151
2235
|
@num_artifacts = args[:num_artifacts] if args.key?(:num_artifacts)
|
2152
2236
|
@python_packages = args[:python_packages] if args.key?(:python_packages)
|
2153
2237
|
end
|
@@ -2241,19 +2325,24 @@ module Google
|
|
2241
2325
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
|
2242
2326
|
include Google::Apis::Core::Hashable
|
2243
2327
|
|
2328
|
+
# Location of the source in any accessible Git repository.
|
2329
|
+
# Corresponds to the JSON property `gitSource`
|
2330
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
|
2331
|
+
attr_accessor :git_source
|
2332
|
+
|
2244
2333
|
# Location of the source in a Google Cloud Source Repository.
|
2245
2334
|
# Corresponds to the JSON property `repoSource`
|
2246
2335
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource]
|
2247
2336
|
attr_accessor :repo_source
|
2248
2337
|
|
2249
|
-
# Location of the source in an archive file in
|
2338
|
+
# Location of the source in an archive file in Cloud Storage.
|
2250
2339
|
# Corresponds to the JSON property `storageSource`
|
2251
2340
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource]
|
2252
2341
|
attr_accessor :storage_source
|
2253
2342
|
|
2254
|
-
# Location of the source manifest in
|
2255
|
-
#
|
2256
|
-
#
|
2343
|
+
# Location of the source manifest in Cloud Storage. This feature is in Preview;
|
2344
|
+
# see description [here](https://github.com/GoogleCloudPlatform/cloud-builders/
|
2345
|
+
# tree/master/gcs-fetcher).
|
2257
2346
|
# Corresponds to the JSON property `storageSourceManifest`
|
2258
2347
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest]
|
2259
2348
|
attr_accessor :storage_source_manifest
|
@@ -2264,6 +2353,7 @@ module Google
|
|
2264
2353
|
|
2265
2354
|
# Update properties of this object
|
2266
2355
|
def update!(**args)
|
2356
|
+
@git_source = args[:git_source] if args.key?(:git_source)
|
2267
2357
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
2268
2358
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
2269
2359
|
@storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
|
@@ -2291,14 +2381,14 @@ module Google
|
|
2291
2381
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource]
|
2292
2382
|
attr_accessor :resolved_repo_source
|
2293
2383
|
|
2294
|
-
# Location of the source in an archive file in
|
2384
|
+
# Location of the source in an archive file in Cloud Storage.
|
2295
2385
|
# Corresponds to the JSON property `resolvedStorageSource`
|
2296
2386
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource]
|
2297
2387
|
attr_accessor :resolved_storage_source
|
2298
2388
|
|
2299
|
-
# Location of the source manifest in
|
2300
|
-
#
|
2301
|
-
#
|
2389
|
+
# Location of the source manifest in Cloud Storage. This feature is in Preview;
|
2390
|
+
# see description [here](https://github.com/GoogleCloudPlatform/cloud-builders/
|
2391
|
+
# tree/master/gcs-fetcher).
|
2302
2392
|
# Corresponds to the JSON property `resolvedStorageSourceManifest`
|
2303
2393
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest]
|
2304
2394
|
attr_accessor :resolved_storage_source_manifest
|
@@ -2316,25 +2406,24 @@ module Google
|
|
2316
2406
|
end
|
2317
2407
|
end
|
2318
2408
|
|
2319
|
-
# Location of the source in an archive file in
|
2409
|
+
# Location of the source in an archive file in Cloud Storage.
|
2320
2410
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
2321
2411
|
include Google::Apis::Core::Hashable
|
2322
2412
|
|
2323
|
-
#
|
2324
|
-
#
|
2325
|
-
# ).
|
2413
|
+
# Cloud Storage bucket containing the source (see [Bucket Name Requirements](
|
2414
|
+
# https://cloud.google.com/storage/docs/bucket-naming#requirements)).
|
2326
2415
|
# Corresponds to the JSON property `bucket`
|
2327
2416
|
# @return [String]
|
2328
2417
|
attr_accessor :bucket
|
2329
2418
|
|
2330
|
-
#
|
2331
|
-
#
|
2419
|
+
# Cloud Storage generation for the object. If the generation is omitted, the
|
2420
|
+
# latest generation will be used.
|
2332
2421
|
# Corresponds to the JSON property `generation`
|
2333
2422
|
# @return [Fixnum]
|
2334
2423
|
attr_accessor :generation
|
2335
2424
|
|
2336
|
-
#
|
2337
|
-
#
|
2425
|
+
# Cloud Storage object containing the source. This object must be a zipped (`.
|
2426
|
+
# zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
2338
2427
|
# Corresponds to the JSON property `object`
|
2339
2428
|
# @return [String]
|
2340
2429
|
attr_accessor :object
|
@@ -2351,27 +2440,27 @@ module Google
|
|
2351
2440
|
end
|
2352
2441
|
end
|
2353
2442
|
|
2354
|
-
# Location of the source manifest in
|
2355
|
-
#
|
2356
|
-
#
|
2443
|
+
# Location of the source manifest in Cloud Storage. This feature is in Preview;
|
2444
|
+
# see description [here](https://github.com/GoogleCloudPlatform/cloud-builders/
|
2445
|
+
# tree/master/gcs-fetcher).
|
2357
2446
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest
|
2358
2447
|
include Google::Apis::Core::Hashable
|
2359
2448
|
|
2360
|
-
#
|
2449
|
+
# Cloud Storage bucket containing the source manifest (see [Bucket Name
|
2361
2450
|
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
|
2362
2451
|
# ).
|
2363
2452
|
# Corresponds to the JSON property `bucket`
|
2364
2453
|
# @return [String]
|
2365
2454
|
attr_accessor :bucket
|
2366
2455
|
|
2367
|
-
#
|
2368
|
-
#
|
2456
|
+
# Cloud Storage generation for the object. If the generation is omitted, the
|
2457
|
+
# latest generation will be used.
|
2369
2458
|
# Corresponds to the JSON property `generation`
|
2370
2459
|
# @return [Fixnum]
|
2371
2460
|
attr_accessor :generation
|
2372
2461
|
|
2373
|
-
#
|
2374
|
-
#
|
2462
|
+
# Cloud Storage object containing the source manifest. This object must be a
|
2463
|
+
# JSON file.
|
2375
2464
|
# Corresponds to the JSON property `object`
|
2376
2465
|
# @return [String]
|
2377
2466
|
attr_accessor :object
|
@@ -2445,6 +2534,38 @@ module Google
|
|
2445
2534
|
end
|
2446
2535
|
end
|
2447
2536
|
|
2537
|
+
# An npm package uploaded to Artifact Registry using the NpmPackage directive.
|
2538
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
|
2539
|
+
include Google::Apis::Core::Hashable
|
2540
|
+
|
2541
|
+
# Container message for hashes of byte content of files, used in
|
2542
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
2543
|
+
# Corresponds to the JSON property `fileHashes`
|
2544
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
2545
|
+
attr_accessor :file_hashes
|
2546
|
+
|
2547
|
+
# Start and end times for a build execution phase.
|
2548
|
+
# Corresponds to the JSON property `pushTiming`
|
2549
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
2550
|
+
attr_accessor :push_timing
|
2551
|
+
|
2552
|
+
# URI of the uploaded npm package.
|
2553
|
+
# Corresponds to the JSON property `uri`
|
2554
|
+
# @return [String]
|
2555
|
+
attr_accessor :uri
|
2556
|
+
|
2557
|
+
def initialize(**args)
|
2558
|
+
update!(**args)
|
2559
|
+
end
|
2560
|
+
|
2561
|
+
# Update properties of this object
|
2562
|
+
def update!(**args)
|
2563
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
2564
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
2565
|
+
@uri = args[:uri] if args.key?(:uri)
|
2566
|
+
end
|
2567
|
+
end
|
2568
|
+
|
2448
2569
|
# Artifact uploaded using the PythonPackage directive.
|
2449
2570
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
|
2450
2571
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContaineranalysisV1alpha1
|
18
18
|
# Version of the google-apis-containeranalysis_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.48.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230519"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -178,6 +178,12 @@ module Google
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
179
179
|
end
|
180
180
|
|
181
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
181
187
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
189
|
|
@@ -238,6 +244,12 @@ module Google
|
|
238
244
|
include Google::Apis::Core::JsonObjectSupport
|
239
245
|
end
|
240
246
|
|
247
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
241
253
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Hash
|
242
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
255
|
|
@@ -316,6 +328,12 @@ module Google
|
|
316
328
|
include Google::Apis::Core::JsonObjectSupport
|
317
329
|
end
|
318
330
|
|
331
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
319
337
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
|
320
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
339
|
|
@@ -1237,6 +1255,8 @@ module Google
|
|
1237
1255
|
collection :images, as: 'images'
|
1238
1256
|
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact::Representation
|
1239
1257
|
|
1258
|
+
collection :npm_packages, as: 'npmPackages', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage::Representation
|
1259
|
+
|
1240
1260
|
property :objects, as: 'objects', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects::Representation
|
1241
1261
|
|
1242
1262
|
collection :python_packages, as: 'pythonPackages', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage::Representation
|
@@ -1265,6 +1285,14 @@ module Google
|
|
1265
1285
|
end
|
1266
1286
|
end
|
1267
1287
|
|
1288
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage
|
1289
|
+
# @private
|
1290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1291
|
+
property :package_path, as: 'packagePath'
|
1292
|
+
property :repository, as: 'repository'
|
1293
|
+
end
|
1294
|
+
end
|
1295
|
+
|
1268
1296
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
|
1269
1297
|
# @private
|
1270
1298
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1420,6 +1448,15 @@ module Google
|
|
1420
1448
|
end
|
1421
1449
|
end
|
1422
1450
|
|
1451
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
|
1452
|
+
# @private
|
1453
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1454
|
+
property :dir, as: 'dir'
|
1455
|
+
property :revision, as: 'revision'
|
1456
|
+
property :url, as: 'url'
|
1457
|
+
end
|
1458
|
+
end
|
1459
|
+
|
1423
1460
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Hash
|
1424
1461
|
# @private
|
1425
1462
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1462,6 +1499,8 @@ module Google
|
|
1462
1499
|
|
1463
1500
|
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact::Representation
|
1464
1501
|
|
1502
|
+
collection :npm_packages, as: 'npmPackages', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage::Representation
|
1503
|
+
|
1465
1504
|
property :num_artifacts, :numeric_string => true, as: 'numArtifacts'
|
1466
1505
|
collection :python_packages, as: 'pythonPackages', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage::Representation
|
1467
1506
|
|
@@ -1497,6 +1536,8 @@ module Google
|
|
1497
1536
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
|
1498
1537
|
# @private
|
1499
1538
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1539
|
+
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
|
1540
|
+
|
1500
1541
|
property :repo_source, as: 'repoSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
|
1501
1542
|
|
1502
1543
|
property :storage_source, as: 'storageSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource::Representation
|
@@ -1557,6 +1598,17 @@ module Google
|
|
1557
1598
|
end
|
1558
1599
|
end
|
1559
1600
|
|
1601
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
|
1602
|
+
# @private
|
1603
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1604
|
+
property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
1605
|
+
|
1606
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
1607
|
+
|
1608
|
+
property :uri, as: 'uri'
|
1609
|
+
end
|
1610
|
+
end
|
1611
|
+
|
1560
1612
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
|
1561
1613
|
# @private
|
1562
1614
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.48.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: 2023-
|
11
|
+
date: 2023-05-28 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_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.48.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|