google-apis-run_v2 0.11.0 → 0.12.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b506ec6eece81399e53c72fbfe1e7e179b288a9215b35c47f0ccfa200cbfed65
|
4
|
+
data.tar.gz: c21e104ef41f67a4c5b7ff249f8e5e49a7cece16ee25f5cf938d25fae4650bb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89e42ff421a6d4f2e613460f49b0837b31ca1df6819608d6293c4ef967d7b02cc82b95348941fba743a175644a253ea219c133187291e456616d02fc1dbcf99c
|
7
|
+
data.tar.gz: 2ab968dd99d0df973d8508e783d88f7b715b2d9489583b49862cce5c9da4f9f8044a541aeb222755685fb1d3bdcafdf9b12f9c09455d4ce5eb574f42b021cd49
|
data/CHANGELOG.md
CHANGED
@@ -34,12 +34,6 @@ module Google
|
|
34
34
|
# @return [String]
|
35
35
|
attr_accessor :breakglass_justification
|
36
36
|
|
37
|
-
# The path to a binary authorization policy. Format: projects/`project`/
|
38
|
-
# platforms/cloudRun/`policy-name`
|
39
|
-
# Corresponds to the JSON property `policy`
|
40
|
-
# @return [String]
|
41
|
-
attr_accessor :policy
|
42
|
-
|
43
37
|
# If True, indicates to use the default project's binary authorization policy.
|
44
38
|
# If False, binary authorization will be disabled.
|
45
39
|
# Corresponds to the JSON property `useDefault`
|
@@ -54,7 +48,6 @@ module Google
|
|
54
48
|
# Update properties of this object
|
55
49
|
def update!(**args)
|
56
50
|
@breakglass_justification = args[:breakglass_justification] if args.key?(:breakglass_justification)
|
57
|
-
@policy = args[:policy] if args.key?(:policy)
|
58
51
|
@use_default = args[:use_default] if args.key?(:use_default)
|
59
52
|
end
|
60
53
|
end
|
@@ -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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220422"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -302,7 +302,6 @@ module Google
|
|
302
302
|
# @private
|
303
303
|
class Representation < Google::Apis::Core::JsonRepresentation
|
304
304
|
property :breakglass_justification, as: 'breakglassJustification'
|
305
|
-
property :policy, as: 'policy'
|
306
305
|
property :use_default, as: 'useDefault'
|
307
306
|
end
|
308
307
|
end
|
@@ -264,8 +264,6 @@ module Google
|
|
264
264
|
# If set to true, and if the Job does not exist, it will create a new one.
|
265
265
|
# Caller must have both create and update permissions for this call if this is
|
266
266
|
# set to true.
|
267
|
-
# @param [String] update_mask
|
268
|
-
# The list of fields to be updated.
|
269
267
|
# @param [Boolean] validate_only
|
270
268
|
# Indicates that the request should be validated and default values populated,
|
271
269
|
# without persisting the request or updating any resources.
|
@@ -286,7 +284,7 @@ module Google
|
|
286
284
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
287
285
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
288
286
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
289
|
-
def patch_project_location_job(name, google_cloud_run_v2_job_object = nil, allow_missing: nil,
|
287
|
+
def patch_project_location_job(name, google_cloud_run_v2_job_object = nil, allow_missing: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
290
288
|
command = make_simple_command(:patch, 'v2/{+name}', options)
|
291
289
|
command.request_representation = Google::Apis::RunV2::GoogleCloudRunV2Job::Representation
|
292
290
|
command.request_object = google_cloud_run_v2_job_object
|
@@ -294,7 +292,6 @@ module Google
|
|
294
292
|
command.response_class = Google::Apis::RunV2::GoogleLongrunningOperation
|
295
293
|
command.params['name'] = name unless name.nil?
|
296
294
|
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
|
297
|
-
command.query['updateMask'] = update_mask unless update_mask.nil?
|
298
295
|
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
299
296
|
command.query['fields'] = fields unless fields.nil?
|
300
297
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -917,8 +914,6 @@ module Google
|
|
917
914
|
# If set to true, and if the Service does not exist, it will create a new one.
|
918
915
|
# Caller must have both create and update permissions for this call if this is
|
919
916
|
# set to true.
|
920
|
-
# @param [String] update_mask
|
921
|
-
# The list of fields to be updated.
|
922
917
|
# @param [Boolean] validate_only
|
923
918
|
# Indicates that the request should be validated and default values populated,
|
924
919
|
# without persisting the request or updating any resources.
|
@@ -939,7 +934,7 @@ module Google
|
|
939
934
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
940
935
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
941
936
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
942
|
-
def patch_project_location_service(name, google_cloud_run_v2_service_object = nil, allow_missing: nil,
|
937
|
+
def patch_project_location_service(name, google_cloud_run_v2_service_object = nil, allow_missing: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
943
938
|
command = make_simple_command(:patch, 'v2/{+name}', options)
|
944
939
|
command.request_representation = Google::Apis::RunV2::GoogleCloudRunV2Service::Representation
|
945
940
|
command.request_object = google_cloud_run_v2_service_object
|
@@ -947,7 +942,6 @@ module Google
|
|
947
942
|
command.response_class = Google::Apis::RunV2::GoogleLongrunningOperation
|
948
943
|
command.params['name'] = name unless name.nil?
|
949
944
|
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
|
950
|
-
command.query['updateMask'] = update_mask unless update_mask.nil?
|
951
945
|
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
952
946
|
command.query['fields'] = fields unless fields.nil?
|
953
947
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
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.
|
4
|
+
version: 0.12.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: 2022-
|
11
|
+
date: 2022-05-02 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.12.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: []
|