@@ -84,7 +84,7 @@ message RedeemReceiptRequest {
8484}
8585
8686message RedeemReceiptResponse {
87- oneof outcome {
87+ oneof response {
8888 // The receipt was successfully redeemed
8989 google.protobuf.Empty success = 1 ;
9090
@@ -217,7 +217,7 @@ message SetPublicKeyRequest {
217217}
218218
219219message SetPublicKeyResponse {
220- oneof outcome {
220+ oneof response {
221221 // The public key was successfully set
222222 google.protobuf.Empty success = 1 ;
223223
@@ -240,7 +240,7 @@ message GetCdnCredentialsResponse {
240240 message CdnCredentials {
241241 map <string , string > headers = 1 ;
242242 }
243- oneof outcome {
243+ oneof response {
244244 // Headers to include with requests to the read from the backup CDN. Includes
245245 // time limited read-only credentials.
246246 CdnCredentials cdn_credentials = 1 ;
@@ -266,7 +266,7 @@ message GetSvrBCredentialsResponse {
266266 string password = 2 ;
267267 }
268268
269- oneof outcome {
269+ oneof response {
270270 SvrBCredentials svrb_credentials = 1 ;
271271
272272 // The provided backup auth credential presentation could not be
@@ -295,7 +295,7 @@ message GetMessageBackupInfoResponse {
295295 string backup_name = 3 ;
296296 }
297297
298- oneof outcome {
298+ oneof response {
299299 MessageBackupInfo backup_info = 1 ;
300300
301301 // The provided backup auth credential presentation could not be
@@ -319,7 +319,7 @@ message GetMediaBackupInfoResponse {
319319 uint64 used_space = 3 ;
320320 }
321321
322- oneof outcome {
322+ oneof response {
323323 MediaBackupInfo backup_info = 1 ;
324324
325325 // The provided backup auth credential presentation could not be
@@ -334,7 +334,7 @@ message RefreshRequest {
334334 SignedPresentation signed_presentation = 1 ;
335335}
336336message RefreshResponse {
337- oneof outcome {
337+ oneof response {
338338 // The backup was successfully refreshed
339339 google.protobuf.Empty success = 1 ;
340340
@@ -369,7 +369,7 @@ message GetUploadFormRequest {
369369 uint64 uploadLength = 4 [(require.range ) = {min : 1 }];
370370}
371371message GetUploadFormResponse {
372- oneof outcome {
372+ oneof response {
373373 common.UploadForm upload_form = 1 ;
374374
375375 // The provided backup auth credential presentation could not be
@@ -425,7 +425,7 @@ message CopyMediaResponse {
425425 // The 15-byte media_id from the corresponding CopyMediaItem in the request
426426 bytes media_id = 1 ;
427427
428- oneof outcome {
428+ oneof response {
429429 // The media item was successfully copied into the backup
430430 CopySuccess success = 2 ;
431431
@@ -485,7 +485,7 @@ message ListMediaResponse {
485485 optional string cursor = 4 ;
486486 }
487487
488- oneof outcome {
488+ oneof response {
489489 ListResult list_result = 1 ;
490490
491491 // The provided backup auth credential presentation could not be
@@ -500,7 +500,7 @@ message DeleteAllRequest {
500500 SignedPresentation signed_presentation = 1 ;
501501}
502502message DeleteAllResponse {
503- oneof outcome {
503+ oneof response {
504504 // The backup was successfully scheduled for deletion
505505 google.protobuf.Empty success = 1 ;
506506
@@ -527,7 +527,7 @@ message DeleteMediaRequest {
527527}
528528
529529message DeleteMediaResponse {
530- oneof outcome {
530+ oneof response {
531531 DeleteMediaItem deleted_item = 1 ;
532532
533533 // The provided backup auth credential presentation could not be
0 commit comments