google-apis-containeranalysis_v1alpha1 0.61.0 → 0.63.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e1551c29036f4f7b76435e2ebe1a1d42d2d2ce0364403e21fd6f8d8c67a52ae8
4
- data.tar.gz: b4756d98200af5e417c305cfee482d8eb33a24ef1402c3bcebc563dbb86ba99d
3
+ metadata.gz: 0d60ee8336355abf33c2bbf71451ad3fd0eed1cacec9bc913b0acaead1b2fe5a
4
+ data.tar.gz: ec28baaf6f60a539a57ac79cffc6e2328603c9078f7512adc2723fe24a96cc7b
5
5
  SHA512:
6
- metadata.gz: b58a46dbdac42cbfb95571b4dd9b15c5a1b36b3b5ce90ab76fa0a41511498757821c743dc0a77da8169da921e1edd36e391667e1b3c78a80a4f4d5ca4b1df737
7
- data.tar.gz: 2bdebf9e7be83b086b0c2525a39c95a52dbe043e61ee5fda35c917217b0ce80b324f54208631b8a11239c85585cb4f4c5c55ca0b7bc6deaccc60a983b493c433
6
+ metadata.gz: 7ab278eb23ce8eebf47c244c89818247fa21f00fc6b6bd35f33e97e2681957ff85031bb4a2a7471daca2d4b07b94572bd6606d2df640d4baab9a50d0208b2001
7
+ data.tar.gz: 5885a80f57717c098fcda901db265429ec84cc74184d43e7152243d9c046312d8591ffc86454aa00b54df9c0d5444693c2ff6c5f373d63c27488b1601710b139
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
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
+
8
+ ### v0.62.0 (2024-03-10)
9
+
10
+ * Regenerated from discovery document revision 20240301
11
+ * Regenerated using generator version 0.14.0
12
+
3
13
  ### v0.61.0 (2024-02-23)
4
14
 
5
15
  * Unspecified changes
@@ -1079,6 +1079,11 @@ module Google
1079
1079
  # @return [String]
1080
1080
  attr_accessor :description
1081
1081
 
1082
+ # Potential impact of the suggested remediation
1083
+ # Corresponds to the JSON property `impact`
1084
+ # @return [String]
1085
+ attr_accessor :impact
1086
+
1082
1087
  # A rationale for the existence of this compliance check.
1083
1088
  # Corresponds to the JSON property `rationale`
1084
1089
  # @return [String]
@@ -1113,6 +1118,7 @@ module Google
1113
1118
  def update!(**args)
1114
1119
  @cis_benchmark = args[:cis_benchmark] if args.key?(:cis_benchmark)
1115
1120
  @description = args[:description] if args.key?(:description)
1121
+ @impact = args[:impact] if args.key?(:impact)
1116
1122
  @rationale = args[:rationale] if args.key?(:rationale)
1117
1123
  @remediation = args[:remediation] if args.key?(:remediation)
1118
1124
  @scan_instructions = args[:scan_instructions] if args.key?(:scan_instructions)
@@ -1136,6 +1142,12 @@ module Google
1136
1142
  # @return [Array<Google::Apis::ContaineranalysisV1alpha1::NonCompliantFile>]
1137
1143
  attr_accessor :non_compliant_files
1138
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
+
1139
1151
  def initialize(**args)
1140
1152
  update!(**args)
1141
1153
  end
@@ -1144,6 +1156,7 @@ module Google
1144
1156
  def update!(**args)
1145
1157
  @non_compliance_reason = args[:non_compliance_reason] if args.key?(:non_compliance_reason)
1146
1158
  @non_compliant_files = args[:non_compliant_files] if args.key?(:non_compliant_files)
1159
+ @version = args[:version] if args.key?(:version)
1147
1160
  end
1148
1161
  end
1149
1162
 
@@ -1506,6 +1519,11 @@ module Google
1506
1519
  # @return [String]
1507
1520
  attr_accessor :finish_time
1508
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
+
1509
1527
  # Output only. Unique identifier of the build.
1510
1528
  # Corresponds to the JSON property `id`
1511
1529
  # @return [String]
@@ -1653,6 +1671,7 @@ module Google
1653
1671
  @create_time = args[:create_time] if args.key?(:create_time)
1654
1672
  @failure_info = args[:failure_info] if args.key?(:failure_info)
1655
1673
  @finish_time = args[:finish_time] if args.key?(:finish_time)
1674
+ @git_config = args[:git_config] if args.key?(:git_config)
1656
1675
  @id = args[:id] if args.key?(:id)
1657
1676
  @images = args[:images] if args.key?(:images)
1658
1677
  @log_url = args[:log_url] if args.key?(:log_url)
