googleapis-common-protos 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/api/{annotations.rb → annotations_pb.rb} +1 -1
  3. data/lib/google/api/auth_pb.rb +40 -0
  4. data/lib/google/api/backend_pb.rb +22 -0
  5. data/lib/google/api/billing_pb.rb +24 -0
  6. data/lib/google/api/consumer_pb.rb +30 -0
  7. data/lib/google/api/context_pb.rb +22 -0
  8. data/lib/google/api/control_pb.rb +16 -0
  9. data/lib/google/api/distribution_pb.rb +53 -0
  10. data/lib/google/api/documentation_pb.rb +32 -0
  11. data/lib/google/api/{http.rb → http_pb.rb} +5 -0
  12. data/lib/google/api/{label.rb → label_pb.rb} +0 -0
  13. data/lib/google/api/log_pb.rb +20 -0
  14. data/lib/google/api/logging_pb.rb +23 -0
  15. data/lib/google/api/metric_pb.rb +46 -0
  16. data/lib/google/api/{monitored_resource.rb → monitored_resource_pb.rb} +2 -1
  17. data/lib/google/api/monitoring_pb.rb +23 -0
  18. data/lib/google/api/service_pb.rb +59 -0
  19. data/lib/google/api/system_parameter_pb.rb +27 -0
  20. data/lib/google/api/usage_pb.rb +33 -0
  21. data/lib/google/logging/type/{http_request.rb → http_request_pb.rb} +5 -2
  22. data/lib/google/logging/type/{log_severity.rb → log_severity_pb.rb} +1 -1
  23. data/lib/google/longrunning/{operations.rb → operations_pb.rb} +4 -4
  24. data/lib/google/rpc/{code.rb → code_pb.rb} +0 -0
  25. data/lib/google/rpc/{error_details.rb → error_details_pb.rb} +1 -1
  26. data/lib/google/rpc/{status.rb → status_pb.rb} +1 -1
  27. data/lib/google/type/{color.rb → color_pb.rb} +1 -1
  28. data/lib/google/type/{date.rb → date_pb.rb} +0 -0
  29. data/lib/google/type/{dayofweek.rb → dayofweek_pb.rb} +0 -0
  30. data/lib/google/type/{latlng.rb → latlng_pb.rb} +0 -0
  31. data/lib/google/type/{money.rb → money_pb.rb} +0 -0
  32. data/lib/google/type/{timeofday.rb → timeofday_pb.rb} +0 -0
  33. metadata +37 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2ecf222deee0e52878bd7454599fac708388943b
4
- data.tar.gz: 81b36edb7718145503af7a1453ec70030e5ccde3
3
+ metadata.gz: 9365afe708fb1827bc425e20f3423637a8bf6d28
4
+ data.tar.gz: b3d0146b3f30d69871f875cac031f2f8dfa4070a
5
5
  SHA512:
6
- metadata.gz: 25926afa5f09e7efa58f2b655c108955cd22bb2da694ff5d1f544d5f400d08ef5b6209a81452889adaf3c4ddb655e69a8a7fe8cc2002441608f4fa2509f4e68e
7
- data.tar.gz: 77245f36849412027b858db31632b8edf0f0dd1fa9fffe9a95944b4efe3cfef124f6ce35778d76b52133d11232b16171e2dd705f32c6eaa0e8b755a867752c81
6
+ metadata.gz: fb33c9f15f4e3c95b681dc112f7844e5546d16ce6c5ad3da69bfca5254e7c8ac88e844dcc86880bc7c9ea154e2307363a174acef161b91b1cd952e8da2896036
7
+ data.tar.gz: fab4b3ac296c5b169277d65cada9fd8e909b18d36324a0cb6fd0cd21a0a395f9e15754fc3857b31c7c7e627c769eb2dcd786500eb0a37d3dd94d566a2250e23f
@@ -3,7 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/api/http'
6
+ require 'google/api/http_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  end
9
9
 
