googleapis-common-protos-types 1.0.1 → 1.0.6

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.
Files changed (59) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +10 -0
  3. data/CHANGELOG.md +37 -0
  4. data/Gemfile +5 -0
  5. data/README.md +19 -0
  6. data/Rakefile +80 -0
  7. data/googleapis-common-protos-types.gemspec +43 -0
  8. data/lib/google/api/annotations_pb.rb +2 -0
  9. data/lib/google/api/auth_pb.rb +39 -29
  10. data/lib/google/api/backend_pb.rb +25 -9
  11. data/lib/google/api/billing_pb.rb +10 -10
  12. data/lib/google/api/client_pb.rb +14 -0
  13. data/lib/google/api/config_change_pb.rb +20 -18
  14. data/lib/google/api/consumer_pb.rb +19 -17
  15. data/lib/google/api/context_pb.rb +13 -9
  16. data/lib/google/api/control_pb.rb +5 -3
  17. data/lib/google/api/distribution_pb.rb +45 -37
  18. data/lib/google/api/documentation_pb.rb +22 -19
  19. data/lib/google/api/endpoint_pb.rb +8 -9
  20. data/lib/google/api/field_behavior_pb.rb +24 -0
  21. data/lib/google/api/http_pb.rb +25 -21
  22. data/lib/google/api/httpbody_pb.rb +8 -4
  23. data/lib/google/api/label_pb.rb +13 -11
  24. data/lib/google/api/launch_stage_pb.rb +25 -0
  25. data/lib/google/api/log_pb.rb +8 -6
  26. data/lib/google/api/logging_pb.rb +11 -10
  27. data/lib/google/api/metric_pb.rb +45 -32
  28. data/lib/google/api/monitored_resource_pb.rb +22 -12
  29. data/lib/google/api/monitoring_pb.rb +11 -10
  30. data/lib/google/api/quota_pb.rb +24 -23
  31. data/lib/google/api/resource_pb.rb +40 -0
  32. data/lib/google/api/service_pb.rb +31 -29
  33. data/lib/google/api/source_info_pb.rb +5 -3
  34. data/lib/google/api/system_parameter_pb.rb +16 -14
  35. data/lib/google/api/usage_pb.rb +13 -12
  36. data/lib/google/logging/type/http_request_pb.rb +30 -18
  37. data/lib/google/logging/type/log_severity_pb.rb +23 -11
  38. data/lib/google/longrunning/operations_pb.rb +46 -32
  39. data/lib/google/rpc/code_pb.rb +21 -19
  40. data/lib/google/rpc/error_details_pb.rb +70 -62
  41. data/lib/google/rpc/status_pb.rb +7 -5
  42. data/lib/google/type/calendar_period_pb.rb +25 -0
  43. data/lib/google/type/color_pb.rb +8 -6
  44. data/lib/google/type/date_pb.rb +7 -5
  45. data/lib/google/type/datetime_pb.rb +34 -0
  46. data/lib/google/type/dayofweek_pb.rb +12 -10
  47. data/lib/google/type/expr_pb.rb +21 -0
  48. data/lib/google/type/fraction_pb.rb +19 -0
  49. data/lib/google/type/interval_pb.rb +20 -0
  50. data/lib/google/type/latlng_pb.rb +6 -4
  51. data/lib/google/type/localized_text_pb.rb +19 -0
  52. data/lib/google/type/money_pb.rb +7 -5
  53. data/lib/google/type/month_pb.rb +30 -0
  54. data/lib/google/type/phone_number_pb.rb +27 -0
  55. data/lib/google/type/postal_address_pb.rb +15 -13
  56. data/lib/google/type/quaternion_pb.rb +21 -0
  57. data/lib/google/type/timeofday_pb.rb +8 -6
  58. metadata +46 -14
  59. data/lib/google/longrunning/operations_services_pb.rb +0 -73
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 9d442173013a3a42a3a97a27d6a3bfa0b6172d7a
4
- data.tar.gz: 098749785680f0b564ab949fd93eaa7906c2de34
2
+ SHA256:
3
+ metadata.gz: fa872e965c2403838b63d3f65084f1ef5392aed6efd7a3efe75b000ca802ca65
4
+ data.tar.gz: b80bd36e396d6dda424b76d67ab34573f9992eaaad22f8060a6df2c43438da1d
5
5
  SHA512:
