@maxim_mazurok/gapi.client.compute-alpha 0.2.20260629 → 0.2.20260722
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 +1173 -215
- package/package.json +1 -1
- package/readme.md +34 -0
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: 20260722
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -548,8 +548,10 @@ declare namespace gapi.client {
|
|
|
548
548
|
* It supports the following cases:
|
|
549
549
|
*
|
|
550
550
|
* -
|
|
551
|
-
* Case 1: PublicDelegatedPrefix (PDP) for BYOIP external
|
|
552
|
-
* addresses.
|
|
551
|
+
* Case 1: PublicDelegatedPrefix (PDP) for BYOIP external
|
|
552
|
+
* addresses. If an IPv4 PDP is used, the PDP must support enhanced IPv4
|
|
553
|
+
* allocations. If an IPv6 PDP is used, the PDP must be in
|
|
554
|
+
* EXTERNAL_IPV6_FORWARDING_RULE_CREATION mode.
|
|
553
555
|
* -
|
|
554
556
|
* Case 2: Internal Range for global internal addresses.
|
|
555
557
|
*
|
|
@@ -660,6 +662,12 @@ declare namespace gapi.client {
|
|
|
660
662
|
* - `PRIVATE_SERVICE_CONNECT` for a private network address that is
|
|
661
663
|
* used to configure Private Service Connect. Only global internal addresses
|
|
662
664
|
* can use this purpose.
|
|
665
|
+
* - `PASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP0` for addresses
|
|
666
|
+
* that can only be assigned to global external Passthrough Network Load
|
|
667
|
+
* Balancer forwarding rules, as an Availability Group 0 address.
|
|
668
|
+
* - `PASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP1` for addresses that
|
|
669
|
+
* can only be assigned to global external Passthrough Network Load Balancer
|
|
670
|
+
* forwarding rules, as an Availability Group 1 address.
|
|
663
671
|
*/
|
|
664
672
|
purpose?:
|
|
665
673
|
| 'APPLICATION_AND_PROXY_LOAD_BALANCERS'
|
|
@@ -1331,6 +1339,52 @@ declare namespace gapi.client {
|
|
|
1331
1339
|
* is 500 GB.
|
|
1332
1340
|
*/
|
|
1333
1341
|
diskSizeGb?: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* Specifies the disk type used for the boot disk or an additional data
|
|
1344
|
+
* disk. For valid disk type values, see
|
|
1345
|
+
* Supported types for Hyperdisk volumes and
|
|
1346
|
+
* Persistent Disk type variables.
|
|
1347
|
+
*
|
|
1348
|
+
* When creating a single instance, you must provide either the full or
|
|
1349
|
+
* partial URL of the disk type. For example, the following values are
|
|
1350
|
+
* valid:
|
|
1351
|
+
*
|
|
1352
|
+
*
|
|
1353
|
+
* - https://www.googleapis.com/compute/v1/projects/project/zones/zone/diskTypes/diskType
|
|
1354
|
+
* - projects/project/zones/zone/diskTypes/diskType
|
|
1355
|
+
* - zones/zone/diskTypes/diskType
|
|
1356
|
+
*
|
|
1357
|
+
*
|
|
1358
|
+
*
|
|
1359
|
+
* When creating an instance template, instance flexibility policy, or when
|
|
1360
|
+
* creating or updating an all-instances configuration, you specify the
|
|
1361
|
+
* disk type without a URL, for example, hyperdisk-balanced.
|
|
1362
|
+
*
|
|
1363
|
+
* If you omit this field for a disk, the default disk type depends on
|
|
1364
|
+
* the instance's machine series, as follows.
|
|
1365
|
+
*
|
|
1366
|
+
*
|
|
1367
|
+
* - For first- and second-generation machine series like N1, N2, T2, and
|
|
1368
|
+
* M1, the
|
|
1369
|
+
* default disk type is Standard Persistent Disk
|
|
1370
|
+
* (pd-standard).
|
|
1371
|
+
* - For C3, C3D, and M3 the default is Balanced Persistent Disk
|
|
1372
|
+
* (pd-balanced).
|
|
1373
|
+
* - For other third-generation machine
|
|
1374
|
+
* series like A3, H3, Z3, all
|
|
1375
|
+
* fourth-generation types like C4, N4, M4, and newer machine series,
|
|
1376
|
+
* the default is Hyperdisk Balanced
|
|
1377
|
+
* (hyperdisk-balanced).
|
|
1378
|
+
*
|
|
1379
|
+
*
|
|
1380
|
+
*
|
|
1381
|
+
* The disk type you specify must be compatible with the instance's machine
|
|
1382
|
+
* series. For a list of machine series that support Persistent Disk, see Machine
|
|
1383
|
+
* series support for Persistent Disk.
|
|
1384
|
+
*
|
|
1385
|
+
* For a list of machine series that support Hyperdisk, seeMachine
|
|
1386
|
+
* series support for Hyperdisk.
|
|
1387
|
+
*/
|
|
1334
1388
|
diskType?: string;
|
|
1335
1389
|
/** Whether this disk is using confidential compute mode. */
|
|
1336
1390
|
enableConfidentialCompute?: boolean;
|
|
@@ -3585,7 +3639,11 @@ declare namespace gapi.client {
|
|
|
3585
3639
|
* URL to networkservices.ServiceLbPolicy resource.
|
|
3586
3640
|
*
|
|
3587
3641
|
* Can only be set if load balancing scheme is EXTERNAL_MANAGED,
|
|
3588
|
-
* INTERNAL_MANAGED or INTERNAL_SELF_MANAGED
|
|
3642
|
+
* INTERNAL_MANAGED or INTERNAL_SELF_MANAGED for a global backend service, and
|
|
3643
|
+
* EXTERNAL_MANAGED or INTERNAL_MANAGED for a regional backend service. For a
|
|
3644
|
+
* global backend service, the service lb policy must be global. For a
|
|
3645
|
+
* regional backend service, the service lb policy must be regional and in the
|
|
3646
|
+
* same region.
|
|
3589
3647
|
*/
|
|
3590
3648
|
serviceLbPolicy?: string;
|
|
3591
3649
|
/**
|
|
@@ -5441,6 +5499,48 @@ declare namespace gapi.client {
|
|
|
5441
5499
|
*/
|
|
5442
5500
|
recommendations?: CalendarModeRecommendation[];
|
|
5443
5501
|
}
|
|
5502
|
+
interface CalendarModeExtensionAdviceRequest {
|
|
5503
|
+
/** Required. The desired end time after the Future Reservation is extended. */
|
|
5504
|
+
endTimeNotLaterThan?: string;
|
|
5505
|
+
/**
|
|
5506
|
+
* Required. Reference to the Future Reservation, in the format:
|
|
5507
|
+
* projects/{project}/zones/{zone}/futureReservations/{name}
|
|
5508
|
+
* Full URIs that include hostnames (like compute.googleapis.com or
|
|
5509
|
+
* www.googleapis.com) are also supported.
|
|
5510
|
+
*/
|
|
5511
|
+
futureReservation?: string;
|
|
5512
|
+
}
|
|
5513
|
+
interface CalendarModeExtensionAdviceResponse {
|
|
5514
|
+
/**
|
|
5515
|
+
* The recommended end time for the extension, which will either be
|
|
5516
|
+
* the end time requested by the caller or the longest alternative for
|
|
5517
|
+
* which there is sufficient capacity. If extension is not possible, this
|
|
5518
|
+
* field will be empty, and not_recommended_reason will be populated instead.
|
|
5519
|
+
*/
|
|
5520
|
+
endTime?: string;
|
|
5521
|
+
/**
|
|
5522
|
+
* Information regarding the reason why the Future Reservation
|
|
5523
|
+
* cannot be extended at all. If a recommendation is provided, whether that is
|
|
5524
|
+
* the requested end time or an alternative, this field will be empty.
|
|
5525
|
+
*/
|
|
5526
|
+
notRecommendedReason?: CalendarModeExtensionAdviceResponseNotRecommendedReason;
|
|
5527
|
+
/** Unique id of the recommendation, a UUID string generated by the API. */
|
|
5528
|
+
recommendationId?: string;
|
|
5529
|
+
}
|
|
5530
|
+
interface CalendarModeExtensionAdviceResponseNotRecommendedReason {
|
|
5531
|
+
/**
|
|
5532
|
+
* Details (human readable) describing why the recommendation
|
|
5533
|
+
* was not provided. For example, if the status is CONDITION_NOT_MET,
|
|
5534
|
+
* then this field will contain information about why the requested
|
|
5535
|
+
* extension duration is not eligible.
|
|
5536
|
+
*/
|
|
5537
|
+
details?: string;
|
|
5538
|
+
/** Status of recommendation. */
|
|
5539
|
+
status?:
|
|
5540
|
+
| 'CONDITIONS_NOT_MET'
|
|
5541
|
+
| 'NOT_RECOMMENDED_REASON_STATUS_UNSPECIFIED'
|
|
5542
|
+
| 'NO_CAPACITY';
|
|
5543
|
+
}
|
|
5444
5544
|
interface CalendarModeRecommendation {
|
|
5445
5545
|
/**
|
|
5446
5546
|
* Recommendations for every future resource specification passed in
|
|
@@ -5951,6 +6051,8 @@ declare namespace gapi.client {
|
|
|
5951
6051
|
| 'MEMORY_OPTIMIZED'
|
|
5952
6052
|
| 'MEMORY_OPTIMIZED_M3'
|
|
5953
6053
|
| 'MEMORY_OPTIMIZED_M4'
|
|
6054
|
+
| 'MEMORY_OPTIMIZED_M4N'
|
|
6055
|
+
| 'MEMORY_OPTIMIZED_M4N_6TB'
|
|
5954
6056
|
| 'MEMORY_OPTIMIZED_M4_6TB'
|
|
5955
6057
|
| 'MEMORY_OPTIMIZED_X4'
|
|
5956
6058
|
| 'MEMORY_OPTIMIZED_X4_1440_24T'
|
|
@@ -5963,6 +6065,9 @@ declare namespace gapi.client {
|
|
|
5963
6065
|
| 'MEMORY_OPTIMIZED_X4_960_12T'
|
|
5964
6066
|
| 'MEMORY_OPTIMIZED_X4_960_16T'
|
|
5965
6067
|
| 'NETWORK_OPTIMIZED_C4N'
|
|
6068
|
+
| 'NETWORK_OPTIMIZED_U4C'
|
|
6069
|
+
| 'NETWORK_OPTIMIZED_U4P'
|
|
6070
|
+
| 'NETWORK_OPTIMIZED_U4S'
|
|
5966
6071
|
| 'STORAGE_OPTIMIZED_Z3'
|
|
5967
6072
|
| 'STORAGE_OPTIMIZED_Z4D'
|
|
5968
6073
|
| 'TYPE_UNSPECIFIED';
|
|
@@ -6826,6 +6931,7 @@ declare namespace gapi.client {
|
|
|
6826
6931
|
*/
|
|
6827
6932
|
kmsKeyServiceAccount?: string;
|
|
6828
6933
|
/**
|
|
6934
|
+
* [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
|
|
6829
6935
|
* Specifies a 256-bit customer-supplied
|
|
6830
6936
|
* encryption key, encoded in RFC
|
|
6831
6937
|
* 4648 base64 to either encrypt or decrypt this resource. You can
|
|
@@ -6837,6 +6943,7 @@ declare namespace gapi.client {
|
|
|
6837
6943
|
*/
|
|
6838
6944
|
rawKey?: string;
|
|
6839
6945
|
/**
|
|
6946
|
+
* [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
|
|
6840
6947
|
* Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
|
|
6841
6948
|
* customer-supplied encryption key to either encrypt or decrypt this
|
|
6842
6949
|
* resource. You can provide either the rawKey or thersaEncryptedKey.
|
|
@@ -6862,6 +6969,7 @@ declare namespace gapi.client {
|
|
|
6862
6969
|
*/
|
|
6863
6970
|
rsaEncryptedKey?: string;
|
|
6864
6971
|
/**
|
|
6972
|
+
* [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
|
|
6865
6973
|
* [Output only] TheRFC
|
|
6866
6974
|
* 4648 base64 encoded SHA-256 hash of the customer-supplied
|
|
6867
6975
|
* encryption key that protects this resource.
|
|
@@ -9946,6 +10054,13 @@ declare namespace gapi.client {
|
|
|
9946
10054
|
*/
|
|
9947
10055
|
ports?: string[];
|
|
9948
10056
|
}
|
|
10057
|
+
interface FirewallPolicyRuleOperationMetadata {
|
|
10058
|
+
/**
|
|
10059
|
+
* Output only. [Output Only] The priority allocated for the firewall policy rule if query
|
|
10060
|
+
* parameters specified minPriority/maxPriority.
|
|
10061
|
+
*/
|
|
10062
|
+
allocatedPriority?: number;
|
|
10063
|
+
}
|
|
9949
10064
|
interface FirewallPolicyRuleSecureTag {
|
|
9950
10065
|
/** Name of the secure tag, created with TagManager's TagValue API. */
|
|
9951
10066
|
name?: string;
|
|
@@ -11804,6 +11919,12 @@ declare namespace gapi.client {
|
|
|
11804
11919
|
updateTimestamp?: string;
|
|
11805
11920
|
}
|
|
11806
11921
|
interface GlobalVmExtensionPolicyExtensionPolicy {
|
|
11922
|
+
/**
|
|
11923
|
+
* Optional. Only deploy this extension if the specified software is detected on the
|
|
11924
|
+
* VM. For a live list of valid software values, see:
|
|
11925
|
+
* https://cloud.google.com/compute/docs/vm-extensions/supported-software
|
|
11926
|
+
*/
|
|
11927
|
+
installedSoftwareSelector?: GlobalVmExtensionPolicyInstalledSoftwareSelector;
|
|
11807
11928
|
/**
|
|
11808
11929
|
* Optional. The version pinning for the extension.
|
|
11809
11930
|
* If empty, the extension will be installed with the latest version
|
|
@@ -11816,6 +11937,25 @@ declare namespace gapi.client {
|
|
|
11816
11937
|
*/
|
|
11817
11938
|
stringConfig?: string;
|
|
11818
11939
|
}
|
|
11940
|
+
interface GlobalVmExtensionPolicyInstalledSoftwareSelector {
|
|
11941
|
+
/**
|
|
11942
|
+
* Optional. If any of these SelectorSets are satisfied, the condition
|
|
11943
|
+
* is met (OR logic).
|
|
11944
|
+
* The key is a user-provided name for this set.
|
|
11945
|
+
*/
|
|
11946
|
+
anyOfSelectors?: {
|
|
11947
|
+
[
|
|
11948
|
+
P in string
|
|
11949
|
+
]: GlobalVmExtensionPolicyInstalledSoftwareSelectorSelectorSet;
|
|
11950
|
+
};
|
|
11951
|
+
}
|
|
11952
|
+
interface GlobalVmExtensionPolicyInstalledSoftwareSelectorSelectorSet {
|
|
11953
|
+
/**
|
|
11954
|
+
* Optional. All software in this list must be detected (AND logic).
|
|
11955
|
+
* Valid software names (e.g. "Apache Web Server").
|
|
11956
|
+
*/
|
|
11957
|
+
allOfSelectors?: string[];
|
|
11958
|
+
}
|
|
11819
11959
|
interface GlobalVmExtensionPolicyInstanceSelector {
|
|
11820
11960
|
/** Optional. Labels within the LabelSelector are OR'd. */
|
|
11821
11961
|
labelSelector?: GlobalVmExtensionPolicyLabelSelector;
|
|
@@ -12650,9 +12790,13 @@ declare namespace gapi.client {
|
|
|
12650
12790
|
* QUOTA_EXCEEDED.
|
|
12651
12791
|
*/
|
|
12652
12792
|
errorDetails?: {
|
|
12793
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
12653
12794
|
errorInfo?: ErrorInfo;
|
|
12795
|
+
/** Links and information to help the user resolve the error. */
|
|
12654
12796
|
help?: Help;
|
|
12797
|
+
/** A localized human-readable error message intended for end users. */
|
|
12655
12798
|
localizedMessage?: LocalizedMessage;
|
|
12799
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
12656
12800
|
quotaInfo?: QuotaExceededInfo;
|
|
12657
12801
|
}[];
|
|
12658
12802
|
/**
|
|
@@ -12699,9 +12843,13 @@ declare namespace gapi.client {
|
|
|
12699
12843
|
* QUOTA_EXCEEDED.
|
|
12700
12844
|
*/
|
|
12701
12845
|
errorDetails?: {
|
|
12846
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
12702
12847
|
errorInfo?: ErrorInfo;
|
|
12848
|
+
/** Links and information to help the user resolve the error. */
|
|
12703
12849
|
help?: Help;
|
|
12850
|
+
/** A localized human-readable error message intended for end users. */
|
|
12704
12851
|
localizedMessage?: LocalizedMessage;
|
|
12852
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
12705
12853
|
quotaInfo?: QuotaExceededInfo;
|
|
12706
12854
|
}[];
|
|
12707
12855
|
/**
|
|
@@ -13153,7 +13301,7 @@ declare namespace gapi.client {
|
|
|
13153
13301
|
* on what other health check fields are supported and what other resources
|
|
13154
13302
|
* can use this health check:
|
|
13155
13303
|
*
|
|
13156
|
-
* - SSL, HTTP2, and
|
|
13304
|
+
* - SSL, HTTP2, GRPC, and GRPC_WITH_TLS protocols are not supported.
|
|
13157
13305
|
* - The TCP request field is not supported.
|
|
13158
13306
|
* - The proxyHeader field for HTTP, HTTPS, and TCP is not
|
|
13159
13307
|
* supported.
|
|
@@ -13171,8 +13319,9 @@ declare namespace gapi.client {
|
|
|
13171
13319
|
*/
|
|
13172
13320
|
timeoutSec?: number;
|
|
13173
13321
|
/**
|
|
13174
|
-
* Specifies the type of the healthCheck, either TCP,SSL, HTTP, HTTPS,HTTP2 or
|
|
13175
|
-
* protocol-specific health check fields must be specified,
|
|
13322
|
+
* Specifies the type of the healthCheck, either TCP,SSL, HTTP, HTTPS,HTTP2, GRPC or GRPC_WITH_TLS.
|
|
13323
|
+
* Exactly one of the protocol-specific health check fields must be specified,
|
|
13324
|
+
* which must match type field.
|
|
13176
13325
|
*/
|
|
13177
13326
|
type?:
|
|
13178
13327
|
| 'GRPC'
|
|
@@ -17654,9 +17803,13 @@ declare namespace gapi.client {
|
|
|
17654
17803
|
* QUOTA_EXCEEDED.
|
|
17655
17804
|
*/
|
|
17656
17805
|
errorDetails?: {
|
|
17806
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
17657
17807
|
errorInfo?: ErrorInfo;
|
|
17808
|
+
/** Links and information to help the user resolve the error. */
|
|
17658
17809
|
help?: Help;
|
|
17810
|
+
/** A localized human-readable error message intended for end users. */
|
|
17659
17811
|
localizedMessage?: LocalizedMessage;
|
|
17812
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
17660
17813
|
quotaInfo?: QuotaExceededInfo;
|
|
17661
17814
|
}[];
|
|
17662
17815
|
/**
|
|
@@ -17704,9 +17857,13 @@ declare namespace gapi.client {
|
|
|
17704
17857
|
* QUOTA_EXCEEDED.
|
|
17705
17858
|
*/
|
|
17706
17859
|
errorDetails?: {
|
|
17860
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
17707
17861
|
errorInfo?: ErrorInfo;
|
|
17862
|
+
/** Links and information to help the user resolve the error. */
|
|
17708
17863
|
help?: Help;
|
|
17864
|
+
/** A localized human-readable error message intended for end users. */
|
|
17709
17865
|
localizedMessage?: LocalizedMessage;
|
|
17866
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
17710
17867
|
quotaInfo?: QuotaExceededInfo;
|
|
17711
17868
|
}[];
|
|
17712
17869
|
/**
|
|
@@ -17742,7 +17899,7 @@ declare namespace gapi.client {
|
|
|
17742
17899
|
}
|
|
17743
17900
|
interface InstanceGroupManagersApplyUpdatesRequest {
|
|
17744
17901
|
/**
|
|
17745
|
-
* Flag to update all instances instead of specified list of
|
|
17902
|
+
* Flag to update all instances instead of specified list of "instances".
|
|
17746
17903
|
* If the flag is set to true then the instances may not be specified
|
|
17747
17904
|
* in the request.
|
|
17748
17905
|
*/
|
|
@@ -17926,9 +18083,13 @@ declare namespace gapi.client {
|
|
|
17926
18083
|
* QUOTA_EXCEEDED.
|
|
17927
18084
|
*/
|
|
17928
18085
|
errorDetails?: {
|
|
18086
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
17929
18087
|
errorInfo?: ErrorInfo;
|
|
18088
|
+
/** Links and information to help the user resolve the error. */
|
|
17930
18089
|
help?: Help;
|
|
18090
|
+
/** A localized human-readable error message intended for end users. */
|
|
17931
18091
|
localizedMessage?: LocalizedMessage;
|
|
18092
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
17932
18093
|
quotaInfo?: QuotaExceededInfo;
|
|
17933
18094
|
}[];
|
|
17934
18095
|
/**
|
|
@@ -17952,11 +18113,12 @@ declare namespace gapi.client {
|
|
|
17952
18113
|
externalId?: string;
|
|
17953
18114
|
}
|
|
17954
18115
|
interface InstanceGroupManagersListErrorsResponse {
|
|
17955
|
-
/** Output only.
|
|
18116
|
+
/** Output only. The list of errors of the managed instance group. */
|
|
17956
18117
|
items?: InstanceManagedByIgmError[];
|
|
17957
18118
|
/**
|
|
17958
|
-
* Output only.
|
|
17959
|
-
*
|
|
18119
|
+
* Output only. This token allows you to get the next page of results for list requests.
|
|
18120
|
+
* If the number of results is larger than maxResults
|
|
18121
|
+
* , then use the nextPageToken as a value for
|
|
17960
18122
|
* the query parameter pageToken in the next list request.
|
|
17961
18123
|
* Subsequent list requests will have their own nextPageToken to
|
|
17962
18124
|
* continue paging through the results.
|
|
@@ -18335,9 +18497,13 @@ declare namespace gapi.client {
|
|
|
18335
18497
|
* QUOTA_EXCEEDED.
|
|
18336
18498
|
*/
|
|
18337
18499
|
errorDetails?: {
|
|
18500
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
18338
18501
|
errorInfo?: ErrorInfo;
|
|
18502
|
+
/** Links and information to help the user resolve the error. */
|
|
18339
18503
|
help?: Help;
|
|
18504
|
+
/** A localized human-readable error message intended for end users. */
|
|
18340
18505
|
localizedMessage?: LocalizedMessage;
|
|
18506
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
18341
18507
|
quotaInfo?: QuotaExceededInfo;
|
|
18342
18508
|
}[];
|
|
18343
18509
|
/**
|
|
@@ -18395,9 +18561,13 @@ declare namespace gapi.client {
|
|
|
18395
18561
|
* QUOTA_EXCEEDED.
|
|
18396
18562
|
*/
|
|
18397
18563
|
errorDetails?: {
|
|
18564
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
18398
18565
|
errorInfo?: ErrorInfo;
|
|
18566
|
+
/** Links and information to help the user resolve the error. */
|
|
18399
18567
|
help?: Help;
|
|
18568
|
+
/** A localized human-readable error message intended for end users. */
|
|
18400
18569
|
localizedMessage?: LocalizedMessage;
|
|
18570
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
18401
18571
|
quotaInfo?: QuotaExceededInfo;
|
|
18402
18572
|
}[];
|
|
18403
18573
|
/**
|
|
@@ -19288,6 +19458,8 @@ declare namespace gapi.client {
|
|
|
19288
19458
|
workloadIdentityConfig?: WorkloadIdentityConfig;
|
|
19289
19459
|
}
|
|
19290
19460
|
interface InstancePropertiesPatch {
|
|
19461
|
+
/** This optional flag exposes the hashed physical host ID. */
|
|
19462
|
+
exposeHostTopology?: boolean;
|
|
19291
19463
|
/** The label key-value pairs that you want to patch onto the instance. */
|
|
19292
19464
|
labels?: {[P in string]: string};
|
|
19293
19465
|
/**
|
|
@@ -23263,6 +23435,18 @@ declare namespace gapi.client {
|
|
|
23263
23435
|
etag?: string;
|
|
23264
23436
|
result?: InterconnectMacsecConfig;
|
|
23265
23437
|
}
|
|
23438
|
+
interface InterconnectsSetNameRequest {
|
|
23439
|
+
/**
|
|
23440
|
+
* The current name of the interconnect.
|
|
23441
|
+
* The name must be 1-63 characters long, and comply with RFC1035.
|
|
23442
|
+
*/
|
|
23443
|
+
currentName?: string;
|
|
23444
|
+
/**
|
|
23445
|
+
* The new name of the interconnect.
|
|
23446
|
+
* The name must be 1-63 characters long, and comply with RFC1035.
|
|
23447
|
+
*/
|
|
23448
|
+
name?: string;
|
|
23449
|
+
}
|
|
23266
23450
|
interface InternalIpAddress {
|
|
23267
23451
|
/** IP CIDR address or range. */
|
|
23268
23452
|
cidr?: string;
|
|
@@ -25057,9 +25241,13 @@ declare namespace gapi.client {
|
|
|
25057
25241
|
* QUOTA_EXCEEDED.
|
|
25058
25242
|
*/
|
|
25059
25243
|
errorDetails?: {
|
|
25244
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
25060
25245
|
errorInfo?: ErrorInfo;
|
|
25246
|
+
/** Links and information to help the user resolve the error. */
|
|
25061
25247
|
help?: Help;
|
|
25248
|
+
/** A localized human-readable error message intended for end users. */
|
|
25062
25249
|
localizedMessage?: LocalizedMessage;
|
|
25250
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
25063
25251
|
quotaInfo?: QuotaExceededInfo;
|
|
25064
25252
|
}[];
|
|
25065
25253
|
/**
|
|
@@ -25121,221 +25309,325 @@ declare namespace gapi.client {
|
|
|
25121
25309
|
/** Output only. [Output Only] Name of the version. */
|
|
25122
25310
|
name?: string;
|
|
25123
25311
|
}
|
|
25124
|
-
interface
|
|
25125
|
-
|
|
25126
|
-
|
|
25127
|
-
|
|
25128
|
-
* endpoint. This address will be used by the customer to route traffic to the
|
|
25129
|
-
* management interface.
|
|
25130
|
-
*/
|
|
25131
|
-
ipv4Address?: string;
|
|
25132
|
-
/**
|
|
25133
|
-
* The IPv6 internal IP address assigned to this management interface
|
|
25134
|
-
* endpoint. This address will be used by the customer to route traffic to the
|
|
25135
|
-
* management interface if IPv6 is supported and configured.
|
|
25136
|
-
*/
|
|
25137
|
-
ipv6Address?: string;
|
|
25138
|
-
/**
|
|
25139
|
-
* The URL of the VPC network to which the management interface endpoint is
|
|
25140
|
-
* attached. The customer must ensure that this network is correctly
|
|
25141
|
-
* configured for routing to the accelerator domain.
|
|
25142
|
-
*/
|
|
25143
|
-
network?: string;
|
|
25144
|
-
state?: 'ACTIVE' | 'INACTIVE' | 'PENDING' | 'STATE_UNSPECIFIED';
|
|
25145
|
-
/**
|
|
25146
|
-
* The URL of the subnetwork from which to assign the IP address for the
|
|
25147
|
-
* endpoint. The subnetwork must belong to the specified network and have
|
|
25148
|
-
* available IP addresses.
|
|
25149
|
-
*/
|
|
25150
|
-
subnetwork?: string;
|
|
25151
|
-
/**
|
|
25152
|
-
* Required. The type of management service this interface provides.
|
|
25153
|
-
* Supported types include NMX-C for partition management and gNMI for switch
|
|
25154
|
-
* monitoring.
|
|
25155
|
-
*/
|
|
25156
|
-
type?:
|
|
25157
|
-
| 'TYPE_NVLINK_PARTITION_MANAGEMENT'
|
|
25158
|
-
| 'TYPE_NVLINK_SWITCH_MONITORING'
|
|
25159
|
-
| 'TYPE_UNSPECIFIED';
|
|
25160
|
-
}
|
|
25161
|
-
interface Metadata {
|
|
25162
|
-
/**
|
|
25163
|
-
* Specifies a fingerprint for this request, which is essentially a hash of
|
|
25164
|
-
* the metadata's contents and used for optimistic locking. The
|
|
25165
|
-
* fingerprint is initially generated by Compute Engine and changes after
|
|
25166
|
-
* every request to modify or update metadata. You must always provide an
|
|
25167
|
-
* up-to-date fingerprint hash in order to update or change metadata,
|
|
25168
|
-
* otherwise the request will fail with error412 conditionNotMet.
|
|
25169
|
-
*
|
|
25170
|
-
* To see the latest fingerprint, make a get() request to
|
|
25171
|
-
* retrieve the resource.
|
|
25172
|
-
*/
|
|
25173
|
-
fingerprint?: string;
|
|
25174
|
-
/**
|
|
25175
|
-
* Array of key/value pairs. The total size of all keys and values must be
|
|
25176
|
-
* less than 512 KB.
|
|
25177
|
-
*/
|
|
25178
|
-
items?: {
|
|
25179
|
-
/**
|
|
25180
|
-
* Key for the metadata entry. Keys must conform to the following
|
|
25181
|
-
* regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length.
|
|
25182
|
-
* This is reflected as part of a URL in the metadata server. Additionally, to
|
|
25183
|
-
* avoid ambiguity, keys must not conflict with any other metadata keys
|
|
25184
|
-
* for the project.
|
|
25185
|
-
*/
|
|
25186
|
-
key?: string;
|
|
25187
|
-
/**
|
|
25188
|
-
* Value for the metadata entry. These are free-form strings, and only
|
|
25189
|
-
* have meaning as interpreted by the image running in the instance. The
|
|
25190
|
-
* only restriction placed on values is that their size must be less than
|
|
25191
|
-
* or equal to 262144 bytes (256 KiB).
|
|
25192
|
-
*/
|
|
25193
|
-
value?: string;
|
|
25194
|
-
}[];
|
|
25195
|
-
/**
|
|
25196
|
-
* Output only. [Output Only] Type of the resource. Always compute#metadata
|
|
25197
|
-
* for metadata.
|
|
25198
|
-
*/
|
|
25199
|
-
kind?: string;
|
|
25200
|
-
}
|
|
25201
|
-
interface MetadataCredentialsFromPlugin {
|
|
25202
|
-
/** Plugin name. */
|
|
25203
|
-
name?: string;
|
|
25204
|
-
/**
|
|
25205
|
-
* A text proto that conforms to a Struct type definition interpreted by the
|
|
25206
|
-
* plugin.
|
|
25207
|
-
*/
|
|
25208
|
-
structConfig?: string;
|
|
25209
|
-
}
|
|
25210
|
-
interface MetadataFilter {
|
|
25211
|
-
/**
|
|
25212
|
-
* The list of label value pairs that must match labels in the provided
|
|
25213
|
-
* metadata based on filterMatchCriteria
|
|
25214
|
-
*
|
|
25215
|
-
* This list must not be empty and can have at the most 64 entries.
|
|
25216
|
-
*/
|
|
25217
|
-
filterLabels?: MetadataFilterLabelMatch[];
|
|
25218
|
-
/**
|
|
25219
|
-
* Specifies how individual filter label matches
|
|
25220
|
-
* within the list of filterLabels and contributes toward the
|
|
25221
|
-
* overall metadataFilter match.
|
|
25222
|
-
*
|
|
25223
|
-
* Supported values are:
|
|
25224
|
-
*
|
|
25225
|
-
* - MATCH_ANY: at least one of the filterLabels
|
|
25226
|
-
* must have a matching label in the provided metadata.
|
|
25227
|
-
* - MATCH_ALL: all filterLabels must have
|
|
25228
|
-
* matching labels in the provided metadata.
|
|
25229
|
-
*/
|
|
25230
|
-
filterMatchCriteria?: 'MATCH_ALL' | 'MATCH_ANY' | 'NOT_SET';
|
|
25231
|
-
}
|
|
25232
|
-
interface MetadataFilterLabelMatch {
|
|
25233
|
-
/**
|
|
25234
|
-
* Name of metadata label.
|
|
25235
|
-
*
|
|
25236
|
-
* The name can have a maximum length of 1024 characters and must be at
|
|
25237
|
-
* least 1 character long.
|
|
25238
|
-
*/
|
|
25239
|
-
name?: string;
|
|
25240
|
-
/**
|
|
25241
|
-
* The value of the label must match the specified value.
|
|
25242
|
-
*
|
|
25243
|
-
* value can have a maximum length of 1024 characters.
|
|
25244
|
-
*/
|
|
25245
|
-
value?: string;
|
|
25246
|
-
}
|
|
25247
|
-
interface Money {
|
|
25248
|
-
/** The three-letter currency code defined in ISO 4217. */
|
|
25249
|
-
currencyCode?: string;
|
|
25250
|
-
/**
|
|
25251
|
-
* Number of nano (10^-9) units of the amount.
|
|
25252
|
-
* The value must be between -999,999,999 and +999,999,999 inclusive.
|
|
25253
|
-
* If `units` is positive, `nanos` must be positive or zero.
|
|
25254
|
-
* If `units` is zero, `nanos` can be positive, zero, or negative.
|
|
25255
|
-
* If `units` is negative, `nanos` must be negative or zero.
|
|
25256
|
-
* For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
|
|
25257
|
-
*/
|
|
25258
|
-
nanos?: number;
|
|
25259
|
-
/**
|
|
25260
|
-
* The whole units of the amount.
|
|
25261
|
-
* For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
|
|
25262
|
-
*/
|
|
25263
|
-
units?: string;
|
|
25264
|
-
}
|
|
25265
|
-
interface MultiMig {
|
|
25266
|
-
/**
|
|
25267
|
-
* Output only. [Output only] The creation timestamp of this multi-MIG in RFC3339
|
|
25268
|
-
* text format.
|
|
25269
|
-
*/
|
|
25312
|
+
interface ManagedRuleset {
|
|
25313
|
+
/** Output only. [Output Only] The change log for this managed ruleset. */
|
|
25314
|
+
changeLog?: string;
|
|
25315
|
+
/** Output only. [Output Only] Creation timestamp in RFC3339 text format. */
|
|
25270
25316
|
creationTimestamp?: string;
|
|
25271
|
-
/** An optional description of this resource. */
|
|
25317
|
+
/** [Output Only] An optional description of this resource. */
|
|
25272
25318
|
description?: string;
|
|
25273
25319
|
/**
|
|
25274
|
-
* Output only. [Output
|
|
25275
|
-
*
|
|
25320
|
+
* Output only. [Output Only] The unique identifier for the resource. This identifier is
|
|
25321
|
+
* defined by the server.
|
|
25276
25322
|
*/
|
|
25277
25323
|
id?: string;
|
|
25278
|
-
/** Output only. [Output only] Type of the resource. Alwayscompute#multiMig for multi-MIGs. */
|
|
25279
|
-
kind?: string;
|
|
25280
25324
|
/**
|
|
25281
|
-
*
|
|
25325
|
+
* Name of the resource. Generated internally when the resource is created.
|
|
25282
25326
|
* The name must be 1-63 characters long, and comply withRFC1035.
|
|
25283
25327
|
* Specifically, the name must be 1-63 characters long and match the regular
|
|
25284
|
-
* expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
25285
|
-
* must be a lowercase letter, and all following characters must
|
|
25286
|
-
* lowercase letter, or digit, except the last character, which
|
|
25287
|
-
* dash.
|
|
25328
|
+
* expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
25329
|
+
* character must be a lowercase letter, and all following characters must
|
|
25330
|
+
* be a dash, lowercase letter, or digit, except the last character, which
|
|
25331
|
+
* cannot be a dash.
|
|
25288
25332
|
*/
|
|
25289
25333
|
name?: string;
|
|
25290
25334
|
/**
|
|
25291
|
-
* Output only. [Output
|
|
25292
|
-
*
|
|
25293
|
-
* region as a field in the request body.
|
|
25335
|
+
* Output only. [Output Only] The list of managed rule IDs that are included in
|
|
25336
|
+
* this managed ruleset.
|
|
25294
25337
|
*/
|
|
25295
|
-
|
|
25296
|
-
/** Resource policies for this multi-MIG. */
|
|
25297
|
-
resourcePolicies?: MultiMigResourcePolicies;
|
|
25298
|
-
/** Output only. [Output only] Server-defined URL for the resource. */
|
|
25299
|
-
selfLink?: string;
|
|
25300
|
-
status?: MultiMigStatus;
|
|
25301
|
-
}
|
|
25302
|
-
interface MultiMigMember {
|
|
25303
|
-
/** Output only. [Output Only] Creation timestamp of this multi-MIG member inRFC3339 text format. */
|
|
25304
|
-
creationTimestamp?: string;
|
|
25338
|
+
ruleIds?: string[];
|
|
25305
25339
|
/**
|
|
25306
|
-
* Output only. [Output
|
|
25307
|
-
*
|
|
25340
|
+
* Output only. [Output Only] The managed ruleset identifier that can be configured in
|
|
25341
|
+
* Security Policy rules.
|
|
25308
25342
|
*/
|
|
25309
|
-
|
|
25310
|
-
/** Output only.
|
|
25311
|
-
kind?: string;
|
|
25312
|
-
/** Output only. [Output Only] Server-defined name for the multi-MIG member. */
|
|
25313
|
-
name?: string;
|
|
25314
|
-
/** Output only. [Output Only] The URL of the region where the multi-MIG resides. */
|
|
25315
|
-
region?: string;
|
|
25316
|
-
/** Output only. [Output Only] Server-defined fully-qualified URL for this resource. */
|
|
25343
|
+
rulesetId?: string;
|
|
25344
|
+
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
25317
25345
|
selfLink?: string;
|
|
25318
|
-
/** Output only. [Output Only] The status of this multi-MIG member */
|
|
25319
|
-
status?: MultiMigMemberStatus;
|
|
25320
25346
|
}
|
|
25321
|
-
interface
|
|
25322
|
-
/** Unique identifier for the resource; defined by the server. */
|
|
25347
|
+
interface ManagedRulesetList {
|
|
25323
25348
|
id?: string;
|
|
25324
|
-
|
|
25325
|
-
items?: MultiMigMember[];
|
|
25326
|
-
/** Output only. Type of the resource. Alwayscompute#multiMigMember for a list of multi-MIG members. */
|
|
25327
|
-
kind?: string;
|
|
25328
|
-
/**
|
|
25329
|
-
* This token allows you to get the next page of results for
|
|
25330
|
-
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
|
|
25331
|
-
* the query parameter pageToken in the next list request.
|
|
25332
|
-
* Subsequent list requests will have their own nextPageToken to
|
|
25333
|
-
* continue paging through the results.
|
|
25334
|
-
*/
|
|
25349
|
+
items?: ManagedRuleset[];
|
|
25335
25350
|
nextPageToken?: string;
|
|
25336
|
-
|
|
25337
|
-
|
|
25338
|
-
|
|
25351
|
+
warning?: {
|
|
25352
|
+
/**
|
|
25353
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
25354
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
25355
|
+
* are no results in the response.
|
|
25356
|
+
*/
|
|
25357
|
+
code?:
|
|
25358
|
+
| 'CLEANUP_FAILED'
|
|
25359
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
25360
|
+
| 'DEPRECATED_TYPE_USED'
|
|
25361
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
25362
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
25363
|
+
| 'EXTERNAL_API_WARNING'
|
|
25364
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
25365
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
25366
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
25367
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
25368
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
25369
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
25370
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
25371
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
25372
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
25373
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
25374
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
25375
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
25376
|
+
| 'NOT_CRITICAL_ERROR'
|
|
25377
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
25378
|
+
| 'PARTIAL_SUCCESS'
|
|
25379
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
25380
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
25381
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
25382
|
+
| 'RESOURCE_NOT_DELETED'
|
|
25383
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
25384
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
25385
|
+
| 'UNDECLARED_PROPERTIES'
|
|
25386
|
+
| 'UNREACHABLE';
|
|
25387
|
+
/**
|
|
25388
|
+
* [Output Only] Metadata about this warning in key:
|
|
25389
|
+
* value format. For example:
|
|
25390
|
+
*
|
|
25391
|
+
* "data": [
|
|
25392
|
+
* {
|
|
25393
|
+
* "key": "scope",
|
|
25394
|
+
* "value": "zones/us-east1-d"
|
|
25395
|
+
* }
|
|
25396
|
+
*/
|
|
25397
|
+
data?: {
|
|
25398
|
+
/**
|
|
25399
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
25400
|
+
* returned. For example, for warnings where there are no results in a list
|
|
25401
|
+
* request for a particular zone, this key might be scope and
|
|
25402
|
+
* the key value might be the zone name. Other examples might be a key
|
|
25403
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
25404
|
+
* warning about invalid network settings (for example, if an instance
|
|
25405
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
25406
|
+
*/
|
|
25407
|
+
key?: string;
|
|
25408
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
25409
|
+
value?: string;
|
|
25410
|
+
}[];
|
|
25411
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
25412
|
+
message?: string;
|
|
25413
|
+
};
|
|
25414
|
+
}
|
|
25415
|
+
interface ManagementInterface {
|
|
25416
|
+
authenticationConfig?: AuthenticationConfig;
|
|
25417
|
+
/**
|
|
25418
|
+
* The IPv4 internal IP address assigned to this management interface
|
|
25419
|
+
* endpoint. This address will be used by the customer to route traffic to the
|
|
25420
|
+
* management interface.
|
|
25421
|
+
*/
|
|
25422
|
+
ipv4Address?: string;
|
|
25423
|
+
/**
|
|
25424
|
+
* The IPv6 internal IP address assigned to this management interface
|
|
25425
|
+
* endpoint. This address will be used by the customer to route traffic to the
|
|
25426
|
+
* management interface if IPv6 is supported and configured.
|
|
25427
|
+
*/
|
|
25428
|
+
ipv6Address?: string;
|
|
25429
|
+
/**
|
|
25430
|
+
* The URL of the VPC network to which the management interface endpoint is
|
|
25431
|
+
* attached. The customer must ensure that this network is correctly
|
|
25432
|
+
* configured for routing to the accelerator domain.
|
|
25433
|
+
*/
|
|
25434
|
+
network?: string;
|
|
25435
|
+
state?: 'ACTIVE' | 'INACTIVE' | 'PENDING' | 'STATE_UNSPECIFIED';
|
|
25436
|
+
/**
|
|
25437
|
+
* The URL of the subnetwork from which to assign the IP address for the
|
|
25438
|
+
* endpoint. The subnetwork must belong to the specified network and have
|
|
25439
|
+
* available IP addresses.
|
|
25440
|
+
*/
|
|
25441
|
+
subnetwork?: string;
|
|
25442
|
+
/**
|
|
25443
|
+
* Required. The type of management service this interface provides.
|
|
25444
|
+
* Supported types include NMX-C for partition management, gNMI for switch
|
|
25445
|
+
* monitoring, and TPU slice management.
|
|
25446
|
+
*/
|
|
25447
|
+
type?:
|
|
25448
|
+
| 'TYPE_NVLINK_PARTITION_MANAGEMENT'
|
|
25449
|
+
| 'TYPE_NVLINK_SWITCH_MONITORING'
|
|
25450
|
+
| 'TYPE_TPU_SLICE_MANAGEMENT'
|
|
25451
|
+
| 'TYPE_UNSPECIFIED';
|
|
25452
|
+
}
|
|
25453
|
+
interface Metadata {
|
|
25454
|
+
/**
|
|
25455
|
+
* Specifies a fingerprint for this request, which is essentially a hash of
|
|
25456
|
+
* the metadata's contents and used for optimistic locking. The
|
|
25457
|
+
* fingerprint is initially generated by Compute Engine and changes after
|
|
25458
|
+
* every request to modify or update metadata. You must always provide an
|
|
25459
|
+
* up-to-date fingerprint hash in order to update or change metadata,
|
|
25460
|
+
* otherwise the request will fail with error412 conditionNotMet.
|
|
25461
|
+
*
|
|
25462
|
+
* To see the latest fingerprint, make a get() request to
|
|
25463
|
+
* retrieve the resource.
|
|
25464
|
+
*/
|
|
25465
|
+
fingerprint?: string;
|
|
25466
|
+
/**
|
|
25467
|
+
* Array of key/value pairs. The total size of all keys and values must be
|
|
25468
|
+
* less than 512 KB.
|
|
25469
|
+
*/
|
|
25470
|
+
items?: {
|
|
25471
|
+
/**
|
|
25472
|
+
* Key for the metadata entry. Keys must conform to the following
|
|
25473
|
+
* regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length.
|
|
25474
|
+
* This is reflected as part of a URL in the metadata server. Additionally, to
|
|
25475
|
+
* avoid ambiguity, keys must not conflict with any other metadata keys
|
|
25476
|
+
* for the project.
|
|
25477
|
+
*/
|
|
25478
|
+
key?: string;
|
|
25479
|
+
/**
|
|
25480
|
+
* Value for the metadata entry. These are free-form strings, and only
|
|
25481
|
+
* have meaning as interpreted by the image running in the instance. The
|
|
25482
|
+
* only restriction placed on values is that their size must be less than
|
|
25483
|
+
* or equal to 262144 bytes (256 KiB).
|
|
25484
|
+
*/
|
|
25485
|
+
value?: string;
|
|
25486
|
+
}[];
|
|
25487
|
+
/**
|
|
25488
|
+
* Output only. [Output Only] Type of the resource. Always compute#metadata
|
|
25489
|
+
* for metadata.
|
|
25490
|
+
*/
|
|
25491
|
+
kind?: string;
|
|
25492
|
+
}
|
|
25493
|
+
interface MetadataCredentialsFromPlugin {
|
|
25494
|
+
/** Plugin name. */
|
|
25495
|
+
name?: string;
|
|
25496
|
+
/**
|
|
25497
|
+
* A text proto that conforms to a Struct type definition interpreted by the
|
|
25498
|
+
* plugin.
|
|
25499
|
+
*/
|
|
25500
|
+
structConfig?: string;
|
|
25501
|
+
}
|
|
25502
|
+
interface MetadataFilter {
|
|
25503
|
+
/**
|
|
25504
|
+
* The list of label value pairs that must match labels in the provided
|
|
25505
|
+
* metadata based on filterMatchCriteria
|
|
25506
|
+
*
|
|
25507
|
+
* This list must not be empty and can have at the most 64 entries.
|
|
25508
|
+
*/
|
|
25509
|
+
filterLabels?: MetadataFilterLabelMatch[];
|
|
25510
|
+
/**
|
|
25511
|
+
* Specifies how individual filter label matches
|
|
25512
|
+
* within the list of filterLabels and contributes toward the
|
|
25513
|
+
* overall metadataFilter match.
|
|
25514
|
+
*
|
|
25515
|
+
* Supported values are:
|
|
25516
|
+
*
|
|
25517
|
+
* - MATCH_ANY: at least one of the filterLabels
|
|
25518
|
+
* must have a matching label in the provided metadata.
|
|
25519
|
+
* - MATCH_ALL: all filterLabels must have
|
|
25520
|
+
* matching labels in the provided metadata.
|
|
25521
|
+
*/
|
|
25522
|
+
filterMatchCriteria?: 'MATCH_ALL' | 'MATCH_ANY' | 'NOT_SET';
|
|
25523
|
+
}
|
|
25524
|
+
interface MetadataFilterLabelMatch {
|
|
25525
|
+
/**
|
|
25526
|
+
* Name of metadata label.
|
|
25527
|
+
*
|
|
25528
|
+
* The name can have a maximum length of 1024 characters and must be at
|
|
25529
|
+
* least 1 character long.
|
|
25530
|
+
*/
|
|
25531
|
+
name?: string;
|
|
25532
|
+
/**
|
|
25533
|
+
* The value of the label must match the specified value.
|
|
25534
|
+
*
|
|
25535
|
+
* value can have a maximum length of 1024 characters.
|
|
25536
|
+
*/
|
|
25537
|
+
value?: string;
|
|
25538
|
+
}
|
|
25539
|
+
interface Money {
|
|
25540
|
+
/** The three-letter currency code defined in ISO 4217. */
|
|
25541
|
+
currencyCode?: string;
|
|
25542
|
+
/**
|
|
25543
|
+
* Number of nano (10^-9) units of the amount.
|
|
25544
|
+
* The value must be between -999,999,999 and +999,999,999 inclusive.
|
|
25545
|
+
* If `units` is positive, `nanos` must be positive or zero.
|
|
25546
|
+
* If `units` is zero, `nanos` can be positive, zero, or negative.
|
|
25547
|
+
* If `units` is negative, `nanos` must be negative or zero.
|
|
25548
|
+
* For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
|
|
25549
|
+
*/
|
|
25550
|
+
nanos?: number;
|
|
25551
|
+
/**
|
|
25552
|
+
* The whole units of the amount.
|
|
25553
|
+
* For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
|
|
25554
|
+
*/
|
|
25555
|
+
units?: string;
|
|
25556
|
+
}
|
|
25557
|
+
interface MultiMig {
|
|
25558
|
+
/**
|
|
25559
|
+
* Output only. [Output only] The creation timestamp of this multi-MIG in RFC3339
|
|
25560
|
+
* text format.
|
|
25561
|
+
*/
|
|
25562
|
+
creationTimestamp?: string;
|
|
25563
|
+
/** An optional description of this resource. */
|
|
25564
|
+
description?: string;
|
|
25565
|
+
/**
|
|
25566
|
+
* Output only. [Output only] The unique identifier for this resource type. The server
|
|
25567
|
+
* generates this identifier.
|
|
25568
|
+
*/
|
|
25569
|
+
id?: string;
|
|
25570
|
+
/** Output only. [Output only] Type of the resource. Alwayscompute#multiMig for multi-MIGs. */
|
|
25571
|
+
kind?: string;
|
|
25572
|
+
/**
|
|
25573
|
+
* The name of the multi-MIG.
|
|
25574
|
+
* The name must be 1-63 characters long, and comply withRFC1035.
|
|
25575
|
+
* Specifically, the name must be 1-63 characters long and match the regular
|
|
25576
|
+
* expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character
|
|
25577
|
+
* must be a lowercase letter, and all following characters must be a dash,
|
|
25578
|
+
* lowercase letter, or digit, except the last character, which cannot be a
|
|
25579
|
+
* dash.
|
|
25580
|
+
*/
|
|
25581
|
+
name?: string;
|
|
25582
|
+
/**
|
|
25583
|
+
* Output only. [Output only] The URL of the region where the resource resides. You must
|
|
25584
|
+
* specify this field as part of the HTTP request URL. You cannot set the
|
|
25585
|
+
* region as a field in the request body.
|
|
25586
|
+
*/
|
|
25587
|
+
region?: string;
|
|
25588
|
+
/** Resource policies for this multi-MIG. */
|
|
25589
|
+
resourcePolicies?: MultiMigResourcePolicies;
|
|
25590
|
+
/** Output only. [Output only] Server-defined URL for the resource. */
|
|
25591
|
+
selfLink?: string;
|
|
25592
|
+
status?: MultiMigStatus;
|
|
25593
|
+
}
|
|
25594
|
+
interface MultiMigMember {
|
|
25595
|
+
/** Output only. [Output Only] Creation timestamp of this multi-MIG member inRFC3339 text format. */
|
|
25596
|
+
creationTimestamp?: string;
|
|
25597
|
+
/**
|
|
25598
|
+
* Output only. [Output only] The unique identifier for this resource type. The server
|
|
25599
|
+
* generates this identifier.
|
|
25600
|
+
*/
|
|
25601
|
+
id?: string;
|
|
25602
|
+
/** Output only. Type of the resource. Alwayscompute#multiMigMember for a list of multi-MIG members. */
|
|
25603
|
+
kind?: string;
|
|
25604
|
+
/** Output only. [Output Only] Server-defined name for the multi-MIG member. */
|
|
25605
|
+
name?: string;
|
|
25606
|
+
/** Output only. [Output Only] The URL of the region where the multi-MIG resides. */
|
|
25607
|
+
region?: string;
|
|
25608
|
+
/** Output only. [Output Only] Server-defined fully-qualified URL for this resource. */
|
|
25609
|
+
selfLink?: string;
|
|
25610
|
+
/** Output only. [Output Only] The status of this multi-MIG member */
|
|
25611
|
+
status?: MultiMigMemberStatus;
|
|
25612
|
+
}
|
|
25613
|
+
interface MultiMigMemberList {
|
|
25614
|
+
/** Unique identifier for the resource; defined by the server. */
|
|
25615
|
+
id?: string;
|
|
25616
|
+
/** A list of multi-MIG member resources. */
|
|
25617
|
+
items?: MultiMigMember[];
|
|
25618
|
+
/** Output only. Type of the resource. Alwayscompute#multiMigMember for a list of multi-MIG members. */
|
|
25619
|
+
kind?: string;
|
|
25620
|
+
/**
|
|
25621
|
+
* This token allows you to get the next page of results for
|
|
25622
|
+
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
|
|
25623
|
+
* the query parameter pageToken in the next list request.
|
|
25624
|
+
* Subsequent list requests will have their own nextPageToken to
|
|
25625
|
+
* continue paging through the results.
|
|
25626
|
+
*/
|
|
25627
|
+
nextPageToken?: string;
|
|
25628
|
+
/** Output only. [Output only] Server-defined URL for this resource. */
|
|
25629
|
+
selfLink?: string;
|
|
25630
|
+
/** Informational warning message. */
|
|
25339
25631
|
warning?: {
|
|
25340
25632
|
/**
|
|
25341
25633
|
* [Output Only] A warning code, if applicable. For example, Compute
|
|
@@ -25549,9 +25841,13 @@ declare namespace gapi.client {
|
|
|
25549
25841
|
* QUOTA_EXCEEDED.
|
|
25550
25842
|
*/
|
|
25551
25843
|
errorDetails?: {
|
|
25844
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
25552
25845
|
errorInfo?: ErrorInfo;
|
|
25846
|
+
/** Links and information to help the user resolve the error. */
|
|
25553
25847
|
help?: Help;
|
|
25848
|
+
/** A localized human-readable error message intended for end users. */
|
|
25554
25849
|
localizedMessage?: LocalizedMessage;
|
|
25850
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
25555
25851
|
quotaInfo?: QuotaExceededInfo;
|
|
25556
25852
|
}[];
|
|
25557
25853
|
/**
|
|
@@ -27953,6 +28249,13 @@ declare namespace gapi.client {
|
|
|
27953
28249
|
type?: string;
|
|
27954
28250
|
}
|
|
27955
28251
|
interface NetworkPolicyTrafficClassificationRuleMatcher {
|
|
28252
|
+
/**
|
|
28253
|
+
* Address groups which should be matched against the traffic destination.
|
|
28254
|
+
* Maximum number of destination address groups is 10.
|
|
28255
|
+
* Example:
|
|
28256
|
+
* projects//locations//addressGroups/.
|
|
28257
|
+
*/
|
|
28258
|
+
destAddressGroups?: string[];
|
|
27956
28259
|
/**
|
|
27957
28260
|
* CIDR IP address range.
|
|
27958
28261
|
* Maximum number of destination CIDR IP ranges allowed is 5000.
|
|
@@ -29851,9 +30154,13 @@ declare namespace gapi.client {
|
|
|
29851
30154
|
* QUOTA_EXCEEDED.
|
|
29852
30155
|
*/
|
|
29853
30156
|
errorDetails?: {
|
|
30157
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
29854
30158
|
errorInfo?: ErrorInfo;
|
|
30159
|
+
/** Links and information to help the user resolve the error. */
|
|
29855
30160
|
help?: Help;
|
|
30161
|
+
/** A localized human-readable error message intended for end users. */
|
|
29856
30162
|
localizedMessage?: LocalizedMessage;
|
|
30163
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
29857
30164
|
quotaInfo?: QuotaExceededInfo;
|
|
29858
30165
|
}[];
|
|
29859
30166
|
/**
|
|
@@ -29865,6 +30172,12 @@ declare namespace gapi.client {
|
|
|
29865
30172
|
message?: string;
|
|
29866
30173
|
}[];
|
|
29867
30174
|
};
|
|
30175
|
+
/**
|
|
30176
|
+
* Output only. [Output Only] Metadata containing the allocated priority from the
|
|
30177
|
+
* networkFirewallPolicies.addRule and regionNetworkFirewallPolicies.addRule
|
|
30178
|
+
* methods if not explicitly provided by the user.
|
|
30179
|
+
*/
|
|
30180
|
+
firewallPolicyRuleOperationMetadata?: FirewallPolicyRuleOperationMetadata;
|
|
29868
30181
|
getVersionOperationMetadata?: GetVersionOperationMetadata;
|
|
29869
30182
|
/**
|
|
29870
30183
|
* [Output Only] If the operation fails, this field contains the HTTP error
|
|
@@ -31782,7 +32095,14 @@ declare namespace gapi.client {
|
|
|
31782
32095
|
'CAMP_PLUS_ANNUAL' | 'CAMP_PLUS_PAYGO' | 'CA_STANDARD';
|
|
31783
32096
|
}
|
|
31784
32097
|
interface ProjectView {
|
|
31785
|
-
/**
|
|
32098
|
+
/**
|
|
32099
|
+
* The project data.
|
|
32100
|
+
* The returned Project data does not contain regional or zonal quota
|
|
32101
|
+
* usage data. Global quota limits are present. For accurate, real-time quota
|
|
32102
|
+
* usage numbers, query the global
|
|
32103
|
+
* [projects.get](https://cloud.google.com/compute/docs/reference/rest/v1/projects/get)
|
|
32104
|
+
* endpoint.
|
|
32105
|
+
*/
|
|
31786
32106
|
project?: Project;
|
|
31787
32107
|
}
|
|
31788
32108
|
interface PublicAdvertisedPrefix {
|
|
@@ -32781,9 +33101,13 @@ declare namespace gapi.client {
|
|
|
32781
33101
|
* QUOTA_EXCEEDED.
|
|
32782
33102
|
*/
|
|
32783
33103
|
errorDetails?: {
|
|
33104
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
32784
33105
|
errorInfo?: ErrorInfo;
|
|
33106
|
+
/** Links and information to help the user resolve the error. */
|
|
32785
33107
|
help?: Help;
|
|
33108
|
+
/** A localized human-readable error message intended for end users. */
|
|
32786
33109
|
localizedMessage?: LocalizedMessage;
|
|
33110
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
32787
33111
|
quotaInfo?: QuotaExceededInfo;
|
|
32788
33112
|
}[];
|
|
32789
33113
|
/**
|
|
@@ -34197,7 +34521,7 @@ declare namespace gapi.client {
|
|
|
34197
34521
|
}
|
|
34198
34522
|
interface RegionInstanceGroupManagersApplyUpdatesRequest {
|
|
34199
34523
|
/**
|
|
34200
|
-
* Flag to update all instances instead of specified list of
|
|
34524
|
+
* Flag to update all instances instead of specified list of "instances".
|
|
34201
34525
|
* If the flag is set to true then the instances may not be specified
|
|
34202
34526
|
* in the request.
|
|
34203
34527
|
*/
|
|
@@ -34824,6 +35148,7 @@ declare namespace gapi.client {
|
|
|
34824
35148
|
selfLinkWithId?: string;
|
|
34825
35149
|
}
|
|
34826
35150
|
interface ReliabilityRisksListResponse {
|
|
35151
|
+
/** [Output Only] An ETag of the resource. */
|
|
34827
35152
|
etag?: string;
|
|
34828
35153
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
34829
35154
|
id?: string;
|
|
@@ -35380,6 +35705,133 @@ declare namespace gapi.client {
|
|
|
35380
35705
|
message?: string;
|
|
35381
35706
|
};
|
|
35382
35707
|
}
|
|
35708
|
+
interface ReservationConsumedInstance {
|
|
35709
|
+
/** The full URI of the instance resource. */
|
|
35710
|
+
instance?: string;
|
|
35711
|
+
/** The service to which the instance belongs. Typically "COMPUTE". */
|
|
35712
|
+
service?: string;
|
|
35713
|
+
/** Output only. [Output Only] The status of the consumed instance. */
|
|
35714
|
+
status?: ReservationConsumedInstanceStatus;
|
|
35715
|
+
}
|
|
35716
|
+
interface ReservationConsumedInstancesListResponse {
|
|
35717
|
+
/** Uniquely identifies the type of this resource. */
|
|
35718
|
+
id?: string;
|
|
35719
|
+
/** A list of ReservationConsumedInstance resources. */
|
|
35720
|
+
items?: ReservationConsumedInstance[];
|
|
35721
|
+
/** Identifies the resource as a list of reservation consumed instances. */
|
|
35722
|
+
kind?: string;
|
|
35723
|
+
/**
|
|
35724
|
+
* [Output Only] This token allows you to get the next page of results for
|
|
35725
|
+
* list requests.
|
|
35726
|
+
*/
|
|
35727
|
+
nextPageToken?: string;
|
|
35728
|
+
/** Output only. [Output Only] Server-defined URL for this resource. */
|
|
35729
|
+
selfLink?: string;
|
|
35730
|
+
/**
|
|
35731
|
+
* [Output Only] Informational warning which replaces the result in some
|
|
35732
|
+
* cases.
|
|
35733
|
+
*/
|
|
35734
|
+
warning?: {
|
|
35735
|
+
/**
|
|
35736
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
35737
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
35738
|
+
* are no results in the response.
|
|
35739
|
+
*/
|
|
35740
|
+
code?:
|
|
35741
|
+
| 'CLEANUP_FAILED'
|
|
35742
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
35743
|
+
| 'DEPRECATED_TYPE_USED'
|
|
35744
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
35745
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
35746
|
+
| 'EXTERNAL_API_WARNING'
|
|
35747
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
35748
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
35749
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
35750
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
35751
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
35752
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
35753
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
35754
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
35755
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
35756
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
35757
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
35758
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
35759
|
+
| 'NOT_CRITICAL_ERROR'
|
|
35760
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
35761
|
+
| 'PARTIAL_SUCCESS'
|
|
35762
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
35763
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
35764
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
35765
|
+
| 'RESOURCE_NOT_DELETED'
|
|
35766
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
35767
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
35768
|
+
| 'UNDECLARED_PROPERTIES'
|
|
35769
|
+
| 'UNREACHABLE';
|
|
35770
|
+
/**
|
|
35771
|
+
* [Output Only] Metadata about this warning in key:
|
|
35772
|
+
* value format. For example:
|
|
35773
|
+
*
|
|
35774
|
+
* "data": [
|
|
35775
|
+
* {
|
|
35776
|
+
* "key": "scope",
|
|
35777
|
+
* "value": "zones/us-east1-d"
|
|
35778
|
+
* }
|
|
35779
|
+
*/
|
|
35780
|
+
data?: {
|
|
35781
|
+
/**
|
|
35782
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
35783
|
+
* returned. For example, for warnings where there are no results in a list
|
|
35784
|
+
* request for a particular zone, this key might be scope and
|
|
35785
|
+
* the key value might be the zone name. Other examples might be a key
|
|
35786
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
35787
|
+
* warning about invalid network settings (for example, if an instance
|
|
35788
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
35789
|
+
*/
|
|
35790
|
+
key?: string;
|
|
35791
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
35792
|
+
value?: string;
|
|
35793
|
+
}[];
|
|
35794
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
35795
|
+
message?: string;
|
|
35796
|
+
};
|
|
35797
|
+
}
|
|
35798
|
+
interface ReservationConsumedInstanceStatus {
|
|
35799
|
+
/** A list of issues related to this instance's linkage to the reservation. */
|
|
35800
|
+
linkageErrors?: {
|
|
35801
|
+
/**
|
|
35802
|
+
* [Output Only] The array of errors encountered while processing this
|
|
35803
|
+
* operation.
|
|
35804
|
+
*/
|
|
35805
|
+
errors?: {
|
|
35806
|
+
/** [Output Only] The error type identifier for this error. */
|
|
35807
|
+
code?: string;
|
|
35808
|
+
/**
|
|
35809
|
+
* [Output Only] An optional list of messages that contain the error
|
|
35810
|
+
* details. There is a set of defined message types to use for providing
|
|
35811
|
+
* details.The syntax depends on the error code. For example,
|
|
35812
|
+
* QuotaExceededInfo will have details when the error code is
|
|
35813
|
+
* QUOTA_EXCEEDED.
|
|
35814
|
+
*/
|
|
35815
|
+
errorDetails?: {
|
|
35816
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
35817
|
+
errorInfo?: ErrorInfo;
|
|
35818
|
+
/** Links and information to help the user resolve the error. */
|
|
35819
|
+
help?: Help;
|
|
35820
|
+
/** A localized human-readable error message intended for end users. */
|
|
35821
|
+
localizedMessage?: LocalizedMessage;
|
|
35822
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
35823
|
+
quotaInfo?: QuotaExceededInfo;
|
|
35824
|
+
}[];
|
|
35825
|
+
/**
|
|
35826
|
+
* [Output Only] Indicates the field in the request that caused the error.
|
|
35827
|
+
* This property is optional.
|
|
35828
|
+
*/
|
|
35829
|
+
location?: string;
|
|
35830
|
+
/** [Output Only] An optional, human-readable error message. */
|
|
35831
|
+
message?: string;
|
|
35832
|
+
}[];
|
|
35833
|
+
};
|
|
35834
|
+
}
|
|
35383
35835
|
interface ReservationList {
|
|
35384
35836
|
/**
|
|
35385
35837
|
* [Output Only] The unique identifier for the resource. This identifier is
|
|
@@ -36633,6 +37085,13 @@ declare namespace gapi.client {
|
|
|
36633
37085
|
* the location ID of the topologies.
|
|
36634
37086
|
*/
|
|
36635
37087
|
acceleratorTopologyIds?: {[P in string]: string};
|
|
37088
|
+
/**
|
|
37089
|
+
* Output only. Key-value store for arbitrary network topology identifiers
|
|
37090
|
+
* defined by the underlying infrastructure.
|
|
37091
|
+
* The key will be the topology label and the value will be the location
|
|
37092
|
+
* ID for the topology.
|
|
37093
|
+
*/
|
|
37094
|
+
networkTopologyIds?: {[P in string]: string};
|
|
36636
37095
|
}
|
|
36637
37096
|
interface ResourceStatusReservationConsumptionInfo {
|
|
36638
37097
|
/**
|
|
@@ -39231,6 +39690,11 @@ declare namespace gapi.client {
|
|
|
39231
39690
|
* 0 or unset means default amount of memory of the current machine type.
|
|
39232
39691
|
*/
|
|
39233
39692
|
currentMemoryMb?: string;
|
|
39693
|
+
/**
|
|
39694
|
+
* This optional flag exposes the hashed physical host ID in the
|
|
39695
|
+
* ResourceStatus resource of the VM.
|
|
39696
|
+
*/
|
|
39697
|
+
exposeHostTopology?: boolean;
|
|
39234
39698
|
gracefulShutdown?: SchedulingGracefulShutdown;
|
|
39235
39699
|
/**
|
|
39236
39700
|
* Specify the time in seconds for host error detection, the value must be
|
|
@@ -39306,10 +39770,9 @@ declare namespace gapi.client {
|
|
|
39306
39770
|
*/
|
|
39307
39771
|
preemptible?: boolean;
|
|
39308
39772
|
/**
|
|
39309
|
-
* Specifies the Metadata Service preemption notice duration before the
|
|
39310
|
-
* Off signal is triggered for Spot
|
|
39311
|
-
*
|
|
39312
|
-
* Off signal is triggered.
|
|
39773
|
+
* Specifies the Metadata Service preemption notice duration before the GCE ACPI G2
|
|
39774
|
+
* Soft Off signal is triggered for Spot VMs only. If not specified,
|
|
39775
|
+
* there will be no wait before the G2 Soft Off signal is triggered.
|
|
39313
39776
|
*/
|
|
39314
39777
|
preemptionNoticeDuration?: Duration;
|
|
39315
39778
|
/** Specifies the provisioning model of the instance. */
|
|
@@ -43030,7 +43493,7 @@ declare namespace gapi.client {
|
|
|
43030
43493
|
* create the resource.
|
|
43031
43494
|
*/
|
|
43032
43495
|
description?: string;
|
|
43033
|
-
/**
|
|
43496
|
+
/** Provisioned capacities for each SKU for this Exapool in GiB */
|
|
43034
43497
|
exapoolProvisionedCapacityGb?: StoragePoolExapoolProvisionedCapacityGb;
|
|
43035
43498
|
/**
|
|
43036
43499
|
* Output only. [Output Only] The unique identifier for the resource. This identifier is
|
|
@@ -48574,6 +49037,12 @@ declare namespace gapi.client {
|
|
|
48574
49037
|
};
|
|
48575
49038
|
}
|
|
48576
49039
|
interface VmExtensionPolicyExtensionPolicy {
|
|
49040
|
+
/**
|
|
49041
|
+
* Optional. Only deploy this extension if the specified software is detected on the
|
|
49042
|
+
* VM. For a live list of valid software values, see:
|
|
49043
|
+
* https://cloud.google.com/compute/docs/vm-extensions/supported-software
|
|
49044
|
+
*/
|
|
49045
|
+
installedSoftwareSelector?: VmExtensionPolicyInstalledSoftwareSelector;
|
|
48577
49046
|
/**
|
|
48578
49047
|
* Optional. The specific version of the extension to install. If not set, the latest
|
|
48579
49048
|
* version is used.
|
|
@@ -48582,6 +49051,23 @@ declare namespace gapi.client {
|
|
|
48582
49051
|
/** Optional. String-based configuration data for the extension. */
|
|
48583
49052
|
stringConfig?: string;
|
|
48584
49053
|
}
|
|
49054
|
+
interface VmExtensionPolicyInstalledSoftwareSelector {
|
|
49055
|
+
/**
|
|
49056
|
+
* Optional. If any of these SelectorSets are satisfied, the condition
|
|
49057
|
+
* is met (OR logic).
|
|
49058
|
+
* The key is a user-provided name for this set.
|
|
49059
|
+
*/
|
|
49060
|
+
anyOfSelectors?: {
|
|
49061
|
+
[P in string]: VmExtensionPolicyInstalledSoftwareSelectorSelectorSet;
|
|
49062
|
+
};
|
|
49063
|
+
}
|
|
49064
|
+
interface VmExtensionPolicyInstalledSoftwareSelectorSelectorSet {
|
|
49065
|
+
/**
|
|
49066
|
+
* Optional. All software in this list must be detected (AND logic).
|
|
49067
|
+
* Valid software names (e.g. "Apache Web Server").
|
|
49068
|
+
*/
|
|
49069
|
+
allOfSelectors?: string[];
|
|
49070
|
+
}
|
|
48585
49071
|
interface VmExtensionPolicyInstanceSelector {
|
|
48586
49072
|
/** Optional. LabelSelector selects VMs based on their labels. */
|
|
48587
49073
|
labelSelector?: VmExtensionPolicyLabelSelector;
|
|
@@ -51661,6 +52147,77 @@ declare namespace gapi.client {
|
|
|
51661
52147
|
},
|
|
51662
52148
|
body: CalendarModeAdviceRequest,
|
|
51663
52149
|
): Request<CalendarModeAdviceResponse>;
|
|
52150
|
+
/**
|
|
52151
|
+
* Advise on whether extending an existing Future Reservation is possible
|
|
52152
|
+
* based on the desired extension end time. If capacity is not available for
|
|
52153
|
+
* the entire requested duration, the method will recommend the longest
|
|
52154
|
+
* possible extension.
|
|
52155
|
+
*/
|
|
52156
|
+
calendarModeExtension(request: {
|
|
52157
|
+
/** V1 error format. */
|
|
52158
|
+
'$.xgafv'?: '1' | '2';
|
|
52159
|
+
/** OAuth access token. */
|
|
52160
|
+
access_token?: string;
|
|
52161
|
+
/** Data format for response. */
|
|
52162
|
+
alt?: 'json' | 'media' | 'proto';
|
|
52163
|
+
/** JSONP */
|
|
52164
|
+
callback?: string;
|
|
52165
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
52166
|
+
fields?: string;
|
|
52167
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
52168
|
+
key?: string;
|
|
52169
|
+
/** OAuth 2.0 token for the current user. */
|
|
52170
|
+
oauth_token?: string;
|
|
52171
|
+
/** Returns response with indentations and line breaks. */
|
|
52172
|
+
prettyPrint?: boolean;
|
|
52173
|
+
/** Project ID for this request. */
|
|
52174
|
+
project: string;
|
|
52175
|
+
/** 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. */
|
|
52176
|
+
quotaUser?: string;
|
|
52177
|
+
/** Name of the region for this request. */
|
|
52178
|
+
region: string;
|
|
52179
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
52180
|
+
upload_protocol?: string;
|
|
52181
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
52182
|
+
uploadType?: string;
|
|
52183
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
52184
|
+
userIp?: string;
|
|
52185
|
+
/** Request body */
|
|
52186
|
+
resource: CalendarModeExtensionAdviceRequest;
|
|
52187
|
+
}): Request<CalendarModeExtensionAdviceResponse>;
|
|
52188
|
+
calendarModeExtension(
|
|
52189
|
+
request: {
|
|
52190
|
+
/** V1 error format. */
|
|
52191
|
+
'$.xgafv'?: '1' | '2';
|
|
52192
|
+
/** OAuth access token. */
|
|
52193
|
+
access_token?: string;
|
|
52194
|
+
/** Data format for response. */
|
|
52195
|
+
alt?: 'json' | 'media' | 'proto';
|
|
52196
|
+
/** JSONP */
|
|
52197
|
+
callback?: string;
|
|
52198
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
52199
|
+
fields?: string;
|
|
52200
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
52201
|
+
key?: string;
|
|
52202
|
+
/** OAuth 2.0 token for the current user. */
|
|
52203
|
+
oauth_token?: string;
|
|
52204
|
+
/** Returns response with indentations and line breaks. */
|
|
52205
|
+
prettyPrint?: boolean;
|
|
52206
|
+
/** Project ID for this request. */
|
|
52207
|
+
project: string;
|
|
52208
|
+
/** 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. */
|
|
52209
|
+
quotaUser?: string;
|
|
52210
|
+
/** Name of the region for this request. */
|
|
52211
|
+
region: string;
|
|
52212
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
52213
|
+
upload_protocol?: string;
|
|
52214
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
52215
|
+
uploadType?: string;
|
|
52216
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
52217
|
+
userIp?: string;
|
|
52218
|
+
},
|
|
52219
|
+
body: CalendarModeExtensionAdviceRequest,
|
|
52220
|
+
): Request<CalendarModeExtensionAdviceResponse>;
|
|
51664
52221
|
/**
|
|
51665
52222
|
* Advice on making real-time decisions (such as choosing zone or
|
|
51666
52223
|
* machine types) during deployment to maximize your chances of obtaining
|
|
@@ -85220,6 +85777,104 @@ declare namespace gapi.client {
|
|
|
85220
85777
|
},
|
|
85221
85778
|
body: GlobalSetLabelsRequest,
|
|
85222
85779
|
): Request<Operation>;
|
|
85780
|
+
/** Sets name of an interconnect. */
|
|
85781
|
+
setName(request: {
|
|
85782
|
+
/** V1 error format. */
|
|
85783
|
+
'$.xgafv'?: '1' | '2';
|
|
85784
|
+
/** OAuth access token. */
|
|
85785
|
+
access_token?: string;
|
|
85786
|
+
/** Data format for response. */
|
|
85787
|
+
alt?: 'json' | 'media' | 'proto';
|
|
85788
|
+
/** JSONP */
|
|
85789
|
+
callback?: string;
|
|
85790
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
85791
|
+
fields?: string;
|
|
85792
|
+
/** Name of the interconnect to update. */
|
|
85793
|
+
interconnect: string;
|
|
85794
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
85795
|
+
key?: string;
|
|
85796
|
+
/** OAuth 2.0 token for the current user. */
|
|
85797
|
+
oauth_token?: string;
|
|
85798
|
+
/** Returns response with indentations and line breaks. */
|
|
85799
|
+
prettyPrint?: boolean;
|
|
85800
|
+
/** Project ID for this request. */
|
|
85801
|
+
project: string;
|
|
85802
|
+
/** 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. */
|
|
85803
|
+
quotaUser?: string;
|
|
85804
|
+
/**
|
|
85805
|
+
* An optional request ID to identify requests. Specify a unique request ID
|
|
85806
|
+
* so that if you must retry your request, the server will know to ignore
|
|
85807
|
+
* the request if it has already been completed.
|
|
85808
|
+
*
|
|
85809
|
+
* For example, consider a situation where you make an initial request and
|
|
85810
|
+
* the request times out. If you make the request again with the same
|
|
85811
|
+
* request ID, the server can check if original operation with the same
|
|
85812
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
85813
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
85814
|
+
*
|
|
85815
|
+
* The request ID must be
|
|
85816
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
85817
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
85818
|
+
*/
|
|
85819
|
+
requestId?: string;
|
|
85820
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
85821
|
+
upload_protocol?: string;
|
|
85822
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
85823
|
+
uploadType?: string;
|
|
85824
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
85825
|
+
userIp?: string;
|
|
85826
|
+
/** Request body */
|
|
85827
|
+
resource: InterconnectsSetNameRequest;
|
|
85828
|
+
}): Request<Operation>;
|
|
85829
|
+
setName(
|
|
85830
|
+
request: {
|
|
85831
|
+
/** V1 error format. */
|
|
85832
|
+
'$.xgafv'?: '1' | '2';
|
|
85833
|
+
/** OAuth access token. */
|
|
85834
|
+
access_token?: string;
|
|
85835
|
+
/** Data format for response. */
|
|
85836
|
+
alt?: 'json' | 'media' | 'proto';
|
|
85837
|
+
/** JSONP */
|
|
85838
|
+
callback?: string;
|
|
85839
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
85840
|
+
fields?: string;
|
|
85841
|
+
/** Name of the interconnect to update. */
|
|
85842
|
+
interconnect: string;
|
|
85843
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
85844
|
+
key?: string;
|
|
85845
|
+
/** OAuth 2.0 token for the current user. */
|
|
85846
|
+
oauth_token?: string;
|
|
85847
|
+
/** Returns response with indentations and line breaks. */
|
|
85848
|
+
prettyPrint?: boolean;
|
|
85849
|
+
/** Project ID for this request. */
|
|
85850
|
+
project: string;
|
|
85851
|
+
/** 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. */
|
|
85852
|
+
quotaUser?: string;
|
|
85853
|
+
/**
|
|
85854
|
+
* An optional request ID to identify requests. Specify a unique request ID
|
|
85855
|
+
* so that if you must retry your request, the server will know to ignore
|
|
85856
|
+
* the request if it has already been completed.
|
|
85857
|
+
*
|
|
85858
|
+
* For example, consider a situation where you make an initial request and
|
|
85859
|
+
* the request times out. If you make the request again with the same
|
|
85860
|
+
* request ID, the server can check if original operation with the same
|
|
85861
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
85862
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
85863
|
+
*
|
|
85864
|
+
* The request ID must be
|
|
85865
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
85866
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
85867
|
+
*/
|
|
85868
|
+
requestId?: string;
|
|
85869
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
85870
|
+
upload_protocol?: string;
|
|
85871
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
85872
|
+
uploadType?: string;
|
|
85873
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
85874
|
+
userIp?: string;
|
|
85875
|
+
},
|
|
85876
|
+
body: InterconnectsSetNameRequest,
|
|
85877
|
+
): Request<Operation>;
|
|
85223
85878
|
/** Returns permissions that a caller has on the specified resource. */
|
|
85224
85879
|
testIamPermissions(
|
|
85225
85880
|
request: {
|
|
@@ -86738,6 +87393,166 @@ declare namespace gapi.client {
|
|
|
86738
87393
|
zone: string;
|
|
86739
87394
|
}): Request<MachineTypeList>;
|
|
86740
87395
|
}
|
|
87396
|
+
interface ManagedRulesetsResource {
|
|
87397
|
+
/** Gets the details for the specified managed ruleset name. */
|
|
87398
|
+
get(request?: {
|
|
87399
|
+
/** V1 error format. */
|
|
87400
|
+
'$.xgafv'?: '1' | '2';
|
|
87401
|
+
/** OAuth access token. */
|
|
87402
|
+
access_token?: string;
|
|
87403
|
+
/** Data format for response. */
|
|
87404
|
+
alt?: 'json' | 'media' | 'proto';
|
|
87405
|
+
/** JSONP */
|
|
87406
|
+
callback?: string;
|
|
87407
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
87408
|
+
fields?: string;
|
|
87409
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
87410
|
+
key?: string;
|
|
87411
|
+
/** Name of the managed ruleset to return. */
|
|
87412
|
+
managedRuleset: string;
|
|
87413
|
+
/** OAuth 2.0 token for the current user. */
|
|
87414
|
+
oauth_token?: string;
|
|
87415
|
+
/** Returns response with indentations and line breaks. */
|
|
87416
|
+
prettyPrint?: boolean;
|
|
87417
|
+
/** Project ID for this request. */
|
|
87418
|
+
project: string;
|
|
87419
|
+
/** 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. */
|
|
87420
|
+
quotaUser?: string;
|
|
87421
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
87422
|
+
upload_protocol?: string;
|
|
87423
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
87424
|
+
uploadType?: string;
|
|
87425
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
87426
|
+
userIp?: string;
|
|
87427
|
+
}): Request<ManagedRuleset>;
|
|
87428
|
+
/** Retrieves the list of all the managed rulesets available. */
|
|
87429
|
+
list(request?: {
|
|
87430
|
+
/** V1 error format. */
|
|
87431
|
+
'$.xgafv'?: '1' | '2';
|
|
87432
|
+
/** OAuth access token. */
|
|
87433
|
+
access_token?: string;
|
|
87434
|
+
/** Data format for response. */
|
|
87435
|
+
alt?: 'json' | 'media' | 'proto';
|
|
87436
|
+
/** JSONP */
|
|
87437
|
+
callback?: string;
|
|
87438
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
87439
|
+
fields?: string;
|
|
87440
|
+
/**
|
|
87441
|
+
* A filter expression that filters resources listed in the response. Most
|
|
87442
|
+
* Compute resources support two types of filter expressions:
|
|
87443
|
+
* expressions that support regular expressions and expressions that follow
|
|
87444
|
+
* API improvement proposal AIP-160.
|
|
87445
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
87446
|
+
*
|
|
87447
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
87448
|
+
* operator, and the value that you want to use for filtering. The value
|
|
87449
|
+
* must be a string, a number, or a boolean. The operator
|
|
87450
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
87451
|
+
*
|
|
87452
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
87453
|
+
* exclude instances named `example-instance` by specifying
|
|
87454
|
+
* `name != example-instance`.
|
|
87455
|
+
*
|
|
87456
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
87457
|
+
* For example, to find all objects with `owner` label use:
|
|
87458
|
+
* ```
|
|
87459
|
+
* labels.owner:*
|
|
87460
|
+
* ```
|
|
87461
|
+
*
|
|
87462
|
+
* You can also filter nested fields. For example, you could specify
|
|
87463
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
87464
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
87465
|
+
* on nested fields to filter based onresource labels.
|
|
87466
|
+
*
|
|
87467
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
87468
|
+
* parentheses. For example:
|
|
87469
|
+
* ```
|
|
87470
|
+
* (scheduling.automaticRestart = true)
|
|
87471
|
+
* (cpuPlatform = "Intel Skylake")
|
|
87472
|
+
* ```
|
|
87473
|
+
* By default, each expression is an `AND` expression. However, you
|
|
87474
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
87475
|
+
* For example:
|
|
87476
|
+
* ```
|
|
87477
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
87478
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
87479
|
+
* (scheduling.automaticRestart = true)
|
|
87480
|
+
* ```
|
|
87481
|
+
*
|
|
87482
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
87483
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
87484
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
87485
|
+
*
|
|
87486
|
+
* `fieldname eq unquoted literal`
|
|
87487
|
+
* `fieldname eq 'single quoted literal'`
|
|
87488
|
+
* `fieldname eq "double quoted literal"`
|
|
87489
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
87490
|
+
*
|
|
87491
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
87492
|
+
* The literal value must match the entire field.
|
|
87493
|
+
*
|
|
87494
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
87495
|
+
* you would use `name ne .*instance`.
|
|
87496
|
+
*
|
|
87497
|
+
* You cannot combine constraints on multiple fields using regular
|
|
87498
|
+
* expressions.
|
|
87499
|
+
*/
|
|
87500
|
+
filter?: string;
|
|
87501
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
87502
|
+
key?: string;
|
|
87503
|
+
/**
|
|
87504
|
+
* The maximum number of results per page that should be returned.
|
|
87505
|
+
* If the number of available results is larger than `maxResults`,
|
|
87506
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
87507
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
87508
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
87509
|
+
*/
|
|
87510
|
+
maxResults?: number;
|
|
87511
|
+
/** OAuth 2.0 token for the current user. */
|
|
87512
|
+
oauth_token?: string;
|
|
87513
|
+
/**
|
|
87514
|
+
* Sorts list results by a certain order. By default, results
|
|
87515
|
+
* are returned in alphanumerical order based on the resource name.
|
|
87516
|
+
*
|
|
87517
|
+
* You can also sort results in descending order based on the creation
|
|
87518
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
87519
|
+
* results based on the `creationTimestamp` field in
|
|
87520
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
87521
|
+
* resources like operations so that the newest operation is returned first.
|
|
87522
|
+
*
|
|
87523
|
+
* Currently, only sorting by `name` or
|
|
87524
|
+
* `creationTimestamp desc` is supported.
|
|
87525
|
+
*/
|
|
87526
|
+
orderBy?: string;
|
|
87527
|
+
/**
|
|
87528
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
87529
|
+
* `nextPageToken` returned by a previous list request to get
|
|
87530
|
+
* the next page of results.
|
|
87531
|
+
*/
|
|
87532
|
+
pageToken?: string;
|
|
87533
|
+
/** Returns response with indentations and line breaks. */
|
|
87534
|
+
prettyPrint?: boolean;
|
|
87535
|
+
/** Project ID for this request. */
|
|
87536
|
+
project: string;
|
|
87537
|
+
/** 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. */
|
|
87538
|
+
quotaUser?: string;
|
|
87539
|
+
/**
|
|
87540
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
87541
|
+
* of failure. The default value is false.
|
|
87542
|
+
*
|
|
87543
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
87544
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
87545
|
+
* with an error code.
|
|
87546
|
+
*/
|
|
87547
|
+
returnPartialSuccess?: boolean;
|
|
87548
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
87549
|
+
upload_protocol?: string;
|
|
87550
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
87551
|
+
uploadType?: string;
|
|
87552
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
87553
|
+
userIp?: string;
|
|
87554
|
+
}): Request<ManagedRulesetList>;
|
|
87555
|
+
}
|
|
86741
87556
|
interface NetworkAttachmentsResource {
|
|
86742
87557
|
/**
|
|
86743
87558
|
* Retrieves the list of all NetworkAttachment resources,
|
|
@@ -100177,6 +100992,12 @@ declare namespace gapi.client {
|
|
|
100177
100992
|
/**
|
|
100178
100993
|
* Returns the specified global ProjectViews resource, with a regional
|
|
100179
100994
|
* context.
|
|
100995
|
+
* This regional API endpoint reads resource metadata from regional
|
|
100996
|
+
* read-only replicas. Because changes are copied to these regional replicas
|
|
100997
|
+
* asynchronously, for real-time resource reads or any write operations
|
|
100998
|
+
* (creating, updating, or deleting resources), use the global
|
|
100999
|
+
* [projects.get](https://cloud.google.com/compute/docs/reference/rest/v1/projects/get)
|
|
101000
|
+
* endpoint.
|
|
100180
101001
|
*/
|
|
100181
101002
|
get(request?: {
|
|
100182
101003
|
/** V1 error format. */
|
|
@@ -125272,6 +126093,139 @@ declare namespace gapi.client {
|
|
|
125272
126093
|
body: ReservationsBlocksPerformMaintenanceRequest,
|
|
125273
126094
|
): Request<Operation>;
|
|
125274
126095
|
}
|
|
126096
|
+
interface ReservationConsumedInstancesResource {
|
|
126097
|
+
/** Lists the instances consuming capacity from a specific reservation. */
|
|
126098
|
+
list(request?: {
|
|
126099
|
+
/** V1 error format. */
|
|
126100
|
+
'$.xgafv'?: '1' | '2';
|
|
126101
|
+
/** OAuth access token. */
|
|
126102
|
+
access_token?: string;
|
|
126103
|
+
/** Data format for response. */
|
|
126104
|
+
alt?: 'json' | 'media' | 'proto';
|
|
126105
|
+
/** JSONP */
|
|
126106
|
+
callback?: string;
|
|
126107
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
126108
|
+
fields?: string;
|
|
126109
|
+
/**
|
|
126110
|
+
* A filter expression that filters resources listed in the response. Most
|
|
126111
|
+
* Compute resources support two types of filter expressions:
|
|
126112
|
+
* expressions that support regular expressions and expressions that follow
|
|
126113
|
+
* API improvement proposal AIP-160.
|
|
126114
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
126115
|
+
*
|
|
126116
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
126117
|
+
* operator, and the value that you want to use for filtering. The value
|
|
126118
|
+
* must be a string, a number, or a boolean. The operator
|
|
126119
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
126120
|
+
*
|
|
126121
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
126122
|
+
* exclude instances named `example-instance` by specifying
|
|
126123
|
+
* `name != example-instance`.
|
|
126124
|
+
*
|
|
126125
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
126126
|
+
* For example, to find all objects with `owner` label use:
|
|
126127
|
+
* ```
|
|
126128
|
+
* labels.owner:*
|
|
126129
|
+
* ```
|
|
126130
|
+
*
|
|
126131
|
+
* You can also filter nested fields. For example, you could specify
|
|
126132
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
126133
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
126134
|
+
* on nested fields to filter based onresource labels.
|
|
126135
|
+
*
|
|
126136
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
126137
|
+
* parentheses. For example:
|
|
126138
|
+
* ```
|
|
126139
|
+
* (scheduling.automaticRestart = true)
|
|
126140
|
+
* (cpuPlatform = "Intel Skylake")
|
|
126141
|
+
* ```
|
|
126142
|
+
* By default, each expression is an `AND` expression. However, you
|
|
126143
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
126144
|
+
* For example:
|
|
126145
|
+
* ```
|
|
126146
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
126147
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
126148
|
+
* (scheduling.automaticRestart = true)
|
|
126149
|
+
* ```
|
|
126150
|
+
*
|
|
126151
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
126152
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
126153
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
126154
|
+
*
|
|
126155
|
+
* `fieldname eq unquoted literal`
|
|
126156
|
+
* `fieldname eq 'single quoted literal'`
|
|
126157
|
+
* `fieldname eq "double quoted literal"`
|
|
126158
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
126159
|
+
*
|
|
126160
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
126161
|
+
* The literal value must match the entire field.
|
|
126162
|
+
*
|
|
126163
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
126164
|
+
* you would use `name ne .*instance`.
|
|
126165
|
+
*
|
|
126166
|
+
* You cannot combine constraints on multiple fields using regular
|
|
126167
|
+
* expressions.
|
|
126168
|
+
*/
|
|
126169
|
+
filter?: string;
|
|
126170
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
126171
|
+
key?: string;
|
|
126172
|
+
/**
|
|
126173
|
+
* The maximum number of results per page that should be returned.
|
|
126174
|
+
* If the number of available results is larger than `maxResults`,
|
|
126175
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
126176
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
126177
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
126178
|
+
*/
|
|
126179
|
+
maxResults?: number;
|
|
126180
|
+
/** OAuth 2.0 token for the current user. */
|
|
126181
|
+
oauth_token?: string;
|
|
126182
|
+
/**
|
|
126183
|
+
* Sorts list results by a certain order. By default, results
|
|
126184
|
+
* are returned in alphanumerical order based on the resource name.
|
|
126185
|
+
*
|
|
126186
|
+
* You can also sort results in descending order based on the creation
|
|
126187
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
126188
|
+
* results based on the `creationTimestamp` field in
|
|
126189
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
126190
|
+
* resources like operations so that the newest operation is returned first.
|
|
126191
|
+
*
|
|
126192
|
+
* Currently, only sorting by `name` or
|
|
126193
|
+
* `creationTimestamp desc` is supported.
|
|
126194
|
+
*/
|
|
126195
|
+
orderBy?: string;
|
|
126196
|
+
/**
|
|
126197
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
126198
|
+
* `nextPageToken` returned by a previous list request to get
|
|
126199
|
+
* the next page of results.
|
|
126200
|
+
*/
|
|
126201
|
+
pageToken?: string;
|
|
126202
|
+
/** Returns response with indentations and line breaks. */
|
|
126203
|
+
prettyPrint?: boolean;
|
|
126204
|
+
/** Required. Project ID for this request. */
|
|
126205
|
+
project: string;
|
|
126206
|
+
/** 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. */
|
|
126207
|
+
quotaUser?: string;
|
|
126208
|
+
/** Required. The name of the reservation to list consumed instances for. */
|
|
126209
|
+
reservation: string;
|
|
126210
|
+
/**
|
|
126211
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
126212
|
+
* of failure. The default value is false.
|
|
126213
|
+
*
|
|
126214
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
126215
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
126216
|
+
* with an error code.
|
|
126217
|
+
*/
|
|
126218
|
+
returnPartialSuccess?: boolean;
|
|
126219
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
126220
|
+
upload_protocol?: string;
|
|
126221
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
126222
|
+
uploadType?: string;
|
|
126223
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
126224
|
+
userIp?: string;
|
|
126225
|
+
/** Required. Zone name for this request. */
|
|
126226
|
+
zone: string;
|
|
126227
|
+
}): Request<ReservationConsumedInstancesListResponse>;
|
|
126228
|
+
}
|
|
125275
126229
|
interface ReservationsResource {
|
|
125276
126230
|
/**
|
|
125277
126231
|
* Retrieves an aggregated list of reservations.
|
|
@@ -148009,6 +148963,8 @@ declare namespace gapi.client {
|
|
|
148009
148963
|
|
|
148010
148964
|
const machineTypes: MachineTypesResource;
|
|
148011
148965
|
|
|
148966
|
+
const managedRulesets: ManagedRulesetsResource;
|
|
148967
|
+
|
|
148012
148968
|
const networkAttachments: NetworkAttachmentsResource;
|
|
148013
148969
|
|
|
148014
148970
|
const networkEdgeSecurityServices: NetworkEdgeSecurityServicesResource;
|
|
@@ -148135,6 +149091,8 @@ declare namespace gapi.client {
|
|
|
148135
149091
|
|
|
148136
149092
|
const reservationBlocks: ReservationBlocksResource;
|
|
148137
149093
|
|
|
149094
|
+
const reservationConsumedInstances: ReservationConsumedInstancesResource;
|
|
149095
|
+
|
|
148138
149096
|
const reservationSlots: ReservationSlotsResource;
|
|
148139
149097
|
|
|
148140
149098
|
const reservationSubBlocks: ReservationSubBlocksResource;
|