@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20230605 → 0.0.20230621
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 +8 -3
- package/package.json +1 -1
- package/tests.ts +8 -4
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://workloadmanager.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230621
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -436,10 +436,15 @@ declare namespace gapi.client {
|
|
|
436
436
|
validationDetails?:
|
|
437
437
|
SqlserverValidationValidationDetail[];
|
|
438
438
|
}
|
|
439
|
-
interface
|
|
440
|
-
/**
|
|
439
|
+
interface SqlserverValidationDetails {
|
|
440
|
+
/** Required. Collected data is in format. */
|
|
441
441
|
fields?:
|
|
442
442
|
{ [P in string]: string };
|
|
443
|
+
}
|
|
444
|
+
interface SqlserverValidationValidationDetail {
|
|
445
|
+
/** Required. Details wraps map that represents collected data names and values. */
|
|
446
|
+
details?:
|
|
447
|
+
SqlserverValidationDetails[];
|
|
443
448
|
/** The Sqlserver system that the validation data is from. */
|
|
444
449
|
type?:
|
|
445
450
|
string;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230621
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -208,9 +208,13 @@ gapi.load('client', async () => {
|
|
|
208
208
|
agentVersion: "Test string",
|
|
209
209
|
validationDetails: [
|
|
210
210
|
{
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
211
|
+
details: [
|
|
212
|
+
{
|
|
213
|
+
fields: {
|
|
214
|
+
A: "Test string"
|
|
215
|
+
},
|
|
216
|
+
}
|
|
217
|
+
],
|
|
214
218
|
type: "Test string",
|
|
215
219
|
}
|
|
216
220
|
],
|