googleapis-common-protos-types 1.0.1 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,25 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/calendar_period.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/calendar_period.proto", :syntax => :proto3) do
8
+ add_enum "google.type.CalendarPeriod" do
9
+ value :CALENDAR_PERIOD_UNSPECIFIED, 0
10
+ value :DAY, 1
11
+ value :WEEK, 2
12
+ value :FORTNIGHT, 3
13
+ value :MONTH, 4
14
+ value :QUARTER, 5
15
+ value :HALF, 6
16
+ value :YEAR, 7
17
+ end
18
+ end
19
+ end
20
+
21
+ module Google
22
+ module Type
23
+ CalendarPeriod = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.CalendarPeriod").enummodule
24
+ end
25
+ end
@@ -5,16 +5,18 @@ require 'google/protobuf'
5
5
 
6
6
  require 'google/protobuf/wrappers_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_message "google.type.Color" do
9
- optional :red, :float, 1
10
- optional :green, :float, 2
11
- optional :blue, :float, 3
12
- optional :alpha, :message, 4, "google.protobuf.FloatValue"
8
+ add_file("google/type/color.proto", :syntax => :proto3) do
9
+ add_message "google.type.Color" do
10
+ optional :red, :float, 1
11
+ optional :green, :float, 2
12
+ optional :blue, :float, 3
13
+ optional :alpha, :message, 4, "google.protobuf.FloatValue"
14
+ end
13
15
  end
14
16
  end
15
17
 
16
18
  module Google
17
19
  module Type
18
- Color = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Color").msgclass
20
+ Color = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Color").msgclass
19
21
  end
20
22
  end
@@ -4,15 +4,17 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.Date" do
8
- optional :year, :int32, 1
9
- optional :month, :int32, 2
10
- optional :day, :int32, 3
7
+ add_file("google/type/date.proto", :syntax => :proto3) do
8
+ add_message "google.type.Date" do
9
+ optional :year, :int32, 1
10
+ optional :month, :int32, 2
11
+ optional :day, :int32, 3
12
+ end
11
13
  end
12
14
  end
13
15
 
14
16
  module Google
15
17
  module Type
16
- Date = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Date").msgclass
18
+ Date = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Date").msgclass
17
19
  end
18
20
  end
@@ -0,0 +1,34 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/datetime.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/duration_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_file("google/type/datetime.proto", :syntax => :proto3) do
9
+ add_message "google.type.DateTime" do
10
+ optional :year, :int32, 1
11
+ optional :month, :int32, 2
12
+ optional :day, :int32, 3
13
+ optional :hours, :int32, 4
14
+ optional :minutes, :int32, 5
15
+ optional :seconds, :int32, 6
16
+ optional :nanos, :int32, 7
17
+ oneof :time_offset do
18
+ optional :utc_offset, :message, 8, "google.protobuf.Duration"
19
+ optional :time_zone, :message, 9, "google.type.TimeZone"
20
+ end
21
+ end
22
+ add_message "google.type.TimeZone" do
23
+ optional :id, :string, 1
24
+ optional :version, :string, 2
25
+ end
26
+ end
27
+ end
28
+
29
+ module Google
30
+ module Type
31
+ DateTime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.DateTime").msgclass
32
+ TimeZone = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.TimeZone").msgclass
33
+ end
34
+ end
@@ -4,20 +4,22 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_enum "google.type.DayOfWeek" do
8
- value :DAY_OF_WEEK_UNSPECIFIED, 0
9
- value :MONDAY, 1
10
- value :TUESDAY, 2
11
- value :WEDNESDAY, 3
12
- value :THURSDAY, 4
13
- value :FRIDAY, 5
14
- value :SATURDAY, 6
15
- value :SUNDAY, 7
7
+ add_file("google/type/dayofweek.proto", :syntax => :proto3) do
8
+ add_enum "google.type.DayOfWeek" do
9
+ value :DAY_OF_WEEK_UNSPECIFIED, 0
10
+ value :MONDAY, 1
11
+ value :TUESDAY, 2
12
+ value :WEDNESDAY, 3
13
+ value :THURSDAY, 4
14
+ value :FRIDAY, 5
15
+ value :SATURDAY, 6
16
+ value :SUNDAY, 7
17
+ end
16
18
  end
