google-apis-run_v1 0.77.0 → 0.78.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/run_v1/classes.rb +22 -48
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/representations.rb +2 -17
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a56cf0a5e01ad5d1eef1fb63e14c14d55bbcc6d899f30565e6bbaf9cc031a3a
|
4
|
+
data.tar.gz: 48f8c64209af884262726f32d25537a23846d486b21be6c30f724cea02fa5a77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cc71124efeca998e4d239ec229d726021e54ff043046a8e30affa094a3888458e03bffc2e7201065bd579f537976e58bd35be33411c448cede000819af0bb9e
|
7
|
+
data.tar.gz: f5f3d3b8ac370613b9cf262b0694dbe6313152d68106f5c10b532f528ea3199641f76333790447feadffc1ada103c65e30f8f2a90f64fab95e3343a5c8274724
|
data/CHANGELOG.md
CHANGED
@@ -1116,6 +1116,11 @@ module Google
|
|
1116
1116
|
class ExecutionReference
|
1117
1117
|
include Google::Apis::Core::Hashable
|
1118
1118
|
|
1119
|
+
# Optional. Status for the execution completion.
|
1120
|
+
# Corresponds to the JSON property `completionStatus`
|
1121
|
+
# @return [String]
|
1122
|
+
attr_accessor :completion_status
|
1123
|
+
|
1119
1124
|
# Optional. Completion timestamp of the execution.
|
1120
1125
|
# Corresponds to the JSON property `completionTimestamp`
|
1121
1126
|
# @return [String]
|
@@ -1126,6 +1131,11 @@ module Google
|
|
1126
1131
|
# @return [String]
|
1127
1132
|
attr_accessor :creation_timestamp
|
1128
1133
|
|
1134
|
+
# Optional. The read-only soft deletion timestamp of the execution.
|
1135
|
+
# Corresponds to the JSON property `deletionTimestamp`
|
1136
|
+
# @return [String]
|
1137
|
+
attr_accessor :deletion_timestamp
|
1138
|
+
|
1129
1139
|
# Optional. Name of the execution.
|
1130
1140
|
# Corresponds to the JSON property `name`
|
1131
1141
|
# @return [String]
|
@@ -1137,8 +1147,10 @@ module Google
|
|
1137
1147
|
|
1138
1148
|
# Update properties of this object
|
1139
1149
|
def update!(**args)
|
1150
|
+
@completion_status = args[:completion_status] if args.key?(:completion_status)
|
1140
1151
|
@completion_timestamp = args[:completion_timestamp] if args.key?(:completion_timestamp)
|
1141
1152
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
1153
|
+
@deletion_timestamp = args[:deletion_timestamp] if args.key?(:deletion_timestamp)
|
1142
1154
|
@name = args[:name] if args.key?(:name)
|
1143
1155
|
end
|
1144
1156
|
end
|
@@ -2328,40 +2340,6 @@ module Google
|
|
2328
2340
|
end
|
2329
2341
|
end
|
2330
2342
|
|
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
|
-
|
2365
2343
|
# GitConfig is a configuration for git operations.
|
2366
2344
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
2367
2345
|
include Google::Apis::Core::Hashable
|
@@ -2451,17 +2429,14 @@ module Google
|
|
2451
2429
|
class GoogleDevtoolsCloudbuildV1HttpConfig
|
2452
2430
|
include Google::Apis::Core::Hashable
|
2453
2431
|
|
2454
|
-
# SecretVersion resource of the HTTP proxy URL. The
|
2455
|
-
#
|
2432
|
+
# SecretVersion resource of the HTTP proxy URL. The Service Account used in the
|
2433
|
+
# build (either the default Service Account or user-specified Service Account)
|
2434
|
+
# should have `secretmanager.versions.access` permissions on this secret. The
|
2435
|
+
# proxy URL should be in format `protocol://@]proxyhost[:port]`.
|
2456
2436
|
# Corresponds to the JSON property `proxySecretVersionName`
|
2457
2437
|
# @return [String]
|
2458
2438
|
attr_accessor :proxy_secret_version_name
|
2459
2439
|
|
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
|
-
|
2465
2440
|
def initialize(**args)
|
2466
2441
|
update!(**args)
|
2467
2442
|
end
|
@@ -2469,7 +2444,6 @@ module Google
|
|
2469
2444
|
# Update properties of this object
|
2470
2445
|
def update!(**args)
|
2471
2446
|
@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)
|
2473
2447
|
end
|
2474
2448
|
end
|
2475
2449
|
|
@@ -4662,16 +4636,16 @@ module Google
|
|
4662
4636
|
include Google::Apis::Core::Hashable
|
4663
4637
|
|
4664
4638
|
# ContainerConcurrency specifies the maximum allowed in-flight (concurrent)
|
4665
|
-
# requests per container instance of the Revision. If not specified
|
4666
|
-
# 80
|
4639
|
+
# requests per container instance of the Revision. If not specified or 0,
|
4640
|
+
# defaults to 80 when requested CPU >= 1 and defaults to 1 when requested CPU <
|
4641
|
+
# 1.
|
4667
4642
|
# Corresponds to the JSON property `containerConcurrency`
|
4668
4643
|
# @return [Fixnum]
|
4669
4644
|
attr_accessor :container_concurrency
|
4670
4645
|
|
4671
|
-
# Required. Containers holds the
|
4672
|
-
#
|
4673
|
-
#
|
4674
|
-
# Run, only a single container may be provided.
|
4646
|
+
# Required. Containers holds the list which define the units of execution for
|
4647
|
+
# this Revision. In the context of a Revision, we disallow a number of fields on
|
4648
|
+
# this Container, including: name and lifecycle.
|
4675
4649
|
# Corresponds to the JSON property `containers`
|
4676
4650
|
# @return [Array<Google::Apis::RunV1::Container>]
|
4677
4651
|
attr_accessor :containers
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.78.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 = "
|
25
|
+
REVISION = "20240712"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -304,12 +304,6 @@ 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
|
-
|
313
307
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
314
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
309
|
|
@@ -1099,8 +1093,10 @@ module Google
|
|
1099
1093
|
class ExecutionReference
|
1100
1094
|
# @private
|
1101
1095
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1096
|
+
property :completion_status, as: 'completionStatus'
|
1102
1097
|
property :completion_timestamp, as: 'completionTimestamp'
|
1103
1098
|
property :creation_timestamp, as: 'creationTimestamp'
|
1099
|
+
property :deletion_timestamp, as: 'deletionTimestamp'
|
1104
1100
|
property :name, as: 'name'
|
1105
1101
|
end
|
1106
1102
|
end
|
@@ -1377,15 +1373,6 @@ module Google
|
|
1377
1373
|
end
|
1378
1374
|
end
|
1379
1375
|
|
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
|
-
|
1389
1376
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
1390
1377
|
# @private
|
1391
1378
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1415,8 +1402,6 @@ module Google
|
|
1415
1402
|
# @private
|
1416
1403
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1417
1404
|
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
|
-
|
1420
1405
|
end
|
1421
1406
|
end
|
1422
1407
|
|
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.
|
4
|
+
version: 0.78.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-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-run_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.78.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: []
|