We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6d0bc6 commit b087316Copy full SHA for b087316
api/instance/v1/instance_utils.go
@@ -284,6 +284,12 @@ func (r *ListVolumesResponse) UnsafeSetTotalCount(totalCount int) {
284
r.TotalCount = uint32(totalCount)
285
}
286
287
+// UnsafeSetTotalCount should not be used
288
+// Internal usage only
289
+func (r *ListImagesResponse) UnsafeSetTotalCount(totalCount int) {
290
+ r.TotalCount = uint32(totalCount)
291
+}
292
+
293
// UnsafeGetTotalCount should not be used
294
// Internal usage only
295
func (r *ListServersTypesResponse) UnsafeGetTotalCount() uint32 {
0 commit comments