17
19
  end
18
20
 
19
21
  module Google
20
22
  module Type
21
- DayOfWeek = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.DayOfWeek").enummodule
23
+ DayOfWeek = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.DayOfWeek").enummodule
22
24
  end
23
25
  end
@@ -0,0 +1,21 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/expr.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/expr.proto", :syntax => :proto3) do
8
+ add_message "google.type.Expr" do
9
+ optional :expression, :string, 1
10
+ optional :title, :string, 2
11
+ optional :description, :string, 3
12
+ optional :location, :string, 4
13
+ end
14
+ end
15
+ end
16
+
17
+ module Google
18
+ module Type
19
+ Expr = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Expr").msgclass
20
+ end
21
+ end
@@ -0,0 +1,19 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/fraction.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/fraction.proto", :syntax => :proto3) do
8
+ add_message "google.type.Fraction" do
9
+ optional :numerator, :int64, 1
10
+ optional :denominator, :int64, 2
11
+ end
12
+ end
13
+ end
14
+
15
+ module Google
16
+ module Type
17
+ Fraction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Fraction").msgclass
18
+ end
19
+ end
@@ -0,0 +1,20 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/interval.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/timestamp_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_file("google/type/interval.proto", :syntax => :proto3) do
9
+ add_message "google.type.Interval" do
10
+ optional :start_time, :message, 1, "google.protobuf.Timestamp"
11
+ optional :end_time, :message, 2, "google.protobuf.Timestamp"
12
+ end
13
+ end
14
+ end
15
+
16
+ module Google
17
+ module Type
18
+ Interval = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Interval").msgclass
19
+ end
20
+ end
@@ -4,14 +4,16 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.LatLng" do
8
- optional :latitude, :double, 1
9
- optional :longitude, :double, 2
7
+ add_file("google/type/latlng.proto", :syntax => :proto3) do
8
+ add_message "google.type.LatLng" do
9
+ optional :latitude, :double, 1
10
+ optional :longitude, :double, 2
11
+ end
10
12
  end
11
13
  end
12
14
 
13
15
  module Google
14
16
  module Type
15
- LatLng = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.LatLng").msgclass
17
+ LatLng = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.LatLng").msgclass
16
18
  end
17
19
  end
@@ -0,0 +1,19 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/localized_text.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/localized_text.proto", :syntax => :proto3) do
8
+ add_message "google.type.LocalizedText" do
9
+ optional :text, :string, 1
10
+ optional :language_code, :string, 2
11
+ end
12
+ end
13
+ end
14
+
15
+ module Google
16
+ module Type
17
+ LocalizedText = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.LocalizedText").msgclass
18
+ end
19
+ end
@@ -4,15 +4,17 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.Money" do
8
- optional :currency_code, :string, 1
9
- optional :units, :int64, 2
10
- optional :nanos, :int32, 3
7
+ add_file("google/type/money.proto", :syntax => :proto3) do
8
+ add_message "google.type.Money" do
9
+ optional :currency_code, :string, 1
10
+ optional :units, :int64, 2
11
+ optional :nanos, :int32, 3
12
+ end
11
13
  end
12
14
  end
13
15
 
14
16
  module Google
15
17
  module Type
16
- Money = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Money").msgclass
18
+ Money = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Money").msgclass
17
19
  end
18
20
  end
