google-apis-run_v2 0.64.0 → 0.66.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65769b514e22dab34042948efac7291f81c4e5f09851c38640c9f2bcb5a4ec81
4
- data.tar.gz: 8cee5dd118a410f9f96e39a54e0c5c15939ec85ed91fbcfc7774ce6396a1f2ce
3
+ metadata.gz: 6daf4b27ec18c5b0cdbd5c408b0c19079b1ffef6c5a9fa36da24ab87fb123d87
4
+ data.tar.gz: 0e0c2a83c33f8743ca75e0a3b14537216ddf23d040647584d3bc7bfff3df122d
5
5
  SHA512:
6
- metadata.gz: d05dff54aaf9e4708439cb5f21f349f34b355a5a883afe53cda16cc424e9b2b90d5cc63c708ac528c8769219129cfd7a30c3749e9aec6d9c131d59466c36d785
7
- data.tar.gz: 14edaec2dbeaaf00902d50f25cdae45238cc40f4cfd0ecf6ed8cfb31b937e87ca31e33ea76c90c59b951e1b0d6ff7b8a2982f0586bae57305b650e117ee40c38
6
+ metadata.gz: 6b0aaa3657fc14f08157a9bdedf3106289c64199b0e58870404a93cc7285d8905219f6f7835aef5973962ab4c4c1ec76026532b98708034afe1dd0bdd3dacb16
7
+ data.tar.gz: 47e2fb0a7475e0f76c53f53af3033091e5f01aaebbad60373f069f313a8a0185aeb4329d42770a477bdda01814a59098c5b409f5185ce5392314d597eca7a26f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.66.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240607
6
+
7
+ ### v0.65.0 (2024-06-02)
8
+
9
+ * Regenerated from discovery document revision 20240524
10
+
3
11
  ### v0.64.0 (2024-05-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20240510
@@ -816,7 +816,8 @@ module Google
816
816
  class GoogleCloudRunV2GcsVolumeSource
817
817
  include Google::Apis::Core::Hashable
818
818
 
819
- # Cloud Storage Bucket name.
819
+ # Cloud Storage Bucket name. TODO (b/344678062) Fix the error validation once
820
+ # dynamic mounting is public.
820
821
  # Corresponds to the JSON property `bucket`
821
822
  # @return [String]
822
823
  attr_accessor :bucket
@@ -1109,6 +1110,13 @@ module Google
1109
1110
  attr_accessor :reconciling
1110
1111
  alias_method :reconciling?, :reconciling
1111
1112
 
1113
+ # A unique string used as a suffix for creating a new execution. The Job will
1114
+ # become ready when the execution is successfully completed. The sum of job name
1115
+ # and token length must be fewer than 63 characters.
1116
+ # Corresponds to the JSON property `runExecutionToken`
1117
+ # @return [String]
1118
+ attr_accessor :run_execution_token
1119
+
1112
1120
  # Output only. Reserved for future use.
1113
1121
  # Corresponds to the JSON property `satisfiesPzs`
1114
1122
  # @return [Boolean]
@@ -1170,6 +1178,7 @@ module Google
1170
1178
  @name = args[:name] if args.key?(:name)
1171
1179
  @observed_generation = args[:observed_generation] if args.key?(:observed_generation)
1172
1180
  @reconciling = args[:reconciling] if args.key?(:reconciling)
1181
+ @run_execution_token = args[:run_execution_token] if args.key?(:run_execution_token)
1173
1182
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1174
1183
  @start_execution_token = args[:start_execution_token] if args.key?(:start_execution_token)
1175
1184
  @template = args[:template] if args.key?(:template)
@@ -3456,7 +3465,7 @@ module Google
3456
3465
  # disk free"; some of the space will be used by the operating system and build
3457
3466
  # utilities. Also note that this is the minimum disk size that will be allocated
3458
3467
  # for the build -- the build may run with a larger disk than requested. At
3459
- # present, the maximum disk size is 2000GB; builds that request more than the
3468
+ # present, the maximum disk size is 4000GB; builds that request more than the
3460
3469
  # maximum are rejected with an error.
3461
3470
  # Corresponds to the JSON property `diskSizeGb`
3462
3471
  # @return [Fixnum]
@@ -3768,7 +3777,7 @@ module Google
3768
3777
  class GoogleDevtoolsCloudbuildV1ConnectedRepository
3769
3778
  include Google::Apis::Core::Hashable
3770
3779
 
3771
- # Directory, relative to the source root, in which to run the build.
3780
+ # Optional. Directory, relative to the source root, in which to run the build.
3772
3781
  # Corresponds to the JSON property `dir`
3773
3782
  # @return [String]
3774
3783
  attr_accessor :dir
@@ -3779,8 +3788,8 @@ module Google
3779
3788
  # @return [String]