6
- metadata.gz: 5cecc69920c930fddc2bcd157cdf450ba8b395c5b5c4264604c062965d738a666695855845001e299017fca7032e25d73c2f3eb4479b91a3689a22e7ca4466f8
7
- data.tar.gz: 8b4ac29750d18b9676328d23b6ed39e3696d0bde40f2e01c74fd7b64201eb6bbe7e9331aa6a822289e35852bb5f8ccc2ff69ad34733a0469cffe82443fd32071
6
+ metadata.gz: f100e2325f8ba36cc4ed0cefb8808527fbd303b9d9d13a8c64f44560662f2bf4cb301b895a9fc2d24365f5a2b5c1ce311cb0e1fe0de414f67de7fa17aa6c3f80
7
+ data.tar.gz: 07b1eb845c21fcd8056754bc3f59b06e785e21a5b376250e6bc84bcb78cf6677f2909d7a6273c4f0f60518d8ae17e134f5d48c64b63874906a9460c3e7823c7c
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ Gemfile.lock
2
+ .DS_STORE
3
+ /.bundle/
4
+ /.yardoc
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
data/CHANGELOG.md ADDED
@@ -0,0 +1,37 @@
1
+ # Release History
2
+
3
+ ### 1.0.6 / 2021-02-01
4
+
5
+ * Add Google::Type::Interval type.
6
+ * Add Google::Type::LocalizedText type.
7
+ * Add Google::Type::PhoneNumber and Google::Type::PhoneNumber::ShortCode types.
8
+ * Add "service_root_url" field to Google::Api::Documentation.
9
+ * Add UNORDERED_LIST value to Google::Api::FieldBehavior.
10
+ * Add UNIMPLEMENTED and PRELAUNCH values to Google::Api::LaunchStage.
11
+ * Add "monitored_resource_types" field to Google::Api::MetricDescriptor.
12
+ * Add Google::Api::ResourceDescriptor::Style type and add "style" field to Google::Api::ResourceDescriptor.
13
+ * Moved HttpRequest and LogSeverity types from Google::Logging::Type to Google::Cloud::Logging::Type, and created aliases for backward compatibility.
14
+ * Remove internal "features" field from Google::Api::Endpoint.
15
+ * Require protobuf 3.14.
16
+
17
+ ### 1.0.5 / 2020-04-08
18
+
19
+ * Add JWT location support in Google::Api::AuthProvider.
20
+ * Add "protocol" field and a "disable_auth" option to Google::Api::BackendRule.
21
+ * Add "launch_stage" field to Google::Api::MetricDescriptor and Google::Api::MonitoredResourceDescriptor.
22
+ * Add Google::Api::ResourceDescriptor and Google::Api::ResourceReference types and remove obsolete Google::Api::Resource type.
23
+ * Remove obsolete "experimental" field from Google::Api::Service type.
24
+ * Add Google::Rpc::ErrorInfo type.
25
+ * Add Google::Type::DateTime, Google::Type::Month, and Google::Type::TimeZone types.
26
+ * Require protobuf 3.11.
27
+
28
+ ### 1.0.4 / 2019-04-03
29
+
30
+ * Add WaitOperation RPC to operations_pb.rb and update documentation.
31
+ * Add new common types for:
32
+ + google/api/resource.proto
33
+ + google/type/calendar_period.proto
34
+ + google/type/expr.proto
35
+ + google/type/fraction.proto
36
+ + google/type/quaternion.proto
37
+
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ gemspec
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Common Types
2
+
3
+ This gem contains common message types for Google APIs.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'googleapis-common-protos-types'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install googleapis-common-protos-types
data/Rakefile ADDED
@@ -0,0 +1,80 @@
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
+ # Perform post-compile steps on a couple of protos to install backward
20
+ # compatibility aliases.
21
+ def postprocess_protos
22
+ File.open "#{__dir__}/lib/google/logging/type/http_request_pb.rb", "a" do |file|
23
+ file.puts "\nmodule Google\n module Logging\n module Type\n HttpRequest = ::Google::Cloud::Logging::Type::HttpRequest\n end\n end\nend"
24
+ end
25
+ File.open "#{__dir__}/lib/google/logging/type/log_severity_pb.rb", "a" do |file|
26
+ file.puts "\nmodule Google\n module Logging\n module Type\n LogSeverity = ::Google::Cloud::Logging::Type::LogSeverity\n end\n end\nend"
27
+ end
28
+ end
29
+
30
+ desc "Compile the necessary protobuf files."
31
+ task :compile_protos do
32
+ Rake::Task[:clean_protos].invoke
33
+ FileUtils.mkdir 'lib'
34
+
35
+ protos = [
36
+ "../googleapis/google/api/*.proto",
37
+ "../googleapis/google/logging/type/*.proto",
38
+ "../googleapis/google/longrunning/*.proto",
39
+ "../googleapis/google/rpc/*.proto",
40
+ "../googleapis/google/type/*.proto",
41
+ ]
42
+
43
+ command = []
44
+ command << "grpc_tools_ruby_protoc"
45
+ command << "--ruby_out=lib"
46
+ command << "-I ../googleapis"
47
+ command += protos
48
+ full_command = command.join " "
49
+
50
+ puts full_command
51
+ system full_command
52
+
53
+ postprocess_protos
54
+ end
55
+
56
+ desc "Test loading all proto files"
57
+ task :test_loading do
58
+ puts "\nLoading proto files"
59
+ Dir.glob("lib/google/**/*_pb.rb") do |path|
60
+ puts path
61
+ require_relative path
62
+ end
63
+ end
64
+
65
+ desc "Remove the compiled protos."
66
+ task :clean_protos do
67
+ FileUtils.rm_rf "lib"
68
+ end
69
+
70
+ desc "Run the CI build"
71
+ task :ci do
72
+ puts "\nCompiling Protos"
73
+ Rake::Task[:compile_protos].invoke
74
+ Rake::Task[:test_loading].invoke
75
+ end
76
+
77
+ Rake::Task[:build].enhance [:compile_protos]
78
+ Rake::Task[:clean].enhance [:clean_protos]
79
+
80
+ task default: :ci
@@ -0,0 +1,43 @@
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-types"
19
+ spec.version = "1.0.6"
20
+ spec.authors = ["Google Inc"]
21
+ spec.email = ["googleapis-packages@google.com"]
22
+ spec.licenses = ["Apache-2.0"]
23
+
24
+ spec.description = "Common protocol buffer types used by Google APIs"
25
+ spec.summary = "Common protobuf types used in Google APIs"
26
+ spec.homepage = "https://github.com/googleapis/common-protos-ruby"
27
+
28
+ # Specify which files should be added to the gem when it is released. The `git
29
+ # ls-files -z` loads the files in the RubyGem that have been added into git.
30
+ spec.files = Dir.chdir File.expand_path(__dir__) do
31
+ `git ls-files -z`.split("\x0").reject do |f|
32
+ f.match %r{^(test|spec|features)/}
33
+ end
34
+ end
35
+ spec.files += Dir.glob "lib/**/*_pb.rb"
36
+ spec.require_paths = ["lib"]
37
+
38
+ spec.add_dependency "google-protobuf", "~> 3.14"
39
+
40
+ spec.add_development_dependency "bundler", "~> 2.1"
41
+ spec.add_development_dependency "grpc-tools", "~> 1.27"
42
+ spec.add_development_dependency "rake", "~> 13.0"
43
+ end
@@ -5,6 +5,8 @@ require 'google/protobuf'
5
5
 
