@maxim_mazurok/gapi.client.compute-alpha 0.2.20260908 → 0.2.20260910
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 +50 -4
- 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://www.googleapis.com/discovery/v1/apis/compute/alpha/rest
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260910
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -5757,6 +5757,12 @@ declare namespace gapi.client {
|
|
|
5757
5757
|
guestAccelerators?: AcceleratorConfig[];
|
|
5758
5758
|
/** Full machine-type names, e.g. "n1-standard-16". */
|
|
5759
5759
|
machineTypes?: string[];
|
|
5760
|
+
/**
|
|
5761
|
+
* Optional. Rank when prioritizing the shape flexibilities.
|
|
5762
|
+
* The instance selections are considered in the ascending order of the
|
|
5763
|
+
* rank. If not set, defaults to 0.
|
|
5764
|
+
*/
|
|
5765
|
+
rank?: string;
|
|
5760
5766
|
}
|
|
5761
5767
|
interface CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelectionAttachedDisk {
|
|
5762
5768
|
/** Specifies the type of the disk. */
|
|
@@ -5842,11 +5848,19 @@ declare namespace gapi.client {
|
|
|
5842
5848
|
types?: 'HISTORY_TYPE_UNSPECIFIED' | 'PREEMPTION' | 'PRICE'[];
|
|
5843
5849
|
}
|
|
5844
5850
|
interface CapacityHistoryRequestInstanceProperties {
|
|
5851
|
+
/** Local SSDs. */
|
|
5852
|
+
disks?: CapacityHistoryRequestInstancePropertiesAttachedDisk[];
|
|
5853
|
+
/** Accelerators configuration. */
|
|
5854
|
+
guestAccelerators?: AcceleratorConfig[];
|
|
5845
5855
|
/** The machine type for the VM, such as `n2-standard-4`. */
|
|
5846
5856
|
machineType?: string;
|
|
5847
5857
|
/** Specifies the scheduling options. */
|
|
5848
5858
|
scheduling?: CapacityHistoryRequestInstancePropertiesScheduling;
|
|
5849
5859
|
}
|
|
5860
|
+
interface CapacityHistoryRequestInstancePropertiesAttachedDisk {
|
|
5861
|
+
/** Specifies the type of the disk. */
|
|
5862
|
+
type?: 'DISK_TYPE_UNSPECIFIED' | 'SCRATCH';
|
|
5863
|
+
}
|
|
5850
5864
|
interface CapacityHistoryRequestInstancePropertiesScheduling {
|
|
5851
5865
|
/**
|
|
5852
5866
|
* The provisioning model to get capacity history for.
|
|
@@ -8846,6 +8860,13 @@ declare namespace gapi.client {
|
|
|
8846
8860
|
zones?: DistributionPolicyZoneConfiguration[];
|
|
8847
8861
|
}
|
|
8848
8862
|
interface DistributionPolicyZoneConfiguration {
|
|
8863
|
+
/**
|
|
8864
|
+
* Optional. The maximum size of the group in this zone. This value can be either a
|
|
8865
|
+
* fixed number or, a percentage. If you set a percentage, the number of
|
|
8866
|
+
* instances is rounded up if necessary. If unset, it is interpreted as
|
|
8867
|
+
* unbounded.
|
|
8868
|
+
*/
|
|
8869
|
+
maxSize?: FixedOrPercent;
|
|
8849
8870
|
/**
|
|
8850
8871
|
* The URL of thezone.
|
|
8851
8872
|
* The zone must exist in the region where the managed instance group is
|
|
@@ -11999,7 +12020,7 @@ declare namespace gapi.client {
|
|
|
11999
12020
|
creationTimestamp?: string;
|
|
12000
12021
|
/** Output only. [Output Only] An optional description of this resource. */
|
|
12001
12022
|
description?: string;
|
|
12002
|
-
/** Output only. For optimistic locking */
|
|
12023
|
+
/** Output only. For optimistic locking. */
|
|
12003
12024
|
etag?: string;
|
|
12004
12025
|
/**
|
|
12005
12026
|
* Output only. [Output Only] The unique identifier for the resource. This identifier is
|
|
@@ -12019,6 +12040,7 @@ declare namespace gapi.client {
|
|
|
12019
12040
|
selfLink?: string;
|
|
12020
12041
|
}
|
|
12021
12042
|
interface GlobalFrontendSettingsPatchResponse {
|
|
12043
|
+
/** The Operation resource for this long-running operation. */
|
|
12022
12044
|
operation?: Operation;
|
|
12023
12045
|
}
|
|
12024
12046
|
interface GlobalListVmExtensionsResponse {
|
|
@@ -16507,9 +16529,11 @@ declare namespace gapi.client {
|
|
|
16507
16529
|
resourceManagerTags?: {[P in string]: string};
|
|
16508
16530
|
}
|
|
16509
16531
|
interface ImageView {
|
|
16532
|
+
/** The Image resource. */
|
|
16510
16533
|
image?: Image;
|
|
16511
16534
|
}
|
|
16512
16535
|
interface ImageViewsListResponse {
|
|
16536
|
+
/** Etag of the resource. */
|
|
16513
16537
|
etag?: string;
|
|
16514
16538
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
16515
16539
|
id?: string;
|
|
@@ -17744,6 +17768,8 @@ declare namespace gapi.client {
|
|
|
17744
17768
|
onHealthCheck?: 'OFF' | 'ON';
|
|
17745
17769
|
}
|
|
17746
17770
|
interface InstanceGroupManagerInstanceFlexibilityPolicy {
|
|
17771
|
+
/** Constraints applied to instance flexibility spreading and selection. */
|
|
17772
|
+
constraints?: InstanceGroupManagerInstanceFlexibilityPolicyConstraints;
|
|
17747
17773
|
/**
|
|
17748
17774
|
* Named instance selections configuring properties that the group will use
|
|
17749
17775
|
* when creating new VMs.
|
|
@@ -17768,6 +17794,14 @@ declare namespace gapi.client {
|
|
|
17768
17794
|
*/
|
|
17769
17795
|
provisioningModelMix?: InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix;
|
|
17770
17796
|
}
|
|
17797
|
+
interface InstanceGroupManagerInstanceFlexibilityPolicyConstraints {
|
|
17798
|
+
/**
|
|
17799
|
+
* When set to true, all instances in the group will be provisioned with
|
|
17800
|
+
* the exact same machine type, ensuring cluster homogeneity across zones.
|
|
17801
|
+
* Defaults to false.
|
|
17802
|
+
*/
|
|
17803
|
+
singleMachineType?: boolean;
|
|
17804
|
+
}
|
|
17771
17805
|
interface InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection {
|
|
17772
17806
|
/**
|
|
17773
17807
|
* List of disks to be attached to the instances created from this
|
|
@@ -25766,6 +25800,7 @@ declare namespace gapi.client {
|
|
|
25766
25800
|
}
|
|
25767
25801
|
interface ManagedRulesetList {
|
|
25768
25802
|
id?: string;
|
|
25803
|
+
/** The list of managed rulesets. */
|
|
25769
25804
|
items?: ManagedRuleset[];
|
|
25770
25805
|
nextPageToken?: string;
|
|
25771
25806
|
warning?: {
|
|
@@ -62166,6 +62201,7 @@ declare namespace gapi.client {
|
|
|
62166
62201
|
alt?: 'json' | 'media' | 'proto';
|
|
62167
62202
|
/** JSONP */
|
|
62168
62203
|
callback?: string;
|
|
62204
|
+
/** Required. Name of the VM extension for this request. */
|
|
62169
62205
|
extensionName: string;
|
|
62170
62206
|
/** Selector specifying which fields to include in a partial response. */
|
|
62171
62207
|
fields?: string;
|
|
@@ -62729,6 +62765,7 @@ declare namespace gapi.client {
|
|
|
62729
62765
|
alt?: 'json' | 'media' | 'proto';
|
|
62730
62766
|
/** JSONP */
|
|
62731
62767
|
callback?: string;
|
|
62768
|
+
/** Required. Name of the VM extension for this request. */
|
|
62732
62769
|
extensionName: string;
|
|
62733
62770
|
/** Selector specifying which fields to include in a partial response. */
|
|
62734
62771
|
fields?: string;
|
|
@@ -65875,6 +65912,7 @@ declare namespace gapi.client {
|
|
|
65875
65912
|
oauth_token?: string;
|
|
65876
65913
|
/** Returns response with indentations and line breaks. */
|
|
65877
65914
|
prettyPrint?: boolean;
|
|
65915
|
+
/** Required. Project ID for this request. */
|
|
65878
65916
|
project: string;
|
|
65879
65917
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
65880
65918
|
quotaUser?: string;
|
|
@@ -65903,11 +65941,13 @@ declare namespace gapi.client {
|
|
|
65903
65941
|
oauth_token?: string;
|
|
65904
65942
|
/** Returns response with indentations and line breaks. */
|
|
65905
65943
|
prettyPrint?: boolean;
|
|
65944
|
+
/** Required. Project ID for this request. */
|
|
65906
65945
|
project: string;
|
|
65907
65946
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
65908
65947
|
quotaUser?: string;
|
|
65948
|
+
/** An optional request ID to identify requests. */
|
|
65909
65949
|
requestId?: string;
|
|
65910
|
-
/**
|
|
65950
|
+
/** Field mask to support patch. E.g., "type". */
|
|
65911
65951
|
updateMask?: string;
|
|
65912
65952
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
65913
65953
|
upload_protocol?: string;
|
|
@@ -65936,11 +65976,13 @@ declare namespace gapi.client {
|
|
|
65936
65976
|
oauth_token?: string;
|
|
65937
65977
|
/** Returns response with indentations and line breaks. */
|
|
65938
65978
|
prettyPrint?: boolean;
|
|
65979
|
+
/** Required. Project ID for this request. */
|
|
65939
65980
|
project: string;
|
|
65940
65981
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
65941
65982
|
quotaUser?: string;
|
|
65983
|
+
/** An optional request ID to identify requests. */
|
|
65942
65984
|
requestId?: string;
|
|
65943
|
-
/**
|
|
65985
|
+
/** Field mask to support patch. E.g., "type". */
|
|
65944
65986
|
updateMask?: string;
|
|
65945
65987
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
65946
65988
|
upload_protocol?: string;
|
|
@@ -67922,6 +67964,7 @@ declare namespace gapi.client {
|
|
|
67922
67964
|
alt?: 'json' | 'media' | 'proto';
|
|
67923
67965
|
/** JSONP */
|
|
67924
67966
|
callback?: string;
|
|
67967
|
+
/** Required. Name of the VM extension for this request. */
|
|
67925
67968
|
extensionName: string;
|
|
67926
67969
|
/** Selector specifying which fields to include in a partial response. */
|
|
67927
67970
|
fields?: string;
|
|
@@ -96197,6 +96240,7 @@ declare namespace gapi.client {
|
|
|
96197
96240
|
alt?: 'json' | 'media' | 'proto';
|
|
96198
96241
|
/** JSONP */
|
|
96199
96242
|
callback?: string;
|
|
96243
|
+
/** Required. Name of the VM extension for this request. */
|
|
96200
96244
|
extensionName: string;
|
|
96201
96245
|
/** Selector specifying which fields to include in a partial response. */
|
|
96202
96246
|
fields?: string;
|
|
@@ -98776,6 +98820,7 @@ declare namespace gapi.client {
|
|
|
98776
98820
|
alt?: 'json' | 'media' | 'proto';
|
|
98777
98821
|
/** JSONP */
|
|
98778
98822
|
callback?: string;
|
|
98823
|
+
/** Required. Name of the VM extension for this request. */
|
|
98779
98824
|
extensionName: string;
|
|
98780
98825
|
/** Selector specifying which fields to include in a partial response. */
|
|
98781
98826
|
fields?: string;
|
|
@@ -149313,6 +149358,7 @@ declare namespace gapi.client {
|
|
|
149313
149358
|
alt?: 'json' | 'media' | 'proto';
|
|
149314
149359
|
/** JSONP */
|
|
149315
149360
|
callback?: string;
|
|
149361
|
+
/** Required. Name of the VM extension for this request. */
|
|
149316
149362
|
extensionName: string;
|
|
149317
149363
|
/** Selector specifying which fields to include in a partial response. */
|
|
149318
149364
|
fields?: string;
|