@@ -0,0 +1,30 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/month.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/month.proto", :syntax => :proto3) do
8
+ add_enum "google.type.Month" do
9
+ value :MONTH_UNSPECIFIED, 0
10
+ value :JANUARY, 1
11
+ value :FEBRUARY, 2
12
+ value :MARCH, 3
13
+ value :APRIL, 4
14
+ value :MAY, 5
15
+ value :JUNE, 6
16
+ value :JULY, 7
17
+ value :AUGUST, 8
18
+ value :SEPTEMBER, 9
19
+ value :OCTOBER, 10
20
+ value :NOVEMBER, 11
21
+ value :DECEMBER, 12
22
+ end
23
+ end
24
+ end
25
+
26
+ module Google
27
+ module Type
28
+ Month = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Month").enummodule
29
+ end
30
+ end
@@ -0,0 +1,27 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/phone_number.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/phone_number.proto", :syntax => :proto3) do
8
+ add_message "google.type.PhoneNumber" do
9
+ optional :extension, :string, 3
10
+ oneof :kind do
11
+ optional :e164_number, :string, 1
12
+ optional :short_code, :message, 2, "google.type.PhoneNumber.ShortCode"
13
+ end
14
+ end
15
+ add_message "google.type.PhoneNumber.ShortCode" do
16
+ optional :region_code, :string, 1
17
+ optional :number, :string, 2
18
+ end
19
+ end
20
+ end
21
+
22
+ module Google
23
+ module Type
24
+ PhoneNumber = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.PhoneNumber").msgclass
25
+ PhoneNumber::ShortCode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.PhoneNumber.ShortCode").msgclass
26
+ end
27
+ end
@@ -4,23 +4,25 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.PostalAddress" do
8
- optional :revision, :int32, 1
9
- optional :region_code, :string, 2
10
- optional :language_code, :string, 3
11
- optional :postal_code, :string, 4
12
- optional :sorting_code, :string, 5
13
- optional :administrative_area, :string, 6
14
- optional :locality, :string, 7
15
- optional :sublocality, :string, 8
16
- repeated :address_lines, :string, 9
17
- repeated :recipients, :string, 10
18
- optional :organization, :string, 11
7
+ add_file("google/type/postal_address.proto", :syntax => :proto3) do
8
+ add_message "google.type.PostalAddress" do
9
+ optional :revision, :int32, 1
10
+ optional :region_code, :string, 2
11
+ optional :language_code, :string, 3
12
+ optional :postal_code, :string, 4
13
+ optional :sorting_code, :string, 5
14
+ optional :administrative_area, :string, 6
15
+ optional :locality, :string, 7
16
+ optional :sublocality, :string, 8
17
+ repeated :address_lines, :string, 9
18
+ repeated :recipients, :string, 10
19
+ optional :organization, :string, 11
20
+ end
19
21
  end
20
22
  end
21
23
 
22
24
  module Google
23
25
  module Type
24
- PostalAddress = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.PostalAddress").msgclass
26
+ PostalAddress = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.PostalAddress").msgclass
25
27
  end
26
28
  end
@@ -0,0 +1,21 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/quaternion.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/quaternion.proto", :syntax => :proto3) do
8
+ add_message "google.type.Quaternion" do
9
+ optional :x, :double, 1
10
+ optional :y, :double, 2
11
+ optional :z, :double, 3
12
+ optional :w, :double, 4
13
+ end
14
+ end
15
+ end
16
+
17
+ module Google
18
+ module Type
19
+ Quaternion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Quaternion").msgclass
20
+ end
21
+ end
@@ -4,16 +4,18 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.TimeOfDay" do
8
- optional :hours, :int32, 1
9
- optional :minutes, :int32, 2
10
- optional :seconds, :int32, 3
11
- optional :nanos, :int32, 4
7
+ add_file("google/type/timeofday.proto", :syntax => :proto3) do
8
+ add_message "google.type.TimeOfDay" do
9
+ optional :hours, :int32, 1
10
+ optional :minutes, :int32, 2
11
+ optional :seconds, :int32, 3
12
+ optional :nanos, :int32, 4
13
+ end
12
14
  end
13
15
  end
14
16
 
15
17
  module Google
16
18
  module Type
17
- TimeOfDay = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.TimeOfDay").msgclass
19
+ TimeOfDay = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.TimeOfDay").msgclass
18
20
  end
19
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: googleapis-common-protos-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-06 00:00:00.000000000 Z
11
+ date: 2021-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -16,52 +16,74 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.0'
19
+ version: '3.14'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.0'
26
+ version: '3.14'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.9'
33
+ version: '2.1'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.9'
40
+ version: '2.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: grpc-tools
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.27'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.27'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: rake
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
59
  - - "~>"
46
60
  - !ruby/object:Gem::Version
47
- version: '10.4'
61
+ version: '13.0'
48
62
  type: :development
49
63
  prerelease: false
50
64
  version_requirements: !ruby/object:Gem::Requirement
51
65
  requirements:
52
66
  - - "~>"
53
67
  - !ruby/object:Gem::Version
54
- version: '10.4'
68
+ version: '13.0'
55
69
  description: Common protocol buffer types used by Google APIs
