googleapis-common-protos 1.3.11 → 1.3.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -3
- data/lib/google/longrunning/operations_services_pb.rb +5 -5
- data/lib/googleapis/common/protos/version.rb +21 -0
- metadata +11 -62
- data/.gitignore +0 -10
- data/Gemfile +0 -7
- data/Rakefile +0 -63
- data/googleapis-common-protos.gemspec +0 -44
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbaf3946773a4a4da950a0edb97eb5353b5796bd4c5df17d5e2e115b8b1ae1f9
|
4
|
+
data.tar.gz: 828721981b569774a828e26dbfb4233fb3270a7185328d0451fc6088a0de4cd5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 237fbaae16543dd657657bbd4d3caa540aa61d9feec99fc2b1b67ba903f732f19597705c763cfef109832b32e68639beba6a18dcd217b00da85555c089fb848d
|
7
|
+
data.tar.gz: 5045b785dc8cced4bfade2442ff271d18e257aad491cb390ee1fcda2993b28aea4f34a5ec9c549a3c241a11063c8f1ed8d5078648ebfde495e3d23304b877b2f
|
data/CHANGELOG.md
CHANGED
@@ -1,16 +1,21 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
-
|
3
|
+
## 1.3.12 (2021-09-03)
|
4
|
+
|
5
|
+
* Removed unnecessary files from the gem package
|
6
|
+
* Update googleapis-common-protos-types dependency to 1.2.
|
7
|
+
|
8
|
+
## 1.3.11 / 2021-02-01
|
4
9
|
|
5
10
|
* Fully qualify proto names internally.
|
6
11
|
* Update googleapis-common-protos-types dependency to 1.0.6.
|
7
12
|
* Require protobuf 3.14.
|
8
13
|
|
9
|
-
|
14
|
+
## 1.3.10 / 2020-04-08
|
10
15
|
|
11
16
|
* Update googleapis-common-protos-types dependency to 1.0.5.
|
12
17
|
* Require protobuf 3.11.
|
13
18
|
|
14
|
-
|
19
|
+
## 1.3.9 / 2019-04-03
|
15
20
|
|
16
21
|
* Add WaitOperation RPC to operations_services_pb.rb and update documentation.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# Source: google/longrunning/operations.proto for package 'google.longrunning'
|
3
3
|
# Original file comments:
|
4
|
-
# Copyright
|
4
|
+
# Copyright 2020 Google LLC
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
7
|
# you may not use this file except in compliance with the License.
|
@@ -33,7 +33,7 @@ module Google
|
|
33
33
|
# so developers can have a consistent client experience.
|
34
34
|
class Service
|
35
35
|
|
36
|
-
include GRPC::GenericService
|
36
|
+
include ::GRPC::GenericService
|
37
37
|
|
38
38
|
self.marshal_class_method = :encode
|
39
39
|
self.unmarshal_class_method = :decode
|
@@ -70,9 +70,9 @@ module Google
|
|
70
70
|
# an [Operation.error][google.longrunning.Operation.error] value with a [google.rpc.Status.code][google.rpc.Status.code] of 1,
|
71
71
|
# corresponding to `Code.CANCELLED`.
|
72
72
|
rpc :CancelOperation, ::Google::Longrunning::CancelOperationRequest, ::Google::Protobuf::Empty
|
73
|
-
# Waits
|
74
|
-
#
|
75
|
-
#
|
73
|
+
# Waits until the specified long-running operation is done or reaches at most
|
74
|
+
# a specified timeout, returning the latest state. If the operation is
|
75
|
+
# already done, the latest state is immediately returned. If the timeout
|
76
76
|
# specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
|
77
77
|
# timeout is used. If the server does not support this method, it returns
|
78
78
|
# `google.rpc.Code.UNIMPLEMENTED`.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2021 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
module Google
|
18
|
+
module CommonProtos
|
19
|
+
VERSION = "1.3.12".freeze
|
20
|
+
end
|
21
|
+
end
|
metadata
CHANGED
@@ -1,35 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: googleapis-common-protos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Google
|
7
|
+
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: googleapis-common-protos-types
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 1.0.6
|
20
|
-
- - "<"
|
17
|
+
- - "~>"
|
21
18
|
- !ruby/object:Gem::Version
|
22
|
-
version: '2
|
19
|
+
version: '1.2'
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- - "
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: 1.0.6
|
30
|
-
- - "<"
|
24
|
+
- - "~>"
|
31
25
|
- !ruby/object:Gem::Version
|
32
|
-
version: '2
|
26
|
+
version: '1.2'
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: google-protobuf
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,62 +52,17 @@ dependencies:
|
|
58
52
|
- - "~>"
|
59
53
|
- !ruby/object:Gem::Version
|
60
54
|
version: '1.27'
|
61
|
-
|
62
|
-
name: bundler
|
63
|
-
requirement: !ruby/object:Gem::Requirement
|
64
|
-
requirements:
|
65
|
-
- - "~>"
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
version: '2.1'
|
68
|
-
type: :development
|
69
|
-
prerelease: false
|
70
|
-
version_requirements: !ruby/object:Gem::Requirement
|
71
|
-
requirements:
|
72
|
-
- - "~>"
|
73
|
-
- !ruby/object:Gem::Version
|
74
|
-
version: '2.1'
|
75
|
-
- !ruby/object:Gem::Dependency
|
76
|
-
name: grpc-tools
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
78
|
-
requirements:
|
79
|
-
- - "~>"
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: '1.27'
|
82
|
-
type: :development
|
83
|
-
prerelease: false
|
84
|
-
version_requirements: !ruby/object:Gem::Requirement
|
85
|
-
requirements:
|
86
|
-
- - "~>"
|
87
|
-
- !ruby/object:Gem::Version
|
88
|
-
version: '1.27'
|
89
|
-
- !ruby/object:Gem::Dependency
|
90
|
-
name: rake
|
91
|
-
requirement: !ruby/object:Gem::Requirement
|
92
|
-
requirements:
|
93
|
-
- - "~>"
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '13.0'
|
96
|
-
type: :development
|
97
|
-
prerelease: false
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - "~>"
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '13.0'
|
103
|
-
description:
|
55
|
+
description: Common gRPC and protocol buffer classes used in Google APIs
|
104
56
|
email:
|
105
57
|
- googleapis-packages@google.com
|
106
58
|
executables: []
|
107
59
|
extensions: []
|
108
60
|
extra_rdoc_files: []
|
109
61
|
files:
|
110
|
-
- ".gitignore"
|
111
62
|
- CHANGELOG.md
|
112
|
-
- Gemfile
|
113
63
|
- README.md
|
114
|
-
- Rakefile
|
115
|
-
- googleapis-common-protos.gemspec
|
116
64
|
- lib/google/longrunning/operations_services_pb.rb
|
65
|
+
- lib/googleapis/common/protos/version.rb
|
117
66
|
homepage: https://github.com/googleapis/common-protos-ruby
|
118
67
|
licenses:
|
119
68
|
- Apache-2.0
|
@@ -126,14 +75,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
126
75
|
requirements:
|
127
76
|
- - ">="
|
128
77
|
- !ruby/object:Gem::Version
|
129
|
-
version: '
|
78
|
+
version: '2.3'
|
130
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
80
|
requirements:
|
132
81
|
- - ">="
|
133
82
|
- !ruby/object:Gem::Version
|
134
83
|
version: '0'
|
135
84
|
requirements: []
|
136
|
-
rubygems_version: 3.
|
85
|
+
rubygems_version: 3.2.17
|
137
86
|
signing_key:
|
138
87
|
specification_version: 4
|
139
88
|
summary: Common gRPC and protocol buffer classes used in Google APIs
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Copyright 2018 Google LLC
|
4
|
-
#
|
5
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
# you may not use this file except in compliance with the License.
|
7
|
-
# You may obtain a copy of the License at
|
8
|
-
#
|
9
|
-
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
#
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
# See the License for the specific language governing permissions and
|
15
|
-
# limitations under the License.
|
16
|
-
|
17
|
-
require 'bundler/gem_tasks'
|
18
|
-
|
19
|
-
desc "Compile the necessary protobuf files."
|
20
|
-
task :compile_protos do
|
21
|
-
Rake::Task[:clean_protos].invoke
|
22
|
-
FileUtils.mkdir 'lib'
|
23
|
-
|
24
|
-
protos = [
|
25
|
-
"../googleapis/google/longrunning/operations.proto"
|
26
|
-
]
|
27
|
-
|
28
|
-
command = []
|
29
|
-
command << "grpc_tools_ruby_protoc"
|
30
|
-
command << "--grpc_out=lib"
|
31
|
-
command << "-I ../googleapis"
|
32
|
-
command += protos
|
33
|
-
full_command = command.join " "
|
34
|
-
|
35
|
-
puts full_command
|
36
|
-
system full_command
|
37
|
-
end
|
38
|
-
|
39
|
-
desc "Test loading all proto files"
|
40
|
-
task :test_loading do
|
41
|
-
puts "\nLoading proto files"
|
42
|
-
Dir.glob("lib/google/**/*_pb.rb") do |path|
|
43
|
-
puts path
|
44
|
-
require_relative path
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
desc "Remove the compiled protos."
|
49
|
-
task :clean_protos do
|
50
|
-
FileUtils.rm_rf "lib"
|
51
|
-
end
|
52
|
-
|
53
|
-
desc "Run the CI build"
|
54
|
-
task :ci do
|
55
|
-
puts "\nCompiling Protos\n"
|
56
|
-
Rake::Task[:compile_protos].invoke
|
57
|
-
Rake::Task[:test_loading].invoke
|
58
|
-
end
|
59
|
-
|
60
|
-
Rake::Task[:build].enhance [:compile_protos]
|
61
|
-
Rake::Task[:clean].enhance [:clean_protos]
|
62
|
-
|
63
|
-
task default: :ci
|
@@ -1,44 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Copyright 2018 Google LLC
|
4
|
-
#
|
5
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
# you may not use this file except in compliance with the License.
|
7
|
-
# You may obtain a copy of the License at
|
8
|
-
#
|
9
|
-
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
#
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
# See the License for the specific language governing permissions and
|
15
|
-
# limitations under the License.
|
16
|
-
|
17
|
-
Gem::Specification.new do |spec|
|
18
|
-
spec.name = "googleapis-common-protos"
|
19
|
-
spec.version = "1.3.11"
|
20
|
-
spec.authors = ["Google Inc"]
|
21
|
-
spec.email = ["googleapis-packages@google.com"]
|
22
|
-
spec.licenses = ["Apache-2.0"]
|
23
|
-
|
24
|
-
spec.summary = "Common gRPC and protocol buffer classes used in Google APIs"
|
25
|
-
spec.homepage = "https://github.com/googleapis/common-protos-ruby"
|
26
|
-
|
27
|
-
# Specify which files should be added to the gem when it is released. The `git
|
28
|
-
# ls-files -z` loads the files in the RubyGem that have been added into git.
|
29
|
-
spec.files = Dir.chdir File.expand_path(__dir__) do
|
30
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
31
|
-
f.match %r{^(test|spec|features)/}
|
32
|
-
end
|
33
|
-
end
|
34
|
-
spec.files += Dir.glob "lib/**/*_pb.rb"
|
35
|
-
spec.require_paths = ["lib"]
|
36
|
-
|
37
|
-
spec.add_dependency "googleapis-common-protos-types", ">= 1.0.6", "< 2.0"
|
38
|
-
spec.add_dependency "google-protobuf", "~> 3.14"
|
39
|
-
spec.add_dependency "grpc", "~> 1.27"
|
40
|
-
|
41
|
-
spec.add_development_dependency "bundler", "~> 2.1"
|
42
|
-
spec.add_development_dependency "grpc-tools", "~> 1.27"
|
43
|
-
spec.add_development_dependency "rake", "~> 13.0"
|
44
|
-
end
|