google-apis-containeranalysis_v1beta1 0.57.0 → 0.58.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: 2bd1d25caf85387d2b15c73f3b5afcb400afaae477df97057fa9d0ea78357f99
4
- data.tar.gz: bb2ef733b2ce25fdf7bcb5b9ccfe9152b5235b92a53affb12488511b04b04340
3
+ metadata.gz: 13fbff3e56d583d6ce135ef6bccb5e41e1ea3ed33d007ef90d73676ef573bdb4
4
+ data.tar.gz: f5e32638abd0a7521f5833434891ea2a7bfdfda396273546709bf1423a2fff15
5
5
  SHA512:
6
- metadata.gz: 54c6e59379672e886f31866e56d622654a3eae52744222555f6d6b890c0075e43168199e73465147f89e23564656e1d1a9d1d03dde678407337e50167702b740
7
- data.tar.gz: edec2e32707b18c521c51120ee3b0f5594facda721ec886d8eb11c879cd0236400318317b1708fcab171fd1d696000d810c1d2f748cf261abfb4c379556ad3ab
6
+ metadata.gz: 4d25083753ca17190eda13535a66fc74bab0bea0c5c59184f76d9912da826611c2fcdfddc238951c22b9ec015c25c8cf6c09dbe4ee425473cc0cd5f197139d23
7
+ data.tar.gz: 7f406ed3ccb9f7adaba39f3b98e38b8bf5121095809c2f0ef3c054764589cd453a39762f55f7e7ba686606851458ff8038e2bb69220bb0f74cb66167d9c9a083
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.58.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240704
6
+
3
7
  ### v0.57.0 (2024-06-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20240524
@@ -2195,40 +2195,6 @@ module Google
2195
2195
  end
2196
2196
  end
2197
2197
 
2198
- # Represents a storage location in Cloud Storage
2199
- class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
2200
- include Google::Apis::Core::Hashable
2201
-
2202
- # Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
2203
- # requirements
2204
- # Corresponds to the JSON property `bucket`
2205
- # @return [String]
2206
- attr_accessor :bucket
2207
-
2208
- # Cloud Storage generation for the object. If the generation is omitted, the
2209
- # latest generation will be used.
2210
- # Corresponds to the JSON property `generation`
2211
- # @return [Fixnum]
2212
- attr_accessor :generation
2213
-
2214
- # Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
2215
- # objectnames
2216
- # Corresponds to the JSON property `object`
2217
- # @return [String]
2218
- attr_accessor :object
2219
-
2220
- def initialize(**args)
2221
- update!(**args)
2222
- end
2223
-
2224
- # Update properties of this object
2225
- def update!(**args)
2226
- @bucket = args[:bucket] if args.key?(:bucket)
2227
- @generation = args[:generation] if args.key?(:generation)
2228
- @object = args[:object] if args.key?(:object)
2229
- end
2230
- end
2231
-
2232
2198
  # GitConfig is a configuration for git operations.
2233
2199
  class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig
2234
2200
  include Google::Apis::Core::Hashable
@@ -2252,17 +2218,14 @@ module Google
2252
2218
  class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig
2253
2219
  include Google::Apis::Core::Hashable
2254
2220
 
2255
- # SecretVersion resource of the HTTP proxy URL. The proxy URL should be in
2256
- # format protocol://@]proxyhost[:port].
2221
+ # SecretVersion resource of the HTTP proxy URL. The Service Account used in the
2222
+ # build (either the default Service Account or user-specified Service Account)
2223
+ # should have `secretmanager.versions.access` permissions on this secret. The
2224
+ # proxy URL should be in format `protocol://@]proxyhost[:port]`.
2257
2225
  # Corresponds to the JSON property `proxySecretVersionName`
2258
2226
  # @return [String]
2259
2227
  attr_accessor :proxy_secret_version_name
2260
2228
 
2261
- # Represents a storage location in Cloud Storage
2262
- # Corresponds to the JSON property `proxySslCaInfo`
2263
- # @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation]
2264
- attr_accessor :proxy_ssl_ca_info
2265
-
2266
2229
  def initialize(**args)
2267
2230
  update!(**args)
2268
2231
  end
@@ -2270,7 +2233,6 @@ module Google
2270
2233
  # Update properties of this object
2271
2234
  def update!(**args)
2272
2235
  @proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
2273
- @proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
2274
2236
  end
2275
2237
  end
2276
2238
 
@@ -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.57.0"
19
+ GEM_VERSION = "0.58.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240524"
25
+ REVISION = "20240704"
26
26
  end
27
27
  end
28
28
  end
@@ -280,12 +280,6 @@ module Google
280
280
  include Google::Apis::Core::JsonObjectSupport
281
281
  end
282
282
 
283
- class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
284
- class Representation < Google::Apis::Core::JsonRepresentation; end
285
-
286
- include Google::Apis::Core::JsonObjectSupport
287
- end
288
-
289
283
  class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig
290
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
285
 
@@ -1517,15 +1511,6 @@ module Google
1517
1511
  end
1518
1512
  end
1519
1513
 
1520
- class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
1521
- # @private
1522
- class Representation < Google::Apis::Core::JsonRepresentation
1523
- property :bucket, as: 'bucket'
1524
- property :generation, :numeric_string => true, as: 'generation'
1525
- property :object, as: 'object'
1526
- end
1527
- end
1528
-
1529
1514
  class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig
1530
1515
  # @private
1531
1516
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1538,8 +1523,6 @@ module Google
1538
1523
  # @private
1539
1524
  class Representation < Google::Apis::Core::JsonRepresentation
1540
1525
  property :proxy_secret_version_name, as: 'proxySecretVersionName'
1541
- property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation::Representation
1542
-
1543
1526
  end
1544
1527
  end
1545
1528
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.58.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-06-02 00:00:00.000000000 Z
11
+ date: 2024-07-25 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.57.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.58.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []