defmodule Google.Api.Quota do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0" field :limits, 3, repeated: true, type: Google.Api.QuotaLimit field :metric_rules, 4, repeated: true, type: Google.Api.MetricRule, json_name: "metricRules" end defmodule Google.Api.MetricRule.MetricCostsEntry do @moduledoc false use Protobuf, map: true, syntax: :proto3, protoc_gen_elixir_version: "0.12.0" field :key, 1, type: :string field :value, 2, type: :int64 end defmodule Google.Api.MetricRule do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0" field :selector, 1, type: :string field :metric_costs, 2, repeated: true, type: Google.Api.MetricRule.MetricCostsEntry, json_name: "metricCosts", map: true end defmodule Google.Api.QuotaLimit.ValuesEntry do @moduledoc false use Protobuf, map: true, syntax: :proto3, protoc_gen_elixir_version: "0.12.0" field :key, 1, type: :string field :value, 2, type: :int64 end defmodule Google.Api.QuotaLimit do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0" field :name, 6, type: :string field :description, 2, type: :string field :default_limit, 3, type: :int64, json_name: "defaultLimit" field :max_limit, 4, type: :int64, json_name: "maxLimit" field :free_tier, 7, type: :int64, json_name: "freeTier" field :duration, 5, type: :string field :metric, 8, type: :string field :unit, 9, type: :string field :values, 10, repeated: true, type: Google.Api.QuotaLimit.ValuesEntry, map: true field :display_name, 12, type: :string, json_name: "displayName" end