google-cloud-batch-v1 0.7.0 → 0.9.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/README.md +1 -1
- data/lib/google/cloud/batch/v1/batch_pb.rb +27 -49
- data/lib/google/cloud/batch/v1/batch_service/client.rb +6 -4
- data/lib/google/cloud/batch/v1/batch_service/operations.rb +5 -3
- data/lib/google/cloud/batch/v1/batch_service/rest/client.rb +6 -4
- data/lib/google/cloud/batch/v1/batch_service/rest/operations.rb +9 -7
- data/lib/google/cloud/batch/v1/batch_service/rest/service_stub.rb +6 -6
- data/lib/google/cloud/batch/v1/job_pb.rb +28 -136
- data/lib/google/cloud/batch/v1/task_pb.rb +27 -94
- data/lib/google/cloud/batch/v1/version.rb +1 -1
- data/lib/google/cloud/batch/v1/volume_pb.rb +24 -17
- data/lib/google/iam/v1/iam_policy/client.rb +6 -4
- data/lib/google/iam/v1/iam_policy/rest/client.rb +6 -4
- data/lib/google/iam/v1/iam_policy/rest/service_stub.rb +3 -3
- data/proto_docs/google/api/client.rb +67 -4
- data/proto_docs/google/cloud/batch/v1/job.rb +51 -15
- data/proto_docs/google/cloud/batch/v1/task.rb +19 -3
- data/proto_docs/google/iam/v1/policy.rb +8 -4
- data/proto_docs/google/protobuf/any.rb +7 -4
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- 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: 906c4eaa4cf770d9782cea5e2c37d5148edfa6564e2adc25905c634f43cd24aa
|
|
4
|
+
data.tar.gz: 3f48ab217caa5c4f29b0b496f566c79793fc1f14e90b7a83099c32fb2faff16f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85f67730e7066a0b49c121cb05928a4b66970d830319400387cbe3fe717b7ddcf4137efc120f487fc653a431b5a79fb2637f6eff984e694e606cf4bab5622244
|
|
7
|
+
data.tar.gz: 49e60517d57b7cabe4c8842fc75c5f797f1b2ca7de176a3b010e5fe03d036c16a407064e5689bbeb1c2d1d6325bbc449e343f8fbf2e15a09024e2152f32fd88e
|
data/README.md
CHANGED
|
@@ -44,7 +44,7 @@ for class and method documentation.
|
|
|
44
44
|
|
|
45
45
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
46
46
|
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
|
47
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
|
47
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
|
|
48
48
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
49
49
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
50
50
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
3
|
# source: google/cloud/batch/v1/batch.proto
|
|
3
4
|
|
|
@@ -13,57 +14,34 @@ require 'google/longrunning/operations_pb'
|
|
|
13
14
|
require 'google/protobuf/empty_pb'
|
|
14
15
|
require 'google/protobuf/timestamp_pb'
|
|
15
16
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
optional :next_page_token, :string, 2
|
|
41
|
-
repeated :unreachable, :string, 3
|
|
42
|
-
end
|
|
43
|
-
add_message "google.cloud.batch.v1.ListTasksRequest" do
|
|
44
|
-
optional :parent, :string, 1
|
|
45
|
-
optional :filter, :string, 2
|
|
46
|
-
optional :page_size, :int32, 3
|
|
47
|
-
optional :page_token, :string, 4
|
|
48
|
-
end
|
|
49
|
-
add_message "google.cloud.batch.v1.ListTasksResponse" do
|
|
50
|
-
repeated :tasks, :message, 1, "google.cloud.batch.v1.Task"
|
|
51
|
-
optional :next_page_token, :string, 2
|
|
52
|
-
repeated :unreachable, :string, 3
|
|
53
|
-
end
|
|
54
|
-
add_message "google.cloud.batch.v1.GetTaskRequest" do
|
|
55
|
-
optional :name, :string, 1
|
|
56
|
-
end
|
|
57
|
-
add_message "google.cloud.batch.v1.OperationMetadata" do
|
|
58
|
-
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
|
59
|
-
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
|
60
|
-
optional :target, :string, 3
|
|
61
|
-
optional :verb, :string, 4
|
|
62
|
-
optional :status_message, :string, 5
|
|
63
|
-
optional :requested_cancellation, :bool, 6
|
|
64
|
-
optional :api_version, :string, 7
|
|
17
|
+
|
|
18
|
+
descriptor_data = "\n!google/cloud/batch/v1/batch.proto\x12\x15google.cloud.batch.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/cloud/batch/v1/job.proto\x1a google/cloud/batch/v1/task.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x9b\x01\n\x10\x43reateJobRequest\x12\x30\n\x06parent\x18\x01 \x01(\tB \xe0\x41\x02\xfa\x41\x1a\x12\x18\x62\x61tch.googleapis.com/Job\x12\x0e\n\x06job_id\x18\x02 \x01(\t\x12,\n\x03job\x18\x03 \x01(\x0b\x32\x1a.google.cloud.batch.v1.JobB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"?\n\rGetJobRequest\x12.\n\x04name\x18\x01 \x01(\tB \xe0\x41\x02\xfa\x41\x1a\n\x18\x62\x61tch.googleapis.com/Job\"N\n\x10\x44\x65leteJobRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x06reason\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"X\n\x0fListJobsRequest\x12\x0e\n\x06parent\x18\x01 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"j\n\x10ListJobsResponse\x12(\n\x04jobs\x18\x01 \x03(\x0b\x32\x1a.google.cloud.batch.v1.Job\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x81\x01\n\x10ListTasksRequest\x12\x36\n\x06parent\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x62\x61tch.googleapis.com/TaskGroup\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\t\"m\n\x11ListTasksResponse\x12*\n\x05tasks\x18\x01 \x03(\x0b\x32\x1b.google.cloud.batch.v1.Task\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"A\n\x0eGetTaskRequest\x12/\n\x04name\x18\x01 \x01(\tB!\xe0\x41\x02\xfa\x41\x1b\n\x19\x62\x61tch.googleapis.com/Task\"\x80\x02\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0estatus_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16requested_cancellation\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\x32\xb6\x08\n\x0c\x42\x61tchService\x12\x9b\x01\n\tCreateJob\x12\'.google.cloud.batch.v1.CreateJobRequest\x1a\x1a.google.cloud.batch.v1.Job\"I\x82\xd3\xe4\x93\x02/\"(/v1/{parent=projects/*/locations/*}/jobs:\x03job\xda\x41\x11parent,job,job_id\x12\x83\x01\n\x06GetJob\x12$.google.cloud.batch.v1.GetJobRequest\x1a\x1a.google.cloud.batch.v1.Job\"7\x82\xd3\xe4\x93\x02*\x12(/v1/{name=projects/*/locations/*/jobs/*}\xda\x41\x04name\x12\xcf\x01\n\tDeleteJob\x12\'.google.cloud.batch.v1.DeleteJobRequest\x1a\x1d.google.longrunning.Operation\"z\x82\xd3\xe4\x93\x02**(/v1/{name=projects/*/locations/*/jobs/*}\xda\x41\x04name\xca\x41@\n\x15google.protobuf.Empty\x12\'google.cloud.batch.v1.OperationMetadata\x12\x96\x01\n\x08ListJobs\x12&.google.cloud.batch.v1.ListJobsRequest\x1a\'.google.cloud.batch.v1.ListJobsResponse\"9\x82\xd3\xe4\x93\x02*\x12(/v1/{parent=projects/*/locations/*}/jobs\xda\x41\x06parent\x12\x9b\x01\n\x07GetTask\x12%.google.cloud.batch.v1.GetTaskRequest\x1a\x1b.google.cloud.batch.v1.Task\"L\x82\xd3\xe4\x93\x02?\x12=/v1/{name=projects/*/locations/*/jobs/*/taskGroups/*/tasks/*}\xda\x41\x04name\x12\xae\x01\n\tListTasks\x12\'.google.cloud.batch.v1.ListTasksRequest\x1a(.google.cloud.batch.v1.ListTasksResponse\"N\x82\xd3\xe4\x93\x02?\x12=/v1/{parent=projects/*/locations/*/jobs/*/taskGroups/*}/tasks\xda\x41\x06parent\x1aH\xca\x41\x14\x62\x61tch.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xab\x01\n\x19\x63om.google.cloud.batch.v1B\nBatchProtoP\x01Z/cloud.google.com/go/batch/apiv1/batchpb;batchpb\xa2\x02\x03GCB\xaa\x02\x15Google.Cloud.Batch.V1\xca\x02\x15Google\\Cloud\\Batch\\V1\xea\x02\x18Google::Cloud::Batch::V1b\x06proto3"
|
|
19
|
+
|
|
20
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
21
|
+
|
|
22
|
+
begin
|
|
23
|
+
pool.add_serialized_file(descriptor_data)
|
|
24
|
+
rescue TypeError => e
|
|
25
|
+
# Compatibility code: will be removed in the next major version.
|
|
26
|
+
require 'google/protobuf/descriptor_pb'
|
|
27
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
28
|
+
parsed.clear_dependency
|
|
29
|
+
serialized = parsed.class.encode(parsed)
|
|
30
|
+
file = pool.add_serialized_file(serialized)
|
|
31
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
32
|
+
imports = [
|
|
33
|
+
["google.cloud.batch.v1.Job", "google/cloud/batch/v1/job.proto"],
|
|
34
|
+
["google.cloud.batch.v1.Task", "google/cloud/batch/v1/task.proto"],
|
|
35
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
|
36
|
+
]
|
|
37
|
+
imports.each do |type_name, expected_filename|
|
|
38
|
+
import_file = pool.lookup(type_name).file_descriptor
|
|
39
|
+
if import_file.name != expected_filename
|
|
40
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
65
41
|
end
|
|
66
42
|
end
|
|
43
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
|
44
|
+
warn "This will become an error in the next major version."
|
|
67
45
|
end
|
|
68
46
|
|
|
69
47
|
module Google
|
|
@@ -150,7 +150,7 @@ module Google
|
|
|
150
150
|
credentials = @config.credentials
|
|
151
151
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
|
152
152
|
# but only if the default endpoint does not have a region prefix.
|
|
153
|
-
enable_self_signed_jwt = @config.endpoint ==
|
|
153
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
|
154
154
|
!@config.endpoint.split(".").first.include?("-")
|
|
155
155
|
credentials ||= Credentials.default scope: @config.scope,
|
|
156
156
|
enable_self_signed_jwt: enable_self_signed_jwt
|
|
@@ -822,9 +822,9 @@ module Google
|
|
|
822
822
|
# * (`String`) The path to a service account key file in JSON format
|
|
823
823
|
# * (`Hash`) A service account key as a Hash
|
|
824
824
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
825
|
-
# (see the [googleauth docs](https://
|
|
825
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
826
826
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
827
|
-
# (see the [signet docs](https://
|
|
827
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
828
828
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
|
829
829
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
830
830
|
# * (`nil`) indicating no credentials
|
|
@@ -866,7 +866,9 @@ module Google
|
|
|
866
866
|
class Configuration
|
|
867
867
|
extend ::Gapic::Config
|
|
868
868
|
|
|
869
|
-
|
|
869
|
+
DEFAULT_ENDPOINT = "batch.googleapis.com"
|
|
870
|
+
|
|
871
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
|
870
872
|
config_attr :credentials, nil do |value|
|
|
871
873
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
|
872
874
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
|
@@ -620,9 +620,9 @@ module Google
|
|
|
620
620
|
# * (`String`) The path to a service account key file in JSON format
|
|
621
621
|
# * (`Hash`) A service account key as a Hash
|
|
622
622
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
623
|
-
# (see the [googleauth docs](https://
|
|
623
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
624
624
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
625
|
-
# (see the [signet docs](https://
|
|
625
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
626
626
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
|
627
627
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
628
628
|
# * (`nil`) indicating no credentials
|
|
@@ -664,7 +664,9 @@ module Google
|
|
|
664
664
|
class Configuration
|
|
665
665
|
extend ::Gapic::Config
|
|
666
666
|
|
|
667
|
-
|
|
667
|
+
DEFAULT_ENDPOINT = "batch.googleapis.com"
|
|
668
|
+
|
|
669
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
|
668
670
|
config_attr :credentials, nil do |value|
|
|
669
671
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
|
670
672
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
|
@@ -146,7 +146,7 @@ module Google
|
|
|
146
146
|
credentials = @config.credentials
|
|
147
147
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
|
148
148
|
# but only if the default endpoint does not have a region prefix.
|
|
149
|
-
enable_self_signed_jwt = @config.endpoint ==
|
|
149
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
|
150
150
|
!@config.endpoint.split(".").first.include?("-")
|
|
151
151
|
credentials ||= Credentials.default scope: @config.scope,
|
|
152
152
|
enable_self_signed_jwt: enable_self_signed_jwt
|
|
@@ -659,9 +659,9 @@ module Google
|
|
|
659
659
|
# * (`String`) The path to a service account key file in JSON format
|
|
660
660
|
# * (`Hash`) A service account key as a Hash
|
|
661
661
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
662
|
-
# (see the [googleauth docs](https://
|
|
662
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
663
663
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
664
|
-
# (see the [signet docs](https://
|
|
664
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
665
665
|
# * (`nil`) indicating no credentials
|
|
666
666
|
# @return [::Object]
|
|
667
667
|
# @!attribute [rw] scope
|
|
@@ -694,7 +694,9 @@ module Google
|
|
|
694
694
|
class Configuration
|
|
695
695
|
extend ::Gapic::Config
|
|
696
696
|
|
|
697
|
-
|
|
697
|
+
DEFAULT_ENDPOINT = "batch.googleapis.com"
|
|
698
|
+
|
|
699
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
|
698
700
|
config_attr :credentials, nil do |value|
|
|
699
701
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
|
700
702
|
allowed.any? { |klass| klass === value }
|
|
@@ -411,9 +411,9 @@ module Google
|
|
|
411
411
|
# * (`String`) The path to a service account key file in JSON format
|
|
412
412
|
# * (`Hash`) A service account key as a Hash
|
|
413
413
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
414
|
-
# (see the [googleauth docs](https://
|
|
414
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
415
415
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
416
|
-
# (see the [signet docs](https://
|
|
416
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
417
417
|
# * (`nil`) indicating no credentials
|
|
418
418
|
# @return [::Object]
|
|
419
419
|
# @!attribute [rw] scope
|
|
@@ -446,7 +446,9 @@ module Google
|
|
|
446
446
|
class Configuration
|
|
447
447
|
extend ::Gapic::Config
|
|
448
448
|
|
|
449
|
-
|
|
449
|
+
DEFAULT_ENDPOINT = "batch.googleapis.com"
|
|
450
|
+
|
|
451
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
|
450
452
|
config_attr :credentials, nil do |value|
|
|
451
453
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
|
452
454
|
allowed.any? { |klass| klass === value }
|
|
@@ -567,7 +569,7 @@ module Google
|
|
|
567
569
|
|
|
568
570
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_list_operations_request request_pb
|
|
569
571
|
query_string_params = if query_string_params.any?
|
|
570
|
-
query_string_params.to_h { |p| p.split
|
|
572
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
571
573
|
else
|
|
572
574
|
{}
|
|
573
575
|
end
|
|
@@ -605,7 +607,7 @@ module Google
|
|
|
605
607
|
|
|
606
608
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_get_operation_request request_pb
|
|
607
609
|
query_string_params = if query_string_params.any?
|
|
608
|
-
query_string_params.to_h { |p| p.split
|
|
610
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
609
611
|
else
|
|
610
612
|
{}
|
|
611
613
|
end
|
|
@@ -643,7 +645,7 @@ module Google
|
|
|
643
645
|
|
|
644
646
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_delete_operation_request request_pb
|
|
645
647
|
query_string_params = if query_string_params.any?
|
|
646
|
-
query_string_params.to_h { |p| p.split
|
|
648
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
647
649
|
else
|
|
648
650
|
{}
|
|
649
651
|
end
|
|
@@ -681,7 +683,7 @@ module Google
|
|
|
681
683
|
|
|
682
684
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_cancel_operation_request request_pb
|
|
683
685
|
query_string_params = if query_string_params.any?
|
|
684
|
-
query_string_params.to_h { |p| p.split
|
|
686
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
685
687
|
else
|
|
686
688
|
{}
|
|
687
689
|
end
|
|
@@ -59,7 +59,7 @@ module Google
|
|
|
59
59
|
|
|
60
60
|
verb, uri, query_string_params, body = ServiceStub.transcode_create_job_request request_pb
|
|
61
61
|
query_string_params = if query_string_params.any?
|
|
62
|
-
query_string_params.to_h { |p| p.split
|
|
62
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
63
63
|
else
|
|
64
64
|
{}
|
|
65
65
|
end
|
|
@@ -97,7 +97,7 @@ module Google
|
|
|
97
97
|
|
|
98
98
|
verb, uri, query_string_params, body = ServiceStub.transcode_get_job_request request_pb
|
|
99
99
|
query_string_params = if query_string_params.any?
|
|
100
|
-
query_string_params.to_h { |p| p.split
|
|
100
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
101
101
|
else
|
|
102
102
|
{}
|
|
103
103
|
end
|
|
@@ -135,7 +135,7 @@ module Google
|
|
|
135
135
|
|
|
136
136
|
verb, uri, query_string_params, body = ServiceStub.transcode_delete_job_request request_pb
|
|
137
137
|
query_string_params = if query_string_params.any?
|
|
138
|
-
query_string_params.to_h { |p| p.split
|
|
138
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
139
139
|
else
|
|
140
140
|
{}
|
|
141
141
|
end
|
|
@@ -173,7 +173,7 @@ module Google
|
|
|
173
173
|
|
|
174
174
|
verb, uri, query_string_params, body = ServiceStub.transcode_list_jobs_request request_pb
|
|
175
175
|
query_string_params = if query_string_params.any?
|
|
176
|
-
query_string_params.to_h { |p| p.split
|
|
176
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
177
177
|
else
|
|
178
178
|
{}
|
|
179
179
|
end
|
|
@@ -211,7 +211,7 @@ module Google
|
|
|
211
211
|
|
|
212
212
|
verb, uri, query_string_params, body = ServiceStub.transcode_get_task_request request_pb
|
|
213
213
|
query_string_params = if query_string_params.any?
|
|
214
|
-
query_string_params.to_h { |p| p.split
|
|
214
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
215
215
|
else
|
|
216
216
|
{}
|
|
217
217
|
end
|
|
@@ -249,7 +249,7 @@ module Google
|
|
|
249
249
|
|
|
250
250
|
verb, uri, query_string_params, body = ServiceStub.transcode_list_tasks_request request_pb
|
|
251
251
|
query_string_params = if query_string_params.any?
|
|
252
|
-
query_string_params.to_h { |p| p.split
|
|
252
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
253
253
|
else
|
|
254
254
|
{}
|
|
255
255
|
end
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
3
|
# source: google/cloud/batch/v1/job.proto
|
|
3
4
|
|
|
@@ -9,144 +10,34 @@ require 'google/cloud/batch/v1/task_pb'
|
|
|
9
10
|
require 'google/protobuf/duration_pb'
|
|
10
11
|
require 'google/protobuf/timestamp_pb'
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
add_message "google.cloud.batch.v1.JobStatus" do
|
|
37
|
-
optional :state, :enum, 1, "google.cloud.batch.v1.JobStatus.State"
|
|
38
|
-
repeated :status_events, :message, 2, "google.cloud.batch.v1.StatusEvent"
|
|
39
|
-
map :task_groups, :string, :message, 4, "google.cloud.batch.v1.JobStatus.TaskGroupStatus"
|
|
40
|
-
optional :run_duration, :message, 5, "google.protobuf.Duration"
|
|
41
|
-
end
|
|
42
|
-
add_message "google.cloud.batch.v1.JobStatus.InstanceStatus" do
|
|
43
|
-
optional :machine_type, :string, 1
|
|
44
|
-
optional :provisioning_model, :enum, 2, "google.cloud.batch.v1.AllocationPolicy.ProvisioningModel"
|
|
45
|
-
optional :task_pack, :int64, 3
|
|
46
|
-
optional :boot_disk, :message, 4, "google.cloud.batch.v1.AllocationPolicy.Disk"
|
|
47
|
-
end
|
|
48
|
-
add_message "google.cloud.batch.v1.JobStatus.TaskGroupStatus" do
|
|
49
|
-
map :counts, :string, :int64, 1
|
|
50
|
-
repeated :instances, :message, 2, "google.cloud.batch.v1.JobStatus.InstanceStatus"
|
|
51
|
-
end
|
|
52
|
-
add_enum "google.cloud.batch.v1.JobStatus.State" do
|
|
53
|
-
value :STATE_UNSPECIFIED, 0
|
|
54
|
-
value :QUEUED, 1
|
|
55
|
-
value :SCHEDULED, 2
|
|
56
|
-
value :RUNNING, 3
|
|
57
|
-
value :SUCCEEDED, 4
|
|
58
|
-
value :FAILED, 5
|
|
59
|
-
value :DELETION_IN_PROGRESS, 6
|
|
60
|
-
end
|
|
61
|
-
add_message "google.cloud.batch.v1.JobNotification" do
|
|
62
|
-
optional :pubsub_topic, :string, 1
|
|
63
|
-
optional :message, :message, 2, "google.cloud.batch.v1.JobNotification.Message"
|
|
64
|
-
end
|
|
65
|
-
add_message "google.cloud.batch.v1.JobNotification.Message" do
|
|
66
|
-
optional :type, :enum, 1, "google.cloud.batch.v1.JobNotification.Type"
|
|
67
|
-
optional :new_job_state, :enum, 2, "google.cloud.batch.v1.JobStatus.State"
|
|
68
|
-
optional :new_task_state, :enum, 3, "google.cloud.batch.v1.TaskStatus.State"
|
|
69
|
-
end
|
|
70
|
-
add_enum "google.cloud.batch.v1.JobNotification.Type" do
|
|
71
|
-
value :TYPE_UNSPECIFIED, 0
|
|
72
|
-
value :JOB_STATE_CHANGED, 1
|
|
73
|
-
value :TASK_STATE_CHANGED, 2
|
|
74
|
-
end
|
|
75
|
-
add_message "google.cloud.batch.v1.AllocationPolicy" do
|
|
76
|
-
optional :location, :message, 1, "google.cloud.batch.v1.AllocationPolicy.LocationPolicy"
|
|
77
|
-
repeated :instances, :message, 8, "google.cloud.batch.v1.AllocationPolicy.InstancePolicyOrTemplate"
|
|
78
|
-
optional :service_account, :message, 9, "google.cloud.batch.v1.ServiceAccount"
|
|
79
|
-
map :labels, :string, :string, 6
|
|
80
|
-
optional :network, :message, 7, "google.cloud.batch.v1.AllocationPolicy.NetworkPolicy"
|
|
81
|
-
end
|
|
82
|
-
add_message "google.cloud.batch.v1.AllocationPolicy.LocationPolicy" do
|
|
83
|
-
repeated :allowed_locations, :string, 1
|
|
84
|
-
end
|
|
85
|
-
add_message "google.cloud.batch.v1.AllocationPolicy.Disk" do
|
|
86
|
-
optional :type, :string, 1
|
|
87
|
-
optional :size_gb, :int64, 2
|
|
88
|
-
optional :disk_interface, :string, 6
|
|
89
|
-
oneof :data_source do
|
|
90
|
-
optional :image, :string, 4
|
|
91
|
-
optional :snapshot, :string, 5
|
|
92
|
-
end
|
|
93
|
-
end
|
|
94
|
-
add_message "google.cloud.batch.v1.AllocationPolicy.AttachedDisk" do
|
|
95
|
-
optional :device_name, :string, 3
|
|
96
|
-
oneof :attached do
|
|
97
|
-
optional :new_disk, :message, 1, "google.cloud.batch.v1.AllocationPolicy.Disk"
|
|
98
|
-
optional :existing_disk, :string, 2
|
|
99
|
-
end
|
|
100
|
-
end
|
|
101
|
-
add_message "google.cloud.batch.v1.AllocationPolicy.Accelerator" do
|
|
102
|
-
optional :type, :string, 1
|
|
103
|
-
optional :count, :int64, 2
|
|
104
|
-
optional :install_gpu_drivers, :bool, 3
|
|
105
|
-
end
|
|
106
|
-
add_message "google.cloud.batch.v1.AllocationPolicy.InstancePolicy" do
|
|
107
|
-
optional :machine_type, :string, 2
|
|
108
|
-
optional :min_cpu_platform, :string, 3
|
|
109
|
-
optional :provisioning_model, :enum, 4, "google.cloud.batch.v1.AllocationPolicy.ProvisioningModel"
|
|
110
|
-
repeated :accelerators, :message, 5, "google.cloud.batch.v1.AllocationPolicy.Accelerator"
|
|
111
|
-
optional :boot_disk, :message, 8, "google.cloud.batch.v1.AllocationPolicy.Disk"
|
|
112
|
-
repeated :disks, :message, 6, "google.cloud.batch.v1.AllocationPolicy.AttachedDisk"
|
|
113
|
-
end
|
|
114
|
-
add_message "google.cloud.batch.v1.AllocationPolicy.InstancePolicyOrTemplate" do
|
|
115
|
-
optional :install_gpu_drivers, :bool, 3
|
|
116
|
-
oneof :policy_template do
|
|
117
|
-
optional :policy, :message, 1, "google.cloud.batch.v1.AllocationPolicy.InstancePolicy"
|
|
118
|
-
optional :instance_template, :string, 2
|
|
119
|
-
end
|
|
120
|
-
end
|
|
121
|
-
add_message "google.cloud.batch.v1.AllocationPolicy.NetworkInterface" do
|
|
122
|
-
optional :network, :string, 1
|
|
123
|
-
optional :subnetwork, :string, 2
|
|
124
|
-
optional :no_external_ip_address, :bool, 3
|
|
125
|
-
end
|
|
126
|
-
add_message "google.cloud.batch.v1.AllocationPolicy.NetworkPolicy" do
|
|
127
|
-
repeated :network_interfaces, :message, 1, "google.cloud.batch.v1.AllocationPolicy.NetworkInterface"
|
|
128
|
-
end
|
|
129
|
-
add_enum "google.cloud.batch.v1.AllocationPolicy.ProvisioningModel" do
|
|
130
|
-
value :PROVISIONING_MODEL_UNSPECIFIED, 0
|
|
131
|
-
value :STANDARD, 1
|
|
132
|
-
value :SPOT, 2
|
|
133
|
-
value :PREEMPTIBLE, 3
|
|
134
|
-
end
|
|
135
|
-
add_message "google.cloud.batch.v1.TaskGroup" do
|
|
136
|
-
optional :name, :string, 1
|
|
137
|
-
optional :task_spec, :message, 3, "google.cloud.batch.v1.TaskSpec"
|
|
138
|
-
optional :task_count, :int64, 4
|
|
139
|
-
optional :parallelism, :int64, 5
|
|
140
|
-
repeated :task_environments, :message, 9, "google.cloud.batch.v1.Environment"
|
|
141
|
-
optional :task_count_per_node, :int64, 10
|
|
142
|
-
optional :require_hosts_file, :bool, 11
|
|
143
|
-
optional :permissive_ssh, :bool, 12
|
|
144
|
-
end
|
|
145
|
-
add_message "google.cloud.batch.v1.ServiceAccount" do
|
|
146
|
-
optional :email, :string, 1
|
|
147
|
-
repeated :scopes, :string, 2
|
|
13
|
+
|
|
14
|
+
descriptor_data = "\n\x1fgoogle/cloud/batch/v1/job.proto\x12\x15google.cloud.batch.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a google/cloud/batch/v1/task.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x90\x05\n\x03Job\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x08priority\x18\x03 \x01(\x03\x12:\n\x0btask_groups\x18\x04 \x03(\x0b\x32 .google.cloud.batch.v1.TaskGroupB\x03\xe0\x41\x02\x12\x42\n\x11\x61llocation_policy\x18\x07 \x01(\x0b\x32\'.google.cloud.batch.v1.AllocationPolicy\x12\x36\n\x06labels\x18\x08 \x03(\x0b\x32&.google.cloud.batch.v1.Job.LabelsEntry\x12\x35\n\x06status\x18\t \x01(\x0b\x32 .google.cloud.batch.v1.JobStatusB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x36\n\x0blogs_policy\x18\r \x01(\x0b\x32!.google.cloud.batch.v1.LogsPolicy\x12=\n\rnotifications\x18\x0e \x03(\x0b\x32&.google.cloud.batch.v1.JobNotification\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:Q\xea\x41N\n\x18\x62\x61tch.googleapis.com/Job\x12\x32projects/{project}/locations/{location}/jobs/{job}\"\xac\x01\n\nLogsPolicy\x12\x42\n\x0b\x64\x65stination\x18\x01 \x01(\x0e\x32-.google.cloud.batch.v1.LogsPolicy.Destination\x12\x11\n\tlogs_path\x18\x02 \x01(\t\"G\n\x0b\x44\x65stination\x12\x1b\n\x17\x44\x45STINATION_UNSPECIFIED\x10\x00\x12\x11\n\rCLOUD_LOGGING\x10\x01\x12\x08\n\x04PATH\x10\x02\"\x80\x07\n\tJobStatus\x12\x35\n\x05state\x18\x01 \x01(\x0e\x32&.google.cloud.batch.v1.JobStatus.State\x12\x39\n\rstatus_events\x18\x02 \x03(\x0b\x32\".google.cloud.batch.v1.StatusEvent\x12\x45\n\x0btask_groups\x18\x04 \x03(\x0b\x32\x30.google.cloud.batch.v1.JobStatus.TaskGroupsEntry\x12/\n\x0crun_duration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.Duration\x1a\xd1\x01\n\x0eInstanceStatus\x12\x14\n\x0cmachine_type\x18\x01 \x01(\t\x12U\n\x12provisioning_model\x18\x02 \x01(\x0e\x32\x39.google.cloud.batch.v1.AllocationPolicy.ProvisioningModel\x12\x11\n\ttask_pack\x18\x03 \x01(\x03\x12?\n\tboot_disk\x18\x04 \x01(\x0b\x32,.google.cloud.batch.v1.AllocationPolicy.Disk\x1a\xd2\x01\n\x0fTaskGroupStatus\x12L\n\x06\x63ounts\x18\x01 \x03(\x0b\x32<.google.cloud.batch.v1.JobStatus.TaskGroupStatus.CountsEntry\x12\x42\n\tinstances\x18\x02 \x03(\x0b\x32/.google.cloud.batch.v1.JobStatus.InstanceStatus\x1a-\n\x0b\x43ountsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x03:\x02\x38\x01\x1a\x63\n\x0fTaskGroupsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12?\n\x05value\x18\x02 \x01(\x0b\x32\x30.google.cloud.batch.v1.JobStatus.TaskGroupStatus:\x02\x38\x01\"{\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06QUEUED\x10\x01\x12\r\n\tSCHEDULED\x10\x02\x12\x0b\n\x07RUNNING\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x18\n\x14\x44\x45LETION_IN_PROGRESS\x10\x06\"\xfc\x02\n\x0fJobNotification\x12\x14\n\x0cpubsub_topic\x18\x01 \x01(\t\x12?\n\x07message\x18\x02 \x01(\x0b\x32..google.cloud.batch.v1.JobNotification.Message\x1a\xc4\x01\n\x07Message\x12\x39\n\x04type\x18\x01 \x01(\x0e\x32+.google.cloud.batch.v1.JobNotification.Type\x12=\n\rnew_job_state\x18\x02 \x01(\x0e\x32&.google.cloud.batch.v1.JobStatus.State\x12?\n\x0enew_task_state\x18\x03 \x01(\x0e\x32\'.google.cloud.batch.v1.TaskStatus.State\"K\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x15\n\x11JOB_STATE_CHANGED\x10\x01\x12\x16\n\x12TASK_STATE_CHANGED\x10\x02\"\xf2\r\n\x10\x41llocationPolicy\x12H\n\x08location\x18\x01 \x01(\x0b\x32\x36.google.cloud.batch.v1.AllocationPolicy.LocationPolicy\x12S\n\tinstances\x18\x08 \x03(\x0b\x32@.google.cloud.batch.v1.AllocationPolicy.InstancePolicyOrTemplate\x12>\n\x0fservice_account\x18\t \x01(\x0b\x32%.google.cloud.batch.v1.ServiceAccount\x12\x43\n\x06labels\x18\x06 \x03(\x0b\x32\x33.google.cloud.batch.v1.AllocationPolicy.LabelsEntry\x12\x46\n\x07network\x18\x07 \x01(\x0b\x32\x35.google.cloud.batch.v1.AllocationPolicy.NetworkPolicy\x12J\n\tplacement\x18\n \x01(\x0b\x32\x37.google.cloud.batch.v1.AllocationPolicy.PlacementPolicy\x1a+\n\x0eLocationPolicy\x12\x19\n\x11\x61llowed_locations\x18\x01 \x03(\t\x1aq\n\x04\x44isk\x12\x0f\n\x05image\x18\x04 \x01(\tH\x00\x12\x12\n\x08snapshot\x18\x05 \x01(\tH\x00\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x0f\n\x07size_gb\x18\x02 \x01(\x03\x12\x16\n\x0e\x64isk_interface\x18\x06 \x01(\tB\r\n\x0b\x64\x61ta_source\x1a\x8a\x01\n\x0c\x41ttachedDisk\x12@\n\x08new_disk\x18\x01 \x01(\x0b\x32,.google.cloud.batch.v1.AllocationPolicy.DiskH\x00\x12\x17\n\rexisting_disk\x18\x02 \x01(\tH\x00\x12\x13\n\x0b\x64\x65vice_name\x18\x03 \x01(\tB\n\n\x08\x61ttached\x1aK\n\x0b\x41\x63\x63\x65lerator\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\r\n\x05\x63ount\x18\x02 \x01(\x03\x12\x1f\n\x13install_gpu_drivers\x18\x03 \x01(\x08\x42\x02\x18\x01\x1a\xe8\x02\n\x0eInstancePolicy\x12\x14\n\x0cmachine_type\x18\x02 \x01(\t\x12\x18\n\x10min_cpu_platform\x18\x03 \x01(\t\x12U\n\x12provisioning_model\x18\x04 \x01(\x0e\x32\x39.google.cloud.batch.v1.AllocationPolicy.ProvisioningModel\x12I\n\x0c\x61\x63\x63\x65lerators\x18\x05 \x03(\x0b\x32\x33.google.cloud.batch.v1.AllocationPolicy.Accelerator\x12?\n\tboot_disk\x18\x08 \x01(\x0b\x32,.google.cloud.batch.v1.AllocationPolicy.Disk\x12\x43\n\x05\x64isks\x18\x06 \x03(\x0b\x32\x34.google.cloud.batch.v1.AllocationPolicy.AttachedDisk\x1a\xb1\x01\n\x18InstancePolicyOrTemplate\x12H\n\x06policy\x18\x01 \x01(\x0b\x32\x36.google.cloud.batch.v1.AllocationPolicy.InstancePolicyH\x00\x12\x1b\n\x11instance_template\x18\x02 \x01(\tH\x00\x12\x1b\n\x13install_gpu_drivers\x18\x03 \x01(\x08\x42\x11\n\x0fpolicy_template\x1aW\n\x10NetworkInterface\x12\x0f\n\x07network\x18\x01 \x01(\t\x12\x12\n\nsubnetwork\x18\x02 \x01(\t\x12\x1e\n\x16no_external_ip_address\x18\x03 \x01(\x08\x1a\x65\n\rNetworkPolicy\x12T\n\x12network_interfaces\x18\x01 \x03(\x0b\x32\x38.google.cloud.batch.v1.AllocationPolicy.NetworkInterface\x1a<\n\x0fPlacementPolicy\x12\x13\n\x0b\x63ollocation\x18\x01 \x01(\t\x12\x14\n\x0cmax_distance\x18\x02 \x01(\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"`\n\x11ProvisioningModel\x12\"\n\x1ePROVISIONING_MODEL_UNSPECIFIED\x10\x00\x12\x0c\n\x08STANDARD\x10\x01\x12\x08\n\x04SPOT\x10\x02\x12\x0f\n\x0bPREEMPTIBLE\x10\x03\"\x81\x03\n\tTaskGroup\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x37\n\ttask_spec\x18\x03 \x01(\x0b\x32\x1f.google.cloud.batch.v1.TaskSpecB\x03\xe0\x41\x02\x12\x12\n\ntask_count\x18\x04 \x01(\x03\x12\x13\n\x0bparallelism\x18\x05 \x01(\x03\x12=\n\x11task_environments\x18\t \x03(\x0b\x32\".google.cloud.batch.v1.Environment\x12\x1b\n\x13task_count_per_node\x18\n \x01(\x03\x12\x1a\n\x12require_hosts_file\x18\x0b \x01(\x08\x12\x16\n\x0epermissive_ssh\x18\x0c \x01(\x08:o\xea\x41l\n\x1e\x62\x61tch.googleapis.com/TaskGroup\x12Jprojects/{project}/locations/{location}/jobs/{job}/taskGroups/{task_group}\"/\n\x0eServiceAccount\x12\r\n\x05\x65mail\x18\x01 \x01(\t\x12\x0e\n\x06scopes\x18\x02 \x03(\tB\xa9\x01\n\x19\x63om.google.cloud.batch.v1B\x08JobProtoP\x01Z/cloud.google.com/go/batch/apiv1/batchpb;batchpb\xa2\x02\x03GCB\xaa\x02\x15Google.Cloud.Batch.V1\xca\x02\x15Google\\Cloud\\Batch\\V1\xea\x02\x18Google::Cloud::Batch::V1b\x06proto3"
|
|
15
|
+
|
|
16
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
17
|
+
|
|
18
|
+
begin
|
|
19
|
+
pool.add_serialized_file(descriptor_data)
|
|
20
|
+
rescue TypeError => e
|
|
21
|
+
# Compatibility code: will be removed in the next major version.
|
|
22
|
+
require 'google/protobuf/descriptor_pb'
|
|
23
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
24
|
+
parsed.clear_dependency
|
|
25
|
+
serialized = parsed.class.encode(parsed)
|
|
26
|
+
file = pool.add_serialized_file(serialized)
|
|
27
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
28
|
+
imports = [
|
|
29
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
|
30
|
+
["google.cloud.batch.v1.StatusEvent", "google/cloud/batch/v1/task.proto"],
|
|
31
|
+
["google.protobuf.Duration", "google/protobuf/duration.proto"],
|
|
32
|
+
]
|
|
33
|
+
imports.each do |type_name, expected_filename|
|
|
34
|
+
import_file = pool.lookup(type_name).file_descriptor
|
|
35
|
+
if import_file.name != expected_filename
|
|
36
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
148
37
|
end
|
|
149
38
|
end
|
|
39
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
|
40
|
+
warn "This will become an error in the next major version."
|
|
150
41
|
end
|
|
151
42
|
|
|
152
43
|
module Google
|
|
@@ -172,6 +63,7 @@ module Google
|
|
|
172
63
|
AllocationPolicy::InstancePolicyOrTemplate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.batch.v1.AllocationPolicy.InstancePolicyOrTemplate").msgclass
|
|
173
64
|
AllocationPolicy::NetworkInterface = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.batch.v1.AllocationPolicy.NetworkInterface").msgclass
|
|
174
65
|
AllocationPolicy::NetworkPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.batch.v1.AllocationPolicy.NetworkPolicy").msgclass
|
|
66
|
+
AllocationPolicy::PlacementPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.batch.v1.AllocationPolicy.PlacementPolicy").msgclass
|
|
175
67
|
AllocationPolicy::ProvisioningModel = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.batch.v1.AllocationPolicy.ProvisioningModel").enummodule
|
|
176
68
|
TaskGroup = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.batch.v1.TaskGroup").msgclass
|
|
177
69
|
ServiceAccount = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.batch.v1.ServiceAccount").msgclass
|