-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(iam-admin-v1): generate library (#843)
- Loading branch information
Showing
13 changed files
with
7,369 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright 2025 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 | ||
# | ||
# https://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. | ||
|
||
[general] | ||
language = 'rust' | ||
specification-source = 'google/iam/admin/v1' | ||
service-config = 'google/iam/admin/v1/iam.yaml' | ||
|
||
[codec] | ||
copyright-year = '2025' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright 2025 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 | ||
# | ||
# https://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. | ||
# | ||
# Code generated by sidekick. DO NOT EDIT. | ||
|
||
[package] | ||
name = "gcp-sdk-iam-admin-v1" | ||
version = "0.1.0" | ||
description = "Google Cloud Client Libraries for Rust - Identity and Access Management (IAM) API" | ||
edition.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
async-trait = { version = "0.1" } | ||
bytes = { version = "1", features = ["serde"] } | ||
gax = { version = "0.1", path = "../../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] } | ||
gtype = { version = "0.1", path = "../../../../../src/generated/type", package = "gcp-sdk-type" } | ||
iam_v1 = { version = "0.1", path = "../../../../../src/generated/iam/v1", package = "gcp-sdk-iam-v1" } | ||
lazy_static = { version = "1" } | ||
reqwest = { version = "0.12", features = ["json"] } | ||
serde = { version = "1", features = ["serde_derive"] } | ||
serde_json = { version = "1" } | ||
serde_with = { version = "3", default-features = false, features = ["base64", "macros", "std"] } | ||
tracing = { version = "0.1" } | ||
wkt = { version = "0.1", path = "../../../../../src/wkt", package = "gcp-sdk-wkt" } | ||
|
||
[features] | ||
unstable-stream = ["gax/unstable-stream"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Google Cloud Client Libraries for Rust - Identity and Access Management (IAM) API | ||
|
||
<!-- Code generated by sidekick. DO NOT EDIT. --> | ||
|
||
**WARNING:** this crate is under active development. We expect multiple breaking | ||
changes in the upcoming releases. Testing is also incomplete, we do **not** | ||
recommend that you use this crate in production. We welcome feedback about the | ||
APIs, documentation, missing features, bugs, etc. | ||
|
||
Manages identity and access control for Google Cloud Platform resources, | ||
including the creation of service accounts, which you can use to | ||
authenticate to Google and make API calls. | ||
|
||
## Quickstart | ||
|
||
The main types to work with this crate are the clients: | ||
|
||
* [Iam](https://docs.rs/gcp-sdk-iam-admin-v1/latest/gcp_sdk_iam_admin_v1/client/struct.Iam.html) | ||
|
||
## More Information | ||
|
||
* Read the [crate's documentation](https://docs.rs/gcp-sdk-iam-admin-v1/latest/gcp-sdk-iam-admin-v1) |
Oops, something went wrong.