Skip to content

Commit d50f800

Browse files
feat: Automated regeneration of ServiceManagement client (googleapis#12529)
Auto-created at 2024-11-14 13:20:24 +0000 using the toys pull request generator.
1 parent 4d4da1e commit d50f800

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

clients/service_management/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_service_management, "~> 0.63"}]
14+
[{:google_api_service_management, "~> 0.64"}]
1515
end
1616
```
1717

clients/service_management/lib/google_api/service_management/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.ServiceManagement.V1 do
2020
API client metadata for GoogleApi.ServiceManagement.V1.
2121
"""
2222

23-
@discovery_revision "20240927"
23+
@discovery_revision "20241106"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/service_management/lib/google_api/service_management/v1/model/experimental_features.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,18 @@ defmodule GoogleApi.ServiceManagement.V1.Model.ExperimentalFeatures do
2121
2222
## Attributes
2323
24+
* `protobufPythonicTypesEnabled` (*type:* `boolean()`, *default:* `nil`) - Enables generation of protobuf code using new types that are more Pythonic which are included in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the feature in preview packages.
2425
* `restAsyncIoEnabled` (*type:* `boolean()`, *default:* `nil`) - Enables generation of asynchronous REST clients if `rest` transport is enabled. By default, asynchronous REST clients will not be generated. This feature will be enabled by default 1 month after launching the feature in preview packages.
2526
"""
2627

2728
use GoogleApi.Gax.ModelBase
2829

2930
@type t :: %__MODULE__{
31+
:protobufPythonicTypesEnabled => boolean() | nil,
3032
:restAsyncIoEnabled => boolean() | nil
3133
}
3234

35+
field(:protobufPythonicTypesEnabled)
3336
field(:restAsyncIoEnabled)
3437
end
3538

clients/service_management/lib/google_api/service_management/v1/model/quota_limit.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ defmodule GoogleApi.ServiceManagement.V1.Model.QuotaLimit do
2929
* `maxLimit` (*type:* `String.t`, *default:* `nil`) - Maximum number of tokens that can be consumed during the specified duration. Client application developers can override the default limit up to this maximum. If specified, this value cannot be set to a value less than the default limit. If not specified, it is set to the default limit. To allow clients to apply overrides with no upper bound, set this to -1, indicating unlimited maximum quota. Used by group-based quotas only.
3030
* `metric` (*type:* `String.t`, *default:* `nil`) - The name of the metric this quota limit applies to. The quota limits with the same metric will be checked together during runtime. The metric must be defined within the service config.
3131
* `name` (*type:* `String.t`, *default:* `nil`) - Name of the quota limit. The name must be provided, and it must be unique within the service. The name can only include alphanumeric characters as well as '-'. The maximum length of the limit name is 64 characters.
32-
* `unit` (*type:* `String.t`, *default:* `nil`) - Specify the unit of the quota limit. It uses the same syntax as Metric.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * "1/min/{project}" for quota per minute per project. Note: the order of unit components is insignificant. The "1" at the beginning is required to follow the metric unit syntax.
32+
* `unit` (*type:* `String.t`, *default:* `nil`) - Specify the unit of the quota limit. It uses the same syntax as MetricDescriptor.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * "1/min/{project}" for quota per minute per project. Note: the order of unit components is insignificant. The "1" at the beginning is required to follow the metric unit syntax.
3333
* `values` (*type:* `map()`, *default:* `nil`) - Tiered limit values. You must specify this as a key:value pair, with an integer value that is the maximum number of requests allowed for the specified unit. Currently only STANDARD is supported.
3434
"""
3535

clients/service_management/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.ServiceManagement.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.63.1"
21+
@version "0.64.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)