Skip to content

Commit

Permalink
feat: check status of long running operation by its name (#65)
Browse files Browse the repository at this point in the history
For each client method returning a long running operation, a separate method to check its status is added.

Added methods: `checkCreateGameServerClusterProgress`, `checkCreateGameServerConfigProgress`, `checkCreateGameServerDeploymentProgress`, `checkCreateRealmProgress`, `checkDeleteGameServerClusterProgress`, `checkDeleteGameServerConfigProgress`, `checkDeleteGameServerDeploymentProgress`, `checkDeleteRealmProgress`, `checkUpdateGameServerClusterProgress`, `checkUpdateGameServerDeploymentProgress`, `checkUpdateGameServerDeploymentRolloutProgress`, `checkUpdateRealmProgress`.
  • Loading branch information
alexander-fenster authored May 6, 2020
1 parent 8a2207c commit a642f65
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions generated,README.md/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@

* [Before you begin](#before-you-begin)
* [Samples](#samples)
* [Create_cluster](#create_cluster)
* [Create_realm](#create_realm)
* [Delete_cluster](#delete_cluster)
* [Delete_realm](#delete_realm)
* [Get_cluster](#get_cluster)
* [Get_realm](#get_realm)
* [List_clusters](#list_clusters)
* [List_realms](#list_realms)
* [Create Game Server Realm](#create-game-server-realm)

Expand All @@ -33,6 +37,23 @@ Before running the samples, make sure you've followed the steps outlined in



### Create_cluster

View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/create_cluster.js).

[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-game-servers&page=editor&open_in_editor=samples/create_cluster.js,samples/README.md)

__Usage:__


`node samples/create_cluster.js`


-----




### Create_realm

View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/create_realm.js).
Expand All @@ -50,6 +71,23 @@ __Usage:__



### Delete_cluster

View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/delete_cluster.js).

[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-game-servers&page=editor&open_in_editor=samples/delete_cluster.js,samples/README.md)

__Usage:__


`node samples/delete_cluster.js`


-----




### Delete_realm

View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/delete_realm.js).
Expand All @@ -67,6 +105,23 @@ __Usage:__



### Get_cluster

View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/get_cluster.js).

[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-game-servers&page=editor&open_in_editor=samples/get_cluster.js,samples/README.md)

__Usage:__


`node samples/get_cluster.js`


-----




### Get_realm

View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/get_realm.js).
Expand All @@ -84,6 +139,23 @@ __Usage:__



### List_clusters

View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/list_clusters.js).

[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-game-servers&page=editor&open_in_editor=samples/list_clusters.js,samples/README.md)

__Usage:__


`node samples/list_clusters.js`


-----




### List_realms

View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/list_realms.js).
Expand Down

0 comments on commit a642f65

Please sign in to comment.