Skip to content

Commit

Permalink
feat: Automated regeneration of Integrations client (#12667)
Browse files Browse the repository at this point in the history
Auto-created at 2024-12-09 13:15:30 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Dec 9, 2024
1 parent a5f907d commit 980352b
Show file tree
Hide file tree
Showing 7 changed files with 249 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/integrations/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_integrations, "~> 0.12"}]
[{:google_api_integrations, "~> 0.13"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,85 @@ defmodule GoogleApi.Integrations.V1.Api.Projects do
)
end

@doc """
Generate OpenAPI spec for the requested integrations and api triggers
## Parameters
* `connection` (*type:* `GoogleApi.Integrations.V1.Connection.t`) - Connection to server
* `name` (*type:* `String.t`) - Required. Project and location from which the integrations should be fetched. Format: projects/{project}/location/{location}
* `optional_params` (*type:* `keyword()`) - Optional parameters
* `:"$.xgafv"` (*type:* `String.t`) - V1 error format.
* `:access_token` (*type:* `String.t`) - OAuth access token.
* `:alt` (*type:* `String.t`) - Data format for response.
* `:callback` (*type:* `String.t`) - JSONP
* `:fields` (*type:* `String.t`) - Selector specifying which fields to include in a partial response.
* `:key` (*type:* `String.t`) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
* `:oauth_token` (*type:* `String.t`) - OAuth 2.0 token for the current user.
* `:prettyPrint` (*type:* `boolean()`) - Returns response with indentations and line breaks.
* `: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").
* `:body` (*type:* `GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest.t`) -
* `opts` (*type:* `keyword()`) - Call options
## Returns
* `{:ok, %GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecResponse{}}` on success
* `{:error, info}` on failure
"""
@spec integrations_projects_locations_generate_open_api_spec(
Tesla.Env.client(),
String.t(),
keyword(),
keyword()
) ::
{:ok,
GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecResponse.t()}
| {:ok, Tesla.Env.t()}
| {:ok, list()}
| {:error, any()}
def integrations_projects_locations_generate_open_api_spec(
connection,
name,
optional_params \\ [],
opts \\ []
) do
optional_params_config = %{
:"$.xgafv" => :query,
:access_token => :query,
:alt => :query,
:callback => :query,
:fields => :query,
:key => :query,
:oauth_token => :query,
:prettyPrint => :query,
:quotaUser => :query,
:uploadType => :query,
:upload_protocol => :query,
:body => :body
}

request =
Request.new()
|> Request.method(:post)
|> Request.url("/v1/{+name}:generateOpenApiSpec", %{
"name" => URI.encode(name, &URI.char_unreserved?/1)
})
|> Request.add_optional_params(optional_params_config, optional_params)
|> Request.library_version(@library_version)

connection
|> Connection.execute(request)
|> Response.decode(
opts ++
[
struct:
%GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecResponse{}
]
)
end

@doc """
Gets the client configuration for the given project and location resource name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Integrations.V1 do
API client metadata for GoogleApi.Integrations.V1.
"""

@discovery_revision "20241201"
@discovery_revision "20241207"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 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.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaApiTriggerResource do
@moduledoc """
List of API triggerID and their workflow resource name.
## Attributes
* `integrationResource` (*type:* `String.t`, *default:* `nil`) - Required. Integration where the API is published
* `triggerId` (*type:* `list(String.t)`, *default:* `nil`) - Required. Trigger Id of the API trigger(s) in the integration
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:integrationResource => String.t() | nil,
:triggerId => list(String.t()) | nil
}

field(:integrationResource)
field(:triggerId, type: :list)
end

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

defimpl Poison.Encoder,
for: GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaApiTriggerResource 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,62 @@
# 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.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest do
@moduledoc """
Request for GenerateOpenApiSpec.
## Attributes
* `apiTriggerResources` (*type:* `list(GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaApiTriggerResource.t)`, *default:* `nil`) - Required. List of api triggers
* `fileFormat` (*type:* `String.t`, *default:* `nil`) - Required. File format for generated spec.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:apiTriggerResources =>
list(
GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaApiTriggerResource.t()
)
| nil,
:fileFormat => String.t() | nil
}

field(:apiTriggerResources,
as: GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaApiTriggerResource,
type: :list
)

field(:fileFormat)
end

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

defimpl Poison.Encoder,
for: GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest 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,51 @@
# 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.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecResponse do
@moduledoc """
Response of the GenerateOpenApiSpec API.
## Attributes
* `openApiSpec` (*type:* `String.t`, *default:* `nil`) - Open API spec as per the required format
"""

use GoogleApi.Gax.ModelBase

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

field(:openApiSpec)
end

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

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

@version "0.12.1"
@version "0.13.0"

def project() do
[
Expand Down

0 comments on commit 980352b

Please sign in to comment.