google-apis-run_v2 0.109.0 → 0.110.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_v2/classes.rb +56 -1
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- data/lib/google/apis/run_v2/representations.rb +30 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf12adb32710087818b381f5c18fea40b5ac600b7a657442c72a344f6bbf7050
|
|
4
|
+
data.tar.gz: cc74c815630e1284d934c5f15c641a0b82309154ec227f203f82ddea3bd8806b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4dc8e0d46cef7d471de1936cb65b91163414399319ac676ef6e82dee99a07be9ff41c66ef40a3243aeb709016d4f4e69b33b4e01f56381733631ef8c73eb7e14
|
|
7
|
+
data.tar.gz: d4d925f71d124e692f7751f41242af5cdcae025568427c395a9ede06945868e8b242045c1cb917d3283e13f55e210866b50acebaadc1194b0b99f14d8f6dfe4f
|
data/CHANGELOG.md
CHANGED
|
@@ -1280,6 +1280,25 @@ module Google
|
|
|
1280
1280
|
end
|
|
1281
1281
|
end
|
|
1282
1282
|
|
|
1283
|
+
# Inlined source.
|
|
1284
|
+
class GoogleCloudRunV2InlinedSource
|
|
1285
|
+
include Google::Apis::Core::Hashable
|
|
1286
|
+
|
|
1287
|
+
# Required. Input only. The source code.
|
|
1288
|
+
# Corresponds to the JSON property `sources`
|
|
1289
|
+
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2SourceFile>]
|
|
1290
|
+
attr_accessor :sources
|
|
1291
|
+
|
|
1292
|
+
def initialize(**args)
|
|
1293
|
+
update!(**args)
|
|
1294
|
+
end
|
|
1295
|
+
|
|
1296
|
+
# Update properties of this object
|
|
1297
|
+
def update!(**args)
|
|
1298
|
+
@sources = args[:sources] if args.key?(:sources)
|
|
1299
|
+
end
|
|
1300
|
+
end
|
|
1301
|
+
|
|
1283
1302
|
# A Cloud Run Instance represents a single group of containers running in a
|
|
1284
1303
|
# region.
|
|
1285
1304
|
class GoogleCloudRunV2Instance
|
|
@@ -3328,6 +3347,11 @@ module Google
|
|
|
3328
3347
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource]
|
|
3329
3348
|
attr_accessor :cloud_storage_source
|
|
3330
3349
|
|
|
3350
|
+
# Inlined source.
|
|
3351
|
+
# Corresponds to the JSON property `inlinedSource`
|
|
3352
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2InlinedSource]
|
|
3353
|
+
attr_accessor :inlined_source
|
|
3354
|
+
|
|
3331
3355
|
def initialize(**args)
|
|
3332
3356
|
update!(**args)
|
|
3333
3357
|
end
|
|
@@ -3335,6 +3359,36 @@ module Google
|
|
|
3335
3359
|
# Update properties of this object
|
|
3336
3360
|
def update!(**args)
|
|
3337
3361
|
@cloud_storage_source = args[:cloud_storage_source] if args.key?(:cloud_storage_source)
|
|
3362
|
+
@inlined_source = args[:inlined_source] if args.key?(:inlined_source)
|
|
3363
|
+
end
|
|
3364
|
+
end
|
|
3365
|
+
|
|
3366
|
+
# Source file.
|
|
3367
|
+
class GoogleCloudRunV2SourceFile
|
|
3368
|
+
include Google::Apis::Core::Hashable
|
|
3369
|
+
|
|
3370
|
+
# Required. Input only. The source code as raw text.
|
|
3371
|
+
# Corresponds to the JSON property `content`
|
|
3372
|
+
# @return [String]
|
|
3373
|
+
attr_accessor :content
|
|
3374
|
+
|
|
3375
|
+
# Required. Input only. The file name for the source code. e.g., `"index.js"` or
|
|
3376
|
+
# `"node_modules/dependency.js"`. The filename must be less than 255 characters
|
|
3377
|
+
# and cannot contain `..`, `./`, `//`, or end with a `/`. Cloud Run will place
|
|
3378
|
+
# the files in the container subdirectories, please use relative path to access
|
|
3379
|
+
# the file.
|
|
3380
|
+
# Corresponds to the JSON property `filename`
|
|
3381
|
+
# @return [String]
|
|
3382
|
+
attr_accessor :filename
|
|
3383
|
+
|
|
3384
|
+
def initialize(**args)
|
|
3385
|
+
update!(**args)
|
|
3386
|
+
end
|
|
3387
|
+
|
|
3388
|
+
# Update properties of this object
|
|
3389
|
+
def update!(**args)
|
|
3390
|
+
@content = args[:content] if args.key?(:content)
|
|
3391
|
+
@filename = args[:filename] if args.key?(:filename)
|
|
3338
3392
|
end
|
|
3339
3393
|
end
|
|
3340
3394
|
|
|
@@ -4131,7 +4185,8 @@ module Google
|
|
|
4131
4185
|
attr_accessor :name
|
|
4132
4186
|
|
|
4133
4187
|
# Optional. Path within the volume from which the container's volume should be
|
|
4134
|
-
# mounted. Defaults to "" (volume's root).
|
|
4188
|
+
# mounted. Defaults to "" (volume's root). This field is currently ignored for
|
|
4189
|
+
# Secret volumes.
|
|
4135
4190
|
# Corresponds to the JSON property `subPath`
|
|
4136
4191
|
# @return [String]
|
|
4137
4192
|
attr_accessor :sub_path
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module RunV2
|
|
18
18
|
# Version of the google-apis-run_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.110.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260306"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -184,6 +184,12 @@ module Google
|
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
|
185
185
|
end
|
|
186
186
|
|
|
187
|
+
class GoogleCloudRunV2InlinedSource
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
187
193
|
class GoogleCloudRunV2Instance
|
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
195
|
|
|
@@ -364,6 +370,12 @@ module Google
|
|
|
364
370
|
include Google::Apis::Core::JsonObjectSupport
|
|
365
371
|
end
|
|
366
372
|
|
|
373
|
+
class GoogleCloudRunV2SourceFile
|
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
375
|
+
|
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
377
|
+
end
|
|
378
|
+
|
|
367
379
|
class GoogleCloudRunV2StartInstanceRequest
|
|
368
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
369
381
|
|
|
@@ -1126,6 +1138,14 @@ module Google
|
|
|
1126
1138
|
end
|
|
1127
1139
|
end
|
|
1128
1140
|
|
|
1141
|
+
class GoogleCloudRunV2InlinedSource
|
|
1142
|
+
# @private
|
|
1143
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1144
|
+
collection :sources, as: 'sources', class: Google::Apis::RunV2::GoogleCloudRunV2SourceFile, decorator: Google::Apis::RunV2::GoogleCloudRunV2SourceFile::Representation
|
|
1145
|
+
|
|
1146
|
+
end
|
|
1147
|
+
end
|
|
1148
|
+
|
|
1129
1149
|
class GoogleCloudRunV2Instance
|
|
1130
1150
|
# @private
|
|
1131
1151
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1575,6 +1595,16 @@ module Google
|
|
|
1575
1595
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1576
1596
|
property :cloud_storage_source, as: 'cloudStorageSource', class: Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource, decorator: Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource::Representation
|
|
1577
1597
|
|
|
1598
|
+
property :inlined_source, as: 'inlinedSource', class: Google::Apis::RunV2::GoogleCloudRunV2InlinedSource, decorator: Google::Apis::RunV2::GoogleCloudRunV2InlinedSource::Representation
|
|
1599
|
+
|
|
1600
|
+
end
|
|
1601
|
+
end
|
|
1602
|
+
|
|
1603
|
+
class GoogleCloudRunV2SourceFile
|
|
1604
|
+
# @private
|
|
1605
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1606
|
+
property :content, as: 'content'
|
|
1607
|
+
property :filename, as: 'filename'
|
|
1578
1608
|
end
|
|
1579
1609
|
end
|
|
1580
1610
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-run_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.110.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.110.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|