@@ -0,0 +1,40 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/auth.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/annotations_pb'
7
+ 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
+ end
23
+ add_message "google.api.OAuthRequirements" do
24
+ optional :canonical_scopes, :string, 1
25
+ end
26
+ add_message "google.api.AuthRequirement" do
27
+ optional :provider_id, :string, 1
28
+ optional :audiences, :string, 2
29
+ end
30
+ end
31
+
32
+ module Google
33
+ module Api
34
+ Authentication = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Authentication").msgclass
35
+ AuthenticationRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthenticationRule").msgclass
36
+ AuthProvider = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthProvider").msgclass
37
+ OAuthRequirements = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.OAuthRequirements").msgclass
38
+ AuthRequirement = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.AuthRequirement").msgclass
39
+ end
40
+ end
@@ -0,0 +1,22 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/backend.proto
3
+
4
+ require 'google/protobuf'
5
+
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
14
+ end
15
+ end
16
+
17
+ module Google
18
+ 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
21
+ end
22
+ end
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/billing.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/annotations_pb'
7
+ require 'google/api/metric_pb'
8
+ 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
16
+ end
17
+ end
18
+
19
+ module Google
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
23
+ end
24
+ end
@@ -0,0 +1,30 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/consumer.proto
3
+
4
+ require 'google/protobuf'
5
+
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
21
+ end
22
+ end
23
+
24
+ module Google
25
+ 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
29
+ end
30
+ end
@@ -0,0 +1,22 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/context.proto
3
+
4
+ require 'google/protobuf'
5
+
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
14
+ end
15
+ end
16
+
17
+ module Google
18
+ 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
21
+ end
22
+ end
@@ -0,0 +1,16 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/control.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_message "google.api.Control" do
8
+ optional :environment, :string, 1
9
+ end
10
+ end
11
+
12
+ module Google
13
+ module Api
14
+ Control = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Control").msgclass
15
+ end
16
+ end
@@ -0,0 +1,53 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/distribution.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/annotations_pb'
7
+ require 'google/protobuf/any_pb'
8
+ require 'google/protobuf/timestamp_pb'
9
+ 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"
27
+ 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
+ end
42
+ end
43
+
44
+ module Google
45
+ 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
52
+ end
53
+ end
@@ -0,0 +1,32 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/documentation.proto
3
+
4
+ require 'google/protobuf'
5
+
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"
23
+ end
24
+ end
25
+
26
+ module Google
27
+ 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
+ end
32
+ end
@@ -4,7 +4,11 @@
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
7
10
  add_message "google.api.HttpRule" do
11
+ optional :selector, :string, 1
8
12
  optional :body, :string, 7
9
13
  repeated :additional_bindings, :message, 11, "google.api.HttpRule"
10
14
  oneof :pattern do
@@ -24,6 +28,7 @@ end
24
28
 
25
29
  module Google
26
30
  module Api
31
+ Http = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Http").msgclass
27
32
  HttpRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.HttpRule").msgclass
28
33
  CustomHttpPattern = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.CustomHttpPattern").msgclass
29
34
  end