@@ -2115,7 +2134,7 @@ module Google
2115
2134
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
2116
2135
  include Google::Apis::Core::Hashable
2117
2136
 
2118
- # 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.
2119
2138
  # Corresponds to the JSON property `dir`
2120
2139
  # @return [String]
2121
2140
  attr_accessor :dir
@@ -2126,8 +2145,8 @@ module Google
2126
2145
  # @return [String]
2127
2146
  attr_accessor :repository
2128
2147
 
2129
- # The revision to fetch from the Git repository such as a branch, a tag, a
2130
- # 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.
2131
2150
  # Corresponds to the JSON property `revision`
2132
2151
  # @return [String]
2133
2152
  attr_accessor :revision
@@ -2144,6 +2163,39 @@ module Google
2144
2163
  end
2145
2164
  end
2146
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
+
2147
2199
  # Container message for hashes of byte content of files, used in
2148
2200
  # SourceProvenance messages to verify integrity of source input to the build.
2149
2201
  class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
@@ -2164,30 +2216,109 @@ module Google
2164
2216
  end
2165
2217
  end
2166
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
+
2167
2298
  # Location of the source in any accessible Git repository.
2168
2299
  class ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
2169
2300
  include Google::Apis::Core::Hashable
2170
2301
 
2171
- # Directory, relative to the source root, in which to run the build. This must
2172
- # be a relative path. If a step's `dir` is specified and is an absolute path,
2173
- # 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.
2174
2305
  # Corresponds to the JSON property `dir`
2175
2306
  # @return [String]
2176
2307
  attr_accessor :dir
2177
2308
 
2178
- # The revision to fetch from the Git repository such as a branch, a tag, a
2179
- # commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the revision
2180
- # from the Git repository; therefore make sure that the string you provide for `
2181
- # revision` is parsable by the command. For information on string values
2182
- # 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#
2183
2314
  # _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
2184
2315
  # docs/git-fetch.
2185
2316
  # Corresponds to the JSON property `revision`
2186
2317
  # @return [String]
2187
2318
  attr_accessor :revision
2188
2319
 
2189
- # Location of the Git repo to build. This will be used as a `git remote`, see
2190
- # 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.
2191
2322
  # Corresponds to the JSON property `url`
2192
2323
  # @return [String]
2193
2324
  attr_accessor :url
@@ -2276,31 +2407,32 @@ module Google
2276
2407
  # @return [String]
2277
2408
  attr_accessor :commit_sha
2278
2409
 
2279
- # Directory, relative to the source root, in which to run the build. This must
2280
- # be a relative path. If a step's `dir` is specified and is an absolute path,
2281
- # 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.
2282
2413
  # Corresponds to the JSON property `dir`
2283
2414
  # @return [String]
2284
2415
  attr_accessor :dir
2285
2416
 
2286
- # Only trigger a build if the revision regex does NOT match the revision regex.
2417
+ # Optional. Only trigger a build if the revision regex does NOT match the
2418
+ # revision regex.
2287
2419
  # Corresponds to the JSON property `invertRegex`
2288
2420
  # @return [Boolean]
2289
2421
  attr_accessor :invert_regex
2290
2422
  alias_method :invert_regex?, :invert_regex
2291
2423
 
2292
- # ID of the project that owns the Cloud Source Repository. If omitted, the
2293
- # 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.
2294
2426
  # Corresponds to the JSON property `projectId`
2295
2427
  # @return [String]
2296
2428
  attr_accessor :project_id
2297
2429
 
2298
- # Name of the Cloud Source Repository.
2430
+ # Required. Name of the Cloud Source Repository.
2299
2431
  # Corresponds to the JSON property `repoName`
2300
2432
  # @return [String]
2301
2433
  attr_accessor :repo_name
2302
2434
 
2303
- # 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
2304
2436
  # RunBuildTrigger
2305
2437
  # Corresponds to the JSON property `substitutions`
2306
2438
  # @return [Hash<String,String>]
@@ -2353,7 +2485,8 @@ module Google
2353
2485
  # List of build step outputs, produced by builder images, in the order
2354
2486
  # corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
2355
2487
  # cloud-build/docs/cloud-builders) can produce this output by writing to `$
2356
- # 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.
2357
2490
  # Corresponds to the JSON property `buildStepOutputs`
2358
2491
  # @return [Array<String>]
2359
2492
  attr_accessor :build_step_outputs
@@ -2495,6 +2628,11 @@ module Google
2495
2628
  # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
2496
2629
  attr_accessor :connected_repository
2497
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
+
2498
2636
  # Location of the source in any accessible Git repository.
2499
2637
  # Corresponds to the JSON property `gitSource`
2500
2638
  # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
