@@ -493,6 +493,7 @@ message InvokeBindingRequest {
493
493
//
494
494
// Common metadata property:
495
495
// - ttlInSeconds : the time to live in seconds for the message.
496
+ //
496
497
// If set in the binding definition will cause all messages to
497
498
// have a default time to live. The message ttl overrides any value
498
499
// in the binding definition.
@@ -839,11 +840,11 @@ message TryLockRequest {
839
840
//
840
841
// The reason why we don't make it automatically generated is:
841
842
// 1. If it is automatically generated,there must be a 'my_lock_owner_id' field in the response.
842
- // This name is so weird that we think it is inappropriate to put it into the api spec
843
+ // This name is so weird that we think it is inappropriate to put it into the api spec
843
844
// 2. If we change the field 'my_lock_owner_id' in the response to 'lock_owner',which means the current lock owner of this lock,
844
- // we find that in some lock services users can't get the current lock owner.Actually users don't need it at all.
845
+ // we find that in some lock services users can't get the current lock owner.Actually users don't need it at all.
845
846
// 3. When reentrant lock is needed,the existing lock_owner is required to identify client and check "whether this client can reenter this lock".
846
- // So this field in the request shouldn't be removed.
847
+ // So this field in the request shouldn't be removed.
847
848
string lock_owner = 3 [json_name = "lockOwner" ];
848
849
849
850
// Required. The time before expiry.The time unit is second.
@@ -880,7 +881,7 @@ message SubtleGetKeyRequest {
880
881
// JSON (JSON Web Key) as string
881
882
JSON = 1 ;
882
883
}
883
-
884
+
884
885
// Name of the component
885
886
string component_name = 1 [json_name ="componentName" ];
886
887
// Name (or name/version) of the key to use in the key vault
@@ -1062,7 +1063,7 @@ message EncryptRequestOptions {
1062
1063
// If true, the encrypted document does not contain a key reference.
1063
1064
// In that case, calls to the Decrypt method must provide a key reference (name or name/version).
1064
1065
// Defaults to false.
1065
- bool omit_decryption_key_name = 11 [json_name = "omitDecryptionKeyName" ];
1066
+ bool omit_decryption_key_name = 11 [json_name = "omitDecryptionKeyName" ];
1066
1067
// Key reference to embed in the encrypted document (name or name/version).
1067
1068
// This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
1068
1069
// If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
@@ -1211,14 +1212,14 @@ message Job {
1211
1212
// "0 15 3 * * *" - every day at 03:15
1212
1213
//
1213
1214
// Period string expressions:
1214
- // Entry | Description | Equivalent To
1215
- // ----- | ----------- | -------------
1215
+ // Entry | Description | Equivalent To
1216
+ // ----- | ----------- | -------------
1216
1217
// @every <duration> | Run every <duration> (e.g. '@every 1h30m') | N/A
1217
- // @yearly (or @annually) | Run once a year, midnight, Jan. 1st | 0 0 0 1 1 *
1218
- // @monthly | Run once a month, midnight, first of month | 0 0 0 1 * *
1219
- // @weekly | Run once a week, midnight on Sunday | 0 0 0 * * 0
1220
- // @daily (or @midnight) | Run once a day, midnight | 0 0 0 * * *
1221
- // @hourly | Run once an hour, beginning of hour | 0 0 * * * *
1218
+ // @yearly (or @annually) | Run once a year, midnight, Jan. 1st | 0 0 0 1 1 *
1219
+ // @monthly | Run once a month, midnight, first of month | 0 0 0 1 * *
1220
+ // @weekly | Run once a week, midnight on Sunday | 0 0 0 * * 0
1221
+ // @daily (or @midnight) | Run once a day, midnight | 0 0 0 * * *
1222
+ // @hourly | Run once an hour, beginning of hour | 0 0 * * * *
1222
1223
optional string schedule = 2 [json_name = "schedule" ];
1223
1224
1224
1225
// repeats is the optional number of times in which the job should be
@@ -1273,4 +1274,4 @@ message DeleteJobRequest {
1273
1274
// DeleteJobResponse is the message response to delete the job by name.
1274
1275
message DeleteJobResponse {
1275
1276
// Empty
1276
- }
1277
+ }
0 commit comments