Skip to content

Commit

Permalink
feat: publish proto definitions for SUM/AVG in Firestore
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 552607134

Source-Link: googleapis/googleapis@88a9a5f

Source-Link: googleapis/googleapis-gen@047d73a
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuRmlyZXN0b3JlLlYxLy5Pd2xCb3QueWFtbCIsImgiOiIwNDdkNzNhZTJmZDRlNTI2YjQ3NGE2MTdlMTY4MzM5ZDY5MWIyNTEwIn0=
  • Loading branch information
gcf-owl-bot[bot] authored and jskeet committed Aug 1, 2023
1 parent 2a8a2a6 commit 9931b9d
Show file tree
Hide file tree
Showing 4 changed files with 611 additions and 29 deletions.
Expand Up @@ -841,6 +841,9 @@ public enum ModeOneofCase {
public static partial class Types {
/// <summary>
/// Options for a transaction that can be used to read and write documents.
///
/// Firestore does not allow 3rd party auth requests to create read-write.
/// transactions.
/// </summary>
public sealed partial class ReadWrite : pb::IMessage<ReadWrite>
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
Expand Down Expand Up @@ -1090,7 +1093,10 @@ public sealed partial class ReadOnly : pb::IMessage<ReadOnly>
public const int ReadTimeFieldNumber = 2;
/// <summary>
/// Reads documents at the given time.
/// This may not be older than 60 seconds.
///
/// This must be a microsecond precision timestamp within the past one
/// hour, or if Point-in-Time Recovery is enabled, can additionally be a
/// whole minute timestamp within the past 7 days.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down
Expand Up @@ -403,7 +403,10 @@ public sealed partial class GetDocumentRequest : pb::IMessage<GetDocumentRequest
public const int ReadTimeFieldNumber = 5;
/// <summary>
/// Reads the version of the document at the given time.
/// This may not be older than 270 seconds.
///
/// This must be a microsecond precision timestamp within the past one hour,
/// or if Point-in-Time Recovery is enabled, can additionally be a whole
/// minute timestamp within the past 7 days.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down Expand Up @@ -881,7 +884,9 @@ public sealed partial class ListDocumentsRequest : pb::IMessage<ListDocumentsReq
/// <summary>
/// Perform the read at the provided time.
///
/// This may not be older than 270 seconds.
/// This must be a microsecond precision timestamp within the past one hour,
/// or if Point-in-Time Recovery is enabled, can additionally be a whole
/// minute timestamp within the past 7 days.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down Expand Up @@ -2672,7 +2677,10 @@ public sealed partial class BatchGetDocumentsRequest : pb::IMessage<BatchGetDocu
public const int ReadTimeFieldNumber = 7;
/// <summary>
/// Reads documents as they were at the given time.
/// This may not be older than 270 seconds.
///
/// This must be a microsecond precision timestamp within the past one hour,
/// or if Point-in-Time Recovery is enabled, can additionally be a whole
/// minute timestamp within the past 7 days.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down Expand Up @@ -4717,7 +4725,10 @@ public sealed partial class RunQueryRequest : pb::IMessage<RunQueryRequest>
public const int ReadTimeFieldNumber = 7;
/// <summary>
/// Reads documents as they were at the given time.
/// This may not be older than 270 seconds.
///
/// This must be a microsecond precision timestamp within the past one hour,
/// or if Point-in-Time Recovery is enabled, can additionally be a whole
/// minute timestamp within the past 7 days.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down Expand Up @@ -5634,9 +5645,9 @@ public sealed partial class RunAggregationQueryRequest : pb::IMessage<RunAggrega
/// <summary>
/// Executes the query at the given timestamp.
///
/// Requires:
///
/// * Cannot be more than 270 seconds in the past.
/// This must be a microsecond precision timestamp within the past one hour,
/// or if Point-in-Time Recovery is enabled, can additionally be a whole
/// minute timestamp within the past 7 days.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down Expand Up @@ -6447,7 +6458,10 @@ public sealed partial class PartitionQueryRequest : pb::IMessage<PartitionQueryR
public const int ReadTimeFieldNumber = 6;
/// <summary>
/// Reads documents as they were at the given time.
/// This may not be older than 270 seconds.
///
/// This must be a microsecond precision timestamp within the past one hour,
/// or if Point-in-Time Recovery is enabled, can additionally be a whole
/// minute timestamp within the past 7 days.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down Expand Up @@ -10133,7 +10147,10 @@ public sealed partial class ListCollectionIdsRequest : pb::IMessage<ListCollecti
public const int ReadTimeFieldNumber = 4;
/// <summary>
/// Reads documents as they were at the given time.
/// This may not be older than 270 seconds.
///
/// This must be a microsecond precision timestamp within the past one hour,
/// or if Point-in-Time Recovery is enabled, can additionally be a whole
/// minute timestamp within the past 7 days.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down

0 comments on commit 9931b9d

Please sign in to comment.