Current section
18 Versions
Jump to
Current section
18 Versions
Compare versions
5
files changed
+33
additions
-6
deletions
| @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding | |
| 11 11 | |
| 12 12 | ```elixir |
| 13 13 | def deps do |
| 14 | - [{:google_api_groups_settings, "~> 0.9"}] |
| 14 | + [{:google_api_groups_settings, "~> 0.10"}] |
| 15 15 | end |
| 16 16 | ``` |
| @@ -7,6 +7,7 @@ | |
| 7 7 | [<<"lib">>,<<"lib/google_api">>,<<"lib/google_api/groups_settings">>, |
| 8 8 | <<"lib/google_api/groups_settings/v1">>, |
| 9 9 | <<"lib/google_api/groups_settings/v1/connection.ex">>, |
| 10 | + <<"lib/google_api/groups_settings/v1/metadata.ex">>, |
| 10 11 | <<"lib/google_api/groups_settings/v1/api">>, |
| 11 12 | <<"lib/google_api/groups_settings/v1/api/groups.ex">>, |
| 12 13 | <<"lib/google_api/groups_settings/v1/model">>, |
| @@ -25,4 +26,4 @@ | |
| 25 26 | {<<"optional">>,false}, |
| 26 27 | {<<"repository">>,<<"hexpm">>}, |
| 27 28 | {<<"requirement">>,<<"~> 0.2">>}]]}. |
| 28 | - {<<"version">>,<<"0.9.0">>}. |
| 29 | + {<<"version">>,<<"0.10.0">>}. |
| @@ -50,7 +50,7 @@ defmodule GoogleApi.GroupsSettings.V1.Api.Groups do | |
| 50 50 | @spec groups_settings_groups_get(Tesla.Env.client(), String.t(), keyword(), keyword()) :: |
| 51 51 | {:ok, GoogleApi.GroupsSettings.V1.Model.Groups.t()} |
| 52 52 | | {:ok, Tesla.Env.t()} |
| 53 | - | {:error, Tesla.Env.t()} |
| 53 | + | {:error, any()} |
| 54 54 | def groups_settings_groups_get(connection, group_unique_id, optional_params \\ [], opts \\ []) do |
| 55 55 | optional_params_config = %{ |
| 56 56 | :alt => :query, |
| @@ -102,7 +102,7 @@ defmodule GoogleApi.GroupsSettings.V1.Api.Groups do | |
| 102 102 | @spec groups_settings_groups_patch(Tesla.Env.client(), String.t(), keyword(), keyword()) :: |
| 103 103 | {:ok, GoogleApi.GroupsSettings.V1.Model.Groups.t()} |
| 104 104 | | {:ok, Tesla.Env.t()} |
| 105 | - | {:error, Tesla.Env.t()} |
| 105 | + | {:error, any()} |
| 106 106 | def groups_settings_groups_patch(connection, group_unique_id, optional_params \\ [], opts \\ []) do |
| 107 107 | optional_params_config = %{ |
| 108 108 | :alt => :query, |
| @@ -155,7 +155,7 @@ defmodule GoogleApi.GroupsSettings.V1.Api.Groups do | |
| 155 155 | @spec groups_settings_groups_update(Tesla.Env.client(), String.t(), keyword(), keyword()) :: |
| 156 156 | {:ok, GoogleApi.GroupsSettings.V1.Model.Groups.t()} |
| 157 157 | | {:ok, Tesla.Env.t()} |
| 158 | - | {:error, Tesla.Env.t()} |
| 158 | + | {:error, any()} |
| 159 159 | def groups_settings_groups_update( |
| 160 160 | connection, |
| 161 161 | group_unique_id, |
| @@ -0,0 +1,26 @@ | |
| 1 | + # Copyright 2020 Google LLC |
| 2 | + # |
| 3 | + # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | + # you may not use this file except in compliance with the License. |
| 5 | + # You may obtain a copy of the License at |
| 6 | + # |
| 7 | + # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | + # |
| 9 | + # Unless required by applicable law or agreed to in writing, software |
| 10 | + # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | + # See the License for the specific language governing permissions and |
| 13 | + # limitations under the License. |
| 14 | + |
| 15 | + # NOTE: This file is auto generated by the elixir code generator program. |
| 16 | + # Do not edit this file manually. |
| 17 | + |
| 18 | + defmodule GoogleApi.GroupsSettings.V1 do |
| 19 | + @moduledoc """ |
| 20 | + API client metadata for GoogleApi.GroupsSettings.V1. |
| 21 | + """ |
| 22 | + |
| 23 | + @discovery_revision "20190725" |
| 24 | + |
| 25 | + def discovery_revision(), do: @discovery_revision |
| 26 | + end |
| @@ -18,7 +18,7 @@ | |
| 18 18 | defmodule GoogleApi.GroupsSettings.Mixfile do |
| 19 19 | use Mix.Project |
| 20 20 | |
| 21 | - @version "0.9.0" |
| 21 | + @version "0.10.0" |
| 22 22 | |
| 23 23 | def project() do |
| 24 24 | [ |