Skip to content

Commit

Permalink
Merge pull request #14 from mozilla-services/release
Browse files Browse the repository at this point in the history
Release lgtm
  • Loading branch information
michaelojala authored Jun 14, 2021
2 parents 07dc0cf + b8c22de commit 0d08c43
Show file tree
Hide file tree
Showing 35 changed files with 1,805 additions and 1,514 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ experimental!**

## Rust bindings for Google APIs

See [`googleapis-raw`](googleapis-raw) for raw bindings based on
See [`googleapis-raw`](google-cloud-rust-raw) for raw bindings based on
[`grpcio`](https://github.com/pingcap/grpc-rs).

See [`googleapis`](googleapis) for high-level bindings (not ready for use yet).
See [`googleapis`](google-cloud-rust) for high-level bindings (not ready for use yet).

## Contributing

Expand All @@ -43,6 +43,6 @@ Apache 2.0 - See [LICENSE](LICENSE.md) for more information.

## Disclaimer

This is not an officially supported Google product, but was initially created via an agreement between [`Mozilla`](https://www.mozilla.org/), [`Google Cloud`](https://cloud.google.com/), [`Ferrous Systems`](https://ferrous-systems.com/), and [`IGNW`](https://www.ignw.io/).
This is not an officially supported Google product, but was initially created via an agreement between [`Mozilla`](https://www.mozilla.org/), [`Google Cloud`](https://cloud.google.com/), [`Ferrous Systems`](https://ferrous-systems.com/), and [`IGNW`](https://www.ignw.io/).

Thank you
16 changes: 12 additions & 4 deletions googleapis-raw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,22 @@
# limitations under the License.

[package]
name = "googleapis-raw"
version = "0.1.0"
authors = ["Ferrous Systems"]
name = "google-cloud-rust-raw"
version = "0.9.0"
authors = [
"Ferrous Systems",
"Mozilla Services Engineering <services-engineering+code@mozilla.com>",
"Rust on GCP Team <rust-on-gcp@google.com>"
]
license-file = "LICENSE.md"
description = "A set of client libraries to interact with various Google Cloud Platform services"
readme = "README.md"
repository = "https://github.com/mozilla-services/mozilla-rust-sdk/"
edition = "2018"

[dependencies]
futures = "0.3.5"
grpcio = "0.8.2"
grpcio = "0.9.0"
protobuf = "2.23.0"

[dev-dependencies]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -392,45 +392,59 @@ pub trait BigtableClusterService {
fn list_zones(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_cluster_service_messages::ListZonesRequest,
_req: super::bigtable_cluster_service_messages::ListZonesRequest,
sink: ::grpcio::UnarySink<super::bigtable_cluster_service_messages::ListZonesResponse>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn get_cluster(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_cluster_service_messages::GetClusterRequest,
_req: super::bigtable_cluster_service_messages::GetClusterRequest,
sink: ::grpcio::UnarySink<super::bigtable_cluster_data::Cluster>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn list_clusters(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_cluster_service_messages::ListClustersRequest,
_req: super::bigtable_cluster_service_messages::ListClustersRequest,
sink: ::grpcio::UnarySink<super::bigtable_cluster_service_messages::ListClustersResponse>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn create_cluster(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_cluster_service_messages::CreateClusterRequest,
_req: super::bigtable_cluster_service_messages::CreateClusterRequest,
sink: ::grpcio::UnarySink<super::bigtable_cluster_data::Cluster>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn update_cluster(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_cluster_data::Cluster,
_req: super::bigtable_cluster_data::Cluster,
sink: ::grpcio::UnarySink<super::bigtable_cluster_data::Cluster>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn delete_cluster(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_cluster_service_messages::DeleteClusterRequest,
_req: super::bigtable_cluster_service_messages::DeleteClusterRequest,
sink: ::grpcio::UnarySink<super::empty::Empty>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn undelete_cluster(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_cluster_service_messages::UndeleteClusterRequest,
_req: super::bigtable_cluster_service_messages::UndeleteClusterRequest,
sink: ::grpcio::UnarySink<super::operations::Operation>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
}

pub fn create_bigtable_cluster_service<S: BigtableClusterService + Send + Clone + 'static>(
Expand Down
1 change: 0 additions & 1 deletion googleapis-raw/src/bigtable/admin/cluster/v1/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.


pub(crate) use crate::empty;
pub(crate) use crate::longrunning::operations;
pub mod bigtable_cluster_data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,57 +496,75 @@ pub trait BigtableTableService {
fn create_table(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_service_messages::CreateTableRequest,
_req: super::bigtable_table_service_messages::CreateTableRequest,
sink: ::grpcio::UnarySink<super::bigtable_table_data::Table>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn list_tables(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_service_messages::ListTablesRequest,
_req: super::bigtable_table_service_messages::ListTablesRequest,
sink: ::grpcio::UnarySink<super::bigtable_table_service_messages::ListTablesResponse>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn get_table(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_service_messages::GetTableRequest,
_req: super::bigtable_table_service_messages::GetTableRequest,
sink: ::grpcio::UnarySink<super::bigtable_table_data::Table>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn delete_table(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_service_messages::DeleteTableRequest,
_req: super::bigtable_table_service_messages::DeleteTableRequest,
sink: ::grpcio::UnarySink<super::empty::Empty>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn rename_table(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_service_messages::RenameTableRequest,
_req: super::bigtable_table_service_messages::RenameTableRequest,
sink: ::grpcio::UnarySink<super::empty::Empty>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn create_column_family(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_service_messages::CreateColumnFamilyRequest,
_req: super::bigtable_table_service_messages::CreateColumnFamilyRequest,
sink: ::grpcio::UnarySink<super::bigtable_table_data::ColumnFamily>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn update_column_family(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_data::ColumnFamily,
_req: super::bigtable_table_data::ColumnFamily,
sink: ::grpcio::UnarySink<super::bigtable_table_data::ColumnFamily>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn delete_column_family(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_service_messages::DeleteColumnFamilyRequest,
_req: super::bigtable_table_service_messages::DeleteColumnFamilyRequest,
sink: ::grpcio::UnarySink<super::empty::Empty>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
fn bulk_delete_rows(
&mut self,
ctx: ::grpcio::RpcContext,
req: super::bigtable_table_service_messages::BulkDeleteRowsRequest,
_req: super::bigtable_table_service_messages::BulkDeleteRowsRequest,
sink: ::grpcio::UnarySink<super::empty::Empty>,
);
) {
grpcio::unimplemented_call!(ctx, sink)
}
}

pub fn create_bigtable_table_service<S: BigtableTableService + Send + Clone + 'static>(
Expand Down
1 change: 0 additions & 1 deletion googleapis-raw/src/bigtable/admin/table/v1/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.


pub(crate) use crate::empty;
pub(crate) use crate::longrunning::operations;
pub mod bigtable_table_data;
Expand Down
Loading

0 comments on commit 0d08c43

Please sign in to comment.