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
@@ -4,27 +4,29 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.ProjectProperties" do
8
- repeated :properties, :message, 1, "google.api.Property"
9
- end
10
- add_message "google.api.Property" do
11
- optional :name, :string, 1
12
- optional :type, :enum, 2, "google.api.Property.PropertyType"
13
- optional :description, :string, 3
14
- end
15
- add_enum "google.api.Property.PropertyType" do
16
- value :UNSPECIFIED, 0
17
- value :INT64, 1
18
- value :BOOL, 2
19
- value :STRING, 3
20
- value :DOUBLE, 4
7
+ add_file("google/api/consumer.proto", :syntax => :proto3) do
8
+ add_message "google.api.ProjectProperties" do
9
+ repeated :properties, :message, 1, "google.api.Property"
10
+ end
11
+ add_message "google.api.Property" do
12
+ optional :name, :string, 1
13
+ optional :type, :enum, 2, "google.api.Property.PropertyType"
14
+ optional :description, :string, 3
15
+ end
16
+ add_enum "google.api.Property.PropertyType" do
17
+ value :UNSPECIFIED, 0
18
+ value :INT64, 1
19
+ value :BOOL, 2
20
+ value :STRING, 3
21
+ value :DOUBLE, 4
22
+ end
21
23
  end
22
24
  end
23
25
 
24
26
  module Google
25
27
  module Api
26
- ProjectProperties = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.ProjectProperties").msgclass
27
- Property = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Property").msgclass
28
- Property::PropertyType = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Property.PropertyType").enummodule
28
+ ProjectProperties = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.ProjectProperties").msgclass
29
+ Property = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Property").msgclass
30
+ Property::PropertyType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Property.PropertyType").enummodule
29
31
  end
30
32
  end
@@ -4,19 +4,23 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.Context" do
8
- repeated :rules, :message, 1, "google.api.ContextRule"
9
- end
10
- add_message "google.api.ContextRule" do
11
- optional :selector, :string, 1
12
- repeated :requested, :string, 2
13
- repeated :provided, :string, 3
7
+ add_file("google/api/context.proto", :syntax => :proto3) do
8
+ add_message "google.api.Context" do
9
+ repeated :rules, :message, 1, "google.api.ContextRule"
10
+ end
11
+ add_message "google.api.ContextRule" do
12
+ optional :selector, :string, 1
13
+ repeated :requested, :string, 2
14
+ repeated :provided, :string, 3
15
+ repeated :allowed_request_extensions, :string, 4
16
+ repeated :allowed_response_extensions, :string, 5
17
+ end
14
18
  end
15
19
  end
16
20
 
17
21
  module Google
18
22
  module Api
19
- Context = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Context").msgclass
20
- ContextRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.ContextRule").msgclass
23
+ Context = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Context").msgclass
24
+ ContextRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.ContextRule").msgclass
21
25
  end
22
26
  end
@@ -4,13 +4,15 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.Control" do
8
- optional :environment, :string, 1
7
+ add_file("google/api/control.proto", :syntax => :proto3) do
8
+ add_message "google.api.Control" do
9
+ optional :environment, :string, 1
10
+ end
9
11
  end
10
12
  end
11
13
 
12
14
  module Google
13
15
  module Api
14
- Control = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Control").msgclass
16
+ Control = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Control").msgclass
15
17
  end
16
18
  end
@@ -3,51 +3,59 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/api/annotations_pb'
7
6
  require 'google/protobuf/any_pb'
8
7
  require 'google/protobuf/timestamp_pb'