3780
3789
  attr_accessor :repository
3781
3790
 
3782
- # The revision to fetch from the Git repository such as a branch, a tag, a
3783
- # commit SHA, or any Git ref.
3791
+ # Required. The revision to fetch from the Git repository such as a branch, a
3792
+ # tag, a commit SHA, or any Git ref.
3784
3793
  # Corresponds to the JSON property `revision`
3785
3794
  # @return [String]
3786
3795
  attr_accessor :revision
@@ -3932,26 +3941,26 @@ module Google
3932
3941
  class GoogleDevtoolsCloudbuildV1GitSource
3933
3942
  include Google::Apis::Core::Hashable
3934
3943
 
3935
- # Directory, relative to the source root, in which to run the build. This must
3936
- # be a relative path. If a step's `dir` is specified and is an absolute path,
3937
- # this value is ignored for that step's execution.
3944
+ # Optional. Directory, relative to the source root, in which to run the build.
3945
+ # This must be a relative path. If a step's `dir` is specified and is an
3946
+ # absolute path, this value is ignored for that step's execution.
3938
3947
  # Corresponds to the JSON property `dir`
3939
3948
  # @return [String]
3940
3949
  attr_accessor :dir
3941
3950
 
3942
- # The revision to fetch from the Git repository such as a branch, a tag, a
3943
- # commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the revision
3944
- # from the Git repository; therefore make sure that the string you provide for `
3945
- # revision` is parsable by the command. For information on string values
3946
- # accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
3951
+ # Optional. The revision to fetch from the Git repository such as a branch, a
3952
+ # tag, a commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
3953
+ # revision from the Git repository; therefore make sure that the string you
3954
+ # provide for `revision` is parsable by the command. For information on string
3955
+ # values accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
3947
3956
  # _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
3948
3957
  # docs/git-fetch.
3949
3958
  # Corresponds to the JSON property `revision`
3950
3959
  # @return [String]
3951
3960
  attr_accessor :revision
3952
3961
 
3953
- # Location of the Git repo to build. This will be used as a `git remote`, see
3954
- # https://git-scm.com/docs/git-remote.
3962
+ # Required. Location of the Git repo to build. This will be used as a `git
3963
+ # remote`, see https://git-scm.com/docs/git-remote.
3955
3964
  # Corresponds to the JSON property `url`
3956
3965
  # @return [String]
3957
3966
  attr_accessor :url
@@ -4196,31 +4205,32 @@ module Google
4196
4205
  # @return [String]
4197
4206
  attr_accessor :commit_sha
4198
4207
 
4199
- # Directory, relative to the source root, in which to run the build. This must
4200
- # be a relative path. If a step's `dir` is specified and is an absolute path,
4201
- # this value is ignored for that step's execution.
4208
+ # Optional. Directory, relative to the source root, in which to run the build.
4209
+ # This must be a relative path. If a step's `dir` is specified and is an
4210
+ # absolute path, this value is ignored for that step's execution.
4202
4211
  # Corresponds to the JSON property `dir`
4203
4212
  # @return [String]
4204
4213
  attr_accessor :dir
4205
4214
 
4206
- # Only trigger a build if the revision regex does NOT match the revision regex.
4215
+ # Optional. Only trigger a build if the revision regex does NOT match the
4216
+ # revision regex.
4207
4217
  # Corresponds to the JSON property `invertRegex`
4208
4218
  # @return [Boolean]
4209
4219
  attr_accessor :invert_regex
4210
4220
  alias_method :invert_regex?, :invert_regex
4211
4221
 
4212
- # ID of the project that owns the Cloud Source Repository. If omitted, the
4213
- # project ID requesting the build is assumed.
4222
+ # Optional. ID of the project that owns the Cloud Source Repository. If omitted,
4223
+ # the project ID requesting the build is assumed.
4214
4224
  # Corresponds to the JSON property `projectId`
4215
4225
  # @return [String]
4216
4226
  attr_accessor :project_id
4217
4227
 
4218
- # Name of the Cloud Source Repository.
4228
+ # Required. Name of the Cloud Source Repository.
4219
4229
  # Corresponds to the JSON property `repoName`
4220
4230
  # @return [String]
4221
4231
  attr_accessor :repo_name
4222
4232
 
4223
- # Substitutions to use in a triggered build. Should only be used with
4233
+ # Optional. Substitutions to use in a triggered build. Should only be used with
4224
4234
  # RunBuildTrigger
4225
4235
  # Corresponds to the JSON property `substitutions`
4226
4236
  # @return [Hash<String,String>]
@@ -4526,14 +4536,14 @@ module Google
4526
4536
  # @return [String]
4527
4537
  attr_accessor :bucket
4528
4538
 
