Skip to content

Commit 7427d37

Browse files
Google APIscopybara-github
authored andcommitted
feat: Add temporary_failed_ack_ids to ModifyAckDeadlineConfirmation
PiperOrigin-RevId: 510255074
1 parent 252b751 commit 7427d37

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

google/pubsub/v1/pubsub.proto

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1288,21 +1288,23 @@ message StreamingPullResponse {
12881288
// List of acknowledgement IDs that were malformed or whose acknowledgement
12891289
// deadline has expired.
12901290
repeated string invalid_ack_ids = 2;
1291+
1292+
// List of acknowledgement IDs that failed processing with temporary issues.
1293+
repeated string temporary_failed_ack_ids = 3;
12911294
}
12921295

12931296
// Subscription properties sent as part of the response.
12941297
message SubscriptionProperties {
12951298
// True iff exactly once delivery is enabled for this subscription.
12961299
bool exactly_once_delivery_enabled = 1;
1300+
12971301
// True iff message ordering is enabled for this subscription.
12981302
bool message_ordering_enabled = 2;
12991303
}
13001304

13011305
// Received Pub/Sub messages. This will not be empty.
13021306
repeated ReceivedMessage received_messages = 1;
13031307

1304-
reserved 2;
1305-
13061308
// This field will only be set if `enable_exactly_once_delivery` is set to
13071309
// `true`.
13081310
AcknowledgeConfirmation acknowledge_confirmation = 5;

0 commit comments

Comments
 (0)