Skip to content
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
8 changes: 4 additions & 4 deletions artifact-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcloud-artifact-registry"
version = "1.1.0"
version = "1.2.0"
edition = "2021"
authors = ["yoshidan <[email protected]>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/artifact-registry"
Expand All @@ -16,9 +16,9 @@ doctest = false
[dependencies]
token-source = "1.0"
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["artifact-registry"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax"}
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.1.0", path = "../foundation/longrunning" }
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.1.0", path = "../googleapis", features=["artifact-registry"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax"}
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.2.0", path = "../foundation/longrunning" }
tracing = "0.1"
prost-types = "0.13"

Expand Down
6 changes: 3 additions & 3 deletions bigquery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcloud-bigquery"
version = "1.1.0"
version = "1.2.0"
edition = "2021"
authors = ["yoshidan <[email protected]>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery"
Expand All @@ -16,8 +16,8 @@ doctest = false
[dependencies]
async-trait = "0.1"
token-source = "1.0"
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["bigquery"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax"}
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.1.0", path = "../googleapis", features=["bigquery"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax"}
thiserror = "1.0"
tracing = "0.1"
reqwest = { version = "0.12.4", features = ["json", "stream", "multipart", "charset"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion foundation/gax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcloud-gax"
version = "1.1.0"
version = "1.2.0"
authors = ["yoshidan <[email protected]>"]
edition = "2018"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax"
Expand Down
6 changes: 3 additions & 3 deletions foundation/longrunning/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcloud-longrunning"
version = "1.1.0"
version = "1.2.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning"
Expand All @@ -13,7 +13,7 @@ description = "Google Cloud Platform longrunning library."
doctest = false

[dependencies]
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.0.0", path = "../../googleapis" }
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../gax" }
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.1.0", path = "../../googleapis" }
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../gax" }
tonic = { version = "0.13", default-features = false }
prost = "0.13"
2 changes: 1 addition & 1 deletion googleapis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcloud-googleapis"
version = "1.0.0"
version = "1.1.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/googleapis"
Expand Down
1 change: 1 addition & 0 deletions googleapis/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![allow(clippy::doc_lazy_continuation)]
#![allow(clippy::doc_overindented_list_items)]

#[path = "google.rpc.rs"]
pub mod rpc;
Expand Down
6 changes: 3 additions & 3 deletions kms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcloud-kms"
version = "1.1.0"
version = "1.2.0"
edition = "2021"
authors = ["yoshidan <[email protected]>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/kms"
Expand All @@ -16,8 +16,8 @@ doctest = false
[dependencies]
token-source = "1.0"
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["kms"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax"}
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.1.0", path = "../googleapis", features=["kms"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax"}
tracing = "0.1"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions pubsub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcloud-pubsub"
version = "1.1.0"
version = "1.2.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub"
Expand All @@ -23,8 +23,8 @@ thiserror = "1.0"
tokio-util = "0.7"

token-source = "1.0"
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax" }
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.0.0", path = "../googleapis", features = ["pubsub"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax" }
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.1.0", path = "../googleapis", features = ["pubsub"]}

google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }

Expand Down
8 changes: 4 additions & 4 deletions spanner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcloud-spanner"
version = "1.1.0"
version = "1.2.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/spanner"
Expand All @@ -26,9 +26,9 @@ tokio-util = "0.7"
bigdecimal = { version="0.4", features=["serde"] }

token-source = "1.0"
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.1.0", path = "../foundation/longrunning" }
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax" }
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.0.0", path = "../googleapis", features = ["spanner"]}
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.2.0", path = "../foundation/longrunning" }
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax" }
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.1.0", path = "../googleapis", features = ["spanner"]}

google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }

Expand Down
39 changes: 9 additions & 30 deletions storage/src/http/buckets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,46 +408,25 @@ pub struct Binding {
/// Specifies the principals requesting access for a Cloud Platform 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.
/// * `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.
/// * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account.
///
/// * `user:{emailid}`: An email address that represents a specific Google
/// account. For example, `[email protected]` .
/// * `user:{emailid}`: An email address that represents a specific Google account. For example, `[email protected]` .
///
///
/// * `serviceAccount:{emailid}`: An email address that represents a service
/// account. For example, `[email protected]`.
/// * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `[email protected]`.
///
/// * `group:{emailid}`: An email address that represents a Google group.
/// For example, `[email protected]`.
/// * `group:{emailid}`: An email address that represents a Google group. For example, `[email protected]`.
///
/// * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique
/// identifier) representing a user that has been recently deleted. For
/// example, `[email protected]?uid=123456789012345678901`. If the user is
/// recovered, this value reverts to `user:{emailid}` and the recovered user
/// retains the role in the binding.
/// * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `[email protected]?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,
/// `[email protected]?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:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `[email protected]?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, `[email protected]?uid=123456789012345678901`. If
/// the group is recovered, this value reverts to `group:{emailid}` and the
/// recovered group 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, `[email protected]?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.
///
///
/// * `domain:{domain}`: The G Suite domain (primary) that represents all the
/// users of that domain. For example, `google.com` or `example.com`.
///
/// * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`.
///
pub members: Vec<String>,
/// The condition that is associated with this binding.
Expand Down