Skip to content

Commit 9553db2

Browse files
yoshi-automationsofisl
authored andcommitted
fix(cloudkms): update the API
#### cloudkms:v1 The following keys were changed: - endpoints - schemas.MacVerifyRequest.properties.macCrc32c.description
1 parent caed414 commit 9553db2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

‎discovery/cloudkms-v1.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,11 @@
9898
"description": "Regional Endpoint",
9999
"endpointUrl": "https://cloudkms.us-south1.rep.googleapis.com/",
100100
"location": "us-south1"
101+
},
102+
{
103+
"description": "Regional Endpoint",
104+
"endpointUrl": "https://cloudkms.us.rep.googleapis.com/",
105+
"location": "us"
101106
}
102107
],
103108
"fullyEncodeReservedExpansion": true,
@@ -2132,7 +2137,7 @@
21322137
}
21332138
}
21342139
},
2135-
"revision": "20240926",
2140+
"revision": "20250102",
21362141
"rootUrl": "https://cloudkms.googleapis.com/",
21372142
"schemas": {
21382143
"AsymmetricDecryptRequest": {
@@ -3760,7 +3765,7 @@
37603765
"type": "string"
37613766
},
37623767
"macCrc32c": {
3763-
"description": "Optional. An optional CRC32C checksum of the MacVerifyRequest.mac. If specified, KeyManagementService will verify the integrity of the received MacVerifyRequest.mac using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(MacVerifyRequest.tag) is equal to MacVerifyRequest.mac_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
3768+
"description": "Optional. An optional CRC32C checksum of the MacVerifyRequest.mac. If specified, KeyManagementService will verify the integrity of the received MacVerifyRequest.mac using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(MacVerifyRequest.mac) is equal to MacVerifyRequest.mac_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
37643769
"format": "int64",
37653770
"type": "string"
37663771
}

‎src/apis/cloudkms/v1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ export namespace cloudkms_v1 {
10081008
*/
10091009
mac?: string | null;
10101010
/**
1011-
* Optional. An optional CRC32C checksum of the MacVerifyRequest.mac. If specified, KeyManagementService will verify the integrity of the received MacVerifyRequest.mac using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(MacVerifyRequest.tag) is equal to MacVerifyRequest.mac_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.
1011+
* Optional. An optional CRC32C checksum of the MacVerifyRequest.mac. If specified, KeyManagementService will verify the integrity of the received MacVerifyRequest.mac using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(MacVerifyRequest.mac) is equal to MacVerifyRequest.mac_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.
10121012
*/
10131013
macCrc32c?: string | null;
10141014
}

0 commit comments

Comments
 (0)