google-apis-run_v1 0.77.0 → 0.79.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/run_v1/classes.rb +43 -61
- data/lib/google/apis/run_v1/gem_version.rb +3 -3
- data/lib/google/apis/run_v1/representations.rb +2 -17
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5cb3f2ff46b8e6e84d2d29e96c0e31f05f62577c5db329a93c3494c78a2875e2
|
4
|
+
data.tar.gz: 2b849db8fd178ae6ef4c3ab113abd52249450112e5aa4d0955b9a898f1c4d9ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a808476de1f76c88aa8b2cb8abfa6dcfda84c3be898335bb215bd0f68ab7816202a5fc4030bfebbe23647b830897b3bc70bd4d58f047a85c88e64cc94d541a2b
|
7
|
+
data.tar.gz: eae88c3b45e66bd5491f9229876170c490afd690231e1109af2e7dd74473e13fd7dde6733168b57a80ef65ff85aba5845f677921739443c4596867fe330da082
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-run_v1
|
2
2
|
|
3
|
+
### v0.79.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241004
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.78.0 (2024-07-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240712
|
11
|
+
|
3
12
|
### v0.77.0 (2024-06-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240524
|
@@ -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
|
|
@@ -4157,19 +4131,27 @@ module Google
|
|
4157
4131
|
# run.googleapis.com/' and 'autoscaling.knative.dev' are restricted, and the
|
4158
4132
|
# accepted annotations will be different depending on the resource type. * `
|
4159
4133
|
# autoscaling.knative.dev/maxScale`: Revision. * `autoscaling.knative.dev/
|
4160
|
-
# minScale`: Revision. * `run.googleapis.com/
|
4161
|
-
#
|
4162
|
-
#
|
4163
|
-
# googleapis.com/
|
4164
|
-
#
|
4165
|
-
#
|
4166
|
-
# com/
|
4167
|
-
# Service. * `run.googleapis.com/
|
4168
|
-
#
|
4169
|
-
#
|
4170
|
-
#
|
4171
|
-
#
|
4172
|
-
# `run.googleapis.com/
|
4134
|
+
# minScale`: Revision. * `run.googleapis.com/base-images`: Service, Revision. * `
|
4135
|
+
# run.googleapis.com/binary-authorization-breakglass`: Service, Job, * `run.
|
4136
|
+
# googleapis.com/binary-authorization`: Service, Job, Execution. * `run.
|
4137
|
+
# googleapis.com/build-base-image`: Service. * `run.googleapis.com/build-enable-
|
4138
|
+
# automatic-updates`: Service. * `run.googleapis.com/build-environment-variables`
|
4139
|
+
# : Service. * `run.googleapis.com/build-function-target`: Service. * `run.
|
4140
|
+
# googleapis.com/build-id`: Service. * `run.googleapis.com/build-image-uri`:
|
4141
|
+
# Service. * `run.googleapis.com/build-name`: Service. * `run.googleapis.com/
|
4142
|
+
# build-service-account`: Service. * `run.googleapis.com/build-source-location`:
|
4143
|
+
# Service. * `run.googleapis.com/build-worker-pool`: Service. * `run.googleapis.
|
4144
|
+
# com/client-name`: All resources. * `run.googleapis.com/cloudsql-instances`:
|
4145
|
+
# Revision, Execution. * `run.googleapis.com/container-dependencies`: Revision .
|
4146
|
+
# * `run.googleapis.com/cpu-throttling`: Revision. * `run.googleapis.com/custom-
|
4147
|
+
# audiences`: Service. * `run.googleapis.com/default-url-disabled`: Service. * `
|
4148
|
+
# run.googleapis.com/description`: Service. * `run.googleapis.com/encryption-key-
|
4149
|
+
# shutdown-hours`: Revision * `run.googleapis.com/encryption-key`: Revision,
|
4150
|
+
# Execution. * `run.googleapis.com/execution-environment`: Revision, Execution. *
|
4151
|
+
# `run.googleapis.com/gc-traffic-tags`: Service. * `run.googleapis.com/health-
|
4152
|
+
# check-disabled`: Revision. * `run.googleapis.com/ingress`: Service. * `run.
|
4153
|
+
# googleapis.com/launch-stage`: Service, Job. * `run.googleapis.com/minScale`:
|
4154
|
+
# Service * `run.googleapis.com/network-interfaces`: Revision, Execution. * `run.
|
4173
4155
|
# googleapis.com/post-key-revocation-action-type`: Revision. * `run.googleapis.
|
4174
4156
|
# com/secrets`: Revision, Execution. * `run.googleapis.com/secure-session-agent`:
|
4175
4157
|
# Revision. * `run.googleapis.com/sessionAffinity`: Revision. * `run.googleapis.
|
@@ -4662,16 +4644,16 @@ module Google
|
|
4662
4644
|
include Google::Apis::Core::Hashable
|
4663
4645
|
|
4664
4646
|
# ContainerConcurrency specifies the maximum allowed in-flight (concurrent)
|
4665
|
-
# requests per container instance of the Revision. If not specified
|
4666
|
-
# 80
|
4647
|
+
# requests per container instance of the Revision. If not specified or 0,
|
4648
|
+
# defaults to 80 when requested CPU >= 1 and defaults to 1 when requested CPU <
|
4649
|
+
# 1.
|
4667
4650
|
# Corresponds to the JSON property `containerConcurrency`
|
4668
4651
|
# @return [Fixnum]
|
4669
4652
|
attr_accessor :container_concurrency
|
4670
4653
|
|
4671
|
-
# Required. Containers holds the
|
4672
|
-
#
|
4673
|
-
#
|
4674
|
-
# Run, only a single container may be provided.
|
4654
|
+
# Required. Containers holds the list which define the units of execution for
|
4655
|
+
# this Revision. In the context of a Revision, we disallow a number of fields on
|
4656
|
+
# this Container, including: name and lifecycle.
|
4675
4657
|
# Corresponds to the JSON property `containers`
|
4676
4658
|
# @return [Array<Google::Apis::RunV1::Container>]
|
4677
4659
|
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.79.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241004"
|
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.79.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-12-04 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.79.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Run Admin API V1
|