4529
- # Cloud Storage generation for the object. If the generation is omitted, the
4530
- # latest generation will be used.
4539
+ # Optional. Cloud Storage generation for the object. If the generation is
4540
+ # omitted, the latest generation will be used.
4531
4541
  # Corresponds to the JSON property `generation`
4532
4542
  # @return [Fixnum]
4533
4543
  attr_accessor :generation
4534
4544
 
4535
- # Cloud Storage object containing the source. This object must be a zipped (`.
4536
- # zip`) or gzipped archive file (`.tar.gz`) containing source to build.
4545
+ # Required. Cloud Storage object containing the source. This object must be a
4546
+ # zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build.
4537
4547
  # Corresponds to the JSON property `object`
4538
4548
  # @return [String]
4539
4549
  attr_accessor :object
@@ -4562,9 +4572,9 @@ module Google
4562
4572
  class GoogleDevtoolsCloudbuildV1StorageSourceManifest
4563
4573
  include Google::Apis::Core::Hashable
4564
4574
 
4565
- # Cloud Storage bucket containing the source manifest (see [Bucket Name
4566
- # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
4567
- # ).
4575
+ # Required. Cloud Storage bucket containing the source manifest (see [Bucket
4576
+ # Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#
4577
+ # requirements)).
4568
4578
  # Corresponds to the JSON property `bucket`
4569
4579
  # @return [String]
4570
4580
  attr_accessor :bucket
@@ -4575,8 +4585,8 @@ module Google
4575
4585
  # @return [Fixnum]
4576
4586
  attr_accessor :generation
4577
4587
 
4578
- # Cloud Storage object containing the source manifest. This object must be a
4579
- # JSON file.
4588
+ # Required. Cloud Storage object containing the source manifest. This object
4589
+ # must be a JSON file.
4580
4590
  # Corresponds to the JSON property `object`
4581
4591
  # @return [String]
4582
4592
  attr_accessor :object
@@ -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.64.0"
19
+ GEM_VERSION = "0.66.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 = "20240510"
25
+ REVISION = "20240607"
26
26
  end
27
27
  end
28
28
  end
@@ -921,6 +921,7 @@ module Google
921
921
  property :name, as: 'name'
922
922
  property :observed_generation, :numeric_string => true, as: 'observedGeneration'
923
923
  property :reconciling, as: 'reconciling'
924
+ property :run_execution_token, as: 'runExecutionToken'
924
925
  property :satisfies_pzs, as: 'satisfiesPzs'
925
926
  property :start_execution_token, as: 'startExecutionToken'
926
927
  property :template, as: 'template', class: Google::Apis::RunV2::GoogleCloudRunV2ExecutionTemplate, decorator: Google::Apis::RunV2::GoogleCloudRunV2ExecutionTemplate::Representation
@@ -316,7 +316,7 @@ module Google
316
316
  execute_or_queue_command(command, &block)
317
317
  end
318
318
 
319
- # Lists Jobs.
319
+ # Lists Jobs. Results are sorted by creation time, descending.
320
320
  # @param [String] parent
321
321
  # Required. The location and project to list resources on. Format: projects/`
322
322
  # project`/locations/`location`, where `project` can be project id or number.
@@ -650,7 +650,7 @@ module Google
650
650
  execute_or_queue_command(command, &block)
651
651
  end
652
652
 
653
- # Lists Executions from a Job.
653
+ # Lists Executions from a Job. Results are sorted by creation time, descending.
654
654
  # @param [String] parent
655
655
  # Required. The Execution from which the Executions should be listed. To list
656
656
  # all Executions across Jobs, use "-" instead of Job name. Format: `projects/`
@@ -1077,7 +1077,7 @@ module Google
1077
1077
  execute_or_queue_command(command, &block)
1078
1078
  end
1079
1079
 
1080
- # Lists Services.
1080
+ # Lists Services. Results are sorted by creation time, descending.
1081
1081
  # @param [String] parent
1082
1082
  # Required. The location and project to list resources on. Location must be a
1083
1083
  # valid Google Cloud region, and cannot be the "-" wildcard. Format: projects/`
@@ -1346,7 +1346,8 @@ module Google
1346
1346
  execute_or_queue_command(command, &block)
1347
1347
  end
1348
1348
 
1349
- # Lists Revisions from a given Service, or from a given location.
1349
+ # Lists Revisions from a given Service, or from a given location. Results are
1350
+ # sorted by creation time, descending.
1350
1351
  # @param [String] parent
1351
1352
  # Required. The Service from which the Revisions should be listed. To list all
1352
1353
  # Revisions across Services, use "-" instead of Service name. Format: projects/`
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.66.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-26 00:00:00.000000000 Z
11
+ date: 2024-06-16 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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.64.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.66.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
63
63
  post_install_message:
64
64
  rdoc_options: []