56
- email: googleapis-packages@google.com
70
+ email:
71
+ - googleapis-packages@google.com
57
72
  executables: []
58
73
  extensions: []
59
74
  extra_rdoc_files: []
60
75
  files:
76
+ - ".gitignore"
77
+ - CHANGELOG.md
78
+ - Gemfile
79
+ - README.md
80
+ - Rakefile
81
+ - googleapis-common-protos-types.gemspec
61
82
  - lib/google/api/annotations_pb.rb
62
83
  - lib/google/api/auth_pb.rb
63
84
  - lib/google/api/backend_pb.rb
64
85
  - lib/google/api/billing_pb.rb
86
+ - lib/google/api/client_pb.rb
65
87
  - lib/google/api/config_change_pb.rb
66
88
  - lib/google/api/consumer_pb.rb
67
89
  - lib/google/api/context_pb.rb
@@ -69,15 +91,18 @@ files:
69
91
  - lib/google/api/distribution_pb.rb
70
92
  - lib/google/api/documentation_pb.rb
71
93
  - lib/google/api/endpoint_pb.rb
94
+ - lib/google/api/field_behavior_pb.rb
72
95
  - lib/google/api/http_pb.rb
73
96
  - lib/google/api/httpbody_pb.rb
74
97
  - lib/google/api/label_pb.rb
98
+ - lib/google/api/launch_stage_pb.rb
75
99
  - lib/google/api/log_pb.rb
76
100
  - lib/google/api/logging_pb.rb
77
101
  - lib/google/api/metric_pb.rb
78
102
  - lib/google/api/monitored_resource_pb.rb
79
103
  - lib/google/api/monitoring_pb.rb
80
104
  - lib/google/api/quota_pb.rb
105
+ - lib/google/api/resource_pb.rb
81
106
  - lib/google/api/service_pb.rb
82
107
  - lib/google/api/source_info_pb.rb
83
108
  - lib/google/api/system_parameter_pb.rb
@@ -85,18 +110,26 @@ files:
85
110
  - lib/google/logging/type/http_request_pb.rb
86
111
  - lib/google/logging/type/log_severity_pb.rb
87
112
  - lib/google/longrunning/operations_pb.rb
88
- - lib/google/longrunning/operations_services_pb.rb
89
113
  - lib/google/rpc/code_pb.rb
90
114
  - lib/google/rpc/error_details_pb.rb
91
115
  - lib/google/rpc/status_pb.rb
116
+ - lib/google/type/calendar_period_pb.rb
92
117
  - lib/google/type/color_pb.rb
93
118
  - lib/google/type/date_pb.rb
119
+ - lib/google/type/datetime_pb.rb
94
120
  - lib/google/type/dayofweek_pb.rb
121
+ - lib/google/type/expr_pb.rb
122
+ - lib/google/type/fraction_pb.rb
123
+ - lib/google/type/interval_pb.rb
95
124
  - lib/google/type/latlng_pb.rb
125
+ - lib/google/type/localized_text_pb.rb
96
126
  - lib/google/type/money_pb.rb
127
+ - lib/google/type/month_pb.rb
128
+ - lib/google/type/phone_number_pb.rb
97
129
  - lib/google/type/postal_address_pb.rb
130
+ - lib/google/type/quaternion_pb.rb
98
131
  - lib/google/type/timeofday_pb.rb
99
- homepage: https://github.com/googleapis/googleapis
132
+ homepage: https://github.com/googleapis/common-protos-ruby
100
133
  licenses:
101
134
  - Apache-2.0
102
135
  metadata: {}
@@ -108,15 +141,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
108
141
  requirements:
109
142
  - - ">="
110
143
  - !ruby/object:Gem::Version
111
- version: 2.0.0
144
+ version: '0'
112
145
  required_rubygems_version: !ruby/object:Gem::Requirement
113
146
  requirements:
114
147
  - - ">="
115
148
  - !ruby/object:Gem::Version
116
149
  version: '0'
117
150
  requirements: []
118
- rubyforge_project:
119
- rubygems_version: 2.4.8
151
+ rubygems_version: 3.1.4
120
152
  signing_key:
121
153
  specification_version: 4
122
154
  summary: Common protobuf types used in Google APIs