9
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
10
- add_message "google.api.Distribution" do
11
- optional :count, :int64, 1
12
- optional :mean, :double, 2
13
- optional :sum_of_squared_deviation, :double, 3
14
- optional :range, :message, 4, "google.api.Distribution.Range"
15
- optional :bucket_options, :message, 6, "google.api.Distribution.BucketOptions"
16
- repeated :bucket_counts, :int64, 7
17
- end
18
- add_message "google.api.Distribution.Range" do
19
- optional :min, :double, 1
20
- optional :max, :double, 2
21
- end
22
- add_message "google.api.Distribution.BucketOptions" do
23
- oneof :options do
24
- optional :linear_buckets, :message, 1, "google.api.Distribution.BucketOptions.Linear"
25
- optional :exponential_buckets, :message, 2, "google.api.Distribution.BucketOptions.Exponential"
26
- optional :explicit_buckets, :message, 3, "google.api.Distribution.BucketOptions.Explicit"
9
+ add_file("google/api/distribution.proto", :syntax => :proto3) do
10
+ add_message "google.api.Distribution" do
11
+ optional :count, :int64, 1
12
+ optional :mean, :double, 2
13
+ optional :sum_of_squared_deviation, :double, 3
14
+ optional :range, :message, 4, "google.api.Distribution.Range"
15
+ optional :bucket_options, :message, 6, "google.api.Distribution.BucketOptions"
16
+ repeated :bucket_counts, :int64, 7
17
+ repeated :exemplars, :message, 10, "google.api.Distribution.Exemplar"
18
+ end
19
+ add_message "google.api.Distribution.Range" do
20
+ optional :min, :double, 1
21
+ optional :max, :double, 2
22
+ end
23
+ add_message "google.api.Distribution.BucketOptions" do
24
+ oneof :options do
25
+ optional :linear_buckets, :message, 1, "google.api.Distribution.BucketOptions.Linear"
26
+ optional :exponential_buckets, :message, 2, "google.api.Distribution.BucketOptions.Exponential"
27
+ optional :explicit_buckets, :message, 3, "google.api.Distribution.BucketOptions.Explicit"
28
+ end
29
+ end
30
+ add_message "google.api.Distribution.BucketOptions.Linear" do
31
+ optional :num_finite_buckets, :int32, 1
32
+ optional :width, :double, 2
33
+ optional :offset, :double, 3
34
+ end
35
+ add_message "google.api.Distribution.BucketOptions.Exponential" do
36
+ optional :num_finite_buckets, :int32, 1
37
+ optional :growth_factor, :double, 2
38
+ optional :scale, :double, 3
39
+ end
40
+ add_message "google.api.Distribution.BucketOptions.Explicit" do
41
+ repeated :bounds, :double, 1
42
+ end
43
+ add_message "google.api.Distribution.Exemplar" do
44
+ optional :value, :double, 1
45
+ optional :timestamp, :message, 2, "google.protobuf.Timestamp"
46
+ repeated :attachments, :message, 3, "google.protobuf.Any"
27
47
  end
28
- end
29
- add_message "google.api.Distribution.BucketOptions.Linear" do
30
- optional :num_finite_buckets, :int32, 1
31
- optional :width, :double, 2
32
- optional :offset, :double, 3
33
- end
34
- add_message "google.api.Distribution.BucketOptions.Exponential" do
35
- optional :num_finite_buckets, :int32, 1
36
- optional :growth_factor, :double, 2
37
- optional :scale, :double, 3
38
- end
39
- add_message "google.api.Distribution.BucketOptions.Explicit" do
40
- repeated :bounds, :double, 1
41
48
  end
42
49
  end
43
50
 
44
51
  module Google
45
52
  module Api
46
- Distribution = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution").msgclass
47
- Distribution::Range = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.Range").msgclass
48
- Distribution::BucketOptions = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.BucketOptions").msgclass
49
- Distribution::BucketOptions::Linear = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.BucketOptions.Linear").msgclass
50
- Distribution::BucketOptions::Exponential = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.BucketOptions.Exponential").msgclass
51
- Distribution::BucketOptions::Explicit = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.BucketOptions.Explicit").msgclass
53
+ Distribution = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution").msgclass
54
+ Distribution::Range = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.Range").msgclass
55
+ Distribution::BucketOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.BucketOptions").msgclass
56
+ Distribution::BucketOptions::Linear = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.BucketOptions.Linear").msgclass
57
+ Distribution::BucketOptions::Exponential = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.BucketOptions.Exponential").msgclass
58
+ Distribution::BucketOptions::Explicit = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.BucketOptions.Explicit").msgclass
59
+ Distribution::Exemplar = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Distribution.Exemplar").msgclass
52
60
  end
53
61
  end
