google-apis-run_v1 0.75.0 → 0.76.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: a14be47728b1c47d561b733f082abfa8e7d0eb41db96055e70a2edcd526a88de
4
- data.tar.gz: d879fd1ebee7b9c543fe8a106f5b9c2f00c35abe87120764b8e4f811f5bd4761
3
+ metadata.gz: 44c76ea2c873e5d1310b4285a2b3a13dc821d75cb7a39f161afeaa546d6863f6
4
+ data.tar.gz: 27b41e240f4ee4784bba42c243af6f7eb07e5f7cad55b8ec1d02eaa13b6f7791
5
5
  SHA512:
6
- metadata.gz: c6c7e90ac0c954c80382001132a147830edaac1117997c733f8749261b970a3fbd83c4677f31555776a14a3cd190d9b0915be35fa4e2a7462e275d133c0fdde8
7
- data.tar.gz: 4f5add552c9d1d11a693221e7c148f4f016d23bcca1bd8a25bb4744c06e4c4bef8a7a0c23e74e948e30b0a3f8552f4450a2329d2f5818e6e43de78cbe6cfa94e
6
+ metadata.gz: 64f694bd98cbbeea686315824cc967ce574f3ed15f2d2df4ac15605272bdafce862f4f92fb3aee4dfc58f3423f43675563c964fd35a1ce5992fd58d6d35d0c41
7
+ data.tar.gz: 5d2e93c3af91d9dc08c0c87aa29b6aadc033c9336f6c982ecb11018205658053134177b69ecc84a2280fc79df96bfad1bcb327eb22a8b69143aca651476317ff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.76.0 (2024-05-26)
4
+
5
+ * Regenerated from discovery document revision 20240510
6
+ * Regenerated using generator version 0.15.0
7
+
3
8
  ### v0.75.0 (2024-05-05)
4
9
 
5
10
  * Regenerated from discovery document revision 20240426
@@ -2328,6 +2328,40 @@ module Google
2328
2328
  end
2329
2329
  end
2330
2330
 
2331
+ # Represents a storage location in Cloud Storage
2332
+ class GoogleDevtoolsCloudbuildV1GcsLocation
2333
+ include Google::Apis::Core::Hashable
2334
+
2335
+ # Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
2336
+ # requirements
2337
+ # Corresponds to the JSON property `bucket`
2338
+ # @return [String]
2339
+ attr_accessor :bucket
2340
+
2341
+ # Cloud Storage generation for the object. If the generation is omitted, the
2342
+ # latest generation will be used.
2343
+ # Corresponds to the JSON property `generation`
2344
+ # @return [Fixnum]
2345
+ attr_accessor :generation
2346
+
2347
+ # Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
2348
+ # objectnames
2349
+ # Corresponds to the JSON property `object`
2350
+ # @return [String]
2351
+ attr_accessor :object
2352
+
2353
+ def initialize(**args)
2354
+ update!(**args)
2355
+ end
2356
+
2357
+ # Update properties of this object
2358
+ def update!(**args)
2359
+ @bucket = args[:bucket] if args.key?(:bucket)
2360
+ @generation = args[:generation] if args.key?(:generation)
2361
+ @object = args[:object] if args.key?(:object)
2362
+ end
2363
+ end
2364
+
2331
2365
  # GitConfig is a configuration for git operations.
2332
2366
  class GoogleDevtoolsCloudbuildV1GitConfig
2333
2367
  include Google::Apis::Core::Hashable
@@ -2423,6 +2457,11 @@ module Google
2423
2457
  # @return [String]
2424
2458
  attr_accessor :proxy_secret_version_name
2425
2459
 
2460
+ # Represents a storage location in Cloud Storage
2461
+ # Corresponds to the JSON property `proxySslCaInfo`
2462
+ # @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GcsLocation]
2463
+ attr_accessor :proxy_ssl_ca_info
2464
+
2426
2465
  def initialize(**args)
2427
2466
  update!(**args)
2428
2467
  end
@@ -2430,6 +2469,7 @@ module Google
2430
2469
  # Update properties of this object
2431
2470
  def update!(**args)
2432
2471
  @proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
2472
+ @proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
2433
2473
  end
2434
2474
  end
2435
2475
 
@@ -2686,7 +2726,8 @@ module Google
2686
2726
  # List of build step outputs, produced by builder images, in the order