File without changes
@@ -0,0 +1,20 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/log.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/label_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_message "google.api.LogDescriptor" do
9
+ optional :name, :string, 1
10
+ repeated :labels, :message, 2, "google.api.LabelDescriptor"
11
+ optional :description, :string, 3
12
+ optional :display_name, :string, 4
13
+ end
14
+ end
15
+
16
+ module Google
17
+ module Api
18
+ LogDescriptor = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.LogDescriptor").msgclass
19
+ end
20
+ end
@@ -0,0 +1,23 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/logging.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/annotations_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_message "google.api.Logging" do
9
+ repeated :producer_destinations, :message, 1, "google.api.Logging.LoggingDestination"
10
+ repeated :consumer_destinations, :message, 2, "google.api.Logging.LoggingDestination"
11
+ end
12
+ add_message "google.api.Logging.LoggingDestination" do
13
+ optional :monitored_resource, :string, 3
14
+ repeated :logs, :string, 1
15
+ end
16
+ end
17
+
18
+ module Google
19
+ module Api
20
+ Logging = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Logging").msgclass
21
+ Logging::LoggingDestination = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Logging.LoggingDestination").msgclass
22
+ end
23
+ end
@@ -0,0 +1,46 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/metric.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/label_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_message "google.api.MetricDescriptor" do
9
+ optional :name, :string, 1
10
+ optional :type, :string, 8
11
+ repeated :labels, :message, 2, "google.api.LabelDescriptor"
12
+ optional :metric_kind, :enum, 3, "google.api.MetricDescriptor.MetricKind"
13
+ optional :value_type, :enum, 4, "google.api.MetricDescriptor.ValueType"
14
+ optional :unit, :string, 5
15
+ optional :description, :string, 6
16
+ optional :display_name, :string, 7
17
+ end
18
+ add_enum "google.api.MetricDescriptor.MetricKind" do
19
+ value :METRIC_KIND_UNSPECIFIED, 0
20
+ value :GAUGE, 1
21
+ value :DELTA, 2
22
+ value :CUMULATIVE, 3
23
+ end
24
+ add_enum "google.api.MetricDescriptor.ValueType" do
25
+ value :VALUE_TYPE_UNSPECIFIED, 0
26
+ value :BOOL, 1
27
+ value :INT64, 2
28
+ value :DOUBLE, 3
29
+ value :STRING, 4
30
+ value :DISTRIBUTION, 5
31
+ value :MONEY, 6
32
+ end
33
+ add_message "google.api.Metric" do
34
+ optional :type, :string, 3
35
+ map :labels, :string, :string, 2
36
+ end
37
+ end
38
+
39
+ module Google
40
+ module Api
41
+ MetricDescriptor = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.MetricDescriptor").msgclass
42
+ MetricDescriptor::MetricKind = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.MetricDescriptor.MetricKind").enummodule
43
+ MetricDescriptor::ValueType = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.MetricDescriptor.ValueType").enummodule
44
+ Metric = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Metric").msgclass
45
+ end
46
+ end
@@ -3,9 +3,10 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/api/label'
6
+ require 'google/api/label_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_message "google.api.MonitoredResourceDescriptor" do
9
+ optional :name, :string, 5
9
10
  optional :type, :string, 1
10
11
  optional :display_name, :string, 2
11
12
  optional :description, :string, 3
