@maxim_mazurok/gapi.client.compute-alpha 0.0.20230720 → 0.0.20230725
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 +12 -1
- package/package.json +1 -1
- package/tests.ts +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://www.googleapis.com/discovery/v1/apis/compute/alpha/rest
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230725
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -10509,6 +10509,9 @@ declare namespace gapi.client {
|
|
|
10509
10509
|
/** [Output Only] The URL of the instance. The URL can exist even if the instance has not yet been created. */
|
|
10510
10510
|
instance?:
|
|
10511
10511
|
string;
|
|
10512
|
+
/** [Output Only] The overrides to instance properties resulting from InstanceFlexibilityPolicy. */
|
|
10513
|
+
instanceFlexibilityOverride?:
|
|
10514
|
+
ManagedInstanceInstanceFlexibilityOverride;
|
|
10512
10515
|
/** [Output Only] Health state of the instance per health-check. */
|
|
10513
10516
|
instanceHealth?:
|
|
10514
10517
|
ManagedInstanceInstanceHealth[];
|
|
@@ -10545,6 +10548,14 @@ declare namespace gapi.client {
|
|
|
10545
10548
|
revision?:
|
|
10546
10549
|
string;
|
|
10547
10550
|
}
|
|
10551
|
+
interface ManagedInstanceInstanceFlexibilityOverride {
|
|
10552
|
+
/** The machine type to be used for this instance. */
|
|
10553
|
+
machineType?:
|
|
10554
|
+
string;
|
|
10555
|
+
/** The provisioning model to be used for this instance. */
|
|
10556
|
+
provisioningModel?:
|
|
10557
|
+
string;
|
|
10558
|
+
}
|
|
10548
10559
|
interface ManagedInstanceInstanceHealth {
|
|
10549
10560
|
/** [Output Only] The current detailed instance health state. */
|
|
10550
10561
|
detailedHealthState?:
|
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: 20230725
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|