6
6
  require 'google/api/http_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_file("google/api/annotations.proto", :syntax => :proto3) do
9
+ end
8
10
  end
9
11
 
10
12
  module Google
@@ -3,40 +3,50 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/api/annotations_pb'
7
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_message "google.api.Authentication" do
9
- repeated :rules, :message, 3, "google.api.AuthenticationRule"
10
- repeated :providers, :message, 4, "google.api.AuthProvider"
11
- end
12
- add_message "google.api.AuthenticationRule" do
13
- optional :selector, :string, 1
14
- optional :oauth, :message, 2, "google.api.OAuthRequirements"
15
- optional :allow_without_credential, :bool, 5
16
- repeated :requirements, :message, 7, "google.api.AuthRequirement"
17
- end
18
- add_message "google.api.AuthProvider" do
19
- optional :id, :string, 1
20
- optional :issuer, :string, 2
21
- optional :jwks_uri, :string, 3
22
- optional :audiences, :string, 4
23
- optional :authorization_url, :string, 5
24
- end
25
- add_message "google.api.OAuthRequirements" do
26
- optional :canonical_scopes, :string, 1
27
- end
28
- add_message "google.api.AuthRequirement" do
29
- optional :provider_id, :string, 1
30
- optional :audiences, :string, 2
7
+ add_file("google/api/auth.proto", :syntax => :proto3) do
8
+ add_message "google.api.Authentication" do
9
+ repeated :rules, :message, 3, "google.api.AuthenticationRule"
10
+ repeated :providers, :message, 4, "google.api.AuthProvider"
11
+ end
12
+ add_message "google.api.AuthenticationRule" do
13
+ optional :selector, :string, 1
14
+ optional :oauth, :message, 2, "google.api.OAuthRequirements"
15
+ optional :allow_without_credential, :bool, 5
16
+ repeated :requirements, :message, 7, "google.api.AuthRequirement"
17
+ end
18
+ add_message "google.api.JwtLocation" do
19
+ optional :value_prefix, :string, 3
20
+ oneof :in do
21
+ optional :header, :string, 1
22
+ optional :query, :string, 2
23
+ end
24
+ end
25
+ add_message "google.api.AuthProvider" do
26
+ optional :id, :string, 1
27
+ optional :issuer, :string, 2
28
+ optional :jwks_uri, :string, 3
29
+ optional :audiences, :string, 4
30
+ optional :authorization_url, :string, 5
31
+ repeated :jwt_locations, :message, 6, "google.api.JwtLocation"
32
+ end
33
+ add_message "google.api.OAuthRequirements" do
34
+ optional :canonical_scopes, :string, 1
35
+ end
36
+ add_message "google.api.AuthRequirement" do
37
+ optional :provider_id, :string, 1
38
+ optional :audiences, :string, 2
39
+ end
31
40
  end
