@@ -514,7 +514,9 @@ public string DeploymentName {
514514 public const int PageSizeFieldNumber = 3 ;
515515 private int pageSize_ ;
516516 /// <summary>
517- /// The number of snapshots to provide in each page of the paginated results.
517+ /// Optional. The number of snapshots to fetch in each page of the paginated results.
518+ /// If provided, the `page_size` must be a positive integer. If omitted,
519+ /// the default value of 20 is used.
518520 /// </summary>
519521 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
520522 public int PageSize {
@@ -528,8 +530,7 @@ public int PageSize {
528530 public const int PageTokenFieldNumber = 4 ;
529531 private string pageToken_ = "" ;
530532 /// <summary>
531- /// A token, previously provided by the service as a `next_page_token`, for retrieving additional
532- /// pages of paginated results.
533+ /// Optional. An opaque token to identify the start of the paginated results.
533534 /// </summary>
534535 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
535536 public string PageToken {
@@ -699,6 +700,9 @@ public ListSnapshotsResponse Clone() {
699700 private static readonly pb ::FieldCodec < global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot > _repeated_snapshot_codec
700701 = pb ::FieldCodec . ForMessage ( 10 , global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot . Parser ) ;
701702 private readonly pbc ::RepeatedField < global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot > snapshot_ = new pbc ::RepeatedField < global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot > ( ) ;
703+ /// <summary>
704+ /// By default, snapshots are sorted by creation time (descending).
705+ /// </summary>
702706 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
703707 public pbc ::RepeatedField < global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot > Snapshot {
704708 get { return snapshot_ ; }
@@ -872,7 +876,7 @@ public string DeploymentName {
872876 public const int IdFieldNumber = 3 ;
873877 private string id_ = "" ;
874878 /// <summary>
875- /// The identifier for the desired snapshot.
879+ /// The identifier for the snapshot.
876880 /// </summary>
877881 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
878882 public string Id {
@@ -1146,6 +1150,16 @@ public TakeSnapshotRequest Clone() {
11461150 /// <summary>Field number for the "snapshot" field.</summary>
11471151 public const int SnapshotFieldNumber = 1 ;
11481152 private global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot snapshot_ ;
1153+ /// <summary>
1154+ /// These fields are mandatory:
1155+ /// - `project_name`
1156+ /// - `deployment_name`
1157+ ///
1158+ /// These fields are optional:
1159+ /// - `tags`
1160+ ///
1161+ /// Other set values will be ignored.
1162+ /// </summary>
11491163 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
11501164 public global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot Snapshot {
11511165 get { return snapshot_ ; }
@@ -1358,6 +1372,17 @@ public UploadSnapshotRequest Clone() {
13581372 /// <summary>Field number for the "snapshot" field.</summary>
13591373 public const int SnapshotFieldNumber = 1 ;
13601374 private global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot snapshot_ ;
1375+ /// <summary>
1376+ /// These fields are mandatory:
1377+ /// - `project_name`
1378+ /// - `deployment_name`
1379+ /// - `checksum`
1380+ ///
1381+ /// These fields are optional:
1382+ /// - `tags`
1383+ ///
1384+ /// Other set values will be ignored.
1385+ /// </summary>
13611386 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
13621387 public global ::Improbable . SpatialOS . Snapshot . V1Alpha1 . Snapshot Snapshot {
13631388 get { return snapshot_ ; }
0 commit comments