Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(iam-admin-v1): generate library #843

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ members = [
"src/generated/cloud/workflows/v1",
"src/generated/devtools/cloudbuild/v2",
"src/generated/devtools/cloudtrace/v2",
"src/generated/iam/admin/v1",
"src/generated/iam/credentials/v1",
"src/generated/iam/v1",
"src/generated/iam/v2",
Expand Down
21 changes: 21 additions & 0 deletions src/generated/iam/admin/v1/.sidekick.toml
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'
43 changes: 43 additions & 0 deletions src/generated/iam/admin/v1/Cargo.toml
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"]
22 changes: 22 additions & 0 deletions src/generated/iam/admin/v1/README.md
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)
Loading
Loading