Skip to content

Commit 94a00ba

Browse files
docs: [cloudkms] Minor formatting (#9726)
* docs: Minor formatting PiperOrigin-RevId: 553100418 Source-Link: googleapis/googleapis@09b5fc6 Source-Link: https://github.com/googleapis/googleapis-gen/commit/8441eb3ec2acb464b346fa73719063f7b2c82adf Copy-Tag: eyJwIjoiamF2YS1rbXMvLk93bEJvdC55YW1sIiwiaCI6Ijg0NDFlYjNlYzJhY2I0NjRiMzQ2ZmE3MzcxOTA2M2Y3YjJjODJhZGYifQ== * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 9ebc18f commit 94a00ba

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

java-kms/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
2020
<dependency>
2121
<groupId>com.google.cloud</groupId>
2222
<artifactId>libraries-bom</artifactId>
23-
<version>26.19.0</version>
23+
<version>26.21.0</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>
@@ -195,7 +195,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
195195
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
196196
[stability-image]: https://img.shields.io/badge/stability-stable-green
197197
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-kms.svg
198-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-kms/2.24.0
198+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-kms/2.25.0
199199
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
200200
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
201201
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

java-kms/proto-google-cloud-kms-v1/src/main/java/com/google/cloud/kms/v1/CryptoKeyVersion.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,37 +93,37 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
9393
* [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
9494
* [ENCRYPT_DECRYPT][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.ENCRYPT_DECRYPT].
9595
*
96-
* Algorithms beginning with "RSA_SIGN_" are usable with
96+
* Algorithms beginning with `RSA_SIGN_` are usable with
9797
* [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
9898
* [ASYMMETRIC_SIGN][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.ASYMMETRIC_SIGN].
9999
*
100-
* The fields in the name after "RSA_SIGN_" correspond to the following
100+
* The fields in the name after `RSA_SIGN_` correspond to the following
101101
* parameters: padding algorithm, modulus bit length, and digest algorithm.
102102
*
103103
* For PSS, the salt length used is equal to the length of digest
104104
* algorithm. For example,
105105
* [RSA_SIGN_PSS_2048_SHA256][google.cloud.kms.v1.CryptoKeyVersion.CryptoKeyVersionAlgorithm.RSA_SIGN_PSS_2048_SHA256]
106106
* will use PSS with a salt length of 256 bits or 32 bytes.
107107
*
108-
* Algorithms beginning with "RSA_DECRYPT_" are usable with
108+
* Algorithms beginning with `RSA_DECRYPT_` are usable with
109109
* [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
110110
* [ASYMMETRIC_DECRYPT][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.ASYMMETRIC_DECRYPT].
111111
*
112-
* The fields in the name after "RSA_DECRYPT_" correspond to the following
112+
* The fields in the name after `RSA_DECRYPT_` correspond to the following
113113
* parameters: padding algorithm, modulus bit length, and digest algorithm.
114114
*
115-
* Algorithms beginning with "EC_SIGN_" are usable with
115+
* Algorithms beginning with `EC_SIGN_` are usable with
116116
* [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
117117
* [ASYMMETRIC_SIGN][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.ASYMMETRIC_SIGN].
118118
*
119-
* The fields in the name after "EC_SIGN_" correspond to the following
119+
* The fields in the name after `EC_SIGN_` correspond to the following
120120
* parameters: elliptic curve, digest algorithm.
121121
*
122-
* Algorithms beginning with "HMAC_" are usable with
122+
* Algorithms beginning with `HMAC_` are usable with
123123
* [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
124124
* [MAC][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.MAC].
125125
*
126-
* The suffix following "HMAC_" corresponds to the hash algorithm being used
126+
* The suffix following `HMAC_` corresponds to the hash algorithm being used
127127
* (eg. SHA256).
128128
*
129129
* For more information, see [Key purposes and algorithms]

java-kms/proto-google-cloud-kms-v1/src/main/proto/google/cloud/kms/v1/resources.proto

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -304,37 +304,37 @@ message CryptoKeyVersion {
304304
// [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
305305
// [ENCRYPT_DECRYPT][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.ENCRYPT_DECRYPT].
306306
//
307-
// Algorithms beginning with "RSA_SIGN_" are usable with
307+
// Algorithms beginning with `RSA_SIGN_` are usable with
308308
// [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
309309
// [ASYMMETRIC_SIGN][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.ASYMMETRIC_SIGN].
310310
//
311-
// The fields in the name after "RSA_SIGN_" correspond to the following
311+
// The fields in the name after `RSA_SIGN_` correspond to the following
312312
// parameters: padding algorithm, modulus bit length, and digest algorithm.
313313
//
314314
// For PSS, the salt length used is equal to the length of digest
315315
// algorithm. For example,
316316
// [RSA_SIGN_PSS_2048_SHA256][google.cloud.kms.v1.CryptoKeyVersion.CryptoKeyVersionAlgorithm.RSA_SIGN_PSS_2048_SHA256]
317317
// will use PSS with a salt length of 256 bits or 32 bytes.
318318
//
319-
// Algorithms beginning with "RSA_DECRYPT_" are usable with
319+
// Algorithms beginning with `RSA_DECRYPT_` are usable with
320320
// [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
321321
// [ASYMMETRIC_DECRYPT][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.ASYMMETRIC_DECRYPT].
322322
//
323-
// The fields in the name after "RSA_DECRYPT_" correspond to the following
323+
// The fields in the name after `RSA_DECRYPT_` correspond to the following
324324
// parameters: padding algorithm, modulus bit length, and digest algorithm.
325325
//
326-
// Algorithms beginning with "EC_SIGN_" are usable with
326+
// Algorithms beginning with `EC_SIGN_` are usable with
327327
// [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
328328
// [ASYMMETRIC_SIGN][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.ASYMMETRIC_SIGN].
329329
//
330-
// The fields in the name after "EC_SIGN_" correspond to the following
330+
// The fields in the name after `EC_SIGN_` correspond to the following
331331
// parameters: elliptic curve, digest algorithm.
332332
//
333-
// Algorithms beginning with "HMAC_" are usable with
333+
// Algorithms beginning with `HMAC_` are usable with
334334
// [CryptoKey.purpose][google.cloud.kms.v1.CryptoKey.purpose]
335335
// [MAC][google.cloud.kms.v1.CryptoKey.CryptoKeyPurpose.MAC].
336336
//
337-
// The suffix following "HMAC_" corresponds to the hash algorithm being used
337+
// The suffix following `HMAC_` corresponds to the hash algorithm being used
338338
// (eg. SHA256).
339339
//
340340
// For more information, see [Key purposes and algorithms]

0 commit comments

Comments
 (0)