google-apis-run_v1 0.79.0 → 0.80.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 +5 -0
- data/lib/google/apis/run_v1/classes.rb +239 -5
- data/lib/google/apis/run_v1/gem_version.rb +3 -3
- data/lib/google/apis/run_v1/representations.rb +91 -0
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 342507c09c2a2d6a2772b7ef3f6f79781adffcfc50b69a74002c504a4a0a8e9c
|
4
|
+
data.tar.gz: 3840260f176df38b740faf6fdc405062f08efaed301b931e6829a5d4e83c4601
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5a3070e00fa5467e7678ecaaba1b8c3664897b32802ec3ed36d1499075ea8a5370a7215bb5d327c7431a087dbbcb37dff7d92a6ba55e61212176e160cf82d7c
|
7
|
+
data.tar.gz: 3da02b328985e335b337411170b7288470c906a5a03b23397d5eae1bdc8d5c9fc4fd328d574db9cbcbe245bb70d1017b0c55befddc51671b57dbe919960fd3b3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-run_v1
|
2
2
|
|
3
|
+
### v0.80.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250214
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.79.0 (2024-12-02)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241004
|
@@ -1160,11 +1160,11 @@ module Google
|
|
1160
1160
|
include Google::Apis::Core::Hashable
|
1161
1161
|
|
1162
1162
|
# Optional. Specifies the maximum desired number of tasks the execution should
|
1163
|
-
# run at given time.
|
1164
|
-
#
|
1165
|
-
#
|
1166
|
-
#
|
1167
|
-
#
|
1163
|
+
# run at given time. When the job is run, if this field is 0 or unset, the
|
1164
|
+
# maximum possible value will be used for that execution. The actual number of
|
1165
|
+
# tasks running in steady state will be less than this number when there are
|
1166
|
+
# fewer tasks waiting to be completed, i.e. when the work left to do is less
|
1167
|
+
# than max parallelism.
|
1168
1168
|
# Corresponds to the JSON property `parallelism`
|
1169
1169
|
# @return [Fixnum]
|
1170
1170
|
attr_accessor :parallelism
|
@@ -1553,6 +1553,13 @@ module Google
|
|
1553
1553
|
class GoogleDevtoolsCloudbuildV1Artifacts
|
1554
1554
|
include Google::Apis::Core::Hashable
|
1555
1555
|
|
1556
|
+
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
1557
|
+
# successful completion of all build steps. If any objects fail to be pushed,
|
1558
|
+
# the build is marked FAILURE.
|
1559
|
+
# Corresponds to the JSON property `goModules`
|
1560
|
+
# @return [Array<Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GoModule>]
|
1561
|
+
attr_accessor :go_modules
|
1562
|
+
|
1556
1563
|
# A list of images to be pushed upon the successful completion of all build
|
1557
1564
|
# steps. The images will be pushed using the builder service account's
|
1558
1565
|
# credentials. The digests of the pushed images will be stored in the Build
|
@@ -1600,6 +1607,7 @@ module Google
|
|
1600
1607
|
|
1601
1608
|
# Update properties of this object
|
1602
1609
|
def update!(**args)
|
1610
|
+
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
1603
1611
|
@images = args[:images] if args.key?(:images)
|
1604
1612
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
1605
1613
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
@@ -1650,6 +1658,12 @@ module Google
|
|
1650
1658
|
# @return [String]
|
1651
1659
|
attr_accessor :create_time
|
1652
1660
|
|
1661
|
+
# Optional. Dependencies that the Cloud Build worker will fetch before executing
|
1662
|
+
# user steps.
|
1663
|
+
# Corresponds to the JSON property `dependencies`
|
1664
|
+
# @return [Array<Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1Dependency>]
|
1665
|
+
attr_accessor :dependencies
|
1666
|
+
|
1653
1667
|
# A fatal problem encountered during the execution of the build.
|
1654
1668
|
# Corresponds to the JSON property `failureInfo`
|
1655
1669
|
# @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FailureInfo]
|
@@ -1811,6 +1825,7 @@ module Google
|
|
1811
1825
|
@available_secrets = args[:available_secrets] if args.key?(:available_secrets)
|
1812
1826
|
@build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
|
1813
1827
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1828
|
+
@dependencies = args[:dependencies] if args.key?(:dependencies)
|
1814
1829
|
@failure_info = args[:failure_info] if args.key?(:failure_info)
|
1815
1830
|
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
1816
1831
|
@git_config = args[:git_config] if args.key?(:git_config)
|
@@ -1935,6 +1950,13 @@ module Google
|
|
1935
1950
|
attr_accessor :dynamic_substitutions
|
1936
1951
|
alias_method :dynamic_substitutions?, :dynamic_substitutions
|
1937
1952
|
|
1953
|
+
# Optional. Option to specify whether structured logging is enabled. If true,
|
1954
|
+
# JSON-formatted logs are parsed as structured logs.
|
1955
|
+
# Corresponds to the JSON property `enableStructuredLogging`
|
1956
|
+
# @return [Boolean]
|
1957
|
+
attr_accessor :enable_structured_logging
|
1958
|
+
alias_method :enable_structured_logging?, :enable_structured_logging
|
1959
|
+
|
1938
1960
|
# A list of global environment variable definitions that will exist for all
|
1939
1961
|
# build steps in this build. If a variable is defined in both globally and in a
|
1940
1962
|
# build step, the variable will use the build step value. The elements are of
|
@@ -1967,6 +1989,11 @@ module Google
|
|
1967
1989
|
# @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1PoolOption]
|
1968
1990
|
attr_accessor :pool
|
1969
1991
|
|
1992
|
+
# Optional. Option to specify the Pub/Sub topic to receive build status updates.
|
1993
|
+
# Corresponds to the JSON property `pubsubTopic`
|
1994
|
+
# @return [String]
|
1995
|
+
attr_accessor :pubsub_topic
|
1996
|
+
|
1970
1997
|
# Requested verifiability options.
|
1971
1998
|
# Corresponds to the JSON property `requestedVerifyOption`
|
1972
1999
|
# @return [String]
|
@@ -2016,11 +2043,13 @@ module Google
|
|
2016
2043
|
@default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
|
2017
2044
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
2018
2045
|
@dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
|
2046
|
+
@enable_structured_logging = args[:enable_structured_logging] if args.key?(:enable_structured_logging)
|
2019
2047
|
@env = args[:env] if args.key?(:env)
|
2020
2048
|
@log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
|
2021
2049
|
@logging = args[:logging] if args.key?(:logging)
|
2022
2050
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
2023
2051
|
@pool = args[:pool] if args.key?(:pool)
|
2052
|
+
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
2024
2053
|
@requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
|
2025
2054
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
2026
2055
|
@source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
|
@@ -2262,6 +2291,34 @@ module Google
|
|
2262
2291
|
end
|
2263
2292
|
end
|
2264
2293
|
|
2294
|
+
# A dependency that the Cloud Build worker will fetch before executing user
|
2295
|
+
# steps.
|
2296
|
+
class GoogleDevtoolsCloudbuildV1Dependency
|
2297
|
+
include Google::Apis::Core::Hashable
|
2298
|
+
|
2299
|
+
# If set to true disable all dependency fetching (ignoring the default source as
|
2300
|
+
# well).
|
2301
|
+
# Corresponds to the JSON property `empty`
|
2302
|
+
# @return [Boolean]
|
2303
|
+
attr_accessor :empty
|
2304
|
+
alias_method :empty?, :empty
|
2305
|
+
|
2306
|
+
# Represents a git repository as a build dependency.
|
2307
|
+
# Corresponds to the JSON property `gitSource`
|
2308
|
+
# @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GitSourceDependency]
|
2309
|
+
attr_accessor :git_source
|
2310
|
+
|
2311
|
+
def initialize(**args)
|
2312
|
+
update!(**args)
|
2313
|
+
end
|
2314
|
+
|
2315
|
+
# Update properties of this object
|
2316
|
+
def update!(**args)
|
2317
|
+
@empty = args[:empty] if args.key?(:empty)
|
2318
|
+
@git_source = args[:git_source] if args.key?(:git_source)
|
2319
|
+
end
|
2320
|
+
end
|
2321
|
+
|
2265
2322
|
# This config defines the location of a source through Developer Connect.
|
2266
2323
|
class GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
2267
2324
|
include Google::Apis::Core::Hashable
|
@@ -2399,6 +2456,136 @@ module Google
|
|
2399
2456
|
end
|
2400
2457
|
end
|
2401
2458
|
|
2459
|
+
# Represents a git repository as a build dependency.
|
2460
|
+
class GoogleDevtoolsCloudbuildV1GitSourceDependency
|
2461
|
+
include Google::Apis::Core::Hashable
|
2462
|
+
|
2463
|
+
# Optional. How much history should be fetched for the build (default 1, -1 for
|
2464
|
+
# all history).
|
2465
|
+
# Corresponds to the JSON property `depth`
|
2466
|
+
# @return [Fixnum]
|
2467
|
+
attr_accessor :depth
|
2468
|
+
|
2469
|
+
# Required. Where should the files be placed on the worker.
|
2470
|
+
# Corresponds to the JSON property `destPath`
|
2471
|
+
# @return [String]
|
2472
|
+
attr_accessor :dest_path
|
2473
|
+
|
2474
|
+
# Optional. True if submodules should be fetched too (default false).
|
2475
|
+
# Corresponds to the JSON property `recurseSubmodules`
|
2476
|
+
# @return [Boolean]
|
2477
|
+
attr_accessor :recurse_submodules
|
2478
|
+
alias_method :recurse_submodules?, :recurse_submodules
|
2479
|
+
|
2480
|
+
# A repository for a git source.
|
2481
|
+
# Corresponds to the JSON property `repository`
|
2482
|
+
# @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GitSourceRepository]
|
2483
|
+
attr_accessor :repository
|
2484
|
+
|
2485
|
+
# Required. The revision that we will fetch the repo at.
|
2486
|
+
# Corresponds to the JSON property `revision`
|
2487
|
+
# @return [String]
|
2488
|
+
attr_accessor :revision
|
2489
|
+
|
2490
|
+
def initialize(**args)
|
2491
|
+
update!(**args)
|
2492
|
+
end
|
2493
|
+
|
2494
|
+
# Update properties of this object
|
2495
|
+
def update!(**args)
|
2496
|
+
@depth = args[:depth] if args.key?(:depth)
|
2497
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
2498
|
+
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
2499
|
+
@repository = args[:repository] if args.key?(:repository)
|
2500
|
+
@revision = args[:revision] if args.key?(:revision)
|
2501
|
+
end
|
2502
|
+
end
|
2503
|
+
|
2504
|
+
# A repository for a git source.
|
2505
|
+
class GoogleDevtoolsCloudbuildV1GitSourceRepository
|
2506
|
+
include Google::Apis::Core::Hashable
|
2507
|
+
|
2508
|
+
# The Developer Connect Git repository link or the url that matches a repository
|
2509
|
+
# link in the current project, formatted as `projects/*/locations/*/connections/*
|
2510
|
+
# /gitRepositoryLink/*`
|
2511
|
+
# Corresponds to the JSON property `developerConnect`
|
2512
|
+
# @return [String]
|
2513
|
+
attr_accessor :developer_connect
|
2514
|
+
|
2515
|
+
# Location of the Git repository.
|
2516
|
+
# Corresponds to the JSON property `url`
|
2517
|
+
# @return [String]
|
2518
|
+
attr_accessor :url
|
2519
|
+
|
2520
|
+
def initialize(**args)
|
2521
|
+
update!(**args)
|
2522
|
+
end
|
2523
|
+
|
2524
|
+
# Update properties of this object
|
2525
|
+
def update!(**args)
|
2526
|
+
@developer_connect = args[:developer_connect] if args.key?(:developer_connect)
|
2527
|
+
@url = args[:url] if args.key?(:url)
|
2528
|
+
end
|
2529
|
+
end
|
2530
|
+
|
2531
|
+
# Go module to upload to Artifact Registry upon successful completion of all
|
2532
|
+
# build steps. A module refers to all dependencies in a go.mod file.
|
2533
|
+
class GoogleDevtoolsCloudbuildV1GoModule
|
2534
|
+
include Google::Apis::Core::Hashable
|
2535
|
+
|
2536
|
+
# Optional. The Go module's "module path". e.g. example.com/foo/v2
|
2537
|
+
# Corresponds to the JSON property `modulePath`
|
2538
|
+
# @return [String]
|
2539
|
+
attr_accessor :module_path
|
2540
|
+
|
2541
|
+
# Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-
|
2542
|
+
# release identifiers can also be added by appending a dash and dot separated
|
2543
|
+
# ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5
|
2544
|
+
# Corresponds to the JSON property `moduleVersion`
|
2545
|
+
# @return [String]
|
2546
|
+
attr_accessor :module_version
|
2547
|
+
|
2548
|
+
# Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults
|
2549
|
+
# to the build’s location.
|
2550
|
+
# Corresponds to the JSON property `repositoryLocation`
|
2551
|
+
# @return [String]
|
2552
|
+
attr_accessor :repository_location
|
2553
|
+
|
2554
|
+
# Optional. Artifact Registry repository name. Specified Go modules will be
|
2555
|
+
# zipped and uploaded to Artifact Registry with this location as a prefix. e.g.
|
2556
|
+
# my-go-repo
|
2557
|
+
# Corresponds to the JSON property `repositoryName`
|
2558
|
+
# @return [String]
|
2559
|
+
attr_accessor :repository_name
|
2560
|
+
|
2561
|
+
# Optional. Project ID of the Artifact Registry repository. Defaults to the
|
2562
|
+
# build project.
|
2563
|
+
# Corresponds to the JSON property `repositoryProjectId`
|
2564
|
+
# @return [String]
|
2565
|
+
attr_accessor :repository_project_id
|
2566
|
+
|
2567
|
+
# Optional. Source path of the go.mod file in the build's workspace. If not
|
2568
|
+
# specified, this will default to the current directory. e.g. ~/code/go/
|
2569
|
+
# mypackage
|
2570
|
+
# Corresponds to the JSON property `sourcePath`
|
2571
|
+
# @return [String]
|
2572
|
+
attr_accessor :source_path
|
2573
|
+
|
2574
|
+
def initialize(**args)
|
2575
|
+
update!(**args)
|
2576
|
+
end
|
2577
|
+
|
2578
|
+
# Update properties of this object
|
2579
|
+
def update!(**args)
|
2580
|
+
@module_path = args[:module_path] if args.key?(:module_path)
|
2581
|
+
@module_version = args[:module_version] if args.key?(:module_version)
|
2582
|
+
@repository_location = args[:repository_location] if args.key?(:repository_location)
|
2583
|
+
@repository_name = args[:repository_name] if args.key?(:repository_name)
|
2584
|
+
@repository_project_id = args[:repository_project_id] if args.key?(:repository_project_id)
|
2585
|
+
@source_path = args[:source_path] if args.key?(:source_path)
|
2586
|
+
end
|
2587
|
+
end
|
2588
|
+
|
2402
2589
|
# Container message for hash values.
|
2403
2590
|
class GoogleDevtoolsCloudbuildV1Hash
|
2404
2591
|
include Google::Apis::Core::Hashable
|
@@ -2707,6 +2894,12 @@ module Google
|
|
2707
2894
|
# @return [Array<String>]
|
2708
2895
|
attr_accessor :build_step_outputs
|
2709
2896
|
|
2897
|
+
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
2898
|
+
# build.
|
2899
|
+
# Corresponds to the JSON property `goModules`
|
2900
|
+
# @return [Array<Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedGoModule>]
|
2901
|
+
attr_accessor :go_modules
|
2902
|
+
|
2710
2903
|
# Container images that were built as a part of the build.
|
2711
2904
|
# Corresponds to the JSON property `images`
|
2712
2905
|
# @return [Array<Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1BuiltImage>]
|
@@ -2743,6 +2936,7 @@ module Google
|
|
2743
2936
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
2744
2937
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
2745
2938
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
2939
|
+
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
2746
2940
|
@images = args[:images] if args.key?(:images)
|
2747
2941
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
2748
2942
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
@@ -3046,6 +3240,39 @@ module Google
|
|
3046
3240
|
end
|
3047
3241
|
end
|
3048
3242
|
|
3243
|
+
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
3244
|
+
# directive.
|
3245
|
+
class GoogleDevtoolsCloudbuildV1UploadedGoModule
|
3246
|
+
include Google::Apis::Core::Hashable
|
3247
|
+
|
3248
|
+
# Container message for hashes of byte content of files, used in
|
3249
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
3250
|
+
# Corresponds to the JSON property `fileHashes`
|
3251
|
+
# @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes]
|
3252
|
+
attr_accessor :file_hashes
|
3253
|
+
|
3254
|
+
# Start and end times for a build execution phase.
|
3255
|
+
# Corresponds to the JSON property `pushTiming`
|
3256
|
+
# @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan]
|
3257
|
+
attr_accessor :push_timing
|
3258
|
+
|
3259
|
+
# URI of the uploaded artifact.
|
3260
|
+
# Corresponds to the JSON property `uri`
|
3261
|
+
# @return [String]
|
3262
|
+
attr_accessor :uri
|
3263
|
+
|
3264
|
+
def initialize(**args)
|
3265
|
+
update!(**args)
|
3266
|
+
end
|
3267
|
+
|
3268
|
+
# Update properties of this object
|
3269
|
+
def update!(**args)
|
3270
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
3271
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
3272
|
+
@uri = args[:uri] if args.key?(:uri)
|
3273
|
+
end
|
3274
|
+
end
|
3275
|
+
|
3049
3276
|
# A Maven artifact uploaded using the MavenArtifact directive.
|
3050
3277
|
class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
3051
3278
|
include Google::Apis::Core::Hashable
|
@@ -5597,6 +5824,12 @@ module Google
|
|
5597
5824
|
# @return [Fixnum]
|
5598
5825
|
attr_accessor :max_retries
|
5599
5826
|
|
5827
|
+
# Optional. The Node Selector configuration. Map of selector key to a value
|
5828
|
+
# which matches a node.
|
5829
|
+
# Corresponds to the JSON property `nodeSelector`
|
5830
|
+
# @return [Hash<String,String>]
|
5831
|
+
attr_accessor :node_selector
|
5832
|
+
|
5600
5833
|
# Optional. Email address of the IAM service account associated with the task of
|
5601
5834
|
# a job execution. The service account represents the identity of the running
|
5602
5835
|
# task, and determines what permissions the task has. If not provided, the task
|
@@ -5627,6 +5860,7 @@ module Google
|
|
5627
5860
|
def update!(**args)
|
5628
5861
|
@containers = args[:containers] if args.key?(:containers)
|
5629
5862
|
@max_retries = args[:max_retries] if args.key?(:max_retries)
|
5863
|
+
@node_selector = args[:node_selector] if args.key?(:node_selector)
|
5630
5864
|
@service_account_name = args[:service_account_name] if args.key?(:service_account_name)
|
5631
5865
|
@timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
|
5632
5866
|
@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.
|
19
|
+
GEM_VERSION = "0.80.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250214"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,6 +286,12 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class GoogleDevtoolsCloudbuildV1Dependency
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
289
295
|
class GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
297
|
|
@@ -316,6 +322,24 @@ module Google
|
|
316
322
|
include Google::Apis::Core::JsonObjectSupport
|
317
323
|
end
|
318
324
|
|
325
|
+
class GoogleDevtoolsCloudbuildV1GitSourceDependency
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class GoogleDevtoolsCloudbuildV1GitSourceRepository
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
337
|
+
class GoogleDevtoolsCloudbuildV1GoModule
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
319
343
|
class GoogleDevtoolsCloudbuildV1Hash
|
320
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
345
|
|
@@ -418,6 +442,12 @@ module Google
|
|
418
442
|
include Google::Apis::Core::JsonObjectSupport
|
419
443
|
end
|
420
444
|
|
445
|
+
class GoogleDevtoolsCloudbuildV1UploadedGoModule
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
421
451
|
class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
422
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
453
|
|
@@ -1199,6 +1229,8 @@ module Google
|
|
1199
1229
|
class GoogleDevtoolsCloudbuildV1Artifacts
|
1200
1230
|
# @private
|
1201
1231
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1232
|
+
collection :go_modules, as: 'goModules', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GoModule, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GoModule::Representation
|
1233
|
+
|
1202
1234
|
collection :images, as: 'images'
|
1203
1235
|
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1MavenArtifact, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1MavenArtifact::Representation
|
1204
1236
|
|
@@ -1222,6 +1254,8 @@ module Google
|
|
1222
1254
|
|
1223
1255
|
property :build_trigger_id, as: 'buildTriggerId'
|
1224
1256
|
property :create_time, as: 'createTime'
|
1257
|
+
collection :dependencies, as: 'dependencies', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1Dependency, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1Dependency::Representation
|
1258
|
+
|
1225
1259
|
property :failure_info, as: 'failureInfo', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FailureInfo, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FailureInfo::Representation
|
1226
1260
|
|
1227
1261
|
property :finish_time, as: 'finishTime'
|
@@ -1286,12 +1320,14 @@ module Google
|
|
1286
1320
|
property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
|
1287
1321
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
1288
1322
|
property :dynamic_substitutions, as: 'dynamicSubstitutions'
|
1323
|
+
property :enable_structured_logging, as: 'enableStructuredLogging'
|
1289
1324
|
collection :env, as: 'env'
|
1290
1325
|
property :log_streaming_option, as: 'logStreamingOption'
|
1291
1326
|
property :logging, as: 'logging'
|
1292
1327
|
property :machine_type, as: 'machineType'
|
1293
1328
|
property :pool, as: 'pool', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1PoolOption, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1PoolOption::Representation
|
1294
1329
|
|
1330
|
+
property :pubsub_topic, as: 'pubsubTopic'
|
1295
1331
|
property :requested_verify_option, as: 'requestedVerifyOption'
|
1296
1332
|
collection :secret_env, as: 'secretEnv'
|
1297
1333
|
collection :source_provenance_hash, as: 'sourceProvenanceHash'
|
@@ -1348,6 +1384,15 @@ module Google
|
|
1348
1384
|
end
|
1349
1385
|
end
|
1350
1386
|
|
1387
|
+
class GoogleDevtoolsCloudbuildV1Dependency
|
1388
|
+
# @private
|
1389
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1390
|
+
property :empty, as: 'empty'
|
1391
|
+
property :git_source, as: 'gitSource', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GitSourceDependency, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GitSourceDependency::Representation
|
1392
|
+
|
1393
|
+
end
|
1394
|
+
end
|
1395
|
+
|
1351
1396
|
class GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
1352
1397
|
# @private
|
1353
1398
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1390,6 +1435,38 @@ module Google
|
|
1390
1435
|
end
|
1391
1436
|
end
|
1392
1437
|
|
1438
|
+
class GoogleDevtoolsCloudbuildV1GitSourceDependency
|
1439
|
+
# @private
|
1440
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1441
|
+
property :depth, :numeric_string => true, as: 'depth'
|
1442
|
+
property :dest_path, as: 'destPath'
|
1443
|
+
property :recurse_submodules, as: 'recurseSubmodules'
|
1444
|
+
property :repository, as: 'repository', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GitSourceRepository, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GitSourceRepository::Representation
|
1445
|
+
|
1446
|
+
property :revision, as: 'revision'
|
1447
|
+
end
|
1448
|
+
end
|
1449
|
+
|
1450
|
+
class GoogleDevtoolsCloudbuildV1GitSourceRepository
|
1451
|
+
# @private
|
1452
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1453
|
+
property :developer_connect, as: 'developerConnect'
|
1454
|
+
property :url, as: 'url'
|
1455
|
+
end
|
1456
|
+
end
|
1457
|
+
|
1458
|
+
class GoogleDevtoolsCloudbuildV1GoModule
|
1459
|
+
# @private
|
1460
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1461
|
+
property :module_path, as: 'modulePath'
|
1462
|
+
property :module_version, as: 'moduleVersion'
|
1463
|
+
property :repository_location, as: 'repositoryLocation'
|
1464
|
+
property :repository_name, as: 'repositoryName'
|
1465
|
+
property :repository_project_id, as: 'repositoryProjectId'
|
1466
|
+
property :source_path, as: 'sourcePath'
|
1467
|
+
end
|
1468
|
+
end
|
1469
|
+
|
1393
1470
|
class GoogleDevtoolsCloudbuildV1Hash
|
1394
1471
|
# @private
|
1395
1472
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1469,6 +1546,8 @@ module Google
|
|
1469
1546
|
|
1470
1547
|
collection :build_step_images, as: 'buildStepImages'
|
1471
1548
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
1549
|
+
collection :go_modules, as: 'goModules', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
|
1550
|
+
|
1472
1551
|
collection :images, as: 'images', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1BuiltImage::Representation
|
1473
1552
|
|
1474
1553
|
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedMavenArtifact, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedMavenArtifact::Representation
|
@@ -1570,6 +1649,17 @@ module Google
|
|
1570
1649
|
end
|
1571
1650
|
end
|
1572
1651
|
|
1652
|
+
class GoogleDevtoolsCloudbuildV1UploadedGoModule
|
1653
|
+
# @private
|
1654
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1655
|
+
property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes::Representation
|
1656
|
+
|
1657
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
1658
|
+
|
1659
|
+
property :uri, as: 'uri'
|
1660
|
+
end
|
1661
|
+
end
|
1662
|
+
|
1573
1663
|
class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
1574
1664
|
# @private
|
1575
1665
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2231,6 +2321,7 @@ module Google
|
|
2231
2321
|
collection :containers, as: 'containers', class: Google::Apis::RunV1::Container, decorator: Google::Apis::RunV1::Container::Representation
|
2232
2322
|
|
2233
2323
|
property :max_retries, as: 'maxRetries'
|
2324
|
+
hash :node_selector, as: 'nodeSelector'
|
2234
2325
|
property :service_account_name, as: 'serviceAccountName'
|
2235
2326
|
property :timeout_seconds, :numeric_string => true, as: 'timeoutSeconds'
|
2236
2327
|
collection :volumes, as: 'volumes', class: Google::Apis::RunV1::Volume, decorator: Google::Apis::RunV1::Volume::Representation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.80.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Run Admin API V1
|
82
79
|
test_files: []
|