From 88e164dc58a11f85464c9e4af6fa831c5cb1c2ed Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Tue, 12 Mar 2024 20:18:25 -0700 Subject: [PATCH] feat: Automated regeneration of BigQueryDataPolicy client (#11054) Auto-created at 2024-03-13 03:14:16 +0000 using the toys pull request generator. --- clients/big_query_data_policy/.gitignore | 37 + clients/big_query_data_policy/LICENSE | 201 ++++++ clients/big_query_data_policy/README.md | 23 + .../big_query_data_policy/config/config.exs | 20 + .../big_query_data_policy/v1/api/projects.ex | 681 ++++++++++++++++++ .../big_query_data_policy/v1/connection.ex | 35 + .../big_query_data_policy/v1/metadata.ex | 26 + .../v1/model/audit_config.ex | 50 ++ .../v1/model/audit_log_config.ex | 49 ++ .../big_query_data_policy/v1/model/binding.ex | 52 ++ .../v1/model/data_masking_policy.ex | 49 ++ .../v1/model/data_policy.ex | 58 ++ .../big_query_data_policy/v1/model/empty.ex | 41 ++ .../big_query_data_policy/v1/model/expr.ex | 55 ++ .../v1/model/get_iam_policy_request.ex | 46 ++ .../v1/model/get_policy_options.ex | 46 ++ .../v1/model/list_data_policies_response.ex | 49 ++ .../big_query_data_policy/v1/model/policy.ex | 55 ++ .../v1/model/rename_data_policy_request.ex | 46 ++ .../v1/model/set_iam_policy_request.ex | 49 ++ .../v1/model/test_iam_permissions_request.ex | 46 ++ .../v1/model/test_iam_permissions_response.ex | 46 ++ clients/big_query_data_policy/mix.exs | 66 ++ .../test/test_helper.exs | 35 + 24 files changed, 1861 insertions(+) create mode 100644 clients/big_query_data_policy/.gitignore create mode 100644 clients/big_query_data_policy/LICENSE create mode 100644 clients/big_query_data_policy/README.md create mode 100644 clients/big_query_data_policy/config/config.exs create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/api/projects.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/connection.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/metadata.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/audit_config.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/audit_log_config.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/binding.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/data_masking_policy.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/data_policy.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/empty.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/expr.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/get_iam_policy_request.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/get_policy_options.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/list_data_policies_response.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/policy.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/rename_data_policy_request.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/set_iam_policy_request.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/test_iam_permissions_request.ex create mode 100644 clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/test_iam_permissions_response.ex create mode 100644 clients/big_query_data_policy/mix.exs create mode 100644 clients/big_query_data_policy/test/test_helper.exs diff --git a/clients/big_query_data_policy/.gitignore b/clients/big_query_data_policy/.gitignore new file mode 100644 index 0000000000..6bf4496152 --- /dev/null +++ b/clients/big_query_data_policy/.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/big_query_data_policy/LICENSE b/clients/big_query_data_policy/LICENSE new file mode 100644 index 0000000000..261eeb9e9f --- /dev/null +++ b/clients/big_query_data_policy/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/big_query_data_policy/README.md b/clients/big_query_data_policy/README.md new file mode 100644 index 0000000000..34172a82c7 --- /dev/null +++ b/clients/big_query_data_policy/README.md @@ -0,0 +1,23 @@ +# GoogleApi.BigQueryDataPolicy + +BigQuery Data Policy API client library. + +Allows users to manage BigQuery data policies. + +## Installation + +Install this package from [Hex](https://hex.pm) by adding +`google_api_big_query_data_policy` to your list of dependencies in `mix.exs`: + +```elixir +def deps do + [{:google_api_big_query_data_policy, "~> 0.2"}] +end +``` + +## For more information + +Product documentation is available at [https://cloud.google.com/bigquery/docs/column-data-masking](https://cloud.google.com/bigquery/docs/column-data-masking). + +Library reference documentation is published on Hexdocs at +[https://hexdocs.pm/google_api_big_query_data_policy](https://hexdocs.pm/google_api_big_query_data_policy). diff --git a/clients/big_query_data_policy/config/config.exs b/clients/big_query_data_policy/config/config.exs new file mode 100644 index 0000000000..07afe5f311 --- /dev/null +++ b/clients/big_query_data_policy/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/big_query_data_policy/lib/google_api/big_query_data_policy/v1/api/projects.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/api/projects.ex new file mode 100644 index 0000000000..9950081b0f --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/api/projects.ex @@ -0,0 +1,681 @@ +# 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.BigQueryDataPolicy.V1.Api.Projects do + @moduledoc """ + API calls for all endpoints tagged `Projects`. + """ + + alias GoogleApi.BigQueryDataPolicy.V1.Connection + alias GoogleApi.Gax.{Request, Response} + + @library_version Mix.Project.config() |> Keyword.get(:version, "") + + @doc """ + Creates a new data policy under a project with the given `dataPolicyId` (used as the display name), policy tag, and data policy type. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Connection.t`) - Connection to server + * `parent` (*type:* `String.t`) - Required. Resource name of the project that the data policy will belong to. The format is `projects/{project_number}/locations/{location_id}`. + * `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.BigQueryDataPolicy.V1.Model.DataPolicy.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_create( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_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, + :body => :body + } + + request = + Request.new() + |> Request.method(:post) + |> Request.url("/v1/{+parent}/dataPolicies", %{ + "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.BigQueryDataPolicy.V1.Model.DataPolicy{}]) + end + + @doc """ + Deletes the data policy specified by its resource name. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Required. Resource name of the data policy to delete. Format is `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}`. + * `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.BigQueryDataPolicy.V1.Model.Empty{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_delete( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.Empty.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_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("/v1/{+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.BigQueryDataPolicy.V1.Model.Empty{}]) + end + + @doc """ + Gets the data policy specified by its resource name. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Required. Resource name of the requested data policy. Format is `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}`. + * `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.BigQueryDataPolicy.V1.Model.DataPolicy{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_get( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_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("/v1/{+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.BigQueryDataPolicy.V1.Model.DataPolicy{}]) + end + + @doc """ + Gets the IAM policy for the specified data policy. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.GetIamPolicyRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.BigQueryDataPolicy.V1.Model.Policy{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_get_iam_policy( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.Policy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_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("/v1/{+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.BigQueryDataPolicy.V1.Model.Policy{}]) + end + + @doc """ + List all of the data policies in the specified parent project. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Connection.t`) - Connection to server + * `parent` (*type:* `String.t`) - Required. Resource name of the project for which to list data policies. Format is `projects/{project_number}/locations/{location_id}`. + * `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`) - Filters the data policies by policy tags that they are associated with. Currently filter only supports "policy_tag" based filtering and OR based predicates. Sample filter can be "policy_tag: projects/1/locations/us/taxonomies/2/policyTags/3". You may also use wildcard such as "policy_tag: projects/1/locations/us/taxonomies/2*". Please note that OR predicates cannot be used with wildcard filters. + * `:pageSize` (*type:* `integer()`) - The maximum number of data policies to return. Must be a value between 1 and 1000. If not set, defaults to 50. + * `:pageToken` (*type:* `String.t`) - The `nextPageToken` value returned from a previous list request, if any. If not set, defaults to an empty string. + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.BigQueryDataPolicy.V1.Model.ListDataPoliciesResponse{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_list( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.ListDataPoliciesResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_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, + :filter => :query, + :pageSize => :query, + :pageToken => :query + } + + request = + Request.new() + |> Request.method(:get) + |> Request.url("/v1/{+parent}/dataPolicies", %{ + "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.BigQueryDataPolicy.V1.Model.ListDataPoliciesResponse{}] + ) + end + + @doc """ + Updates the metadata for an existing data policy. The target data policy can be specified by the resource name. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Output only. Resource name of this data policy, in the format of `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}`. + * `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`) - The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask If not set, defaults to all of the fields that are allowed to update. Updates to the `name` and `dataPolicyId` fields are not allowed. + * `:body` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_patch( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_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("/v1/{+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.BigQueryDataPolicy.V1.Model.DataPolicy{}]) + end + + @doc """ + Renames the id (display name) of the specified data policy. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Connection.t`) - Connection to server + * `name` (*type:* `String.t`) - Required. Resource name of the data policy to rename. The format is `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}` + * `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.BigQueryDataPolicy.V1.Model.RenameDataPolicyRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_rename( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_rename( + connection, + name, + optional_params \\ [], + opts \\ [] + ) do + optional_params_config = %{ + :"$.xgafv" => :query, + :access_token => :query, + :alt => :query, + :callback => :query, + :fields => :query, + :key => :query, + :oauth_token => :query, + :prettyPrint => :query, + :quotaUser => :query, + :uploadType => :query, + :upload_protocol => :query, + :body => :body + } + + request = + Request.new() + |> Request.method(:post) + |> Request.url("/v1/{+name}:rename", %{ + "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.BigQueryDataPolicy.V1.Model.DataPolicy{}]) + end + + @doc """ + Sets the IAM policy for the specified data policy. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.SetIamPolicyRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.BigQueryDataPolicy.V1.Model.Policy{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_set_iam_policy( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.Policy.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_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("/v1/{+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.BigQueryDataPolicy.V1.Model.Policy{}]) + end + + @doc """ + Returns the caller's permission on the specified data policy resource. + + ## Parameters + + * `connection` (*type:* `GoogleApi.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.TestIamPermissionsRequest.t`) - + * `opts` (*type:* `keyword()`) - Call options + + ## Returns + + * `{:ok, %GoogleApi.BigQueryDataPolicy.V1.Model.TestIamPermissionsResponse{}}` on success + * `{:error, info}` on failure + """ + @spec bigquerydatapolicy_projects_locations_data_policies_test_iam_permissions( + Tesla.Env.client(), + String.t(), + keyword(), + keyword() + ) :: + {:ok, GoogleApi.BigQueryDataPolicy.V1.Model.TestIamPermissionsResponse.t()} + | {:ok, Tesla.Env.t()} + | {:ok, list()} + | {:error, any()} + def bigquerydatapolicy_projects_locations_data_policies_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("/v1/{+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.BigQueryDataPolicy.V1.Model.TestIamPermissionsResponse{}] + ) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/connection.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/connection.ex new file mode 100644 index 0000000000..6fc3c79dd5 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.Connection do + @moduledoc """ + Handle Tesla connections for GoogleApi.BigQueryDataPolicy.V1. + """ + + @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_big_query_data_policy, + base_url: "https://bigquerydatapolicy.googleapis.com/" +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/metadata.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/metadata.ex new file mode 100644 index 0000000000..b80623ec5c --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1 do + @moduledoc """ + API client metadata for GoogleApi.BigQueryDataPolicy.V1. + """ + + @discovery_revision "20240304" + + def discovery_revision(), do: @discovery_revision +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/audit_config.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/audit_config.ex new file mode 100644 index 0000000000..cf4120b6f9 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/audit_config.ex @@ -0,0 +1,50 @@ +# 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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.AuditLogConfig.t()) | nil, + :service => String.t() | nil + } + + field(:auditLogConfigs, as: GoogleApi.BigQueryDataPolicy.V1.Model.AuditLogConfig, type: :list) + field(:service) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.AuditConfig do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.AuditConfig.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.AuditConfig do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/audit_log_config.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/audit_log_config.ex new file mode 100644 index 0000000000..2751cd8020 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.AuditLogConfig do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.AuditLogConfig.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.AuditLogConfig do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/binding.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/binding.ex new file mode 100644 index 0000000000..a6dbec6afe --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.Model.Binding do + @moduledoc """ + Associates `members`, or principals, with a `role`. + + ## Attributes + + * `condition` (*type:* `GoogleApi.BigQueryDataPolicy.V1.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. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `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. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`. + * `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`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles). + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :condition => GoogleApi.BigQueryDataPolicy.V1.Model.Expr.t() | nil, + :members => list(String.t()) | nil, + :role => String.t() | nil + } + + field(:condition, as: GoogleApi.BigQueryDataPolicy.V1.Model.Expr) + field(:members, type: :list) + field(:role) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.Binding do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.Binding.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.Binding do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/data_masking_policy.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/data_masking_policy.ex new file mode 100644 index 0000000000..9623b1c8ed --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/data_masking_policy.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.BigQueryDataPolicy.V1.Model.DataMaskingPolicy do + @moduledoc """ + The data masking policy that is used to specify data masking rule. + + ## Attributes + + * `predefinedExpression` (*type:* `String.t`, *default:* `nil`) - A predefined masking expression. + * `routine` (*type:* `String.t`, *default:* `nil`) - The name of the BigQuery routine that contains the custom masking routine, in the format of `projects/{project_number}/datasets/{dataset_id}/routines/{routine_id}`. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :predefinedExpression => String.t() | nil, + :routine => String.t() | nil + } + + field(:predefinedExpression) + field(:routine) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.DataMaskingPolicy do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.DataMaskingPolicy.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.DataMaskingPolicy do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/data_policy.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/data_policy.ex new file mode 100644 index 0000000000..f5cd378be3 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/data_policy.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.BigQueryDataPolicy.V1.Model.DataPolicy do + @moduledoc """ + Represents the label-policy binding. + + ## Attributes + + * `dataMaskingPolicy` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Model.DataMaskingPolicy.t`, *default:* `nil`) - The data masking policy that specifies the data masking rule to use. + * `dataPolicyId` (*type:* `String.t`, *default:* `nil`) - User-assigned (human readable) ID of the data policy that needs to be unique within a project. Used as {data_policy_id} in part of the resource name. + * `dataPolicyType` (*type:* `String.t`, *default:* `nil`) - Type of data policy. + * `name` (*type:* `String.t`, *default:* `nil`) - Output only. Resource name of this data policy, in the format of `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}`. + * `policyTag` (*type:* `String.t`, *default:* `nil`) - Policy tag resource name, in the format of `projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{policyTag_id}`. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :dataMaskingPolicy => GoogleApi.BigQueryDataPolicy.V1.Model.DataMaskingPolicy.t() | nil, + :dataPolicyId => String.t() | nil, + :dataPolicyType => String.t() | nil, + :name => String.t() | nil, + :policyTag => String.t() | nil + } + + field(:dataMaskingPolicy, as: GoogleApi.BigQueryDataPolicy.V1.Model.DataMaskingPolicy) + field(:dataPolicyId) + field(:dataPolicyType) + field(:name) + field(:policyTag) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/empty.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/empty.ex new file mode 100644 index 0000000000..cae279b23b --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.Empty do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.Empty.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.Empty do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/expr.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/expr.ex new file mode 100644 index 0000000000..719fdb4947 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.Expr do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.Expr.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.Expr do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/get_iam_policy_request.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/get_iam_policy_request.ex new file mode 100644 index 0000000000..f65ba1944b --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.Model.GetIamPolicyRequest do + @moduledoc """ + Request message for `GetIamPolicy` method. + + ## Attributes + + * `options` (*type:* `GoogleApi.BigQueryDataPolicy.V1.Model.GetPolicyOptions.t`, *default:* `nil`) - OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :options => GoogleApi.BigQueryDataPolicy.V1.Model.GetPolicyOptions.t() | nil + } + + field(:options, as: GoogleApi.BigQueryDataPolicy.V1.Model.GetPolicyOptions) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.GetIamPolicyRequest do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.GetIamPolicyRequest.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.GetIamPolicyRequest do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/get_policy_options.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/get_policy_options.ex new file mode 100644 index 0000000000..7f32050424 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.GetPolicyOptions do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.GetPolicyOptions.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.GetPolicyOptions do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/list_data_policies_response.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/list_data_policies_response.ex new file mode 100644 index 0000000000..bda5864c66 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/list_data_policies_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.BigQueryDataPolicy.V1.Model.ListDataPoliciesResponse do + @moduledoc """ + Response message for the ListDataPolicies method. + + ## Attributes + + * `dataPolicies` (*type:* `list(GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy.t)`, *default:* `nil`) - Data policies that belong to the requested project. + * `nextPageToken` (*type:* `String.t`, *default:* `nil`) - Token used to retrieve the next page of results, or empty if there are no more results. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :dataPolicies => list(GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy.t()) | nil, + :nextPageToken => String.t() | nil + } + + field(:dataPolicies, as: GoogleApi.BigQueryDataPolicy.V1.Model.DataPolicy, type: :list) + field(:nextPageToken) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.ListDataPoliciesResponse do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.ListDataPoliciesResponse.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.ListDataPoliciesResponse do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/policy.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/policy.ex new file mode 100644 index 0000000000..1fb52ad142 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.AuditConfig.t)`, *default:* `nil`) - Specifies cloud audit logging configuration for this policy. + * `bindings` (*type:* `list(GoogleApi.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.AuditConfig.t()) | nil, + :bindings => list(GoogleApi.BigQueryDataPolicy.V1.Model.Binding.t()) | nil, + :etag => String.t() | nil, + :version => integer() | nil + } + + field(:auditConfigs, as: GoogleApi.BigQueryDataPolicy.V1.Model.AuditConfig, type: :list) + field(:bindings, as: GoogleApi.BigQueryDataPolicy.V1.Model.Binding, type: :list) + field(:etag) + field(:version) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.Policy do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.Policy.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.Policy do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/rename_data_policy_request.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/rename_data_policy_request.ex new file mode 100644 index 0000000000..70b2198164 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/rename_data_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.BigQueryDataPolicy.V1.Model.RenameDataPolicyRequest do + @moduledoc """ + Request message for the RenameDataPolicy method. + + ## Attributes + + * `newDataPolicyId` (*type:* `String.t`, *default:* `nil`) - Required. The new data policy id. + """ + + use GoogleApi.Gax.ModelBase + + @type t :: %__MODULE__{ + :newDataPolicyId => String.t() | nil + } + + field(:newDataPolicyId) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.RenameDataPolicyRequest do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.RenameDataPolicyRequest.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.RenameDataPolicyRequest do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/set_iam_policy_request.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/set_iam_policy_request.ex new file mode 100644 index 0000000000..50526cb2ff --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.Model.SetIamPolicyRequest do + @moduledoc """ + Request message for `SetIamPolicy` method. + + ## Attributes + + * `policy` (*type:* `GoogleApi.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.Policy.t() | nil, + :updateMask => String.t() | nil + } + + field(:policy, as: GoogleApi.BigQueryDataPolicy.V1.Model.Policy) + field(:updateMask) +end + +defimpl Poison.Decoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.SetIamPolicyRequest do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.SetIamPolicyRequest.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.SetIamPolicyRequest do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/test_iam_permissions_request.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/test_iam_permissions_request.ex new file mode 100644 index 0000000000..d31cf02fc3 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.TestIamPermissionsRequest do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.TestIamPermissionsRequest.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.TestIamPermissionsRequest do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/test_iam_permissions_response.ex b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/model/test_iam_permissions_response.ex new file mode 100644 index 0000000000..d14adaff62 --- /dev/null +++ b/clients/big_query_data_policy/lib/google_api/big_query_data_policy/v1/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.BigQueryDataPolicy.V1.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.BigQueryDataPolicy.V1.Model.TestIamPermissionsResponse do + def decode(value, options) do + GoogleApi.BigQueryDataPolicy.V1.Model.TestIamPermissionsResponse.decode(value, options) + end +end + +defimpl Poison.Encoder, for: GoogleApi.BigQueryDataPolicy.V1.Model.TestIamPermissionsResponse do + def encode(value, options) do + GoogleApi.Gax.ModelBase.encode(value, options) + end +end diff --git a/clients/big_query_data_policy/mix.exs b/clients/big_query_data_policy/mix.exs new file mode 100644 index 0000000000..98d876386b --- /dev/null +++ b/clients/big_query_data_policy/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.BigQueryDataPolicy.Mixfile do + use Mix.Project + + @version "0.2.0" + + def project() do + [ + app: :google_api_big_query_data_policy, + 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/big_query_data_policy" + ] + 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 + """ + BigQuery Data Policy API client library. Allows users to manage BigQuery data policies. + """ + 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/big_query_data_policy", + "Homepage" => "https://cloud.google.com/bigquery/docs/column-data-masking" + } + ] + end +end diff --git a/clients/big_query_data_policy/test/test_helper.exs b/clients/big_query_data_policy/test/test_helper.exs new file mode 100644 index 0000000000..e6dd8471f3 --- /dev/null +++ b/clients/big_query_data_policy/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.BigQueryDataPolicy.TestHelper do + + defmacro __using__(opts) do + quote do + use ExUnit.Case, unquote(opts) + import GoogleApi.BigQueryDataPolicy.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