@@ -0,0 +1,23 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/monitoring.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/annotations_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_message "google.api.Monitoring" do
9
+ repeated :producer_destinations, :message, 1, "google.api.Monitoring.MonitoringDestination"
10
+ repeated :consumer_destinations, :message, 2, "google.api.Monitoring.MonitoringDestination"
11
+ end
12
+ add_message "google.api.Monitoring.MonitoringDestination" do
13
+ optional :monitored_resource, :string, 1
14
+ repeated :metrics, :string, 2
15
+ end
16
+ end
17
+
18
+ module Google
19
+ module Api
20
+ Monitoring = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Monitoring").msgclass
21
+ Monitoring::MonitoringDestination = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Monitoring.MonitoringDestination").msgclass
22
+ end
23
+ end
@@ -0,0 +1,59 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/service.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/annotations_pb'
7
+ require 'google/api/auth_pb'
8
+ require 'google/api/backend_pb'
9
+ require 'google/api/billing_pb'
10
+ require 'google/api/consumer_pb'
11
+ require 'google/api/context_pb'
12
+ require 'google/api/control_pb'
13
+ require 'google/api/documentation_pb'
14
+ require 'google/api/http_pb'
15
+ require 'google/api/label_pb'
16
+ require 'google/api/log_pb'
17
+ require 'google/api/logging_pb'
18
+ require 'google/api/metric_pb'
19
+ require 'google/api/monitored_resource_pb'
20
+ require 'google/api/monitoring_pb'
21
+ require 'google/api/system_parameter_pb'
22
+ require 'google/api/usage_pb'
23
+ require 'google/protobuf/any_pb'
24
+ require 'google/protobuf/api_pb'
25
+ require 'google/protobuf/type_pb'
26
+ require 'google/protobuf/wrappers_pb'
27
+ Google::Protobuf::DescriptorPool.generated_pool.build do
28
+ add_message "google.api.Service" do
29
+ optional :config_version, :message, 20, "google.protobuf.UInt32Value"
30
+ optional :name, :string, 1
31
+ optional :id, :string, 33
32
+ optional :title, :string, 2
33
+ optional :producer_project_id, :string, 22
34
+ repeated :apis, :message, 3, "google.protobuf.Api"
35
+ repeated :types, :message, 4, "google.protobuf.Type"
36
+ repeated :enums, :message, 5, "google.protobuf.Enum"
37
+ optional :documentation, :message, 6, "google.api.Documentation"
38
+ optional :backend, :message, 8, "google.api.Backend"
39
+ optional :http, :message, 9, "google.api.Http"
40
+ optional :authentication, :message, 11, "google.api.Authentication"
41
+ optional :context, :message, 12, "google.api.Context"
42
+ optional :usage, :message, 15, "google.api.Usage"
43
+ optional :project_properties, :message, 17, "google.api.ProjectProperties"
44
+ optional :control, :message, 21, "google.api.Control"
45
+ repeated :logs, :message, 23, "google.api.LogDescriptor"
46
+ repeated :metrics, :message, 24, "google.api.MetricDescriptor"
47
+ repeated :monitored_resources, :message, 25, "google.api.MonitoredResourceDescriptor"
48
+ optional :billing, :message, 26, "google.api.Billing"
49
+ optional :logging, :message, 27, "google.api.Logging"
50
+ optional :monitoring, :message, 28, "google.api.Monitoring"
51
+ optional :system_parameters, :message, 29, "google.api.SystemParameters"
52
+ end
53
+ end
54
+
55
+ module Google
56
+ module Api
57
+ Service = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Service").msgclass
58
+ end
59
+ end
@@ -0,0 +1,27 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/system_parameter.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_message "google.api.SystemParameters" do
8
+ repeated :rules, :message, 1, "google.api.SystemParameterRule"
9
+ end
10
+ add_message "google.api.SystemParameterRule" do
11
+ optional :selector, :string, 1
12
+ repeated :parameters, :message, 2, "google.api.SystemParameter"
13
+ end
14
+ add_message "google.api.SystemParameter" do
15
+ optional :name, :string, 1
16
+ optional :http_header, :string, 2
17
+ optional :url_query_parameter, :string, 3
18
+ end
19
+ end
20
+
21
+ module Google
22
+ module Api
23
+ SystemParameters = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.SystemParameters").msgclass
24
+ SystemParameterRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.SystemParameterRule").msgclass
25
+ SystemParameter = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.SystemParameter").msgclass
26
+ end
27
+ end
@@ -0,0 +1,33 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/usage.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_message "google.api.Usage" do
8
+ optional :service_access, :enum, 4, "google.api.Usage.ServiceAccess"
9
+ repeated :requirements, :string, 1
10
+ repeated :depends_on_services, :string, 2
11
+ repeated :activation_hooks, :string, 3
12
+ repeated :deactivation_hooks, :string, 5
13
+ repeated :rules, :message, 6, "google.api.UsageRule"
14
+ end
15
+ add_enum "google.api.Usage.ServiceAccess" do
16
+ value :RESTRICTED, 0
17
+ value :PUBLIC, 1
18
+ value :ORG_RESTRICTED, 2
19
+ value :ORG_PUBLIC, 3
20
+ end
21
+ add_message "google.api.UsageRule" do
22
+ optional :selector, :string, 1
23
+ optional :allow_unregistered_calls, :bool, 2
24
+ end
25
+ end
26
+
27
+ module Google
28
+ module Api
29
+ Usage = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Usage").msgclass
30
+ Usage::ServiceAccess = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Usage.ServiceAccess").enummodule
31
+ UsageRule = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.UsageRule").msgclass
32
+ end
33
+ end
@@ -3,7 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/api/annotations'
6
+ require 'google/api/annotations_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_message "google.logging.type.HttpRequest" do
9
9
  optional :request_method, :string, 1
@@ -13,9 +13,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
13
13
  optional :response_size, :int64, 5
14
14
  optional :user_agent, :string, 6
15
15
  optional :remote_ip, :string, 7
16
+ optional :server_ip, :string, 13
16
17
  optional :referer, :string, 8
18
+ optional :cache_lookup, :bool, 11
17
19
  optional :cache_hit, :bool, 9
18
- optional :validated_with_origin_server, :bool, 10
20
+ optional :cache_validated_with_origin_server, :bool, 10
21
+ optional :cache_fill_bytes, :int64, 12
19
22
  end
20
23
  end
21
24
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/api/annotations'
6
+ require 'google/api/annotations_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_enum "google.logging.type.LogSeverity" do
9
9
  value :DEFAULT, 0
