Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of OSConfig client #11392

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/os_config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding

```elixir
def deps do
[{:google_api_os_config, "~> 0.21"}]
[{:google_api_os_config, "~> 0.22"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,7 @@ defmodule GoogleApi.OSConfig.V1.Api.Projects do
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
* `:osPolicyAssignmentId` (*type:* `String.t`) - Required. The logical name of the OS policy assignment in the project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the project.
* `:requestId` (*type:* `String.t`) - Optional. A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is only idempotent if a `request_id` is provided.
* `:body` (*type:* `GoogleApi.OSConfig.V1.Model.OSPolicyAssignment.t`) -
* `opts` (*type:* `keyword()`) - Call options

Expand Down Expand Up @@ -672,6 +673,7 @@ defmodule GoogleApi.OSConfig.V1.Api.Projects do
:uploadType => :query,
:upload_protocol => :query,
:osPolicyAssignmentId => :query,
:requestId => :query,
:body => :body
}

Expand Down Expand Up @@ -708,6 +710,7 @@ defmodule GoogleApi.OSConfig.V1.Api.Projects do
* `:quotaUser` (*type:* `String.t`) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
* `:requestId` (*type:* `String.t`) - Optional. A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is only idempotent if a `request_id` is provided.
* `opts` (*type:* `keyword()`) - Call options

## Returns
Expand Down Expand Up @@ -742,7 +745,8 @@ defmodule GoogleApi.OSConfig.V1.Api.Projects do
:prettyPrint => :query,
:quotaUser => :query,
:uploadType => :query,
:upload_protocol => :query
:upload_protocol => :query,
:requestId => :query
}

request =
Expand Down Expand Up @@ -1000,6 +1004,8 @@ defmodule GoogleApi.OSConfig.V1.Api.Projects do
* `:quotaUser` (*type:* `String.t`) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
* `:allowMissing` (*type:* `boolean()`) - Optional. If set to true, and the OS policy assignment is not found, a new OS policy assignment will be created. In this situation, `update_mask` is ignored.
* `:requestId` (*type:* `String.t`) - Optional. A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is only idempotent if a `request_id` is provided.
* `:updateMask` (*type:* `String.t`) - Optional. Field mask that controls which fields of the assignment should be updated.
* `:body` (*type:* `GoogleApi.OSConfig.V1.Model.OSPolicyAssignment.t`) -
* `opts` (*type:* `keyword()`) - Call options
Expand Down Expand Up @@ -1037,6 +1043,8 @@ defmodule GoogleApi.OSConfig.V1.Api.Projects do
:quotaUser => :query,
:uploadType => :query,
:upload_protocol => :query,
:allowMissing => :query,
:requestId => :query,
:updateMask => :query,
:body => :body
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.OSConfig.V1 do
API client metadata for GoogleApi.OSConfig.V1.
"""

@discovery_revision "20240407"
@discovery_revision "20240512"

def discovery_revision(), do: @discovery_revision
end
2 changes: 1 addition & 1 deletion clients/os_config/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.OSConfig.Mixfile do
use Mix.Project

@version "0.21.1"
@version "0.22.0"

def project() do
[
Expand Down
Loading