googleapis-common-protos-types 1.0.0

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 (40) hide show
  1. checksums.yaml +7 -0
  2. data/lib/google/api/annotations_pb.rb +13 -0
  3. data/lib/google/api/auth_pb.rb +42 -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/config_change_pb.rb +31 -0
  7. data/lib/google/api/consumer_pb.rb +30 -0
  8. data/lib/google/api/context_pb.rb +22 -0
  9. data/lib/google/api/control_pb.rb +16 -0
  10. data/lib/google/api/distribution_pb.rb +53 -0
  11. data/lib/google/api/documentation_pb.rb +32 -0
  12. data/lib/google/api/endpoint_pb.rb +22 -0
  13. data/lib/google/api/http_pb.rb +35 -0
  14. data/lib/google/api/httpbody_pb.rb +17 -0
  15. data/lib/google/api/label_pb.rb +24 -0
  16. data/lib/google/api/log_pb.rb +20 -0
  17. data/lib/google/api/logging_pb.rb +23 -0
  18. data/lib/google/api/metric_pb.rb +46 -0
  19. data/lib/google/api/monitored_resource_pb.rb +26 -0
  20. data/lib/google/api/monitoring_pb.rb +23 -0
  21. data/lib/google/api/quota_pb.rb +36 -0
  22. data/lib/google/api/service_pb.rb +63 -0
  23. data/lib/google/api/source_info_pb.rb +17 -0
  24. data/lib/google/api/system_parameter_pb.rb +27 -0
  25. data/lib/google/api/usage_pb.rb +25 -0
  26. data/lib/google/logging/type/http_request_pb.rb +34 -0
  27. data/lib/google/logging/type/log_severity_pb.rb +27 -0
  28. data/lib/google/longrunning/operations_pb.rb +50 -0
  29. data/lib/google/longrunning/operations_services_pb.rb +73 -0
  30. data/lib/google/rpc/code_pb.rb +32 -0
  31. data/lib/google/rpc/error_details_pb.rb +76 -0
  32. data/lib/google/rpc/status_pb.rb +19 -0
  33. data/lib/google/type/color_pb.rb +20 -0
  34. data/lib/google/type/date_pb.rb +18 -0
  35. data/lib/google/type/dayofweek_pb.rb +23 -0
  36. data/lib/google/type/latlng_pb.rb +17 -0
  37. data/lib/google/type/money_pb.rb +18 -0
  38. data/lib/google/type/postal_address_pb.rb +26 -0
  39. data/lib/google/type/timeofday_pb.rb +19 -0
  40. metadata +123 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 14f92fc36872fcfffa8a89121352530bc6efd272
4
+ data.tar.gz: 545bb1a02b55635f531d3daeb298e259c2814a17
5
+ SHA512:
6
+ metadata.gz: c4e1751fcbcad3f1787c28d0dd49015407612665286a45c3423360013b22856529e7ded5c420eab72cac526011b1d7207f706f96c5683da2acd67cea8a4a0363
7
+ data.tar.gz: 2f9f4a11e2f56ff08efe8fa450a25c1a4f05f5399efec77ef4ed1b3c40436e1d8178c1c4293da3ac9bd2daec6a3c8eeaffdfe5b264a9846968edc74de63be5f0
@@ -0,0 +1,13 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/annotations.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/http_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ end
9
+
10
+ module Google
11
+ module Api
12
+ end
13
+ end
@@ -0,0 +1,42 @@
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
+ 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
31
+ end
32
+ end
33
+
34
+ module Google
35
+ 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
41
+ end
42
+ 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,31 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/config_change.proto
3
+
4
+ require 'google/protobuf'
5
+
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
22
+ end
23
+ end
24
+
25
+ module Google
26
+ 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
30
+ end
31
+ 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
@@ -0,0 +1,22 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/endpoint.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.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
15
+ end
16
+ end
17
+
18
+ module Google
19
+ module Api
20
+ Endpoint = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.Endpoint").msgclass
21
+ end
22
+ end
@@ -0,0 +1,35 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/http.proto
3
+
4
+ require 'google/protobuf'
5
+
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"
21
+ end
22
+ end
23
+ add_message "google.api.CustomHttpPattern" do
24
+ optional :kind, :string, 1
25
+ optional :path, :string, 2
26
+ end
27
+ end
28
+
29
+ module Google
30
+ 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
34
+ end
35
+ end
@@ -0,0 +1,17 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/httpbody.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ 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
10
+ end
11
+ end
12
+
13
+ module Google
14
+ module Api
15
+ HttpBody = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.api.HttpBody").msgclass
16
+ end
17
+ end
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/api/label.proto
3
+
4
+ require 'google/protobuf'
5
+
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
16
+ end
17
+ end
18
+
19
+ module Google
20
+ 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
+ end
24
+ end
@@ -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