@@ -2524,6 +2662,7 @@ module Google
2524
2662
  # Update properties of this object
2525
2663
  def update!(**args)
2526
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)
2527
2666
  @git_source = args[:git_source] if args.key?(:git_source)
2528
2667
  @repo_source = args[:repo_source] if args.key?(:repo_source)
2529
2668
  @storage_source = args[:storage_source] if args.key?(:storage_source)
@@ -2599,14 +2738,14 @@ module Google
2599
2738
  # @return [String]
2600
2739
  attr_accessor :bucket
2601
2740
 
2602
- # Cloud Storage generation for the object. If the generation is omitted, the
2603
- # 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.
2604
2743
  # Corresponds to the JSON property `generation`
2605
2744
  # @return [Fixnum]
2606
2745
  attr_accessor :generation
2607
2746
 
2608
- # Cloud Storage object containing the source. This object must be a zipped (`.
2609
- # 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.
2610
2749
  # Corresponds to the JSON property `object`
2611
2750
  # @return [String]
2612
2751
  attr_accessor :object
@@ -2635,9 +2774,9 @@ module Google
2635
2774
  class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest
2636
2775
  include Google::Apis::Core::Hashable
2637
2776
 
2638
- # Cloud Storage bucket containing the source manifest (see [Bucket Name
2639
- # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
2640
- # ).
2777
+ # Required. Cloud Storage bucket containing the source manifest (see [Bucket
2778
+ # Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#
2779
+ # requirements)).
2641
2780
  # Corresponds to the JSON property `bucket`
2642
2781
  # @return [String]
2643
2782
  attr_accessor :bucket
@@ -2648,8 +2787,8 @@ module Google
2648
2787
  # @return [Fixnum]
2649
2788
  attr_accessor :generation
2650
2789
 
2651
- # Cloud Storage object containing the source manifest. This object must be a
2652
- # JSON file.
2790
+ # Required. Cloud Storage object containing the source manifest. This object
2791
+ # must be a JSON file.
2653
2792
  # Corresponds to the JSON property `object`
2654
2793
  # @return [String]
2655
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.61.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.13.1"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240209"
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
 
@@ -1282,6 +1306,7 @@ module Google
1282
1306
  property :cis_benchmark, as: 'cisBenchmark', class: Google::Apis::ContaineranalysisV1alpha1::CisBenchmark, decorator: Google::Apis::ContaineranalysisV1alpha1::CisBenchmark::Representation
1283
1307
 
1284
1308
  property :description, as: 'description'
1309
+ property :impact, as: 'impact'
1285
1310
  property :rationale, as: 'rationale'
1286
1311
  property :remediation, as: 'remediation'
1287
1312
  property :scan_instructions, :base64 => true, as: 'scanInstructions'
@@ -1297,6 +1322,8 @@ module Google
1297
1322
  property :non_compliance_reason, as: 'nonComplianceReason'
1298
1323
  collection :non_compliant_files, as: 'nonCompliantFiles', class: Google::Apis::ContaineranalysisV1alpha1::NonCompliantFile, decorator: Google::Apis::ContaineranalysisV1alpha1::NonCompliantFile::Representation
1299
1324
 
1325
+ property :version, as: 'version', class: Google::Apis::ContaineranalysisV1alpha1::ComplianceVersion, decorator: Google::Apis::ContaineranalysisV1alpha1::ComplianceVersion::Representation
1326
+
1300
1327
  end
1301
1328
  end
1302
1329
 
@@ -1393,6 +1420,8 @@ module Google
1393
1420
  property :failure_info, as: 'failureInfo', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo::Representation
1394
1421
 
1395
1422
  property :finish_time, as: 'finishTime'
1423
+ property :git_config, as: 'gitConfig', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig::Representation
1424
+
1396
1425
  property :id, as: 'id'
1397
1426
  collection :images, as: 'images'
1398
1427
  property :log_url, as: 'logUrl'
@@ -1529,6 +1558,15 @@ module Google
1529
1558
  end
1530
1559
  end
1531
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
+
1532
1570
  class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
1533
1571
  # @private
1534
1572
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1537,6 +1575,32 @@ module Google
1537
1575
  end
1538
1576
  end
1539
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
+
1540
1604
  class ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
1541
1605
  # @private
1542
1606
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1627,6 +1691,8 @@ module Google
1627
1691
  class Representation < Google::Apis::Core::JsonRepresentation
1628
1692
  property :connected_repository, as: 'connectedRepository', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
1629
1693
 
1694
+ property :developer_connect_config, as: 'developerConnectConfig', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig::Representation
1695
+
1630
1696
  property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
1631
1697
 
1632
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.61.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-02-25 00:00:00.000000000 Z
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.14.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.14.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.0
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: []