@@ -4,29 +4,32 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.Documentation" do
8
- optional :summary, :string, 1
9
- repeated :pages, :message, 5, "google.api.Page"
10
- repeated :rules, :message, 3, "google.api.DocumentationRule"
11
- optional :documentation_root_url, :string, 4
12
- optional :overview, :string, 2
13
- end
14
- add_message "google.api.DocumentationRule" do
15
- optional :selector, :string, 1
16
- optional :description, :string, 2
17
- optional :deprecation_description, :string, 3
18
- end
19
- add_message "google.api.Page" do
20
- optional :name, :string, 1
21
- optional :content, :string, 2
22
- repeated :subpages, :message, 3, "google.api.Page"
7
+ add_file("google/api/documentation.proto", :syntax => :proto3) do
8
+ add_message "google.api.Documentation" do
9
+ optional :summary, :string, 1
10
+ repeated :pages, :message, 5, "google.api.Page"
11
+ repeated :rules, :message, 3, "google.api.DocumentationRule"
12
+ optional :documentation_root_url, :string, 4
13
+ optional :service_root_url, :string, 6
14
+ optional :overview, :string, 2
15
+ end
16
+ add_message "google.api.DocumentationRule" do
17
+ optional :selector, :string, 1
18
+ optional :description, :string, 2
19
+ optional :deprecation_description, :string, 3
20
+ end
21
+ add_message "google.api.Page" do
22
+ optional :name, :string, 1
23
+ optional :content, :string, 2
24
+ repeated :subpages, :message, 3, "google.api.Page"
25
+ end
23
26
  end
24
27
  end
25
28
 
26
29
  module Google
27
30
  module Api
28
- Documentation = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Documentation").msgclass
29
- DocumentationRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.DocumentationRule").msgclass
30
- Page = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Page").msgclass
31
+ Documentation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Documentation").msgclass
32
+ DocumentationRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.DocumentationRule").msgclass
33
+ Page = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Page").msgclass
31
34
  end
32
35
  end
@@ -3,20 +3,19 @@
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.Endpoint" do
9
- optional :name, :string, 1
10
- repeated :aliases, :string, 2
11
- repeated :apis, :string, 3
12
- repeated :features, :string, 4
13
- optional :target, :string, 101
14
- optional :allow_cors, :bool, 5
7
+ add_file("google/api/endpoint.proto", :syntax => :proto3) do
8
+ add_message "google.api.Endpoint" do
9
+ optional :name, :string, 1
10
+ repeated :aliases, :string, 2
11
+ optional :target, :string, 101
12
+ optional :allow_cors, :bool, 5
13
+ end
15
14
  end
16
15
  end
17
16
 
18
17
  module Google
19
18
  module Api
20
- Endpoint = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Endpoint").msgclass
19
+ Endpoint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Endpoint").msgclass
21
20
  end
22
21
  end
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/field_behavior.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/api/field_behavior.proto", :syntax => :proto3) do
8
+ add_enum "google.api.FieldBehavior" do
9
+ value :FIELD_BEHAVIOR_UNSPECIFIED, 0
10
+ value :OPTIONAL, 1
11
+ value :REQUIRED, 2
12
+ value :OUTPUT_ONLY, 3
13
+ value :INPUT_ONLY, 4
14
+ value :IMMUTABLE, 5
15
+ value :UNORDERED_LIST, 6
16
+ end
17
+ end
18
+ end
19
+
20
+ module Google
21
+ module Api
22
+ FieldBehavior = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.FieldBehavior").enummodule
23
+ end
24
+ end
@@ -4,32 +4,36 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.Http" do
8
- repeated :rules, :message, 1, "google.api.HttpRule"
9
- end
10
- add_message "google.api.HttpRule" do
11
- optional :selector, :string, 1
12
- optional :body, :string, 7
13
- repeated :additional_bindings, :message, 11, "google.api.HttpRule"
14
- oneof :pattern do
15
- optional :get, :string, 2
16
- optional :put, :string, 3
17
- optional :post, :string, 4
18
- optional :delete, :string, 5
19
- optional :patch, :string, 6
20
- optional :custom, :message, 8, "google.api.CustomHttpPattern"
7
+ add_file("google/api/http.proto", :syntax => :proto3) do
8
+ add_message "google.api.Http" do
9
+ repeated :rules, :message, 1, "google.api.HttpRule"
10
+ optional :fully_decode_reserved_expansion, :bool, 2
11
+ end
12
+ add_message "google.api.HttpRule" do
13
+ optional :selector, :string, 1
14
+ optional :body, :string, 7
15
+ optional :response_body, :string, 12
16
+ repeated :additional_bindings, :message, 11, "google.api.HttpRule"
17
+ oneof :pattern do
18
+ optional :get, :string, 2
19
+ optional :put, :string, 3
20
+ optional :post, :string, 4
21
+ optional :delete, :string, 5
22
+ optional :patch, :string, 6
23
+ optional :custom, :message, 8, "google.api.CustomHttpPattern"
24
+ end
25
+ end
26
+ add_message "google.api.CustomHttpPattern" do
27
+ optional :kind, :string, 1
28
+ optional :path, :string, 2
21
29
  end
