From 82805f52cbefebc8416831e7c714e348a21146ae Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Fri, 15 Jul 2022 14:20:15 -0700 Subject: [PATCH] feat: Automated regeneration of AnalyticsHub client (#10054) Auto-created at 2022-07-15 21:15:48 +0000 using the toys pull request generator. --- clients/analytics_hub/.gitignore | 37 + clients/analytics_hub/LICENSE | 201 +++ clients/analytics_hub/README.md | 23 + clients/analytics_hub/config/config.exs | 20 + .../v1beta1/api/organizations.ex | 103 ++ .../analytics_hub/v1beta1/api/projects.ex | 1393 +++++++++++++++++ .../analytics_hub/v1beta1/connection.ex | 35 + .../analytics_hub/v1beta1/metadata.ex | 26 + .../v1beta1/model/audit_config.ex | 49 + .../v1beta1/model/audit_log_config.ex | 49 + .../v1beta1/model/big_query_dataset_source.ex | 46 + .../analytics_hub/v1beta1/model/binding.ex | 52 + .../v1beta1/model/data_exchange.ex | 64 + .../v1beta1/model/data_provider.ex | 49 + .../v1beta1/model/destination_dataset.ex | 59 + .../model/destination_dataset_reference.ex | 49 + .../analytics_hub/v1beta1/model/empty.ex | 41 + .../analytics_hub/v1beta1/model/expr.ex | 55 + .../v1beta1/model/get_iam_policy_request.ex | 46 + .../v1beta1/model/get_policy_options.ex | 46 + .../model/list_data_exchanges_response.ex | 49 + .../v1beta1/model/list_listings_response.ex | 49 + .../v1beta1/model/list_locations_response.ex | 49 + .../model/list_org_data_exchanges_response.ex | 49 + .../analytics_hub/v1beta1/model/listing.ex | 80 + .../analytics_hub/v1beta1/model/location.ex | 58 + .../v1beta1/model/operation_metadata.ex | 64 + .../analytics_hub/v1beta1/model/policy.ex | 55 + .../analytics_hub/v1beta1/model/publisher.ex | 49 + .../v1beta1/model/set_iam_policy_request.ex | 49 + .../model/subscribe_listing_request.ex | 46 + .../model/subscribe_listing_response.ex | 41 + .../model/test_iam_permissions_request.ex | 46 + .../model/test_iam_permissions_response.ex | 46 + clients/analytics_hub/mix.exs | 66 + clients/analytics_hub/test/test_helper.exs | 35 + 36 files changed, 3274 insertions(+) create mode 100644 clients/analytics_hub/.gitignore create mode 100644 clients/analytics_hub/LICENSE create mode 100644 clients/analytics_hub/README.md create mode 100644 clients/analytics_hub/config/config.exs create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/api/organizations.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/api/projects.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/connection.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/metadata.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/audit_config.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/audit_log_config.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/big_query_dataset_source.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/binding.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/data_exchange.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/data_provider.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/destination_dataset.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/destination_dataset_reference.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/empty.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/expr.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/get_iam_policy_request.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/get_policy_options.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_data_exchanges_response.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_listings_response.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_locations_response.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_org_data_exchanges_response.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/listing.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/location.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/operation_metadata.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/policy.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/publisher.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/set_iam_policy_request.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/subscribe_listing_request.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/subscribe_listing_response.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/test_iam_permissions_request.ex create mode 100644 clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/test_iam_permissions_response.ex create mode 100644 clients/analytics_hub/mix.exs create mode 100644 clients/analytics_hub/test/test_helper.exs diff --git a/clients/analytics_hub/.gitignore b/clients/analytics_hub/.gitignore new file mode 100644 index 0000000000..6bf4496152 --- /dev/null +++ b/clients/analytics_hub/.gitignore @@ -0,0 +1,37 @@ +# 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. + +# The directory Mix will write compiled artifacts to. +/_build + +# If you run "mix test --cover", coverage assets end up here. +/cover + +# The directory Mix downloads your dependencies sources to. +/deps + +# Where 3rd-party dependencies like ExDoc output generated docs. +/doc + +# Ignore .fetch files in case you like to edit your project deps locally. +/.fetch + +# If the VM crashes, it generates a dump, let's ignore it too. +erl_crash.dump + +# Also ignore archive artifacts (built via "mix archive.build"). +*.ez diff --git a/clients/analytics_hub/LICENSE b/clients/analytics_hub/LICENSE new file mode 100644 index 0000000000..261eeb9e9f --- /dev/null +++ b/clients/analytics_hub/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/clients/analytics_hub/README.md b/clients/analytics_hub/README.md new file mode 100644 index 0000000000..c53520c260 --- /dev/null +++ b/clients/analytics_hub/README.md @@ -0,0 +1,23 @@ +# GoogleApi.AnalyticsHub + +Analytics Hub API client library. + +Exchange data and analytics assets securely and efficiently. + +## Installation + +Install this package from [Hex](https://hex.pm) by adding +`google_api_analytics_hub` to your list of dependencies in `mix.exs`: + +```elixir +def deps do + [{:google_api_analytics_hub, "~> 0.2"}] +end +``` + +## For more information + +Product documentation is available at [https://cloud.google.com/bigquery/docs/analytics-hub-introduction](https://cloud.google.com/bigquery/docs/analytics-hub-introduction). + +Library reference documentation is published on Hexdocs at +[https://hexdocs.pm/google_api_analytics_hub](https://hexdocs.pm/google_api_analytics_hub). diff --git a/clients/analytics_hub/config/config.exs b/clients/analytics_hub/config/config.exs new file mode 100644 index 0000000000..07afe5f311 --- /dev/null +++ b/clients/analytics_hub/config/config.exs @@ -0,0 +1,20 @@ +# 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. + +use Mix.Config + + diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/api/organizations.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/api/organizations.ex new file mode 100644 index 0000000000..995b8eb55d --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/api/organizations.ex @@ -0,0 +1,103 @@ +# 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.AnalyticsHub.V1beta1.Api.Organizations do + @moduledoc """ + API calls for all endpoints tagged `Organizations`. + """ + + alias GoogleApi.AnalyticsHub.V1beta1.Connection + alias GoogleApi.Gax.{Request, Response} + + @library_version Mix.Project.config() |> Keyword.get(:version, "") + + @doc """ + Lists all data exchanges from projects in a given organization and location. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `organization` (*type:* `String.t`) - Required. The organization resource path of the projects containing DataExchanges. e.g. `organizations/myorg/locations/US`. + * `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"). + * `:pageSize` (*type:* `integer()`) - The maximum number of results to return in a single response page. Leverage the page tokens to iterate through the entire collection. + * `:pageToken` (*type:* `String.t`) - Page token, returned by a previous call, to request the next page of results. + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.ListOrgDataExchangesResponse{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_organizations_locations_data_exchanges_list( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.ListOrgDataExchangesResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_organizations_locations_data_exchanges_list( + connection, + organization, + 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, + :pageSize => :query, + :pageToken => :query + } + + request = + Request.new() + |> Request.method(:get) + |> Request.url("/v1beta1/{+organization}/dataExchanges", %{ + "organization" => URI.encode(organization, &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.AnalyticsHub.V1beta1.Model.ListOrgDataExchangesResponse{}] + ) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/api/projects.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/api/projects.ex new file mode 100644 index 0000000000..e8d8ec4356 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/api/projects.ex @@ -0,0 +1,1393 @@ +# 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.AnalyticsHub.V1beta1.Api.Projects do + @moduledoc """ + API calls for all endpoints tagged `Projects`. + """ + + alias GoogleApi.AnalyticsHub.V1beta1.Connection + alias GoogleApi.Gax.{Request, Response} + + @library_version Mix.Project.config() |> Keyword.get(:version, "") + + @doc """ + Gets information about a location. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Resource name for the 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"). + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Location{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_get(Tesla.Env.client(), String.t(), keyword(), keyword()) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Location.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_get(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 + } + + request = + Request.new() + |> Request.method(:get) + |> Request.url("/v1beta1/{+name}", %{ + "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.AnalyticsHub.V1beta1.Model.Location{}]) + end + + @doc """ + Lists information about the supported locations for this service. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - The resource that owns the locations collection, if applicable. + * `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"). + * `:filter` (*type:* `String.t`) - A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160). + * `:pageSize` (*type:* `integer()`) - The maximum number of results to return. If not set, the service selects a default. + * `:pageToken` (*type:* `String.t`) - A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.ListLocationsResponse{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_list(Tesla.Env.client(), String.t(), keyword(), keyword()) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.ListLocationsResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_list(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, + :filter => :query, + :pageSize => :query, + :pageToken => :query + } + + request = + Request.new() + |> Request.method(:get) + |> Request.url("/v1beta1/{+name}/locations", %{ + "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.AnalyticsHub.V1beta1.Model.ListLocationsResponse{}] + ) + end + + @doc """ + Creates a new data exchange. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `parent` (*type:* `String.t`) - Required. The parent resource path of the data exchange. e.g. `projects/myproject/locations/US`. + * `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"). + * `:dataExchangeId` (*type:* `String.t`) - Required. The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Max length: 100 bytes. + * `:body` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_create( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_create( + connection, + parent, + 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, + :dataExchangeId => :query, + :body => :body + } + + request = + Request.new() + |> Request.method(:post) + |> Request.url("/v1beta1/{+parent}/dataExchanges", %{ + "parent" => URI.encode(parent, &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.AnalyticsHub.V1beta1.Model.DataExchange{}]) + end + + @doc """ + Deletes an existing data exchange. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Required. The full name of the data exchange resource that you want to delete. For example, `projects/myproject/locations/US/dataExchanges/123`. + * `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"). + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Empty{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_delete( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Empty.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_delete( + 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 + } + + request = + Request.new() + |> Request.method(:delete) + |> Request.url("/v1beta1/{+name}", %{ + "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.AnalyticsHub.V1beta1.Model.Empty{}]) + end + + @doc """ + Gets the details of a data exchange. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Required. The resource name of the data exchange. e.g. `projects/myproject/locations/US/dataExchanges/123`. + * `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"). + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_get( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_get( + 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 + } + + request = + Request.new() + |> Request.method(:get) + |> Request.url("/v1beta1/{+name}", %{ + "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.AnalyticsHub.V1beta1.Model.DataExchange{}]) + end + + @doc """ + Gets the IAM policy. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `resource` (*type:* `String.t`) - REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. + * `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.AnalyticsHub.V1beta1.Model.GetIamPolicyRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Policy{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_get_iam_policy( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Policy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_get_iam_policy( + connection, + resource, + 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("/v1beta1/{+resource}:getIamPolicy", %{ + "resource" => URI.encode(resource, &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.AnalyticsHub.V1beta1.Model.Policy{}]) + end + + @doc """ + Lists all data exchanges in a given project and location. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `parent` (*type:* `String.t`) - Required. The parent resource path of the data exchanges. e.g. `projects/myproject/locations/US`. + * `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"). + * `:pageSize` (*type:* `integer()`) - The maximum number of results to return in a single response page. Leverage the page tokens to iterate through the entire collection. + * `:pageToken` (*type:* `String.t`) - Page token, returned by a previous call, to request the next page of results. + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.ListDataExchangesResponse{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_list( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.ListDataExchangesResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_list( + connection, + parent, + 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, + :pageSize => :query, + :pageToken => :query + } + + request = + Request.new() + |> Request.method(:get) + |> Request.url("/v1beta1/{+parent}/dataExchanges", %{ + "parent" => URI.encode(parent, &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.AnalyticsHub.V1beta1.Model.ListDataExchangesResponse{}] + ) + end + + @doc """ + Updates an existing data exchange. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Output only. The resource name of the data exchange. e.g. `projects/myproject/locations/US/dataExchanges/123`. + * `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"). + * `:updateMask` (*type:* `String.t`) - Required. Field mask specifies the fields to update in the data exchange resource. The fields specified in the `updateMask` are relative to the resource and are not a full request. + * `:body` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_patch( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_patch( + 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, + :updateMask => :query, + :body => :body + } + + request = + Request.new() + |> Request.method(:patch) + |> Request.url("/v1beta1/{+name}", %{ + "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.AnalyticsHub.V1beta1.Model.DataExchange{}]) + end + + @doc """ + Sets the IAM policy. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `resource` (*type:* `String.t`) - REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. + * `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.AnalyticsHub.V1beta1.Model.SetIamPolicyRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Policy{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_set_iam_policy( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Policy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_set_iam_policy( + connection, + resource, + 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("/v1beta1/{+resource}:setIamPolicy", %{ + "resource" => URI.encode(resource, &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.AnalyticsHub.V1beta1.Model.Policy{}]) + end + + @doc """ + Returns the permissions that a caller has. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `resource` (*type:* `String.t`) - REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. + * `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.AnalyticsHub.V1beta1.Model.TestIamPermissionsRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_test_iam_permissions( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_test_iam_permissions( + connection, + resource, + 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("/v1beta1/{+resource}:testIamPermissions", %{ + "resource" => URI.encode(resource, &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.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse{}] + ) + end + + @doc """ + Creates a new listing. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `parent` (*type:* `String.t`) - Required. The parent resource path of the listing. e.g. `projects/myproject/locations/US/dataExchanges/123`. + * `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"). + * `:listingId` (*type:* `String.t`) - Required. The ID of the listing to create. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Max length: 100 bytes. + * `:body` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.Listing.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Listing{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_create( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Listing.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_create( + connection, + parent, + 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, + :listingId => :query, + :body => :body + } + + request = + Request.new() + |> Request.method(:post) + |> Request.url("/v1beta1/{+parent}/listings", %{ + "parent" => URI.encode(parent, &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.AnalyticsHub.V1beta1.Model.Listing{}]) + end + + @doc """ + Deletes a listing. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Required. Resource name of the listing to delete. e.g. `projects/myproject/locations/US/dataExchanges/123/listings/456`. + * `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"). + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Empty{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_delete( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Empty.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_delete( + 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 + } + + request = + Request.new() + |> Request.method(:delete) + |> Request.url("/v1beta1/{+name}", %{ + "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.AnalyticsHub.V1beta1.Model.Empty{}]) + end + + @doc """ + Gets the details of a listing. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Required. The resource name of the listing. e.g. `projects/myproject/locations/US/dataExchanges/123/listings/456`. + * `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"). + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Listing{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_get( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Listing.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_get( + 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 + } + + request = + Request.new() + |> Request.method(:get) + |> Request.url("/v1beta1/{+name}", %{ + "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.AnalyticsHub.V1beta1.Model.Listing{}]) + end + + @doc """ + Gets the IAM policy. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `resource` (*type:* `String.t`) - REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. + * `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.AnalyticsHub.V1beta1.Model.GetIamPolicyRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Policy{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_get_iam_policy( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Policy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_get_iam_policy( + connection, + resource, + 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("/v1beta1/{+resource}:getIamPolicy", %{ + "resource" => URI.encode(resource, &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.AnalyticsHub.V1beta1.Model.Policy{}]) + end + + @doc """ + Lists all listings in a given project and location. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `parent` (*type:* `String.t`) - Required. The parent resource path of the listing. e.g. `projects/myproject/locations/US/dataExchanges/123`. + * `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"). + * `:pageSize` (*type:* `integer()`) - The maximum number of results to return in a single response page. Leverage the page tokens to iterate through the entire collection. + * `:pageToken` (*type:* `String.t`) - Page token, returned by a previous call, to request the next page of results. + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.ListListingsResponse{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_list( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.ListListingsResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_list( + connection, + parent, + 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, + :pageSize => :query, + :pageToken => :query + } + + request = + Request.new() + |> Request.method(:get) + |> Request.url("/v1beta1/{+parent}/listings", %{ + "parent" => URI.encode(parent, &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.AnalyticsHub.V1beta1.Model.ListListingsResponse{}] + ) + end + + @doc """ + Updates an existing listing. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Output only. The resource name of the listing. e.g. `projects/myproject/locations/US/dataExchanges/123/listings/456` + * `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"). + * `:updateMask` (*type:* `String.t`) - Required. Field mask specifies the fields to update in the listing resource. The fields specified in the `updateMask` are relative to the resource and are not a full request. + * `:body` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.Listing.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Listing{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_patch( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Listing.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_patch( + 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, + :updateMask => :query, + :body => :body + } + + request = + Request.new() + |> Request.method(:patch) + |> Request.url("/v1beta1/{+name}", %{ + "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.AnalyticsHub.V1beta1.Model.Listing{}]) + end + + @doc """ + Sets the IAM policy. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `resource` (*type:* `String.t`) - REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. + * `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.AnalyticsHub.V1beta1.Model.SetIamPolicyRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.Policy{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_set_iam_policy( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.Policy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_set_iam_policy( + connection, + resource, + 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("/v1beta1/{+resource}:setIamPolicy", %{ + "resource" => URI.encode(resource, &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.AnalyticsHub.V1beta1.Model.Policy{}]) + end + + @doc """ + Subscribes to a listing. Currently, with Analytics Hub, you can create listings that reference only BigQuery datasets. Upon subscription to a listing for a BigQuery dataset, Analytics Hub creates a linked dataset in the subscriber's project. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Required. Resource name of the listing that you want to subscribe to. e.g. `projects/myproject/locations/US/dataExchanges/123/listings/456`. + * `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.AnalyticsHub.V1beta1.Model.SubscribeListingRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.SubscribeListingResponse{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_subscribe( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.SubscribeListingResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_subscribe( + 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("/v1beta1/{+name}:subscribe", %{ + "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.AnalyticsHub.V1beta1.Model.SubscribeListingResponse{}] + ) + end + + @doc """ + Returns the permissions that a caller has. + + ## Parameters + + * `connection` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Connection.t`) - Connection to server + * `resource` (*type:* `String.t`) - REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. + * `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.AnalyticsHub.V1beta1.Model.TestIamPermissionsRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse{}}` on success + * `{:error, info}` on failure + """ + @spec analyticshub_projects_locations_data_exchanges_listings_test_iam_permissions( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def analyticshub_projects_locations_data_exchanges_listings_test_iam_permissions( + connection, + resource, + 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("/v1beta1/{+resource}:testIamPermissions", %{ + "resource" => URI.encode(resource, &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.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse{}] + ) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/connection.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/connection.ex new file mode 100644 index 0000000000..a3efa4246f --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/connection.ex @@ -0,0 +1,35 @@ +# 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.AnalyticsHub.V1beta1.Connection do + @moduledoc """ + Handle Tesla connections for GoogleApi.AnalyticsHub.V1beta1. + """ + + @type t :: Tesla.Env.client() + + use GoogleApi.Gax.Connection, + scopes: [ + # View and manage your data in Google BigQuery and see the email address for your Google Account + "https://www.googleapis.com/auth/bigquery", + + # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account. + "https://www.googleapis.com/auth/cloud-platform" + ], + otp_app: :google_api_analytics_hub, + base_url: "https://analyticshub.googleapis.com/" +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/metadata.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/metadata.ex new file mode 100644 index 0000000000..a0b7b24d51 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/metadata.ex @@ -0,0 +1,26 @@ +# Copyright 2020 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.AnalyticsHub.V1beta1 do + @moduledoc """ + API client metadata for GoogleApi.AnalyticsHub.V1beta1. + """ + + @discovery_revision "20220708" + + def discovery_revision(), do: @discovery_revision +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/audit_config.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/audit_config.ex new file mode 100644 index 0000000000..8a7ee80fe9 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/audit_config.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.AuditConfig do + @moduledoc """ + Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { "audit_configs": [ { "service": "allServices", "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:jose@example.com" ] }, { "log_type": "DATA_WRITE" }, { "log_type": "ADMIN_READ" } ] }, { "service": "sampleservice.googleapis.com", "audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type": "DATA_WRITE", "exempted_members": [ "user:aliya@example.com" ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com` from DATA_WRITE logging. + + ## Attributes + + * `auditLogConfigs` (*type:* `list(GoogleApi.AnalyticsHub.V1beta1.Model.AuditLogConfig.t)`, *default:* `nil`) - The configuration for logging of each type of permission. + * `service` (*type:* `String.t`, *default:* `nil`) - Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :auditLogConfigs => list(GoogleApi.AnalyticsHub.V1beta1.Model.AuditLogConfig.t()) | nil, + :service => String.t() | nil + } + + field(:auditLogConfigs, as: GoogleApi.AnalyticsHub.V1beta1.Model.AuditLogConfig, type: :list) + field(:service) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.AuditConfig do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.AuditConfig.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.AuditConfig do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/audit_log_config.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/audit_log_config.ex new file mode 100644 index 0000000000..c37902bfcc --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/audit_log_config.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.AuditLogConfig do + @moduledoc """ + Provides the configuration for logging a type of permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:jose@example.com" ] }, { "log_type": "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting jose@example.com from DATA_READ logging. + + ## Attributes + + * `exemptedMembers` (*type:* `list(String.t)`, *default:* `nil`) - Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. + * `logType` (*type:* `String.t`, *default:* `nil`) - The log type that this config enables. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :exemptedMembers => list(String.t()) | nil, + :logType => String.t() | nil + } + + field(:exemptedMembers, type: :list) + field(:logType) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.AuditLogConfig do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.AuditLogConfig.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.AuditLogConfig do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/big_query_dataset_source.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/big_query_dataset_source.ex new file mode 100644 index 0000000000..ee12e57dd5 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/big_query_dataset_source.ex @@ -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.AnalyticsHub.V1beta1.Model.BigQueryDatasetSource do + @moduledoc """ + A reference to a shared dataset. It is an existing BigQuery dataset with a collection of objects such as tables and views that you want to share with subscribers. When subscriber's subscribe to a listing, Analytics Hub creates a linked dataset in the subscriber's project. A Linked dataset is an opaque, read-only BigQuery dataset that serves as a _symbolic link_ to a shared dataset. + + ## Attributes + + * `dataset` (*type:* `String.t`, *default:* `nil`) - Resource name of the dataset source for this listing. e.g. `projects/myproject/datasets/123` + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :dataset => String.t() | nil + } + + field(:dataset) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.BigQueryDatasetSource do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.BigQueryDatasetSource.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.BigQueryDatasetSource do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/binding.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/binding.ex new file mode 100644 index 0000000000..247630a0a6 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/binding.ex @@ -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.AnalyticsHub.V1beta1.Model.Binding do + @moduledoc """ + Associates `members`, or principals, with a `role`. + + ## Attributes + + * `condition` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.Expr.t`, *default:* `nil`) - The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). + * `members` (*type:* `list(String.t)`, *default:* `nil`) - Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. + * `role` (*type:* `String.t`, *default:* `nil`) - Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :condition => GoogleApi.AnalyticsHub.V1beta1.Model.Expr.t() | nil, + :members => list(String.t()) | nil, + :role => String.t() | nil + } + + field(:condition, as: GoogleApi.AnalyticsHub.V1beta1.Model.Expr) + field(:members, type: :list) + field(:role) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Binding do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.Binding.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Binding do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/data_exchange.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/data_exchange.ex new file mode 100644 index 0000000000..5a0fccfe41 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/data_exchange.ex @@ -0,0 +1,64 @@ +# 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.AnalyticsHub.V1beta1.Model.DataExchange do + @moduledoc """ + A data exchange is a container that lets you share data. Along with the descriptive information about the data exchange, it contains listings that reference shared datasets. + + ## Attributes + + * `description` (*type:* `String.t`, *default:* `nil`) - Optional. Description of the data exchange. The description must not contain Unicode non-characters as well as C0 and C1 control codes except tabs (HT), new lines (LF), carriage returns (CR), and page breaks (FF). Default value is an empty string. Max length: 2000 bytes. + * `displayName` (*type:* `String.t`, *default:* `nil`) - Required. Human-readable display name of the data exchange. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), and must not start or end with spaces. Default value is an empty string. Max length: 63 bytes. + * `documentation` (*type:* `String.t`, *default:* `nil`) - Optional. Documentation describing the data exchange. + * `icon` (*type:* `String.t`, *default:* `nil`) - Optional. Base64 encoded image representing the data exchange. Max Size: 3.0MiB Expected image dimensions are 512x512 pixels, however the API only performs validation on size of the encoded data. Note: For byte fields, the content of the fields are base64-encoded (which increases the size of the data by 33-36%) when using JSON on the wire. + * `listingCount` (*type:* `integer()`, *default:* `nil`) - Output only. Number of listings contained in the data exchange. + * `name` (*type:* `String.t`, *default:* `nil`) - Output only. The resource name of the data exchange. e.g. `projects/myproject/locations/US/dataExchanges/123`. + * `primaryContact` (*type:* `String.t`, *default:* `nil`) - Optional. Email or URL of the primary point of contact of the data exchange. Max Length: 1000 bytes. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :description => String.t() | nil, + :displayName => String.t() | nil, + :documentation => String.t() | nil, + :icon => String.t() | nil, + :listingCount => integer() | nil, + :name => String.t() | nil, + :primaryContact => String.t() | nil + } + + field(:description) + field(:displayName) + field(:documentation) + field(:icon) + field(:listingCount) + field(:name) + field(:primaryContact) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/data_provider.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/data_provider.ex new file mode 100644 index 0000000000..8e1f6fb0fb --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/data_provider.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.DataProvider do + @moduledoc """ + Contains details of the data provider. + + ## Attributes + + * `name` (*type:* `String.t`, *default:* `nil`) - Optional. Name of the data provider. + * `primaryContact` (*type:* `String.t`, *default:* `nil`) - Optional. Email or URL of the data provider. Max Length: 1000 bytes. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :name => String.t() | nil, + :primaryContact => String.t() | nil + } + + field(:name) + field(:primaryContact) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.DataProvider do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.DataProvider.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.DataProvider do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/destination_dataset.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/destination_dataset.ex new file mode 100644 index 0000000000..051b4ec28a --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/destination_dataset.ex @@ -0,0 +1,59 @@ +# 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.AnalyticsHub.V1beta1.Model.DestinationDataset do + @moduledoc """ + Defines the destination bigquery dataset. + + ## Attributes + + * `datasetReference` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDatasetReference.t`, *default:* `nil`) - Required. A reference that identifies the destination dataset. + * `description` (*type:* `String.t`, *default:* `nil`) - Optional. A user-friendly description of the dataset. + * `friendlyName` (*type:* `String.t`, *default:* `nil`) - Optional. A descriptive name for the dataset. + * `labels` (*type:* `map()`, *default:* `nil`) - Optional. The labels associated with this dataset. You can use these to organize and group your datasets. You can set this property when inserting or updating a dataset. See https://cloud.google.com/resource-manager/docs/creating-managing-labels for more information. + * `location` (*type:* `String.t`, *default:* `nil`) - Required. The geographic location where the dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :datasetReference => + GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDatasetReference.t() | nil, + :description => String.t() | nil, + :friendlyName => String.t() | nil, + :labels => map() | nil, + :location => String.t() | nil + } + + field(:datasetReference, as: GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDatasetReference) + field(:description) + field(:friendlyName) + field(:labels, type: :map) + field(:location) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDataset do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDataset.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDataset do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/destination_dataset_reference.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/destination_dataset_reference.ex new file mode 100644 index 0000000000..201f1a4964 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/destination_dataset_reference.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.DestinationDatasetReference do + @moduledoc """ + Contains the reference that identifies a destination bigquery dataset. + + ## Attributes + + * `datasetId` (*type:* `String.t`, *default:* `nil`) - Required. A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters. + * `projectId` (*type:* `String.t`, *default:* `nil`) - Required. The ID of the project containing this dataset. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :datasetId => String.t() | nil, + :projectId => String.t() | nil + } + + field(:datasetId) + field(:projectId) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDatasetReference do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDatasetReference.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDatasetReference do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/empty.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/empty.ex new file mode 100644 index 0000000000..fd409ccd95 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/empty.ex @@ -0,0 +1,41 @@ +# 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.AnalyticsHub.V1beta1.Model.Empty do + @moduledoc """ + A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } + + ## Attributes + + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{} +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Empty do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.Empty.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Empty do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/expr.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/expr.ex new file mode 100644 index 0000000000..334d262896 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/expr.ex @@ -0,0 +1,55 @@ +# 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.AnalyticsHub.V1beta1.Model.Expr do + @moduledoc """ + Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. + + ## Attributes + + * `description` (*type:* `String.t`, *default:* `nil`) - Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. + * `expression` (*type:* `String.t`, *default:* `nil`) - Textual representation of an expression in Common Expression Language syntax. + * `location` (*type:* `String.t`, *default:* `nil`) - Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. + * `title` (*type:* `String.t`, *default:* `nil`) - Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :description => String.t() | nil, + :expression => String.t() | nil, + :location => String.t() | nil, + :title => String.t() | nil + } + + field(:description) + field(:expression) + field(:location) + field(:title) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Expr do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.Expr.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Expr do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/get_iam_policy_request.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/get_iam_policy_request.ex new file mode 100644 index 0000000000..d606b07956 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/get_iam_policy_request.ex @@ -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.AnalyticsHub.V1beta1.Model.GetIamPolicyRequest do + @moduledoc """ + Request message for `GetIamPolicy` method. + + ## Attributes + + * `options` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.GetPolicyOptions.t`, *default:* `nil`) - OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :options => GoogleApi.AnalyticsHub.V1beta1.Model.GetPolicyOptions.t() | nil + } + + field(:options, as: GoogleApi.AnalyticsHub.V1beta1.Model.GetPolicyOptions) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.GetIamPolicyRequest do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.GetIamPolicyRequest.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.GetIamPolicyRequest do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/get_policy_options.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/get_policy_options.ex new file mode 100644 index 0000000000..8ea8a9682f --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/get_policy_options.ex @@ -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.AnalyticsHub.V1beta1.Model.GetPolicyOptions do + @moduledoc """ + Encapsulates settings provided to GetIamPolicy. + + ## Attributes + + * `requestedPolicyVersion` (*type:* `integer()`, *default:* `nil`) - Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :requestedPolicyVersion => integer() | nil + } + + field(:requestedPolicyVersion) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.GetPolicyOptions do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.GetPolicyOptions.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.GetPolicyOptions do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_data_exchanges_response.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_data_exchanges_response.ex new file mode 100644 index 0000000000..3ea48bd5a0 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_data_exchanges_response.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.ListDataExchangesResponse do + @moduledoc """ + Message for response to the list of data exchanges. + + ## Attributes + + * `dataExchanges` (*type:* `list(GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t)`, *default:* `nil`) - The list of data exchanges. + * `nextPageToken` (*type:* `String.t`, *default:* `nil`) - A token to request the next page of results. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :dataExchanges => list(GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t()) | nil, + :nextPageToken => String.t() | nil + } + + field(:dataExchanges, as: GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange, type: :list) + field(:nextPageToken) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.ListDataExchangesResponse do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.ListDataExchangesResponse.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.ListDataExchangesResponse do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_listings_response.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_listings_response.ex new file mode 100644 index 0000000000..2a4bbce574 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_listings_response.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.ListListingsResponse do + @moduledoc """ + Message for response to the list of Listings. + + ## Attributes + + * `listings` (*type:* `list(GoogleApi.AnalyticsHub.V1beta1.Model.Listing.t)`, *default:* `nil`) - The list of Listing. + * `nextPageToken` (*type:* `String.t`, *default:* `nil`) - A token to request the next page of results. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :listings => list(GoogleApi.AnalyticsHub.V1beta1.Model.Listing.t()) | nil, + :nextPageToken => String.t() | nil + } + + field(:listings, as: GoogleApi.AnalyticsHub.V1beta1.Model.Listing, type: :list) + field(:nextPageToken) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.ListListingsResponse do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.ListListingsResponse.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.ListListingsResponse do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_locations_response.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_locations_response.ex new file mode 100644 index 0000000000..08c902e19f --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_locations_response.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.ListLocationsResponse do + @moduledoc """ + The response message for Locations.ListLocations. + + ## Attributes + + * `locations` (*type:* `list(GoogleApi.AnalyticsHub.V1beta1.Model.Location.t)`, *default:* `nil`) - A list of locations that matches the specified filter in the request. + * `nextPageToken` (*type:* `String.t`, *default:* `nil`) - The standard List next-page token. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :locations => list(GoogleApi.AnalyticsHub.V1beta1.Model.Location.t()) | nil, + :nextPageToken => String.t() | nil + } + + field(:locations, as: GoogleApi.AnalyticsHub.V1beta1.Model.Location, type: :list) + field(:nextPageToken) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.ListLocationsResponse do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.ListLocationsResponse.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.ListLocationsResponse do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_org_data_exchanges_response.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_org_data_exchanges_response.ex new file mode 100644 index 0000000000..ea93c942be --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/list_org_data_exchanges_response.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.ListOrgDataExchangesResponse do + @moduledoc """ + Message for response to listing data exchanges in an organization and location. + + ## Attributes + + * `dataExchanges` (*type:* `list(GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t)`, *default:* `nil`) - The list of data exchanges. + * `nextPageToken` (*type:* `String.t`, *default:* `nil`) - A token to request the next page of results. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :dataExchanges => list(GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange.t()) | nil, + :nextPageToken => String.t() | nil + } + + field(:dataExchanges, as: GoogleApi.AnalyticsHub.V1beta1.Model.DataExchange, type: :list) + field(:nextPageToken) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.ListOrgDataExchangesResponse do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.ListOrgDataExchangesResponse.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.ListOrgDataExchangesResponse do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/listing.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/listing.ex new file mode 100644 index 0000000000..ed7024f365 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/listing.ex @@ -0,0 +1,80 @@ +# 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.AnalyticsHub.V1beta1.Model.Listing do + @moduledoc """ + A listing is what gets published into a data exchange that a subscriber can subscribe to. It contains a reference to the data source along with descriptive information that will help subscribers find and subscribe the data. + + ## Attributes + + * `bigqueryDataset` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.BigQueryDatasetSource.t`, *default:* `nil`) - Required. Shared dataset i.e. BigQuery dataset source. + * `categories` (*type:* `list(String.t)`, *default:* `nil`) - Optional. Categories of the listing. Up to two categories are allowed. + * `dataProvider` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.DataProvider.t`, *default:* `nil`) - Optional. Details of the data provider who owns the source data. + * `description` (*type:* `String.t`, *default:* `nil`) - Optional. Short description of the listing. The description must not contain Unicode non-characters and C0 and C1 control codes except tabs (HT), new lines (LF), carriage returns (CR), and page breaks (FF). Default value is an empty string. Max length: 2000 bytes. + * `displayName` (*type:* `String.t`, *default:* `nil`) - Required. Human-readable display name of the listing. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), and can't start or end with spaces. Default value is an empty string. Max length: 63 bytes. + * `documentation` (*type:* `String.t`, *default:* `nil`) - Optional. Documentation describing the listing. + * `icon` (*type:* `String.t`, *default:* `nil`) - Optional. Base64 encoded image representing the listing. Max Size: 3.0MiB Expected image dimensions are 512x512 pixels, however the API only performs validation on size of the encoded data. Note: For byte fields, the contents of the field are base64-encoded (which increases the size of the data by 33-36%) when using JSON on the wire. + * `name` (*type:* `String.t`, *default:* `nil`) - Output only. The resource name of the listing. e.g. `projects/myproject/locations/US/dataExchanges/123/listings/456` + * `primaryContact` (*type:* `String.t`, *default:* `nil`) - Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes. + * `publisher` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.Publisher.t`, *default:* `nil`) - Optional. Details of the publisher who owns the listing and who can share the source data. + * `requestAccess` (*type:* `String.t`, *default:* `nil`) - Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes. + * `state` (*type:* `String.t`, *default:* `nil`) - Output only. Current state of the listing. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :bigqueryDataset => + GoogleApi.AnalyticsHub.V1beta1.Model.BigQueryDatasetSource.t() | nil, + :categories => list(String.t()) | nil, + :dataProvider => GoogleApi.AnalyticsHub.V1beta1.Model.DataProvider.t() | nil, + :description => String.t() | nil, + :displayName => String.t() | nil, + :documentation => String.t() | nil, + :icon => String.t() | nil, + :name => String.t() | nil, + :primaryContact => String.t() | nil, + :publisher => GoogleApi.AnalyticsHub.V1beta1.Model.Publisher.t() | nil, + :requestAccess => String.t() | nil, + :state => String.t() | nil + } + + field(:bigqueryDataset, as: GoogleApi.AnalyticsHub.V1beta1.Model.BigQueryDatasetSource) + field(:categories, type: :list) + field(:dataProvider, as: GoogleApi.AnalyticsHub.V1beta1.Model.DataProvider) + field(:description) + field(:displayName) + field(:documentation) + field(:icon) + field(:name) + field(:primaryContact) + field(:publisher, as: GoogleApi.AnalyticsHub.V1beta1.Model.Publisher) + field(:requestAccess) + field(:state) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Listing do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.Listing.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Listing do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/location.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/location.ex new file mode 100644 index 0000000000..51e6d8f484 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/location.ex @@ -0,0 +1,58 @@ +# 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.AnalyticsHub.V1beta1.Model.Location do + @moduledoc """ + A resource that represents Google Cloud Platform location. + + ## Attributes + + * `displayName` (*type:* `String.t`, *default:* `nil`) - The friendly name for this location, typically a nearby city name. For example, "Tokyo". + * `labels` (*type:* `map()`, *default:* `nil`) - Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} + * `locationId` (*type:* `String.t`, *default:* `nil`) - The canonical id for this location. For example: `"us-east1"`. + * `metadata` (*type:* `map()`, *default:* `nil`) - Service-specific metadata. For example the available capacity at the given location. + * `name` (*type:* `String.t`, *default:* `nil`) - Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :displayName => String.t() | nil, + :labels => map() | nil, + :locationId => String.t() | nil, + :metadata => map() | nil, + :name => String.t() | nil + } + + field(:displayName) + field(:labels, type: :map) + field(:locationId) + field(:metadata, type: :map) + field(:name) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Location do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.Location.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Location do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/operation_metadata.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/operation_metadata.ex new file mode 100644 index 0000000000..2267c12f78 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/operation_metadata.ex @@ -0,0 +1,64 @@ +# 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.AnalyticsHub.V1beta1.Model.OperationMetadata do + @moduledoc """ + Represents the metadata of the long-running operation. + + ## Attributes + + * `apiVersion` (*type:* `String.t`, *default:* `nil`) - Output only. API version used to start the operation. + * `cancelRequested` (*type:* `boolean()`, *default:* `nil`) - Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. + * `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time the operation was created. + * `endTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time the operation finished running. + * `statusDetail` (*type:* `String.t`, *default:* `nil`) - Output only. Human-readable status of the operation, if any. + * `target` (*type:* `String.t`, *default:* `nil`) - Output only. Server-defined resource path for the target of the operation. + * `verb` (*type:* `String.t`, *default:* `nil`) - Output only. Name of the verb executed by the operation. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :apiVersion => String.t() | nil, + :cancelRequested => boolean() | nil, + :createTime => DateTime.t() | nil, + :endTime => DateTime.t() | nil, + :statusDetail => String.t() | nil, + :target => String.t() | nil, + :verb => String.t() | nil + } + + field(:apiVersion) + field(:cancelRequested) + field(:createTime, as: DateTime) + field(:endTime, as: DateTime) + field(:statusDetail) + field(:target) + field(:verb) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.OperationMetadata do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.OperationMetadata.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.OperationMetadata do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/policy.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/policy.ex new file mode 100644 index 0000000000..38d46ed37e --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/policy.ex @@ -0,0 +1,55 @@ +# 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.AnalyticsHub.V1beta1.Model.Policy do + @moduledoc """ + An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** { "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@appspot.gserviceaccount.com" ] }, { "role": "roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com" ], "condition": { "title": "expirable access", "description": "Does not grant access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", } } ], "etag": "BwWWja0YfJA=", "version": 3 } **YAML example:** bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a description of IAM and its features, see the [IAM documentation](https://cloud.google.com/iam/docs/). + + ## Attributes + + * `auditConfigs` (*type:* `list(GoogleApi.AnalyticsHub.V1beta1.Model.AuditConfig.t)`, *default:* `nil`) - Specifies cloud audit logging configuration for this policy. + * `bindings` (*type:* `list(GoogleApi.AnalyticsHub.V1beta1.Model.Binding.t)`, *default:* `nil`) - Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`. + * `etag` (*type:* `String.t`, *default:* `nil`) - `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. + * `version` (*type:* `integer()`, *default:* `nil`) - Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :auditConfigs => list(GoogleApi.AnalyticsHub.V1beta1.Model.AuditConfig.t()) | nil, + :bindings => list(GoogleApi.AnalyticsHub.V1beta1.Model.Binding.t()) | nil, + :etag => String.t() | nil, + :version => integer() | nil + } + + field(:auditConfigs, as: GoogleApi.AnalyticsHub.V1beta1.Model.AuditConfig, type: :list) + field(:bindings, as: GoogleApi.AnalyticsHub.V1beta1.Model.Binding, type: :list) + field(:etag) + field(:version) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Policy do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.Policy.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Policy do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/publisher.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/publisher.ex new file mode 100644 index 0000000000..253a490fe6 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/publisher.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.Publisher do + @moduledoc """ + Contains details of the listing publisher. + + ## Attributes + + * `name` (*type:* `String.t`, *default:* `nil`) - Optional. Name of the listing publisher. + * `primaryContact` (*type:* `String.t`, *default:* `nil`) - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :name => String.t() | nil, + :primaryContact => String.t() | nil + } + + field(:name) + field(:primaryContact) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Publisher do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.Publisher.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.Publisher do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/set_iam_policy_request.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/set_iam_policy_request.ex new file mode 100644 index 0000000000..e5722f3e67 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/set_iam_policy_request.ex @@ -0,0 +1,49 @@ +# 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.AnalyticsHub.V1beta1.Model.SetIamPolicyRequest do + @moduledoc """ + Request message for `SetIamPolicy` method. + + ## Attributes + + * `policy` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.Policy.t`, *default:* `nil`) - REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud services (such as Projects) might reject them. + * `updateMask` (*type:* `String.t`, *default:* `nil`) - OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used: `paths: "bindings, etag"` + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :policy => GoogleApi.AnalyticsHub.V1beta1.Model.Policy.t() | nil, + :updateMask => String.t() | nil + } + + field(:policy, as: GoogleApi.AnalyticsHub.V1beta1.Model.Policy) + field(:updateMask) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.SetIamPolicyRequest do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.SetIamPolicyRequest.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.SetIamPolicyRequest do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/subscribe_listing_request.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/subscribe_listing_request.ex new file mode 100644 index 0000000000..8f0c46d4fb --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/subscribe_listing_request.ex @@ -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.AnalyticsHub.V1beta1.Model.SubscribeListingRequest do + @moduledoc """ + Message for subscribing to a listing. + + ## Attributes + + * `destinationDataset` (*type:* `GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDataset.t`, *default:* `nil`) - BigQuery destination dataset to create for the subscriber. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :destinationDataset => GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDataset.t() | nil + } + + field(:destinationDataset, as: GoogleApi.AnalyticsHub.V1beta1.Model.DestinationDataset) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.SubscribeListingRequest do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.SubscribeListingRequest.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.SubscribeListingRequest do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/subscribe_listing_response.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/subscribe_listing_response.ex new file mode 100644 index 0000000000..050beea0b3 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/subscribe_listing_response.ex @@ -0,0 +1,41 @@ +# 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.AnalyticsHub.V1beta1.Model.SubscribeListingResponse do + @moduledoc """ + Message for response when you subscribe to a listing. + + ## Attributes + + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{} +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.SubscribeListingResponse do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.SubscribeListingResponse.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.SubscribeListingResponse do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/test_iam_permissions_request.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/test_iam_permissions_request.ex new file mode 100644 index 0000000000..bfd6a3392f --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/test_iam_permissions_request.ex @@ -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.AnalyticsHub.V1beta1.Model.TestIamPermissionsRequest do + @moduledoc """ + Request message for `TestIamPermissions` method. + + ## Attributes + + * `permissions` (*type:* `list(String.t)`, *default:* `nil`) - The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions). + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :permissions => list(String.t()) | nil + } + + field(:permissions, type: :list) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsRequest do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsRequest.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsRequest do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/test_iam_permissions_response.ex b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/test_iam_permissions_response.ex new file mode 100644 index 0000000000..76bb26eb18 --- /dev/null +++ b/clients/analytics_hub/lib/google_api/analytics_hub/v1beta1/model/test_iam_permissions_response.ex @@ -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.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse do + @moduledoc """ + Response message for `TestIamPermissions` method. + + ## Attributes + + * `permissions` (*type:* `list(String.t)`, *default:* `nil`) - A subset of `TestPermissionsRequest.permissions` that the caller is allowed. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :permissions => list(String.t()) | nil + } + + field(:permissions, type: :list) +end + +defimpl Poison.Decoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse do + def decode(value, options) do + GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.AnalyticsHub.V1beta1.Model.TestIamPermissionsResponse do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/analytics_hub/mix.exs b/clients/analytics_hub/mix.exs new file mode 100644 index 0000000000..a41edcff15 --- /dev/null +++ b/clients/analytics_hub/mix.exs @@ -0,0 +1,66 @@ +# 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.AnalyticsHub.Mixfile do + use Mix.Project + + @version "0.2.0" + + def project() do + [ + app: :google_api_analytics_hub, + version: @version, + elixir: "~> 1.6", + build_embedded: Mix.env == :prod, + start_permanent: Mix.env == :prod, + description: description(), + package: package(), + deps: deps(), + source_url: "https://github.com/googleapis/elixir-google-api/tree/master/clients/analytics_hub" + ] + end + + def application() do + [extra_applications: [:logger]] + end + + defp deps() do + [ + {:google_gax, "~> 0.4"}, + + {:ex_doc, "~> 0.16", only: :dev} + ] + end + + defp description() do + """ + Analytics Hub API client library. Exchange data and analytics assets securely and efficiently. + """ + end + + defp package() do + [ + files: ["lib", "mix.exs", "README*", "LICENSE"], + maintainers: ["Jeff Ching", "Daniel Azuma"], + licenses: ["Apache 2.0"], + links: %{ + "GitHub" => "https://github.com/googleapis/elixir-google-api/tree/master/clients/analytics_hub", + "Homepage" => "https://cloud.google.com/bigquery/docs/analytics-hub-introduction" + } + ] + end +end diff --git a/clients/analytics_hub/test/test_helper.exs b/clients/analytics_hub/test/test_helper.exs new file mode 100644 index 0000000000..44bb2b9277 --- /dev/null +++ b/clients/analytics_hub/test/test_helper.exs @@ -0,0 +1,35 @@ +# 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. + +ExUnit.start() + +defmodule GoogleApi.AnalyticsHub.TestHelper do + + defmacro __using__(opts) do + quote do + use ExUnit.Case, unquote(opts) + import GoogleApi.AnalyticsHub.TestHelper + end + end + + def for_scope(scopes) when is_list(scopes), do: for_scope(Enum.join(scopes, " ")) + def for_scope(scope) do + {:ok, token} = Goth.Token.for_scope(scope) + token.token + end + +end