32
41
  end
33
42
 
34
43
  module Google
35
44
  module Api
36
- Authentication = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Authentication").msgclass
37
- AuthenticationRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthenticationRule").msgclass
38
- AuthProvider = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthProvider").msgclass
39
- OAuthRequirements = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.OAuthRequirements").msgclass
40
- AuthRequirement = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthRequirement").msgclass
45
+ Authentication = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Authentication").msgclass
46
+ AuthenticationRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthenticationRule").msgclass
47
+ JwtLocation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.JwtLocation").msgclass
48
+ AuthProvider = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthProvider").msgclass
49
+ OAuthRequirements = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.OAuthRequirements").msgclass
50
+ AuthRequirement = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthRequirement").msgclass
41
51
  end
42
52
  end
@@ -4,19 +4,35 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.Backend" do
8
- repeated :rules, :message, 1, "google.api.BackendRule"
9
- end
10
- add_message "google.api.BackendRule" do
11
- optional :selector, :string, 1
12
- optional :address, :string, 2
13
- optional :deadline, :double, 3
7
+ add_file("google/api/backend.proto", :syntax => :proto3) do
8
+ add_message "google.api.Backend" do
9
+ repeated :rules, :message, 1, "google.api.BackendRule"
10
+ end
11
+ add_message "google.api.BackendRule" do
12
+ optional :selector, :string, 1
13
+ optional :address, :string, 2
14
+ optional :deadline, :double, 3
15
+ optional :min_deadline, :double, 4
16
+ optional :operation_deadline, :double, 5
17
+ optional :path_translation, :enum, 6, "google.api.BackendRule.PathTranslation"
18
+ optional :protocol, :string, 9
19
+ oneof :authentication do
20
+ optional :jwt_audience, :string, 7
21
+ optional :disable_auth, :bool, 8
22
+ end
23
+ end
24
+ add_enum "google.api.BackendRule.PathTranslation" do
25
+ value :PATH_TRANSLATION_UNSPECIFIED, 0
26
+ value :CONSTANT_ADDRESS, 1
27
+ value :APPEND_PATH_TO_ADDRESS, 2
28
+ end
14
29
  end
