mirror of
https://github.com/googleapis/googleapis.git
synced 2026-08-16 13:00:34 +02:00
chore(pubsub): remove extraneous ctype field annotations
PiperOrigin-RevId: 496666857
This commit is contained in:
parent
1db5ebd2d6
commit
bc27df2b63
1 changed files with 9 additions and 9 deletions
|
|
@ -795,8 +795,8 @@ message Subscription {
|
|||
google.protobuf.Duration topic_message_retention_duration = 17
|
||||
[(google.api.field_behavior) = OUTPUT_ONLY];
|
||||
|
||||
// Output only. An output-only field indicating whether or not the subscription can receive
|
||||
// messages.
|
||||
// Output only. An output-only field indicating whether or not the
|
||||
// subscription can receive messages.
|
||||
State state = 19 [(google.api.field_behavior) = OUTPUT_ONLY];
|
||||
}
|
||||
|
||||
|
|
@ -969,8 +969,8 @@ message BigQueryConfig {
|
|||
// subscription's backlog.
|
||||
bool drop_unknown_fields = 4;
|
||||
|
||||
// Output only. An output-only field that indicates whether or not the subscription can
|
||||
// receive messages.
|
||||
// Output only. An output-only field that indicates whether or not the
|
||||
// subscription can receive messages.
|
||||
State state = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
|
||||
}
|
||||
|
||||
|
|
@ -1252,25 +1252,25 @@ message StreamingPullResponse {
|
|||
// previously received message.
|
||||
message AcknowledgeConfirmation {
|
||||
// Successfully processed acknowledgement IDs.
|
||||
repeated string ack_ids = 1 [ctype = CORD];
|
||||
repeated string ack_ids = 1;
|
||||
|
||||
// List of acknowledgement IDs that were malformed or whose acknowledgement
|
||||
// deadline has expired.
|
||||
repeated string invalid_ack_ids = 2 [ctype = CORD];
|
||||
repeated string invalid_ack_ids = 2;
|
||||
|
||||
// List of acknowledgement IDs that were out of order.
|
||||
repeated string unordered_ack_ids = 3 [ctype = CORD];
|
||||
repeated string unordered_ack_ids = 3;
|
||||
}
|
||||
|
||||
// Acknowledgement IDs sent in one or more previous requests to modify the
|
||||
// deadline for a specific message.
|
||||
message ModifyAckDeadlineConfirmation {
|
||||
// Successfully processed acknowledgement IDs.
|
||||
repeated string ack_ids = 1 [ctype = CORD];
|
||||
repeated string ack_ids = 1;
|
||||
|
||||
// List of acknowledgement IDs that were malformed or whose acknowledgement
|
||||
// deadline has expired.
|
||||
repeated string invalid_ack_ids = 2 [ctype = CORD];
|
||||
repeated string invalid_ack_ids = 2;
|
||||
}
|
||||
|
||||
// Subscription properties sent as part of the response.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue