Skip to content

Commit add2b1c

Browse files
authored
[COMP-673] Add description and runtime version (#26)
* Add description and runtime version * Updated build queue
1 parent 956ee1e commit add2b1c

File tree

7 files changed

+407
-790
lines changed

7 files changed

+407
-790
lines changed

.buildkite/premerge.steps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ common: &common
1414
# TODO(EV): Make docs better. (https://github.com/improbable/platform/blob/master/docs/product-groups/dev-workflow/buildkite/how-to-deploy-change-to-agents.md)
1515
- "capable_of_building=platform"
1616
- "environment=production"
17-
- "queue=v-ccadbedf01b84f29-------1540485662"
17+
- "queue=v2-1545678177-378924f50bfed5a0-------z"
1818
timeout_in_minutes: 60 # TODO(ENG-548): reduce timeout once agent-cold-start is optimised.
1919
retry:
2020
automatic:

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ git_repository(
6161
git_repository(
6262
name = "improbable_platform",
6363
remote = "git@github.com:improbable/platform.git",
64-
commit = "246c6a1db4e352b51f4d2197cdf600077ab41bce",
65-
shallow_since = "2018-12-01",
64+
commit = "777672f36dbc103621ee04dec1786da2cdd48599",
65+
shallow_since = "2019-02-01",
6666
)
6767

6868
new_git_repository(

apis/deployment_v1alpha1/Deployment.cs

Lines changed: 226 additions & 68 deletions
Large diffs are not rendered by default.

apis/deployment_v1alpha1/DeploymentGrpc.cs

Lines changed: 15 additions & 255 deletions
Large diffs are not rendered by default.

apis/playerauth_v2alpha1/PlayerAuth.cs

Lines changed: 99 additions & 65 deletions
Large diffs are not rendered by default.

apis/snapshot_v1alpha1/Snapshot.cs

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)