@@ -3,10 +3,10 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/api/annotations'
7
- require 'google/protobuf/any'
8
- require 'google/protobuf/empty'
9
- require 'google/rpc/status'
6
+ require 'google/api/annotations_pb'
7
+ require 'google/protobuf/any_pb'
8
+ require 'google/protobuf/empty_pb'
9
+ require 'google/rpc/status_pb'
10
10
  Google::Protobuf::DescriptorPool.generated_pool.build do
11
11
  add_message "google.longrunning.Operation" do
12
12
  optional :name, :string, 1
File without changes
@@ -3,7 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/protobuf/duration'
6
+ require 'google/protobuf/duration_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_message "google.rpc.RetryInfo" do
9
9
  optional :retry_delay, :message, 1, "google.protobuf.Duration"
@@ -3,7 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/protobuf/any'
6
+ require 'google/protobuf/any_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_message "google.rpc.Status" do
9
9
  optional :code, :int32, 1
@@ -3,7 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/protobuf/wrappers'
6
+ require 'google/protobuf/wrappers_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_message "google.type.Color" do
9
9
  optional :red, :float, 1
File without changes
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: googleapis-common-protos
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-09 00:00:00.000000000 Z
11
+ date: 2016-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0.alpha.5.0
19
+ version: 3.0.0
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.0.alpha.5.0
26
+ version: 3.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -58,23 +58,38 @@ executables: []
58
58
  extensions: []
59
59
  extra_rdoc_files: []
60
60
  files:
61
- - lib/google/api/annotations.rb
62
- - lib/google/api/http.rb
63
- - lib/google/api/label.rb
64
- - lib/google/api/monitored_resource.rb
65
- - lib/google/logging/type/http_request.rb
66
- - lib/google/logging/type/log_severity.rb
67
- - lib/google/longrunning/operations.rb
68
- - lib/google/rpc/code.rb
69
- - lib/google/rpc/error_details.rb
70
- - lib/google/rpc/status.rb
71
- - lib/google/type/color.rb
72
- - lib/google/type/date.rb
73
- - lib/google/type/dayofweek.rb
74
- - lib/google/type/latlng.rb
75
- - lib/google/type/money.rb
76
- - lib/google/type/timeofday.rb
77
- homepage: https://github.com/google/googleapis
61
+ - lib/google/api/annotations_pb.rb
62
+ - lib/google/api/auth_pb.rb
63
+ - lib/google/api/backend_pb.rb
64
+ - lib/google/api/billing_pb.rb
65
+ - lib/google/api/consumer_pb.rb
66
+ - lib/google/api/context_pb.rb
67
+ - lib/google/api/control_pb.rb
68
+ - lib/google/api/distribution_pb.rb
69
+ - lib/google/api/documentation_pb.rb
70
+ - lib/google/api/http_pb.rb
71
+ - lib/google/api/label_pb.rb
72
+ - lib/google/api/log_pb.rb
73
+ - lib/google/api/logging_pb.rb
74
+ - lib/google/api/metric_pb.rb
75
+ - lib/google/api/monitored_resource_pb.rb
76
+ - lib/google/api/monitoring_pb.rb
77
+ - lib/google/api/service_pb.rb
78
+ - lib/google/api/system_parameter_pb.rb
79
+ - lib/google/api/usage_pb.rb
80
+ - lib/google/logging/type/http_request_pb.rb
81
+ - lib/google/logging/type/log_severity_pb.rb
82
+ - lib/google/longrunning/operations_pb.rb
83
+ - lib/google/rpc/code_pb.rb
84
+ - lib/google/rpc/error_details_pb.rb
85
+ - lib/google/rpc/status_pb.rb
86
+ - lib/google/type/color_pb.rb
87
+ - lib/google/type/date_pb.rb
88
+ - lib/google/type/dayofweek_pb.rb
89
+ - lib/google/type/latlng_pb.rb
90
+ - lib/google/type/money_pb.rb
91
+ - lib/google/type/timeofday_pb.rb
92
+ homepage: https://github.com/googleapis/googleapis
78
93
  licenses:
79
94
  - Apache-2.0
80
95
  metadata: {}
@@ -94,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
109
  version: '0'
95
110
  requirements: []
96
111
  rubyforge_project:
97
- rubygems_version: 2.4.8
112
+ rubygems_version: 2.5.1
98
113
  signing_key:
99
114
  specification_version: 4
100
115
  summary: Common protobufs used in Google APIs