You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: check status of long running operation by its name (#65)
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`.
Copy file name to clipboardExpand all lines: generated,README.md/README.md
+72Lines changed: 72 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,13 @@
12
12
13
13
*[Before you begin](#before-you-begin)
14
14
*[Samples](#samples)
15
+
*[Create_cluster](#create_cluster)
15
16
*[Create_realm](#create_realm)
17
+
*[Delete_cluster](#delete_cluster)
16
18
*[Delete_realm](#delete_realm)
19
+
*[Get_cluster](#get_cluster)
17
20
*[Get_realm](#get_realm)
21
+
*[List_clusters](#list_clusters)
18
22
*[List_realms](#list_realms)
19
23
*[Create Game Server Realm](#create-game-server-realm)
20
24
@@ -33,6 +37,23 @@ Before running the samples, make sure you've followed the steps outlined in
33
37
34
38
35
39
40
+
### Create_cluster
41
+
42
+
View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/create_cluster.js).
43
+
44
+
[![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)
45
+
46
+
__Usage:__
47
+
48
+
49
+
`node samples/create_cluster.js`
50
+
51
+
52
+
-----
53
+
54
+
55
+
56
+
36
57
### Create_realm
37
58
38
59
View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/create_realm.js).
@@ -50,6 +71,23 @@ __Usage:__
50
71
51
72
52
73
74
+
### Delete_cluster
75
+
76
+
View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/delete_cluster.js).
77
+
78
+
[![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)
79
+
80
+
__Usage:__
81
+
82
+
83
+
`node samples/delete_cluster.js`
84
+
85
+
86
+
-----
87
+
88
+
89
+
90
+
53
91
### Delete_realm
54
92
55
93
View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/delete_realm.js).
@@ -67,6 +105,23 @@ __Usage:__
67
105
68
106
69
107
108
+
### Get_cluster
109
+
110
+
View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/get_cluster.js).
111
+
112
+
[![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)
113
+
114
+
__Usage:__
115
+
116
+
117
+
`node samples/get_cluster.js`
118
+
119
+
120
+
-----
121
+
122
+
123
+
124
+
70
125
### Get_realm
71
126
72
127
View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/get_realm.js).
@@ -84,6 +139,23 @@ __Usage:__
84
139
85
140
86
141
142
+
### List_clusters
143
+
144
+
View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/list_clusters.js).
145
+
146
+
[![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)
147
+
148
+
__Usage:__
149
+
150
+
151
+
`node samples/list_clusters.js`
152
+
153
+
154
+
-----
155
+
156
+
157
+
158
+
87
159
### List_realms
88
160
89
161
View the [source code](https://github.com/googleapis/nodejs-game-servers/blob/master/samples/list_realms.js).
0 commit comments