@maxim_mazurok/gapi.client.compute-alpha 0.0.20230221 → 0.0.20230307
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 +9 -4
- package/package.json +1 -1
- package/tests.ts +2 -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: 20230307
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3832,7 +3832,8 @@ declare namespace gapi.client {
|
|
|
3832
3832
|
interface GuestOsFeature {
|
|
3833
3833
|
/**
|
|
3834
3834
|
* The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS -
|
|
3835
|
-
* MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system
|
|
3835
|
+
* MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE - TDX_CAPABLE For more information, see Enabling guest operating system
|
|
3836
|
+
* features.
|
|
3836
3837
|
*/
|
|
3837
3838
|
type?: string;
|
|
3838
3839
|
}
|
|
@@ -4342,7 +4343,7 @@ declare namespace gapi.client {
|
|
|
4342
4343
|
name?: string;
|
|
4343
4344
|
/** The TCP port number for the HTTP health check request. The default value is 80. */
|
|
4344
4345
|
port?: number;
|
|
4345
|
-
/** The request path of the HTTP health check request. The default value is /. This field does not support query parameters. */
|
|
4346
|
+
/** The request path of the HTTP health check request. The default value is /. This field does not support query parameters. Must comply with RFC3986. */
|
|
4346
4347
|
requestPath?: string;
|
|
4347
4348
|
/** [Output Only] Server-defined URL for the resource. */
|
|
4348
4349
|
selfLink?: string;
|
|
@@ -4673,7 +4674,7 @@ declare namespace gapi.client {
|
|
|
4673
4674
|
name?: string;
|
|
4674
4675
|
/** The TCP port number for the HTTPS health check request. The default value is 443. */
|
|
4675
4676
|
port?: number;
|
|
4676
|
-
/** The request path of the HTTPS health check request. The default value is "/". */
|
|
4677
|
+
/** The request path of the HTTPS health check request. The default value is "/". Must comply with RFC3986. */
|
|
4677
4678
|
requestPath?: string;
|
|
4678
4679
|
/** [Output Only] Server-defined URL for the resource. */
|
|
4679
4680
|
selfLink?: string;
|
|
@@ -56681,6 +56682,8 @@ declare namespace gapi.client {
|
|
|
56681
56682
|
quotaUser?: string;
|
|
56682
56683
|
/** Name of the security policy to update. */
|
|
56683
56684
|
securityPolicy: string;
|
|
56685
|
+
/** Indicates fields to be cleared as part of this request. */
|
|
56686
|
+
updateMask?: string;
|
|
56684
56687
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
56685
56688
|
upload_protocol?: string;
|
|
56686
56689
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -56717,6 +56720,8 @@ declare namespace gapi.client {
|
|
|
56717
56720
|
quotaUser?: string;
|
|
56718
56721
|
/** Name of the security policy to update. */
|
|
56719
56722
|
securityPolicy: string;
|
|
56723
|
+
/** Indicates fields to be cleared as part of this request. */
|
|
56724
|
+
updateMask?: string;
|
|
56720
56725
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
56721
56726
|
upload_protocol?: string;
|
|
56722
56727
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
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: 20230307
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -26598,6 +26598,7 @@ gapi.load('client', async () => {
|
|
|
26598
26598
|
priority: 42,
|
|
26599
26599
|
project: "Test string",
|
|
26600
26600
|
securityPolicy: "Test string",
|
|
26601
|
+
updateMask: "Test string",
|
|
26601
26602
|
validateOnly: true,
|
|
26602
26603
|
}, {
|
|
26603
26604
|
action: "Test string",
|