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 Domains client #11244

Merged
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/domains/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_domains, "~> 0.8"}]
[{:google_api_domains, "~> 0.9"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ defmodule GoogleApi.Domains.V1.Api.Projects do
end

@doc """
Updates a `Registration`'s contact settings. Some changes require confirmation by the domain's registrant contact .
Updates a `Registration`'s contact settings. Some changes require confirmation by the domain's registrant contact . Caution: Please consider carefully any changes to contact privacy settings when changing from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA.` There may be a delay in reflecting updates you make to registrant contact information such that any changes you make to contact privacy (including from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA`) will be applied without delay but changes to registrant contact information may take a limited time to be publicized. This means that changes to contact privacy from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA` may make the previous registrant contact data public until the modified registrant contact details are published.

## Parameters

Expand Down
2 changes: 1 addition & 1 deletion clients/domains/lib/google_api/domains/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Domains.V1 do
API client metadata for GoogleApi.Domains.V1.
"""

@discovery_revision "20240305"
@discovery_revision "20240327"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ defmodule GoogleApi.Domains.V1alpha2.Api.Projects do
end

@doc """
Updates a `Registration`'s contact settings. Some changes require confirmation by the domain's registrant contact .
Updates a `Registration`'s contact settings. Some changes require confirmation by the domain's registrant contact . Caution: Please consider carefully any changes to contact privacy settings when changing from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA.` There may be a delay in reflecting updates you make to registrant contact information such that any changes you make to contact privacy (including from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA`) will be applied without delay but changes to registrant contact information may take a limited time to be publicized. This means that changes to contact privacy from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA` may make the previous registrant contact data public until the modified registrant contact details are published.

## Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Domains.V1alpha2 do
API client metadata for GoogleApi.Domains.V1alpha2.
"""

@discovery_revision "20240305"
@discovery_revision "20240327"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ defmodule GoogleApi.Domains.V1alpha2.Model.Registration do
* `managementSettings` (*type:* `GoogleApi.Domains.V1alpha2.Model.ManagementSettings.t`, *default:* `nil`) - Settings for management of the `Registration`, including renewal, billing, and transfer. You cannot update these with the `UpdateRegistration` method. To update these settings, use the `ConfigureManagementSettings` method.
* `name` (*type:* `String.t`, *default:* `nil`) - Output only. Name of the `Registration` resource, in the format `projects/*/locations/*/registrations/`.
* `pendingContactSettings` (*type:* `GoogleApi.Domains.V1alpha2.Model.ContactSettings.t`, *default:* `nil`) - Output only. Pending contact settings for the `Registration`. Updates to the `contact_settings` field that change its `registrant_contact` or `privacy` fields require email confirmation by the `registrant_contact` before taking effect. This field is set only if there are pending updates to the `contact_settings` that have not been confirmed. To confirm the changes, the `registrant_contact` must follow the instructions in the email they receive.
* `provider` (*type:* `String.t`, *default:* `nil`) - Output only. Current domain management provider.
* `registerFailureReason` (*type:* `String.t`, *default:* `nil`) - Output only. The reason the domain registration failed. Only set for domains in REGISTRATION_FAILED state.
* `state` (*type:* `String.t`, *default:* `nil`) - Output only. The state of the `Registration`
* `supportedPrivacy` (*type:* `list(String.t)`, *default:* `nil`) - Output only. Set of options for the `contact_settings.privacy` field that this `Registration` supports.
Expand All @@ -50,6 +51,7 @@ defmodule GoogleApi.Domains.V1alpha2.Model.Registration do
:managementSettings => GoogleApi.Domains.V1alpha2.Model.ManagementSettings.t() | nil,
:name => String.t() | nil,
:pendingContactSettings => GoogleApi.Domains.V1alpha2.Model.ContactSettings.t() | nil,
:provider => String.t() | nil,
:registerFailureReason => String.t() | nil,
:state => String.t() | nil,
:supportedPrivacy => list(String.t()) | nil,
Expand All @@ -66,6 +68,7 @@ defmodule GoogleApi.Domains.V1alpha2.Model.Registration do
field(:managementSettings, as: GoogleApi.Domains.V1alpha2.Model.ManagementSettings)
field(:name)
field(:pendingContactSettings, as: GoogleApi.Domains.V1alpha2.Model.ContactSettings)
field(:provider)
field(:registerFailureReason)
field(:state)
field(:supportedPrivacy, type: :list)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ defmodule GoogleApi.Domains.V1beta1.Api.Projects do
end

@doc """
Updates a `Registration`'s contact settings. Some changes require confirmation by the domain's registrant contact .
Updates a `Registration`'s contact settings. Some changes require confirmation by the domain's registrant contact . Caution: Please consider carefully any changes to contact privacy settings when changing from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA.` There may be a delay in reflecting updates you make to registrant contact information such that any changes you make to contact privacy (including from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA`) will be applied without delay but changes to registrant contact information may take a limited time to be publicized. This means that changes to contact privacy from `REDACTED_CONTACT_DATA` to `PUBLIC_CONTACT_DATA` may make the previous registrant contact data public until the modified registrant contact details are published.

## Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Domains.V1beta1 do
API client metadata for GoogleApi.Domains.V1beta1.
"""

@discovery_revision "20240305"
@discovery_revision "20240327"

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

@version "0.8.0"
@version "0.9.0"

def project() do
[
Expand Down
Loading