Skip to content

Commit

Permalink
feat: Automated regeneration of Datastream client (#12801)
Browse files Browse the repository at this point in the history
Auto-created at 2025-01-10 13:16:59 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Jan 10, 2025
1 parent e503eb4 commit 289b080
Show file tree
Hide file tree
Showing 7 changed files with 157 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/datastream/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_datastream, "~> 0.9"}]
[{:google_api_datastream, "~> 0.10"}]
end
```

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

@discovery_revision "20241204"
@discovery_revision "20250101"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ defmodule GoogleApi.Datastream.V1.Model.PostgresqlProfile do
* `hostname` (*type:* `String.t`, *default:* `nil`) - Required. Hostname for the PostgreSQL connection.
* `password` (*type:* `String.t`, *default:* `nil`) - Optional. Password for the PostgreSQL connection. Mutually exclusive with the `secret_manager_stored_password` field.
* `port` (*type:* `integer()`, *default:* `nil`) - Port for the PostgreSQL connection, default value is 5432.
* `sslConfig` (*type:* `GoogleApi.Datastream.V1.Model.PostgresqlSslConfig.t`, *default:* `nil`) - Optional. SSL configuration for the PostgreSQL connection. In case PostgresqlSslConfig is not set, the connection will use the default SSL mode, which is `prefer` (i.e. this mode will only use encryption if enabled from database side, otherwise will use unencrypted communication)
* `username` (*type:* `String.t`, *default:* `nil`) - Required. Username for the PostgreSQL connection.
"""

Expand All @@ -35,13 +36,15 @@ defmodule GoogleApi.Datastream.V1.Model.PostgresqlProfile do
:hostname => String.t() | nil,
:password => String.t() | nil,
:port => integer() | nil,
:sslConfig => GoogleApi.Datastream.V1.Model.PostgresqlSslConfig.t() | nil,
:username => String.t() | nil
}

field(:database)
field(:hostname)
field(:password)
field(:port)
field(:sslConfig, as: GoogleApi.Datastream.V1.Model.PostgresqlSslConfig)
field(:username)
end

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# NOTE: This file is auto generated by the elixir code generator program.
# Do not edit this file manually.

defmodule GoogleApi.Datastream.V1.Model.PostgresqlSslConfig do
@moduledoc """
PostgreSQL SSL configuration information.
## Attributes
* `serverAndClientVerification` (*type:* `GoogleApi.Datastream.V1.Model.ServerAndClientVerification.t`, *default:* `nil`) - If this field is set, the communication will be encrypted with TLS encryption and both the server identity and the client identity will be authenticated.
* `serverVerification` (*type:* `GoogleApi.Datastream.V1.Model.ServerVerification.t`, *default:* `nil`) - If this field is set, the communication will be encrypted with TLS encryption and the server identity will be authenticated.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:serverAndClientVerification =>
GoogleApi.Datastream.V1.Model.ServerAndClientVerification.t() | nil,
:serverVerification => GoogleApi.Datastream.V1.Model.ServerVerification.t() | nil
}

field(:serverAndClientVerification,
as: GoogleApi.Datastream.V1.Model.ServerAndClientVerification
)

field(:serverVerification, as: GoogleApi.Datastream.V1.Model.ServerVerification)
end

defimpl Poison.Decoder, for: GoogleApi.Datastream.V1.Model.PostgresqlSslConfig do
def decode(value, options) do
GoogleApi.Datastream.V1.Model.PostgresqlSslConfig.decode(value, options)
end
end

defimpl Poison.Encoder, for: GoogleApi.Datastream.V1.Model.PostgresqlSslConfig do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# NOTE: This file is auto generated by the elixir code generator program.
# Do not edit this file manually.

defmodule GoogleApi.Datastream.V1.Model.ServerAndClientVerification do
@moduledoc """
Message represents the option where Datastream will enforce the encryption and authenticate the server identity as well as the client identity. ca_certificate, client_certificate and client_key must be set if user selects this option.
## Attributes
* `caCertificate` (*type:* `String.t`, *default:* `nil`) - Required. Input only. PEM-encoded server root CA certificate.
* `clientCertificate` (*type:* `String.t`, *default:* `nil`) - Required. Input only. PEM-encoded certificate used by the source database to authenticate the client identity (i.e., the Datastream's identity). This certificate is signed by either a root certificate trusted by the server or one or more intermediate certificates (which is stored with the leaf certificate) to link the this certificate to the trusted root certificate.
* `clientKey` (*type:* `String.t`, *default:* `nil`) - Required. Input only. PEM-encoded private key associated with the client certificate. This value will be used during the SSL/TLS handshake, allowing the PostgreSQL server to authenticate the client's identity, i.e. identity of the Datastream.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:caCertificate => String.t() | nil,
:clientCertificate => String.t() | nil,
:clientKey => String.t() | nil
}

field(:caCertificate)
field(:clientCertificate)
field(:clientKey)
end

defimpl Poison.Decoder, for: GoogleApi.Datastream.V1.Model.ServerAndClientVerification do
def decode(value, options) do
GoogleApi.Datastream.V1.Model.ServerAndClientVerification.decode(value, options)
end
end

defimpl Poison.Encoder, for: GoogleApi.Datastream.V1.Model.ServerAndClientVerification do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# NOTE: This file is auto generated by the elixir code generator program.
# Do not edit this file manually.

defmodule GoogleApi.Datastream.V1.Model.ServerVerification do
@moduledoc """
Message represents the option where Datastream will enforce the encryption and authenticate the server identity. ca_certificate must be set if user selects this option.
## Attributes
* `caCertificate` (*type:* `String.t`, *default:* `nil`) - Required. Input only. PEM-encoded server root CA certificate.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:caCertificate => String.t() | nil
}

field(:caCertificate)
end

defimpl Poison.Decoder, for: GoogleApi.Datastream.V1.Model.ServerVerification do
def decode(value, options) do
GoogleApi.Datastream.V1.Model.ServerVerification.decode(value, options)
end
end

defimpl Poison.Encoder, for: GoogleApi.Datastream.V1.Model.ServerVerification do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end
2 changes: 1 addition & 1 deletion clients/datastream/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Datastream.Mixfile do
use Mix.Project

@version "0.9.0"
@version "0.10.0"

def project() do
[
Expand Down

0 comments on commit 289b080

Please sign in to comment.