15
30
  end
16
31
 
17
32
  module Google
18
33
  module Api
19
- Backend = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Backend").msgclass
20
- BackendRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.BackendRule").msgclass
34
+ Backend = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Backend").msgclass
35
+ BackendRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.BackendRule").msgclass
36
+ BackendRule::PathTranslation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.BackendRule.PathTranslation").enummodule
21
37
  end
22
38
  end
@@ -3,22 +3,22 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/api/annotations_pb'
7
6
  require 'google/api/metric_pb'
8
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
- add_message "google.api.Billing" do
10
- repeated :metrics, :string, 1
11
- repeated :rules, :message, 5, "google.api.BillingStatusRule"
12
- end
13
- add_message "google.api.BillingStatusRule" do
14
- optional :selector, :string, 1
15
- repeated :allowed_statuses, :string, 2
8
+ add_file("google/api/billing.proto", :syntax => :proto3) do
9
+ add_message "google.api.Billing" do
10
+ repeated :consumer_destinations, :message, 8, "google.api.Billing.BillingDestination"
11
+ end
12
+ add_message "google.api.Billing.BillingDestination" do
13
+ optional :monitored_resource, :string, 1
14
+ repeated :metrics, :string, 2
15
+ end
16
16
  end
17
17
  end
18
18
 
19
19
  module Google
20
20
  module Api
21
- Billing = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Billing").msgclass
22
- BillingStatusRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.BillingStatusRule").msgclass
21
+ Billing = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Billing").msgclass
22
+ Billing::BillingDestination = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Billing.BillingDestination").msgclass
23
23
  end
24
24
  end
@@ -0,0 +1,14 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/client.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/api/client.proto", :syntax => :proto3) do
8
+ end
9
+ end
10
+
11
+ module Google
12
+ module Api
13
+ end
14
+ end
@@ -4,28 +4,30 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.ConfigChange" do
8
- optional :element, :string, 1
9
- optional :old_value, :string, 2
10
- optional :new_value, :string, 3
11
- optional :change_type, :enum, 4, "google.api.ChangeType"
12
- repeated :advices, :message, 5, "google.api.Advice"
13
- end
14
- add_message "google.api.Advice" do
15
- optional :description, :string, 2
16
- end
17
- add_enum "google.api.ChangeType" do
18
- value :CHANGE_TYPE_UNSPECIFIED, 0
19
- value :ADDED, 1
20
- value :REMOVED, 2
21
- value :MODIFIED, 3
7
+ add_file("google/api/config_change.proto", :syntax => :proto3) do
8
+ add_message "google.api.ConfigChange" do
9
+ optional :element, :string, 1
10
+ optional :old_value, :string, 2
11
+ optional :new_value, :string, 3
12
+ optional :change_type, :enum, 4, "google.api.ChangeType"
13
+ repeated :advices, :message, 5, "google.api.Advice"
14
+ end
15
+ add_message "google.api.Advice" do
16
+ optional :description, :string, 2
17
+ end
18
+ add_enum "google.api.ChangeType" do
19
+ value :CHANGE_TYPE_UNSPECIFIED, 0
20
+ value :ADDED, 1
21
+ value :REMOVED, 2
22
+ value :MODIFIED, 3
23
+ end
22
24
  end
23
25
  end
24
26
 
25
27
  module Google
26
28
  module Api
27
- ConfigChange = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.ConfigChange").msgclass
28
- Advice = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Advice").msgclass
29
- ChangeType = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.ChangeType").enummodule
29
+ ConfigChange = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.ConfigChange").msgclass
30
+ Advice = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Advice").msgclass
31
+ ChangeType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.ChangeType").enummodule
30
32
  end
31
33
  end