This library generated from googleapis/googleapis using tonic-build.
This library contains all the code generated from the googleapis/googleapis.
When using each product API, you must explicitly include it in your build using a feature flag.
For example, if you want to use Cloud Pub/Sub, write features = ["google-pubsub-v1"]
to Cargo.toml.
The feature name is the period of the package name of each proto file, replaced by a hyphen.
If you specify a package, it will automatically load the dependent packages and include them in the build.
It means that features = ["google-spanner-admin-database-v1"]
is the same as the code below:
rust
pub mod google {
pub mod api {
// generated code
}
pub mod iam {
pub mod v1 {
// generated code
}
}
pub mod longrunning {
// generated code
}
pub mod r#type {
// generated code
}
pub mod rpc {
// generated code
}
pub mod spanner {
pub mod admin {
pub mod database {
pub mod v1 {
// generated code
}
}
}
}
}
In addition, multiple features can be specified.
The list of available features can be found here.
| google-api-proto | tonic | tonic-build | |------------------|-------|-------------| | 1.0.0 ≦ | 0.6.x | 0.6.x | | 1.59.0 ≦ | 0.7.x | 0.7.x | | 1.243.0 ≦ | 0.8.x | 0.8.x |
The complete code can be found here.
Cargo.toml: ```toml [dependencies]
tokio = { version = "1.15", features = ["macros", "rt-multi-thread"] }
google-authz = { version = "1.0.0-alpha.4", features = ["tonic"] }
tonic = { version = "0.8", features = ["tls", "tls-webpki-roots"] } prost = { version = "0.11" } prost-types = { version = "0.11" } google-api-proto = { version = "1", features = ["google-spanner-admin-database-v1"] } ```
main.rs: ```rust use std::env;
use googleapiproto::google::spanner::admin::database::v1::{ databaseadminclient::DatabaseAdminClient, ListDatabasesRequest, }; use google_authz::GoogleAuthz; use tonic::{transport::Channel, Request};
async fn main() -> Result<(), Box
let channel = Channel::from_static("https://spanner.googleapis.com").connect().await?;
let channel = GoogleAuthz::new(channel).await;
let mut client = DatabaseAdminClient::new(channel);
let response = client
.list_databases(Request::new(ListDatabasesRequest {
parent: format!("projects/{}/instances/{}", project, instance),
page_size: 100,
..Default::default()
}))
.await?;
println!("response = {:#?}", response);
Ok(())
} ```
Licensed under either of Apache License, Version 2.0 or MIT license at your option.