2687
2727
  # corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
2688
2728
  # cloud-build/docs/cloud-builders) can produce this output by writing to `$
2689
- # BUILDER_OUTPUT/output`. Only the first 50KB of data is stored.
2729
+ # BUILDER_OUTPUT/output`. Only the first 50KB of data is stored. Note that the `$
2730
+ # BUILDER_OUTPUT` variable is read-only and can't be substituted.
2690
2731
  # Corresponds to the JSON property `buildStepOutputs`
2691
2732
  # @return [Array<String>]
2692
2733
  attr_accessor :build_step_outputs
@@ -4651,6 +4692,11 @@ module Google
4651
4692
  # @return [Hash<String,String>]
4652
4693
  attr_accessor :node_selector
4653
4694
 
4695
+ # Runtime. Leave unset for default.
4696
+ # Corresponds to the JSON property `runtimeClassName`
4697
+ # @return [String]
4698
+ attr_accessor :runtime_class_name
4699
+
4654
4700
  # Email address of the IAM service account associated with the revision of the
4655
4701
  # service. The service account represents the identity of the running revision,
4656
4702
  # and determines what permissions the revision has. If not provided, the
@@ -4682,6 +4728,7 @@ module Google
4682
4728
  @enable_service_links = args[:enable_service_links] if args.key?(:enable_service_links)
4683
4729
  @image_pull_secrets = args[:image_pull_secrets] if args.key?(:image_pull_secrets)
4684
4730
  @node_selector = args[:node_selector] if args.key?(:node_selector)
4731
+ @runtime_class_name = args[:runtime_class_name] if args.key?(:runtime_class_name)
4685
4732
  @service_account_name = args[:service_account_name] if args.key?(:service_account_name)
4686
4733
  @timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
4687
4734
  @volumes = args[:volumes] if args.key?(:volumes)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RunV1
18
18
  # Version of the google-apis-run_v1 gem
19
- GEM_VERSION = "0.75.0"
19
+ GEM_VERSION = "0.76.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240426"
25
+ REVISION = "20240510"
26
26
  end
27
27
  end
28
28
  end
@@ -304,6 +304,12 @@ module Google
304
304
  include Google::Apis::Core::JsonObjectSupport
305
305
  end
306
306
 
307
+ class GoogleDevtoolsCloudbuildV1GcsLocation
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
307
313
  class GoogleDevtoolsCloudbuildV1GitConfig
308
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
315
 
@@ -1371,6 +1377,15 @@ module Google
1371
1377
  end
1372
1378
  end
1373
1379
 
1380
+ class GoogleDevtoolsCloudbuildV1GcsLocation
1381
+ # @private
1382
+ class Representation < Google::Apis::Core::JsonRepresentation
1383
+ property :bucket, as: 'bucket'
1384
+ property :generation, :numeric_string => true, as: 'generation'
1385
+ property :object, as: 'object'
1386
+ end
1387
+ end
1388
+
1374
1389
  class GoogleDevtoolsCloudbuildV1GitConfig
1375
1390
  # @private
1376
1391
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1400,6 +1415,8 @@ module Google
1400
1415
  # @private
1401
1416
  class Representation < Google::Apis::Core::JsonRepresentation
1402
1417
  property :proxy_secret_version_name, as: 'proxySecretVersionName'
1418
+ property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GcsLocation, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GcsLocation::Representation
1419
+
1403
1420
  end
1404
1421
  end
1405
1422
 
@@ -1993,6 +2010,7 @@ module Google
1993
2010
  collection :image_pull_secrets, as: 'imagePullSecrets', class: Google::Apis::RunV1::LocalObjectReference, decorator: Google::Apis::RunV1::LocalObjectReference::Representation
1994
2011
 
1995
2012
  hash :node_selector, as: 'nodeSelector'
2013
+ property :runtime_class_name, as: 'runtimeClassName'
1996
2014
  property :service_account_name, as: 'serviceAccountName'
1997
2015
  property :timeout_seconds, as: 'timeoutSeconds'
1998
2016
  collection :volumes, as: 'volumes', class: Google::Apis::RunV1::Volume, decorator: Google::Apis::RunV1::Volume::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.75.0
4
+ version: 0.76.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-05-05 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-run_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.75.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.76.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1
63
63
  post_install_message:
64
64
  rdoc_options: []