google-apis-containeranalysis_v1alpha1 0.62.0 → 0.63.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: 0d60ee8336355abf33c2bbf71451ad3fd0eed1cacec9bc913b0acaead1b2fe5a
|
4
|
+
data.tar.gz: ec28baaf6f60a539a57ac79cffc6e2328603c9078f7512adc2723fe24a96cc7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ab278eb23ce8eebf47c244c89818247fa21f00fc6b6bd35f33e97e2681957ff85031bb4a2a7471daca2d4b07b94572bd6606d2df640d4baab9a50d0208b2001
|
7
|
+
data.tar.gz: 5885a80f57717c098fcda901db265429ec84cc74184d43e7152243d9c046312d8591ffc86454aa00b54df9c0d5444693c2ff6c5f373d63c27488b1601710b139
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
2
2
|
|
3
|
+
### v0.63.0 (2024-05-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240516
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
3
8
|
### v0.62.0 (2024-03-10)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240301
|
@@ -1142,6 +1142,12 @@ module Google
|
|
1142
1142
|
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::NonCompliantFile>]
|
1143
1143
|
attr_accessor :non_compliant_files
|
1144
1144
|
|
1145
|
+
# Describes the CIS benchmark version that is applicable to a given OS and os
|
1146
|
+
# version.
|
1147
|
+
# Corresponds to the JSON property `version`
|
1148
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ComplianceVersion]
|
1149
|
+
attr_accessor :version
|
1150
|
+
|
1145
1151
|
def initialize(**args)
|
1146
1152
|
update!(**args)
|
1147
1153
|
end
|
@@ -1150,6 +1156,7 @@ module Google
|
|
1150
1156
|
def update!(**args)
|
1151
1157
|
@non_compliance_reason = args[:non_compliance_reason] if args.key?(:non_compliance_reason)
|
1152
1158
|
@non_compliant_files = args[:non_compliant_files] if args.key?(:non_compliant_files)
|
1159
|
+
@version = args[:version] if args.key?(:version)
|
1153
1160
|
end
|
1154
1161
|
end
|
1155
1162
|
|
@@ -1512,6 +1519,11 @@ module Google
|
|
1512
1519
|
# @return [String]
|
1513
1520
|
attr_accessor :finish_time
|
1514
1521
|
|
1522
|
+
# GitConfig is a configuration for git operations.
|
1523
|
+
# Corresponds to the JSON property `gitConfig`
|
1524
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig]
|
1525
|
+
attr_accessor :git_config
|
1526
|
+
|
1515
1527
|
# Output only. Unique identifier of the build.
|
1516
1528
|
# Corresponds to the JSON property `id`
|
1517
1529
|
# @return [String]
|
@@ -1659,6 +1671,7 @@ module Google
|
|
1659
1671
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1660
1672
|
@failure_info = args[:failure_info] if args.key?(:failure_info)
|
1661
1673
|
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
1674
|
+
@git_config = args[:git_config] if args.key?(:git_config)
|
1662
1675
|
@id = args[:id] if args.key?(:id)
|
1663
1676
|
@images = args[:images] if args.key?(:images)
|
1664
1677
|
@log_url = args[:log_url] if args.key?(:log_url)
|
@@ -2121,7 +2134,7 @@ module Google
|
|
2121
2134
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
2122
2135
|
include Google::Apis::Core::Hashable
|
2123
2136
|
|
2124
|
-
# Directory, relative to the source root, in which to run the build.
|
2137
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
2125
2138
|
# Corresponds to the JSON property `dir`
|
2126
2139
|
# @return [String]
|
2127
2140
|
attr_accessor :dir
|
@@ -2132,8 +2145,8 @@ module Google
|
|
2132
2145
|
# @return [String]
|
2133
2146
|
attr_accessor :repository
|
2134
2147
|
|
2135
|
-
# The revision to fetch from the Git repository such as a branch, a
|
2136
|
-
# commit SHA, or any Git ref.
|
2148
|
+
# Required. The revision to fetch from the Git repository such as a branch, a
|
2149
|
+
# tag, a commit SHA, or any Git ref.
|
2137
2150
|
# Corresponds to the JSON property `revision`
|
2138
2151
|
# @return [String]
|
2139
2152
|
attr_accessor :revision
|
@@ -2150,6 +2163,39 @@ module Google
|
|
2150
2163
|
end
|
2151
2164
|
end
|
2152
2165
|
|
2166
|
+
# This config defines the location of a source through Developer Connect.
|
2167
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
2168
|
+
include Google::Apis::Core::Hashable
|
2169
|
+
|
2170
|
+
# Required. Directory, relative to the source root, in which to run the build.
|
2171
|
+
# Corresponds to the JSON property `dir`
|
2172
|
+
# @return [String]
|
2173
|
+
attr_accessor :dir
|
2174
|
+
|
2175
|
+
# Required. The Developer Connect Git repository link, formatted as `projects/*/
|
2176
|
+
# locations/*/connections/*/gitRepositoryLink/*`.
|
2177
|
+
# Corresponds to the JSON property `gitRepositoryLink`
|
2178
|
+
# @return [String]
|
2179
|
+
attr_accessor :git_repository_link
|
2180
|
+
|
2181
|
+
# Required. The revision to fetch from the Git repository such as a branch, a
|
2182
|
+
# tag, a commit SHA, or any Git ref.
|
2183
|
+
# Corresponds to the JSON property `revision`
|
2184
|
+
# @return [String]
|
2185
|
+
attr_accessor :revision
|
2186
|
+
|
2187
|
+
def initialize(**args)
|
2188
|
+
update!(**args)
|
2189
|
+
end
|
2190
|
+
|
2191
|
+
# Update properties of this object
|
2192
|
+
def update!(**args)
|
2193
|
+
@dir = args[:dir] if args.key?(:dir)
|
2194
|
+
@git_repository_link = args[:git_repository_link] if args.key?(:git_repository_link)
|
2195
|
+
@revision = args[:revision] if args.key?(:revision)
|
2196
|
+
end
|
2197
|
+
end
|
2198
|
+
|
2153
2199
|
# Container message for hashes of byte content of files, used in
|
2154
2200
|
# SourceProvenance messages to verify integrity of source input to the build.
|
2155
2201
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
@@ -2170,30 +2216,109 @@ module Google
|
|
2170
2216
|
end
|
2171
2217
|
end
|
2172
2218
|
|
2219
|
+
# Represents a storage location in Cloud Storage
|
2220
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
|
2221
|
+
include Google::Apis::Core::Hashable
|
2222
|
+
|
2223
|
+
# Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
|
2224
|
+
# requirements
|
2225
|
+
# Corresponds to the JSON property `bucket`
|
2226
|
+
# @return [String]
|
2227
|
+
attr_accessor :bucket
|
2228
|
+
|
2229
|
+
# Cloud Storage generation for the object. If the generation is omitted, the
|
2230
|
+
# latest generation will be used.
|
2231
|
+
# Corresponds to the JSON property `generation`
|
2232
|
+
# @return [Fixnum]
|
2233
|
+
attr_accessor :generation
|
2234
|
+
|
2235
|
+
# Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
|
2236
|
+
# objectnames
|
2237
|
+
# Corresponds to the JSON property `object`
|
2238
|
+
# @return [String]
|
2239
|
+
attr_accessor :object
|
2240
|
+
|
2241
|
+
def initialize(**args)
|
2242
|
+
update!(**args)
|
2243
|
+
end
|
2244
|
+
|
2245
|
+
# Update properties of this object
|
2246
|
+
def update!(**args)
|
2247
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
2248
|
+
@generation = args[:generation] if args.key?(:generation)
|
2249
|
+
@object = args[:object] if args.key?(:object)
|
2250
|
+
end
|
2251
|
+
end
|
2252
|
+
|
2253
|
+
# GitConfig is a configuration for git operations.
|
2254
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig
|
2255
|
+
include Google::Apis::Core::Hashable
|
2256
|
+
|
2257
|
+
# HttpConfig is a configuration for HTTP related git operations.
|
2258
|
+
# Corresponds to the JSON property `http`
|
2259
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig]
|
2260
|
+
attr_accessor :http
|
2261
|
+
|
2262
|
+
def initialize(**args)
|
2263
|
+
update!(**args)
|
2264
|
+
end
|
2265
|
+
|
2266
|
+
# Update properties of this object
|
2267
|
+
def update!(**args)
|
2268
|
+
@http = args[:http] if args.key?(:http)
|
2269
|
+
end
|
2270
|
+
end
|
2271
|
+
|
2272
|
+
# HttpConfig is a configuration for HTTP related git operations.
|
2273
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig
|
2274
|
+
include Google::Apis::Core::Hashable
|
2275
|
+
|
2276
|
+
# SecretVersion resource of the HTTP proxy URL. The proxy URL should be in
|
2277
|
+
# format protocol://@]proxyhost[:port].
|
2278
|
+
# Corresponds to the JSON property `proxySecretVersionName`
|
2279
|
+
# @return [String]
|
2280
|
+
attr_accessor :proxy_secret_version_name
|
2281
|
+
|
2282
|
+
# Represents a storage location in Cloud Storage
|
2283
|
+
# Corresponds to the JSON property `proxySslCaInfo`
|
2284
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation]
|
2285
|
+
attr_accessor :proxy_ssl_ca_info
|
2286
|
+
|
2287
|
+
def initialize(**args)
|
2288
|
+
update!(**args)
|
2289
|
+
end
|
2290
|
+
|
2291
|
+
# Update properties of this object
|
2292
|
+
def update!(**args)
|
2293
|
+
@proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
|
2294
|
+
@proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
|
2295
|
+
end
|
2296
|
+
end
|
2297
|
+
|
2173
2298
|
# Location of the source in any accessible Git repository.
|
2174
2299
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
|
2175
2300
|
include Google::Apis::Core::Hashable
|
2176
2301
|
|
2177
|
-
# Directory, relative to the source root, in which to run the build.
|
2178
|
-
# be a relative path. If a step's `dir` is specified and is an
|
2179
|
-
# this value is ignored for that step's execution.
|
2302
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
2303
|
+
# This must be a relative path. If a step's `dir` is specified and is an
|
2304
|
+
# absolute path, this value is ignored for that step's execution.
|
2180
2305
|
# Corresponds to the JSON property `dir`
|
2181
2306
|
# @return [String]
|
2182
2307
|
attr_accessor :dir
|
2183
2308
|
|
2184
|
-
# The revision to fetch from the Git repository such as a branch, a
|
2185
|
-
# commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
|
2186
|
-
# from the Git repository; therefore make sure that the string you
|
2187
|
-
# revision` is parsable by the command. For information on string
|
2188
|
-
# accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
|
2309
|
+
# Optional. The revision to fetch from the Git repository such as a branch, a
|
2310
|
+
# tag, a commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
|
2311
|
+
# revision from the Git repository; therefore make sure that the string you
|
2312
|
+
# provide for `revision` is parsable by the command. For information on string
|
2313
|
+
# values accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
|
2189
2314
|
# _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
|
2190
2315
|
# docs/git-fetch.
|
2191
2316
|
# Corresponds to the JSON property `revision`
|
2192
2317
|
# @return [String]
|
2193
2318
|
attr_accessor :revision
|
2194
2319
|
|
2195
|
-
# Location of the Git repo to build. This will be used as a `git
|
2196
|
-
# https://git-scm.com/docs/git-remote.
|
2320
|
+
# Required. Location of the Git repo to build. This will be used as a `git
|
2321
|
+
# remote`, see https://git-scm.com/docs/git-remote.
|
2197
2322
|
# Corresponds to the JSON property `url`
|
2198
2323
|
# @return [String]
|
2199
2324
|
attr_accessor :url
|
@@ -2282,31 +2407,32 @@ module Google
|
|
2282
2407
|
# @return [String]
|
2283
2408
|
attr_accessor :commit_sha
|
2284
2409
|
|
2285
|
-
# Directory, relative to the source root, in which to run the build.
|
2286
|
-
# be a relative path. If a step's `dir` is specified and is an
|
2287
|
-
# this value is ignored for that step's execution.
|
2410
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
2411
|
+
# This must be a relative path. If a step's `dir` is specified and is an
|
2412
|
+
# absolute path, this value is ignored for that step's execution.
|
2288
2413
|
# Corresponds to the JSON property `dir`
|
2289
2414
|
# @return [String]
|
2290
2415
|
attr_accessor :dir
|
2291
2416
|
|
2292
|
-
# Only trigger a build if the revision regex does NOT match the
|
2417
|
+
# Optional. Only trigger a build if the revision regex does NOT match the
|
2418
|
+
# revision regex.
|
2293
2419
|
# Corresponds to the JSON property `invertRegex`
|
2294
2420
|
# @return [Boolean]
|
2295
2421
|
attr_accessor :invert_regex
|
2296
2422
|
alias_method :invert_regex?, :invert_regex
|
2297
2423
|
|
2298
|
-
# ID of the project that owns the Cloud Source Repository. If omitted,
|
2299
|
-
# project ID requesting the build is assumed.
|
2424
|
+
# Optional. ID of the project that owns the Cloud Source Repository. If omitted,
|
2425
|
+
# the project ID requesting the build is assumed.
|
2300
2426
|
# Corresponds to the JSON property `projectId`
|
2301
2427
|
# @return [String]
|
2302
2428
|
attr_accessor :project_id
|
2303
2429
|
|
2304
|
-
# Name of the Cloud Source Repository.
|
2430
|
+
# Required. Name of the Cloud Source Repository.
|
2305
2431
|
# Corresponds to the JSON property `repoName`
|
2306
2432
|
# @return [String]
|
2307
2433
|
attr_accessor :repo_name
|
2308
2434
|
|
2309
|
-
# Substitutions to use in a triggered build. Should only be used with
|
2435
|
+
# Optional. Substitutions to use in a triggered build. Should only be used with
|
2310
2436
|
# RunBuildTrigger
|
2311
2437
|
# Corresponds to the JSON property `substitutions`
|
2312
2438
|
# @return [Hash<String,String>]
|
@@ -2359,7 +2485,8 @@ module Google
|
|
2359
2485
|
# List of build step outputs, produced by builder images, in the order
|
2360
2486
|
# corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
|
2361
2487
|
# cloud-build/docs/cloud-builders) can produce this output by writing to `$
|
2362
|
-
# BUILDER_OUTPUT/output`. Only the first 50KB of data is stored.
|
2488
|
+
# BUILDER_OUTPUT/output`. Only the first 50KB of data is stored. Note that the `$
|
2489
|
+
# BUILDER_OUTPUT` variable is read-only and can't be substituted.
|
2363
2490
|
# Corresponds to the JSON property `buildStepOutputs`
|
2364
2491
|
# @return [Array<String>]
|
2365
2492
|
attr_accessor :build_step_outputs
|
@@ -2501,6 +2628,11 @@ module Google
|
|
2501
2628
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
|
2502
2629
|
attr_accessor :connected_repository
|
2503
2630
|
|
2631
|
+
# This config defines the location of a source through Developer Connect.
|
2632
|
+
# Corresponds to the JSON property `developerConnectConfig`
|
2633
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig]
|
2634
|
+
attr_accessor :developer_connect_config
|
2635
|
+
|
2504
2636
|
# Location of the source in any accessible Git repository.
|
2505
2637
|
# Corresponds to the JSON property `gitSource`
|
2506
2638
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
|
@@ -2530,6 +2662,7 @@ module Google
|
|
2530
2662
|
# Update properties of this object
|
2531
2663
|
def update!(**args)
|
2532
2664
|
@connected_repository = args[:connected_repository] if args.key?(:connected_repository)
|
2665
|
+
@developer_connect_config = args[:developer_connect_config] if args.key?(:developer_connect_config)
|
2533
2666
|
@git_source = args[:git_source] if args.key?(:git_source)
|
2534
2667
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
2535
2668
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
@@ -2605,14 +2738,14 @@ module Google
|
|
2605
2738
|
# @return [String]
|
2606
2739
|
attr_accessor :bucket
|
2607
2740
|
|
2608
|
-
# Cloud Storage generation for the object. If the generation is
|
2609
|
-
# latest generation will be used.
|
2741
|
+
# Optional. Cloud Storage generation for the object. If the generation is
|
2742
|
+
# omitted, the latest generation will be used.
|
2610
2743
|
# Corresponds to the JSON property `generation`
|
2611
2744
|
# @return [Fixnum]
|
2612
2745
|
attr_accessor :generation
|
2613
2746
|
|
2614
|
-
# Cloud Storage object containing the source. This object must be a
|
2615
|
-
# zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
2747
|
+
# Required. Cloud Storage object containing the source. This object must be a
|
2748
|
+
# zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
2616
2749
|
# Corresponds to the JSON property `object`
|
2617
2750
|
# @return [String]
|
2618
2751
|
attr_accessor :object
|
@@ -2641,9 +2774,9 @@ module Google
|
|
2641
2774
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest
|
2642
2775
|
include Google::Apis::Core::Hashable
|
2643
2776
|
|
2644
|
-
# Cloud Storage bucket containing the source manifest (see [Bucket
|
2645
|
-
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#
|
2646
|
-
# ).
|
2777
|
+
# Required. Cloud Storage bucket containing the source manifest (see [Bucket
|
2778
|
+
# Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#
|
2779
|
+
# requirements)).
|
2647
2780
|
# Corresponds to the JSON property `bucket`
|
2648
2781
|
# @return [String]
|
2649
2782
|
attr_accessor :bucket
|
@@ -2654,8 +2787,8 @@ module Google
|
|
2654
2787
|
# @return [Fixnum]
|
2655
2788
|
attr_accessor :generation
|
2656
2789
|
|
2657
|
-
# Cloud Storage object containing the source manifest. This object
|
2658
|
-
# JSON file.
|
2790
|
+
# Required. Cloud Storage object containing the source manifest. This object
|
2791
|
+
# must be a JSON file.
|
2659
2792
|
# Corresponds to the JSON property `object`
|
2660
2793
|
# @return [String]
|
2661
2794
|
attr_accessor :object
|
@@ -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.63.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240516"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -256,12 +256,36 @@ module Google
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
257
257
|
end
|
258
258
|
|
259
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
259
265
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
260
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
267
|
|
262
268
|
include Google::Apis::Core::JsonObjectSupport
|
263
269
|
end
|
264
270
|
|
271
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
277
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
265
289
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
|
266
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
291
|
|
@@ -1298,6 +1322,8 @@ module Google
|
|
1298
1322
|
property :non_compliance_reason, as: 'nonComplianceReason'
|
1299
1323
|
collection :non_compliant_files, as: 'nonCompliantFiles', class: Google::Apis::ContaineranalysisV1alpha1::NonCompliantFile, decorator: Google::Apis::ContaineranalysisV1alpha1::NonCompliantFile::Representation
|
1300
1324
|
|
1325
|
+
property :version, as: 'version', class: Google::Apis::ContaineranalysisV1alpha1::ComplianceVersion, decorator: Google::Apis::ContaineranalysisV1alpha1::ComplianceVersion::Representation
|
1326
|
+
|
1301
1327
|
end
|
1302
1328
|
end
|
1303
1329
|
|
@@ -1394,6 +1420,8 @@ module Google
|
|
1394
1420
|
property :failure_info, as: 'failureInfo', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo::Representation
|
1395
1421
|
|
1396
1422
|
property :finish_time, as: 'finishTime'
|
1423
|
+
property :git_config, as: 'gitConfig', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig::Representation
|
1424
|
+
|
1397
1425
|
property :id, as: 'id'
|
1398
1426
|
collection :images, as: 'images'
|
1399
1427
|
property :log_url, as: 'logUrl'
|
@@ -1530,6 +1558,15 @@ module Google
|
|
1530
1558
|
end
|
1531
1559
|
end
|
1532
1560
|
|
1561
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
1562
|
+
# @private
|
1563
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1564
|
+
property :dir, as: 'dir'
|
1565
|
+
property :git_repository_link, as: 'gitRepositoryLink'
|
1566
|
+
property :revision, as: 'revision'
|
1567
|
+
end
|
1568
|
+
end
|
1569
|
+
|
1533
1570
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
1534
1571
|
# @private
|
1535
1572
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1538,6 +1575,32 @@ module Google
|
|
1538
1575
|
end
|
1539
1576
|
end
|
1540
1577
|
|
1578
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
|
1579
|
+
# @private
|
1580
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1581
|
+
property :bucket, as: 'bucket'
|
1582
|
+
property :generation, :numeric_string => true, as: 'generation'
|
1583
|
+
property :object, as: 'object'
|
1584
|
+
end
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig
|
1588
|
+
# @private
|
1589
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1590
|
+
property :http, as: 'http', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig::Representation
|
1591
|
+
|
1592
|
+
end
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig
|
1596
|
+
# @private
|
1597
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1598
|
+
property :proxy_secret_version_name, as: 'proxySecretVersionName'
|
1599
|
+
property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation::Representation
|
1600
|
+
|
1601
|
+
end
|
1602
|
+
end
|
1603
|
+
|
1541
1604
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
|
1542
1605
|
# @private
|
1543
1606
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1628,6 +1691,8 @@ module Google
|
|
1628
1691
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1629
1692
|
property :connected_repository, as: 'connectedRepository', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
|
1630
1693
|
|
1694
|
+
property :developer_connect_config, as: 'developerConnectConfig', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig::Representation
|
1695
|
+
|
1631
1696
|
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
|
1632
1697
|
|
1633
1698
|
property :repo_source, as: 'repoSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
|
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.63.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: 2024-
|
11
|
+
date: 2024-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.63.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: []
|