@maxim_mazurok/gapi.client.admin-directory_v1 0.0.20241015 → 0.0.20241029
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +17 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://admin.googleapis.com/$discovery/rest?version=directory_v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241029
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -182,6 +182,12 @@ declare namespace gapi.client {
|
|
|
182
182
|
/** The continuation token, used to page through large result sets. Provide this value in a subsequent request to return the next page of results. */
|
|
183
183
|
nextPageToken?: string;
|
|
184
184
|
}
|
|
185
|
+
interface ByteUsage {
|
|
186
|
+
/** Output only. The total capacity value, in bytes. */
|
|
187
|
+
capacityBytes?: string;
|
|
188
|
+
/** Output only. The current usage value, in bytes. */
|
|
189
|
+
usedBytes?: string;
|
|
190
|
+
}
|
|
185
191
|
interface CalendarResource {
|
|
186
192
|
/** Unique ID for the building a resource is located in. */
|
|
187
193
|
buildingId?: string;
|
|
@@ -334,6 +340,8 @@ declare namespace gapi.client {
|
|
|
334
340
|
deviceId?: string;
|
|
335
341
|
/** Output only. Device license type. */
|
|
336
342
|
deviceLicenseType?: string;
|
|
343
|
+
/** Output only. How much disk space the device has available and is currently using. */
|
|
344
|
+
diskSpaceUsage?: ByteUsage;
|
|
337
345
|
/** Reports of disk space and other info about mounted/connected volumes. */
|
|
338
346
|
diskVolumeReports?: Array<{
|
|
339
347
|
/** Disk volumes */
|
|
@@ -2568,6 +2576,12 @@ declare namespace gapi.client {
|
|
|
2568
2576
|
/** The continuation token, used to page through large result sets. Provide this value in a subsequent request to return the next page of results. */
|
|
2569
2577
|
nextPageToken?: string;
|
|
2570
2578
|
}
|
|
2579
|
+
interface ByteUsage {
|
|
2580
|
+
/** Output only. The total capacity value, in bytes. */
|
|
2581
|
+
capacityBytes?: string;
|
|
2582
|
+
/** Output only. The current usage value, in bytes. */
|
|
2583
|
+
usedBytes?: string;
|
|
2584
|
+
}
|
|
2571
2585
|
interface CalendarResource {
|
|
2572
2586
|
/** Unique ID for the building a resource is located in. */
|
|
2573
2587
|
buildingId?: string;
|
|
@@ -2720,6 +2734,8 @@ declare namespace gapi.client {
|
|
|
2720
2734
|
deviceId?: string;
|
|
2721
2735
|
/** Output only. Device license type. */
|
|
2722
2736
|
deviceLicenseType?: string;
|
|
2737
|
+
/** Output only. How much disk space the device has available and is currently using. */
|
|
2738
|
+
diskSpaceUsage?: ByteUsage;
|
|
2723
2739
|
/** Reports of disk space and other info about mounted/connected volumes. */
|
|
2724
2740
|
diskVolumeReports?: Array<{
|
|
2725
2741
|
/** Disk volumes */
|