Skip to content

Commit 6243eea

Browse files
authored
Bump googleapis (#379)
1 parent 4f181bd commit 6243eea

20 files changed

+1089
-640
lines changed

artifact-registry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-artifact-registry"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
edition = "2021"
55
authors = ["yoshidan <[email protected]>"]
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/artifact-registry"
@@ -16,7 +16,7 @@ doctest = false
1616
[dependencies]
1717
token-source = "1.0"
1818
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }
19-
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.1.0", path = "../googleapis", features=["artifact-registry"]}
19+
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.2.0", path = "../googleapis", features=["artifact-registry"]}
2020
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax"}
2121
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.2.0", path = "../foundation/longrunning" }
2222
tracing = "0.1"

bigquery/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-bigquery"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
edition = "2021"
55
authors = ["yoshidan <[email protected]>"]
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery"
@@ -16,7 +16,7 @@ doctest = false
1616
[dependencies]
1717
async-trait = "0.1"
1818
token-source = "1.0"
19-
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.1.0", path = "../googleapis", features=["bigquery"]}
19+
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.2.0", path = "../googleapis", features=["bigquery"]}
2020
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax"}
2121
thiserror = "1.0"
2222
tracing = "0.1"

foundation/longrunning/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-longrunning"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
authors = ["yoshidan <[email protected]>"]
55
edition = "2021"
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning"
@@ -13,7 +13,7 @@ description = "Google Cloud Platform longrunning library."
1313
doctest = false
1414

1515
[dependencies]
16-
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.1.0", path = "../../googleapis" }
16+
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.2.0", path = "../../googleapis" }
1717
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../gax" }
1818
tonic = { version = "0.13", default-features = false }
1919
prost = "0.13"

googleapis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-googleapis"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["yoshidan <[email protected]>"]
55
edition = "2021"
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/googleapis"

googleapis/googleapis

Submodule googleapis updated 1366 files

googleapis/src/bytes/google.cloud.kms.v1.rs

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,7 @@ pub mod crypto_key_version {
478478
/// The suffix following `HMAC_` corresponds to the hash algorithm being used
479479
/// (eg. SHA256).
480480
///
481+
/// Algorithms beginning with `PQ_` are post-quantum.
481482
///
482483
/// For more information, see \[Key purposes and algorithms\]
483484
/// (<https://cloud.google.com/kms/docs/algorithms>).
@@ -704,7 +705,7 @@ pub mod crypto_key_version {
704705
/// [ENABLED][google.cloud.kms.v1.CryptoKeyVersion.CryptoKeyVersionState.ENABLED]
705706
/// state.
706707
Disabled = 2,
707-
/// This version is destroyed, and the key material is no longer stored.
708+
/// The key material of this version is destroyed and no longer stored.
708709
/// This version may only become
709710
/// [ENABLED][google.cloud.kms.v1.CryptoKeyVersion.CryptoKeyVersionState.ENABLED]
710711
/// again if this version is
@@ -1567,6 +1568,10 @@ pub struct ListKeyRingsResponse {
15671568
pub next_page_token: ::prost::alloc::string::String,
15681569
/// The total number of [KeyRings][google.cloud.kms.v1.KeyRing] that matched
15691570
/// the query.
1571+
///
1572+
/// This field is not populated if
1573+
/// [ListKeyRingsRequest.filter][google.cloud.kms.v1.ListKeyRingsRequest.filter]
1574+
/// is applied.
15701575
#[prost(int32, tag = "3")]
15711576
pub total_size: i32,
15721577
}
@@ -1584,6 +1589,10 @@ pub struct ListCryptoKeysResponse {
15841589
pub next_page_token: ::prost::alloc::string::String,
15851590
/// The total number of [CryptoKeys][google.cloud.kms.v1.CryptoKey] that
15861591
/// matched the query.
1592+
///
1593+
/// This field is not populated if
1594+
/// [ListCryptoKeysRequest.filter][google.cloud.kms.v1.ListCryptoKeysRequest.filter]
1595+
/// is applied.
15871596
#[prost(int32, tag = "3")]
15881597
pub total_size: i32,
15891598
}
@@ -1602,6 +1611,10 @@ pub struct ListCryptoKeyVersionsResponse {
16021611
/// The total number of
16031612
/// [CryptoKeyVersions][google.cloud.kms.v1.CryptoKeyVersion] that matched the
16041613
/// query.
1614+
///
1615+
/// This field is not populated if
1616+
/// [ListCryptoKeyVersionsRequest.filter][google.cloud.kms.v1.ListCryptoKeyVersionsRequest.filter]
1617+
/// is applied.
16051618
#[prost(int32, tag = "3")]
16061619
pub total_size: i32,
16071620
}
@@ -1619,6 +1632,10 @@ pub struct ListImportJobsResponse {
16191632
pub next_page_token: ::prost::alloc::string::String,
16201633
/// The total number of [ImportJobs][google.cloud.kms.v1.ImportJob] that
16211634
/// matched the query.
1635+
///
1636+
/// This field is not populated if
1637+
/// [ListImportJobsRequest.filter][google.cloud.kms.v1.ListImportJobsRequest.filter]
1638+
/// is applied.
16221639
#[prost(int32, tag = "3")]
16231640
pub total_size: i32,
16241641
}
@@ -4076,6 +4093,10 @@ pub struct ListEkmConnectionsResponse {
40764093
pub next_page_token: ::prost::alloc::string::String,
40774094
/// The total number of [EkmConnections][google.cloud.kms.v1.EkmConnection]
40784095
/// that matched the query.
4096+
///
4097+
/// This field is not populated if
4098+
/// [ListEkmConnectionsRequest.filter][google.cloud.kms.v1.ListEkmConnectionsRequest.filter]
4099+
/// is applied.
40794100
#[prost(int32, tag = "3")]
40804101
pub total_size: i32,
40814102
}

0 commit comments

Comments
 (0)