22
- end
23
- add_message "google.api.CustomHttpPattern" do
24
- optional :kind, :string, 1
25
- optional :path, :string, 2
26
30
  end
27
31
  end
28
32
 
29
33
  module Google
30
34
  module Api
31
- Http = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Http").msgclass
32
- HttpRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.HttpRule").msgclass
33
- CustomHttpPattern = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.CustomHttpPattern").msgclass
35
+ Http = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Http").msgclass
36
+ HttpRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.HttpRule").msgclass
37
+ CustomHttpPattern = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.CustomHttpPattern").msgclass
34
38
  end
35
39
  end
@@ -3,15 +3,19 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'google/protobuf/any_pb'
6
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.HttpBody" do
8
- optional :content_type, :string, 1
9
- optional :data, :bytes, 2
8
+ add_file("google/api/httpbody.proto", :syntax => :proto3) do
9
+ add_message "google.api.HttpBody" do
10
+ optional :content_type, :string, 1
11
+ optional :data, :bytes, 2
12
+ repeated :extensions, :message, 3, "google.protobuf.Any"
13
+ end
10
14
  end
11
15
  end
12
16
 
13
17
  module Google
14
18
  module Api
15
- HttpBody = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.HttpBody").msgclass
19
+ HttpBody = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.HttpBody").msgclass
16
20
  end
17
21
  end
@@ -4,21 +4,23 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.api.LabelDescriptor" do
8
- optional :key, :string, 1
9
- optional :value_type, :enum, 2, "google.api.LabelDescriptor.ValueType"
10
- optional :description, :string, 3
11
- end
12
- add_enum "google.api.LabelDescriptor.ValueType" do
13
- value :STRING, 0
14
- value :BOOL, 1
15
- value :INT64, 2
7
+ add_file("google/api/label.proto", :syntax => :proto3) do
8
+ add_message "google.api.LabelDescriptor" do
9
+ optional :key, :string, 1
10
+ optional :value_type, :enum, 2, "google.api.LabelDescriptor.ValueType"
11
+ optional :description, :string, 3
12
+ end
13
+ add_enum "google.api.LabelDescriptor.ValueType" do
14
+ value :STRING, 0
15
+ value :BOOL, 1
16
+ value :INT64, 2
17
+ end
16
18
  end
17
19
  end
18
20
 
19
21
  module Google
20
22
  module Api
21
- LabelDescriptor = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.LabelDescriptor").msgclass
22
- LabelDescriptor::ValueType = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.LabelDescriptor.ValueType").enummodule
23
+ LabelDescriptor = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.LabelDescriptor").msgclass
24
+ LabelDescriptor::ValueType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.LabelDescriptor.ValueType").enummodule
23
25
  end
24
26
  end
@@ -0,0 +1,25 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/launch_stage.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/api/launch_stage.proto", :syntax => :proto3) do
8
+ add_enum "google.api.LaunchStage" do
9
+ value :LAUNCH_STAGE_UNSPECIFIED, 0
10
+ value :UNIMPLEMENTED, 6
11
+ value :PRELAUNCH, 7
12
+ value :EARLY_ACCESS, 1
13
+ value :ALPHA, 2
14
+ value :BETA, 3
15
+ value :GA, 4
16
+ value :DEPRECATED, 5
17
+ end
18
+ end
19
+ end
20
+
21
+ module Google
22
+ module Api
23
+ LaunchStage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.LaunchStage").enummodule
24
+ end
25
+ end