@maxim_mazurok/gapi.client.compute-alpha 0.1.20260625 → 0.2.20260629
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 +1504 -490
- package/package.json +1 -1
- package/readme.md +67 -3
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: 20260629
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -37,6 +37,116 @@ declare namespace gapi.client {
|
|
|
37
37
|
*/
|
|
38
38
|
acceleratorType?: string;
|
|
39
39
|
}
|
|
40
|
+
interface AcceleratorPodController {
|
|
41
|
+
/** Output only. [Output Only] Creation timestamp inRFC3339 text format. */
|
|
42
|
+
creationTimestamp?: string;
|
|
43
|
+
/** An optional description of this resource. */
|
|
44
|
+
description?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Output only. [Output Only] The unique identifier for the resource. This identifier is
|
|
47
|
+
* defined by the server.
|
|
48
|
+
*/
|
|
49
|
+
id?: string;
|
|
50
|
+
kind?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Map of management interfaces. Keys must be valid RFC1035 names and at most
|
|
53
|
+
* 63 characters long.
|
|
54
|
+
*/
|
|
55
|
+
managementInterfaces?: {[P in string]: ManagementInterface};
|
|
56
|
+
/**
|
|
57
|
+
* Required. The name of the resource, provided by the client when initially creating
|
|
58
|
+
* the resource. The resource name must be 1-63 characters long, and comply
|
|
59
|
+
* withRFC1035.
|
|
60
|
+
* Specifically, the name must match the regular expression
|
|
61
|
+
* `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a
|
|
62
|
+
* lowercase letter, and all following characters must be a dash, lowercase
|
|
63
|
+
* letter, or digit, except the last character, which cannot be a dash.
|
|
64
|
+
*/
|
|
65
|
+
name?: string;
|
|
66
|
+
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
67
|
+
selfLink?: string;
|
|
68
|
+
/** Output only. [Output Only] Server-defined URL for the resource with the resource ID. */
|
|
69
|
+
selfLinkWithId?: string;
|
|
70
|
+
/**
|
|
71
|
+
* Required. The target accelerator domain this controller manages.
|
|
72
|
+
* This must be a resolvable identifier for the specific NVLink Domain or
|
|
73
|
+
* TPU system (e.g., a Reservation Sub-block URI).
|
|
74
|
+
* Example:
|
|
75
|
+
* "projects/my-project/reservations/my-reservation/subBlocks/subblock-1".
|
|
76
|
+
*/
|
|
77
|
+
target?: string;
|
|
78
|
+
/** Output only. [Output Only] URL of the zone where the accelerator pod controller resides. */
|
|
79
|
+
zone?: string;
|
|
80
|
+
}
|
|
81
|
+
interface AcceleratorPodControllersListResponse {
|
|
82
|
+
items?: AcceleratorPodController[];
|
|
83
|
+
kind?: string;
|
|
84
|
+
nextPageToken?: string;
|
|
85
|
+
selfLink?: string;
|
|
86
|
+
warning?: {
|
|
87
|
+
/**
|
|
88
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
89
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
90
|
+
* are no results in the response.
|
|
91
|
+
*/
|
|
92
|
+
code?:
|
|
93
|
+
| 'CLEANUP_FAILED'
|
|
94
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
95
|
+
| 'DEPRECATED_TYPE_USED'
|
|
96
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
97
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
98
|
+
| 'EXTERNAL_API_WARNING'
|
|
99
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
100
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
101
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
102
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
103
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
104
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
105
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
106
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
107
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
108
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
109
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
110
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
111
|
+
| 'NOT_CRITICAL_ERROR'
|
|
112
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
113
|
+
| 'PARTIAL_SUCCESS'
|
|
114
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
115
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
116
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
117
|
+
| 'RESOURCE_NOT_DELETED'
|
|
118
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
119
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
120
|
+
| 'UNDECLARED_PROPERTIES'
|
|
121
|
+
| 'UNREACHABLE';
|
|
122
|
+
/**
|
|
123
|
+
* [Output Only] Metadata about this warning in key:
|
|
124
|
+
* value format. For example:
|
|
125
|
+
*
|
|
126
|
+
* "data": [
|
|
127
|
+
* {
|
|
128
|
+
* "key": "scope",
|
|
129
|
+
* "value": "zones/us-east1-d"
|
|
130
|
+
* }
|
|
131
|
+
*/
|
|
132
|
+
data?: {
|
|
133
|
+
/**
|
|
134
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
135
|
+
* returned. For example, for warnings where there are no results in a list
|
|
136
|
+
* request for a particular zone, this key might be scope and
|
|
137
|
+
* the key value might be the zone name. Other examples might be a key
|
|
138
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
139
|
+
* warning about invalid network settings (for example, if an instance
|
|
140
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
141
|
+
*/
|
|
142
|
+
key?: string;
|
|
143
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
144
|
+
value?: string;
|
|
145
|
+
}[];
|
|
146
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
147
|
+
message?: string;
|
|
148
|
+
};
|
|
149
|
+
}
|
|
40
150
|
interface AcceleratorTopologiesInfo {
|
|
41
151
|
/** Info for each accelerator topology. */
|
|
42
152
|
acceleratorTopologyInfos?: AcceleratorTopologiesInfoAcceleratorTopologyInfo[];
|
|
@@ -416,10 +526,7 @@ declare namespace gapi.client {
|
|
|
416
526
|
address?: string;
|
|
417
527
|
/** The type of address to reserve, either INTERNAL orEXTERNAL. If unspecified, defaults to EXTERNAL. */
|
|
418
528
|
addressType?:
|
|
419
|
-
| '
|
|
420
|
-
| 'EXTERNAL'
|
|
421
|
-
| 'INTERNAL'
|
|
422
|
-
| 'UNSPECIFIED_TYPE';
|
|
529
|
+
'DNS_FORWARDING' | 'EXTERNAL' | 'INTERNAL' | 'UNSPECIFIED_TYPE';
|
|
423
530
|
/**
|
|
424
531
|
* Output only. [Output Only] Creation timestamp inRFC3339
|
|
425
532
|
* text format.
|
|
@@ -436,21 +543,34 @@ declare namespace gapi.client {
|
|
|
436
543
|
*/
|
|
437
544
|
id?: string;
|
|
438
545
|
/**
|
|
439
|
-
* Reference to the source of
|
|
440
|
-
* like a PublicDelegatedPrefix (PDP) for BYOIP.
|
|
441
|
-
* The PDP must support enhanced IPv4 allocations.
|
|
546
|
+
* Reference to the source of IP addresses.
|
|
442
547
|
*
|
|
443
|
-
*
|
|
444
|
-
* external IPv4 address using BYOIP.
|
|
548
|
+
* It supports the following cases:
|
|
445
549
|
*
|
|
446
550
|
* -
|
|
447
|
-
*
|
|
551
|
+
* Case 1: PublicDelegatedPrefix (PDP) for BYOIP external IPv4
|
|
552
|
+
* addresses. The PDP must support enhanced IPv4 allocations.
|
|
448
553
|
* -
|
|
449
|
-
*
|
|
554
|
+
* Case 2: Internal Range for global internal addresses.
|
|
555
|
+
*
|
|
556
|
+
*
|
|
557
|
+
*
|
|
558
|
+
* Use one of the following formats to specify the resource:
|
|
450
559
|
*
|
|
560
|
+
* For a Public Delegated Prefix:
|
|
451
561
|
*
|
|
562
|
+
* -
|
|
563
|
+
* Full resource URL:https://www.googleapis.com/compute/v1/projects/projectId/regions/region/publicDelegatedPrefixes/pdp
|
|
564
|
+
* - Partial URL:
|
|
452
565
|
* - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
|
|
453
566
|
* - regions/region/publicDelegatedPrefixes/pdp-name
|
|
567
|
+
*
|
|
568
|
+
*
|
|
569
|
+
*
|
|
570
|
+
* For an Internal Range:
|
|
571
|
+
*
|
|
572
|
+
* - Full URL:https://networkconnectivity.googleapis.com/v1/projects/project/locations/global/internalRanges/internal-range
|
|
573
|
+
* - Partial URL:projects/project/locations/global/internalRanges/internal-range
|
|
454
574
|
*/
|
|
455
575
|
ipCollection?: string;
|
|
456
576
|
/**
|
|
@@ -866,6 +986,19 @@ declare namespace gapi.client {
|
|
|
866
986
|
visibleCoreCount?: number;
|
|
867
987
|
}
|
|
868
988
|
interface AliasIpRange {
|
|
989
|
+
/**
|
|
990
|
+
* Identifies the candidate subnetwork range names for the alias
|
|
991
|
+
* IPs to be allocated from. When it is set, the IP would be allocated from
|
|
992
|
+
* any subnetwork range defined here if the IPs are available.
|
|
993
|
+
* Only one of subnetwork_range_name or candidate_subnetwork_range_names
|
|
994
|
+
* should be set.
|
|
995
|
+
*/
|
|
996
|
+
candidateSubnetworkRangeNames?: string[];
|
|
997
|
+
/**
|
|
998
|
+
* Output only. [Output Only] The subnetwork range name where the IP is allocated.
|
|
999
|
+
* It will be set to the subnetwork range where the IP is allocated only.
|
|
1000
|
+
*/
|
|
1001
|
+
effectiveSubnetworkRangeName?: string;
|
|
869
1002
|
/**
|
|
870
1003
|
* The IP alias ranges to allocate for this interface. This IP CIDR range
|
|
871
1004
|
* must belong to the specified subnetwork and cannot contain IP addresses
|
|
@@ -930,9 +1063,7 @@ declare namespace gapi.client {
|
|
|
930
1063
|
interface AllocationReservationSharingPolicy {
|
|
931
1064
|
/** Sharing config for all Google Cloud services. */
|
|
932
1065
|
serviceShareType?:
|
|
933
|
-
| '
|
|
934
|
-
| 'DISALLOW_ALL'
|
|
935
|
-
| 'SERVICE_SHARE_TYPE_UNSPECIFIED';
|
|
1066
|
+
'ALLOW_ALL' | 'DISALLOW_ALL' | 'SERVICE_SHARE_TYPE_UNSPECIFIED';
|
|
936
1067
|
}
|
|
937
1068
|
interface AllocationResourceStatus {
|
|
938
1069
|
/** Properties of this aggregatereservation. */
|
|
@@ -1391,10 +1522,15 @@ declare namespace gapi.client {
|
|
|
1391
1522
|
exemptedMembers?: string[];
|
|
1392
1523
|
/** The log type that this config enables. */
|
|
1393
1524
|
logType?:
|
|
1394
|
-
| '
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1525
|
+
'ADMIN_READ' | 'DATA_READ' | 'DATA_WRITE' | 'LOG_TYPE_UNSPECIFIED';
|
|
1526
|
+
}
|
|
1527
|
+
interface AuthenticationConfig {
|
|
1528
|
+
/**
|
|
1529
|
+
* Required. Resource name of the Cloud Certificate Manager TrustConfig used to validate
|
|
1530
|
+
* client certificates for mTLS.
|
|
1531
|
+
* Format: projects/{project}/locations/{location}/trustConfigs/{trust_config}
|
|
1532
|
+
*/
|
|
1533
|
+
trustConfig?: string;
|
|
1398
1534
|
}
|
|
1399
1535
|
interface AuthenticationPolicy {
|
|
1400
1536
|
/**
|
|
@@ -2165,11 +2301,7 @@ declare namespace gapi.client {
|
|
|
2165
2301
|
* will be rejected.
|
|
2166
2302
|
*/
|
|
2167
2303
|
balancingMode?:
|
|
2168
|
-
| '
|
|
2169
|
-
| 'CUSTOM_METRICS'
|
|
2170
|
-
| 'IN_FLIGHT'
|
|
2171
|
-
| 'RATE'
|
|
2172
|
-
| 'UTILIZATION';
|
|
2304
|
+
'CONNECTION' | 'CUSTOM_METRICS' | 'IN_FLIGHT' | 'RATE' | 'UTILIZATION';
|
|
2173
2305
|
/**
|
|
2174
2306
|
* A multiplier applied to the backend's target capacity of its balancing
|
|
2175
2307
|
* mode.
|
|
@@ -3045,9 +3177,7 @@ declare namespace gapi.client {
|
|
|
3045
3177
|
* EXTERNAL or PREPARE can be used to migrate all traffic back to EXTERNAL.
|
|
3046
3178
|
*/
|
|
3047
3179
|
externalManagedMigrationState?:
|
|
3048
|
-
| '
|
|
3049
|
-
| 'TEST_ALL_TRAFFIC'
|
|
3050
|
-
| 'TEST_BY_PERCENTAGE';
|
|
3180
|
+
'PREPARE' | 'TEST_ALL_TRAFFIC' | 'TEST_BY_PERCENTAGE';
|
|
3051
3181
|
/**
|
|
3052
3182
|
* Determines the fraction of requests that should be processed by the Global
|
|
3053
3183
|
* external Application Load Balancer.
|
|
@@ -3781,9 +3911,7 @@ declare namespace gapi.client {
|
|
|
3781
3911
|
* Balancing](https://cloud.google.com/load-balancing/docs/internal#connection-persistence).
|
|
3782
3912
|
*/
|
|
3783
3913
|
connectionPersistenceOnUnhealthyBackends?:
|
|
3784
|
-
| '
|
|
3785
|
-
| 'DEFAULT_FOR_PROTOCOL'
|
|
3786
|
-
| 'NEVER_PERSIST';
|
|
3914
|
+
'ALWAYS_PERSIST' | 'DEFAULT_FOR_PROTOCOL' | 'NEVER_PERSIST';
|
|
3787
3915
|
/**
|
|
3788
3916
|
* Enable Strong Session Affinity for external passthrough Network Load
|
|
3789
3917
|
* Balancers. This option is not available publicly.
|
|
@@ -5354,10 +5482,7 @@ declare namespace gapi.client {
|
|
|
5354
5482
|
interface CapacityAdviceRequestDistributionPolicy {
|
|
5355
5483
|
/** Target distribution shape. You can specify the following values:ANY, ANY_SINGLE_ZONE, or BALANCED. */
|
|
5356
5484
|
targetShape?:
|
|
5357
|
-
| '
|
|
5358
|
-
| 'ANY_SINGLE_ZONE'
|
|
5359
|
-
| 'BALANCED'
|
|
5360
|
-
| 'TARGET_SHAPE_UNSPECIFIED';
|
|
5485
|
+
'ANY' | 'ANY_SINGLE_ZONE' | 'BALANCED' | 'TARGET_SHAPE_UNSPECIFIED';
|
|
5361
5486
|
/** Zones where Capacity Advisor looks for capacity. */
|
|
5362
5487
|
zones?: CapacityAdviceRequestDistributionPolicyZoneConfiguration[];
|
|
5363
5488
|
}
|
|
@@ -5380,7 +5505,9 @@ declare namespace gapi.client {
|
|
|
5380
5505
|
* instance selection.
|
|
5381
5506
|
*/
|
|
5382
5507
|
instanceSelections?: {
|
|
5383
|
-
[
|
|
5508
|
+
[
|
|
5509
|
+
P in string
|
|
5510
|
+
]: CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelection;
|
|
5384
5511
|
};
|
|
5385
5512
|
}
|
|
5386
5513
|
interface CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelection {
|
|
@@ -5416,10 +5543,7 @@ declare namespace gapi.client {
|
|
|
5416
5543
|
maxRunDuration?: string;
|
|
5417
5544
|
/** Specifies the provisioning model. */
|
|
5418
5545
|
provisioningModel?:
|
|
5419
|
-
| '
|
|
5420
|
-
| 'RESERVATION_BOUND'
|
|
5421
|
-
| 'SPOT'
|
|
5422
|
-
| 'STANDARD';
|
|
5546
|
+
'FLEX_START' | 'RESERVATION_BOUND' | 'SPOT' | 'STANDARD';
|
|
5423
5547
|
}
|
|
5424
5548
|
interface CapacityAdviceResponse {
|
|
5425
5549
|
/**
|
|
@@ -5468,10 +5592,7 @@ declare namespace gapi.client {
|
|
|
5468
5592
|
machineType?: string;
|
|
5469
5593
|
/** The provisioning model that you want to view recommendations for. */
|
|
5470
5594
|
provisioningModel?:
|
|
5471
|
-
| '
|
|
5472
|
-
| 'RESERVATION_BOUND'
|
|
5473
|
-
| 'SPOT'
|
|
5474
|
-
| 'STANDARD';
|
|
5595
|
+
'FLEX_START' | 'RESERVATION_BOUND' | 'SPOT' | 'STANDARD';
|
|
5475
5596
|
/** Output only. The zone name for this shard. */
|
|
5476
5597
|
zone?: string;
|
|
5477
5598
|
}
|
|
@@ -5498,10 +5619,7 @@ declare namespace gapi.client {
|
|
|
5498
5619
|
* Compute Engine instances provisioning models.
|
|
5499
5620
|
*/
|
|
5500
5621
|
provisioningModel?:
|
|
5501
|
-
| '
|
|
5502
|
-
| 'RESERVATION_BOUND'
|
|
5503
|
-
| 'SPOT'
|
|
5504
|
-
| 'STANDARD';
|
|
5622
|
+
'FLEX_START' | 'RESERVATION_BOUND' | 'SPOT' | 'STANDARD';
|
|
5505
5623
|
}
|
|
5506
5624
|
interface CapacityHistoryRequestLocationPolicy {
|
|
5507
5625
|
/**
|
|
@@ -5522,17 +5640,33 @@ declare namespace gapi.client {
|
|
|
5522
5640
|
location?: string;
|
|
5523
5641
|
}
|
|
5524
5642
|
interface CapacityHistoryResponse {
|
|
5643
|
+
/**
|
|
5644
|
+
* Output only. The location (region or zone) for which the capacity history is returned.
|
|
5645
|
+
* It is returned as a URL - For example,https://www.googleapis.com/compute/v1/projects/project/zones/zone.
|
|
5646
|
+
*/
|
|
5525
5647
|
location?: string;
|
|
5648
|
+
/** The machine type for which the capacity history is returned. */
|
|
5526
5649
|
machineType?: string;
|
|
5650
|
+
/** The preemption history for the requested machine type and location. */
|
|
5527
5651
|
preemptionHistory?: CapacityHistoryResponsePreemptionRecord[];
|
|
5652
|
+
/** The price history for the requested machine type and location. */
|
|
5528
5653
|
priceHistory?: CapacityHistoryResponsePriceRecord[];
|
|
5529
5654
|
}
|
|
5530
5655
|
interface CapacityHistoryResponsePreemptionRecord {
|
|
5656
|
+
/** The time interval for this preemption record. */
|
|
5531
5657
|
interval?: Interval;
|
|
5658
|
+
/**
|
|
5659
|
+
* The preemption rate during the interval, representing the fraction of
|
|
5660
|
+
* Spot VMs that were preempted. Range: 0.0 to 1.0. Preemption rate is
|
|
5661
|
+
* calculated as (total preempted Spots) / (total Spots that stopped
|
|
5662
|
+
* running).
|
|
5663
|
+
*/
|
|
5532
5664
|
preemptionRate?: number;
|
|
5533
5665
|
}
|
|
5534
5666
|
interface CapacityHistoryResponsePriceRecord {
|
|
5667
|
+
/** The time interval for this price record. */
|
|
5535
5668
|
interval?: Interval;
|
|
5669
|
+
/** The Spot VM list price during the interval. */
|
|
5536
5670
|
listPrice?: Money;
|
|
5537
5671
|
}
|
|
5538
5672
|
interface ChannelCredentials {
|
|
@@ -5642,10 +5776,7 @@ declare namespace gapi.client {
|
|
|
5642
5776
|
* hardware resource that you are committing to.
|
|
5643
5777
|
*/
|
|
5644
5778
|
category?:
|
|
5645
|
-
| '
|
|
5646
|
-
| 'LICENSE'
|
|
5647
|
-
| 'MACHINE'
|
|
5648
|
-
| 'PERSISTENT_DISK';
|
|
5779
|
+
'CATEGORY_UNSPECIFIED' | 'LICENSE' | 'MACHINE' | 'PERSISTENT_DISK';
|
|
5649
5780
|
/**
|
|
5650
5781
|
* Output only. [Output Only] Creation timestamp inRFC3339
|
|
5651
5782
|
* text format.
|
|
@@ -6454,13 +6585,9 @@ declare namespace gapi.client {
|
|
|
6454
6585
|
}
|
|
6455
6586
|
interface ConfidentialParavisorConfig {
|
|
6456
6587
|
confidentialTpmType?:
|
|
6457
|
-
| '
|
|
6458
|
-
| 'EPHEMERAL'
|
|
6459
|
-
| 'NO_CC_TPM';
|
|
6588
|
+
'CONFIDENTIAL_TPM_TYPE_UNSPECIFIED' | 'EPHEMERAL' | 'NO_CC_TPM';
|
|
6460
6589
|
sevSnpIrqMode?:
|
|
6461
|
-
| '
|
|
6462
|
-
| 'SEV_SNP_IRQ_MODE_UNSPECIFIED'
|
|
6463
|
-
| 'UNRESTRICTED';
|
|
6590
|
+
'RESTRICTED' | 'SEV_SNP_IRQ_MODE_UNSPECIFIED' | 'UNRESTRICTED';
|
|
6464
6591
|
}
|
|
6465
6592
|
interface ConnectionDraining {
|
|
6466
6593
|
/**
|
|
@@ -6938,6 +7065,225 @@ declare namespace gapi.client {
|
|
|
6938
7065
|
*/
|
|
6939
7066
|
stateOverride?: RolloutPolicy;
|
|
6940
7067
|
}
|
|
7068
|
+
interface DhcpOptionsConfig {
|
|
7069
|
+
/** Mapping of user-defined keys to DhcpOptionsConfig to Network associations. */
|
|
7070
|
+
associations?: {[P in string]: DhcpOptionsConfigAssociation};
|
|
7071
|
+
/**
|
|
7072
|
+
* The file path and name of the boot image/file on the TFTP server that the
|
|
7073
|
+
* client VM guest OS should download and execute during network boot. Used
|
|
7074
|
+
* when the standard DHCP header 'file' field is overloaded. Corresponds to
|
|
7075
|
+
* DHCPv4 Option 67.
|
|
7076
|
+
*/
|
|
7077
|
+
bootFileIpv4Name?: string;
|
|
7078
|
+
/**
|
|
7079
|
+
* A list of UTF-8 encoded parameter strings to be passed as arguments to the
|
|
7080
|
+
* bootloader program or OS kernel after downloading the boot file.
|
|
7081
|
+
* Corresponds to DHCPv6 Option 60.
|
|
7082
|
+
*/
|
|
7083
|
+
bootFileIpv6Parameters?: string[];
|
|
7084
|
+
/**
|
|
7085
|
+
* The Uniform Resource Locator (URL) specifying the protocol, server address,
|
|
7086
|
+
* and file path of the boot file that the client VM guest OS should download
|
|
7087
|
+
* and execute for network boot (e.g., 'tftp://[2001:db8::1]/bootx64.efi' or
|
|
7088
|
+
* 'http://[2001:db8::1]/boot.img'). Corresponds to DHCPv6 Option 59.
|
|
7089
|
+
*/
|
|
7090
|
+
bootFileIpv6Url?: string;
|
|
7091
|
+
/**
|
|
7092
|
+
* Output only. [Output Only] Creation timestamp inRFC3339
|
|
7093
|
+
* text format.
|
|
7094
|
+
*/
|
|
7095
|
+
creationTimestamp?: string;
|
|
7096
|
+
/**
|
|
7097
|
+
* An optional description of this resource. Provide this property when you
|
|
7098
|
+
* create the resource.
|
|
7099
|
+
*/
|
|
7100
|
+
description?: string;
|
|
7101
|
+
/**
|
|
7102
|
+
* An ordered list of domain suffixes (search paths) that the client VM guest
|
|
7103
|
+
* OS should append to resolve hostnames that are not fully qualified. Applies
|
|
7104
|
+
* to both DHCPv4 Option 119 and DHCPv6 Option 24.
|
|
7105
|
+
*/
|
|
7106
|
+
dnsSearchPaths?: string[];
|
|
7107
|
+
/**
|
|
7108
|
+
* An ordered list of IPv4 addresses of DNS recursive name servers available
|
|
7109
|
+
* to the client VM guest OS, specified in order of preference. Corresponds to
|
|
7110
|
+
* DHCPv4 Option 6.
|
|
7111
|
+
*/
|
|
7112
|
+
dnsServerIpv4Addresses?: string[];
|
|
7113
|
+
/**
|
|
7114
|
+
* An ordered list of IPv6 addresses of DNS recursive name servers available
|
|
7115
|
+
* to the client VM guest OS, specified in order of preference. Corresponds to
|
|
7116
|
+
* DHCPv6 Option 23.
|
|
7117
|
+
*/
|
|
7118
|
+
dnsServerIpv6Addresses?: string[];
|
|
7119
|
+
/**
|
|
7120
|
+
* The domain name that the client VM guest OS should use when resolving
|
|
7121
|
+
* hostnames via DNS (e.g., 'example.com'). It defines the default domain
|
|
7122
|
+
* suffix for the client. Corresponds to DHCPv4 Option 15.
|
|
7123
|
+
*/
|
|
7124
|
+
domainName?: string;
|
|
7125
|
+
/**
|
|
7126
|
+
* Output only. [Output Only] The unique identifier for the resource type. The server
|
|
7127
|
+
* generates this identifier.
|
|
7128
|
+
*/
|
|
7129
|
+
id?: string;
|
|
7130
|
+
/** Output only. [Output Only] Type of the resource. Alwayscompute#dhcpOptionsConfig for dhcp options configs. */
|
|
7131
|
+
kind?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
* The duration, in seconds, of the IPv4 address lease offered by the DHCP
|
|
7134
|
+
* server to the client VM guest OS. Corresponds to DHCPv4 Option 51.
|
|
7135
|
+
*/
|
|
7136
|
+
leaseTimeSec?: string;
|
|
7137
|
+
/**
|
|
7138
|
+
* Name of the resource. Provided by the client when the resource is created.
|
|
7139
|
+
* The name must be 1-63 characters long, and comply withRFC1035.
|
|
7140
|
+
* Specifically, the name must be 1-63 characters long and match the regular
|
|
7141
|
+
* expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
7142
|
+
* character must be a lowercase letter, and all following characters must
|
|
7143
|
+
* be a dash, lowercase letter, or digit, except the last character, which
|
|
7144
|
+
* cannot be a dash.
|
|
7145
|
+
*/
|
|
7146
|
+
name?: string;
|
|
7147
|
+
/**
|
|
7148
|
+
* An ordered list of IPv4 addresses of Network Time Protocol (NTP) servers
|
|
7149
|
+
* available to the client VM guest OS for system clock synchronization,
|
|
7150
|
+
* listed in order of preference. Corresponds to DHCPv4 Option 42.
|
|
7151
|
+
*/
|
|
7152
|
+
ntpServerIpv4Addresses?: string[];
|
|
7153
|
+
/**
|
|
7154
|
+
* An ordered list of IPv6 addresses of Network Time Protocol (NTP) servers
|
|
7155
|
+
* available to the client VM guest OS for system clock synchronization.
|
|
7156
|
+
* Corresponds to DHCPv6 Option 56.
|
|
7157
|
+
*/
|
|
7158
|
+
ntpServerIpv6Addresses?: string[];
|
|
7159
|
+
/** Output only. [Output Only] URL of the region where the resource resides. */
|
|
7160
|
+
region?: string;
|
|
7161
|
+
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
7162
|
+
selfLink?: string;
|
|
7163
|
+
/**
|
|
7164
|
+
* An ordered list of one or more IPv4 addresses of TFTP servers. Provides
|
|
7165
|
+
* server redundancy and failover support, and is generally prioritized by
|
|
7166
|
+
* clients over the single hostname specified in Option 66. Corresponds to
|
|
7167
|
+
* DHCPv4 Option 150.
|
|
7168
|
+
*/
|
|
7169
|
+
tftpServerIpv4Addresses?: string[];
|
|
7170
|
+
/**
|
|
7171
|
+
* The hostname or IP address of the Trivial File Transfer Protocol (TFTP)
|
|
7172
|
+
* server from which the client VM guest OS can download boot files. Typically
|
|
7173
|
+
* used in network booting (PXE) when the standard DHCP header 'sname' field
|
|
7174
|
+
* is overloaded. Corresponds to DHCPv4 Option 66.
|
|
7175
|
+
*/
|
|
7176
|
+
tftpServerIpv4Name?: string;
|
|
7177
|
+
}
|
|
7178
|
+
interface DhcpOptionsConfigAssociation {
|
|
7179
|
+
/**
|
|
7180
|
+
* Required. The target network this DHCP option is attached to.
|
|
7181
|
+
* You can specify this as a full or partial URL. For example, the following
|
|
7182
|
+
* are all valid URLs:
|
|
7183
|
+
*
|
|
7184
|
+
*
|
|
7185
|
+
* - https://www.googleapis.com/compute/v1/projects/project/global/networks/network
|
|
7186
|
+
*
|
|
7187
|
+
* - projects/project/global/networks/network
|
|
7188
|
+
*/
|
|
7189
|
+
network?: string;
|
|
7190
|
+
/** Output only. [Output Only] The server-defined ID of the associated Network. */
|
|
7191
|
+
networkId?: string;
|
|
7192
|
+
/** Output only. [Output Only] State of the association. */
|
|
7193
|
+
state?: 'ACTIVE' | 'ORPHANED' | 'STATE_UNSPECIFIED';
|
|
7194
|
+
}
|
|
7195
|
+
interface DhcpOptionsConfigList {
|
|
7196
|
+
/** Server-defined ETag for optimistic concurrency control. */
|
|
7197
|
+
etag?: string;
|
|
7198
|
+
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
7199
|
+
id?: string;
|
|
7200
|
+
/** A list of DhcpOptionsConfig resources. */
|
|
7201
|
+
items?: DhcpOptionsConfig[];
|
|
7202
|
+
/**
|
|
7203
|
+
* Output only. [Output Only] Type of the resource. Alwayscompute#dhcpOptionsConfigList for a list of dhcp options
|
|
7204
|
+
* configs.
|
|
7205
|
+
*/
|
|
7206
|
+
kind?: string;
|
|
7207
|
+
/**
|
|
7208
|
+
* [Output Only] This token allows you to get the next page of results for
|
|
7209
|
+
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
|
|
7210
|
+
* the query parameter pageToken in the next list request.
|
|
7211
|
+
* Subsequent list requests will have their own nextPageToken to
|
|
7212
|
+
* continue paging through the results.
|
|
7213
|
+
*/
|
|
7214
|
+
nextPageToken?: string;
|
|
7215
|
+
/** [Output Only] Server-defined URL for this resource. */
|
|
7216
|
+
selfLink?: string;
|
|
7217
|
+
/**
|
|
7218
|
+
* Output only. [Output Only] Unreachable resources.
|
|
7219
|
+
* end_interface: MixerListResponseWithEtagBuilder
|
|
7220
|
+
*/
|
|
7221
|
+
unreachables?: string[];
|
|
7222
|
+
/** [Output Only] Informational warning message. */
|
|
7223
|
+
warning?: {
|
|
7224
|
+
/**
|
|
7225
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
7226
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
7227
|
+
* are no results in the response.
|
|
7228
|
+
*/
|
|
7229
|
+
code?:
|
|
7230
|
+
| 'CLEANUP_FAILED'
|
|
7231
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
7232
|
+
| 'DEPRECATED_TYPE_USED'
|
|
7233
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
7234
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
7235
|
+
| 'EXTERNAL_API_WARNING'
|
|
7236
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
7237
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
7238
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
7239
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
7240
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
7241
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
7242
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
7243
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
7244
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
7245
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
7246
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
7247
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
7248
|
+
| 'NOT_CRITICAL_ERROR'
|
|
7249
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
7250
|
+
| 'PARTIAL_SUCCESS'
|
|
7251
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
7252
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
7253
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
7254
|
+
| 'RESOURCE_NOT_DELETED'
|
|
7255
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
7256
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
7257
|
+
| 'UNDECLARED_PROPERTIES'
|
|
7258
|
+
| 'UNREACHABLE';
|
|
7259
|
+
/**
|
|
7260
|
+
* [Output Only] Metadata about this warning in key:
|
|
7261
|
+
* value format. For example:
|
|
7262
|
+
*
|
|
7263
|
+
* "data": [
|
|
7264
|
+
* {
|
|
7265
|
+
* "key": "scope",
|
|
7266
|
+
* "value": "zones/us-east1-d"
|
|
7267
|
+
* }
|
|
7268
|
+
*/
|
|
7269
|
+
data?: {
|
|
7270
|
+
/**
|
|
7271
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
7272
|
+
* returned. For example, for warnings where there are no results in a list
|
|
7273
|
+
* request for a particular zone, this key might be scope and
|
|
7274
|
+
* the key value might be the zone name. Other examples might be a key
|
|
7275
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
7276
|
+
* warning about invalid network settings (for example, if an instance
|
|
7277
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
7278
|
+
*/
|
|
7279
|
+
key?: string;
|
|
7280
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
7281
|
+
value?: string;
|
|
7282
|
+
}[];
|
|
7283
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
7284
|
+
message?: string;
|
|
7285
|
+
};
|
|
7286
|
+
}
|
|
6941
7287
|
interface Disk {
|
|
6942
7288
|
/**
|
|
6943
7289
|
* The access mode of the disk.
|
|
@@ -9108,10 +9454,7 @@ declare namespace gapi.client {
|
|
|
9108
9454
|
* Note: if not specified then VPC_POLICY will be used.
|
|
9109
9455
|
*/
|
|
9110
9456
|
policyType?:
|
|
9111
|
-
| '
|
|
9112
|
-
| 'RDMA_ROCE_POLICY'
|
|
9113
|
-
| 'ULL_POLICY'
|
|
9114
|
-
| 'VPC_POLICY';
|
|
9457
|
+
'RDMA_FALCON_POLICY' | 'RDMA_ROCE_POLICY' | 'ULL_POLICY' | 'VPC_POLICY';
|
|
9115
9458
|
/**
|
|
9116
9459
|
* Output only. [Output Only] URL of the region where the regional firewall policy resides.
|
|
9117
9460
|
* This field is not applicable to global firewall policies.
|
|
@@ -9335,7 +9678,9 @@ declare namespace gapi.client {
|
|
|
9335
9678
|
/**
|
|
9336
9679
|
* The Action to perform when the client connection triggers the rule.
|
|
9337
9680
|
* Valid actions for firewall rules are: "allow", "deny",
|
|
9338
|
-
* "apply_security_profile_group" and "goto_next"
|
|
9681
|
+
* "apply_security_profile_group" and "goto_next" (
|
|
9682
|
+
* "apply_security_profile_group" can be specified only for global
|
|
9683
|
+
* network firewall policies or hierarchical firewall policies).
|
|
9339
9684
|
* Valid actions for packet mirroring rules are: "mirror", "do_not_mirror"
|
|
9340
9685
|
* and "goto_next".
|
|
9341
9686
|
*/
|
|
@@ -9383,11 +9728,12 @@ declare namespace gapi.client {
|
|
|
9383
9728
|
*/
|
|
9384
9729
|
ruleTupleCount?: number;
|
|
9385
9730
|
/**
|
|
9386
|
-
* A fully-qualified URL of a
|
|
9731
|
+
* A fully-qualified URL of a SecurityProfileGroup resource instance.
|
|
9387
9732
|
* Example:
|
|
9388
9733
|
* https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
|
9389
9734
|
* Must be specified if action is one of 'apply_security_profile_group' or
|
|
9390
|
-
* 'mirror'. Cannot be specified for other actions.
|
|
9735
|
+
* 'mirror'. Cannot be specified for other actions. Can be specified only
|
|
9736
|
+
* for global network firewall policies or hierarchical firewall policies.
|
|
9391
9737
|
*/
|
|
9392
9738
|
securityProfileGroup?: string;
|
|
9393
9739
|
/**
|
|
@@ -9828,9 +10174,7 @@ declare namespace gapi.client {
|
|
|
9828
10174
|
* EXTERNAL or PREPARE can be used to migrate all traffic back to EXTERNAL.
|
|
9829
10175
|
*/
|
|
9830
10176
|
externalManagedBackendBucketMigrationState?:
|
|
9831
|
-
| '
|
|
9832
|
-
| 'TEST_ALL_TRAFFIC'
|
|
9833
|
-
| 'TEST_BY_PERCENTAGE';
|
|
10177
|
+
'PREPARE' | 'TEST_ALL_TRAFFIC' | 'TEST_BY_PERCENTAGE';
|
|
9834
10178
|
/**
|
|
9835
10179
|
* Determines the fraction of requests to backend buckets that should be
|
|
9836
10180
|
* processed by the global external Application Load Balancer.
|
|
@@ -9925,14 +10269,7 @@ declare namespace gapi.client {
|
|
|
9925
10269
|
* features](https://cloud.google.com/load-balancing/docs/features#protocols_from_the_load_balancer_to_the_backends).
|
|
9926
10270
|
*/
|
|
9927
10271
|
IPProtocol?:
|
|
9928
|
-
| '
|
|
9929
|
-
| 'ALL'
|
|
9930
|
-
| 'ESP'
|
|
9931
|
-
| 'ICMP'
|
|
9932
|
-
| 'L3_DEFAULT'
|
|
9933
|
-
| 'SCTP'
|
|
9934
|
-
| 'TCP'
|
|
9935
|
-
| 'UDP';
|
|
10272
|
+
'AH' | 'ALL' | 'ESP' | 'ICMP' | 'L3_DEFAULT' | 'SCTP' | 'TCP' | 'UDP';
|
|
9936
10273
|
/**
|
|
9937
10274
|
* The IP Version that will be used by this forwarding rule. Valid options
|
|
9938
10275
|
* are IPV4 or IPV6.
|
|
@@ -10555,9 +10892,7 @@ declare namespace gapi.client {
|
|
|
10555
10892
|
planningStatus?: 'DRAFT' | 'PLANNING_STATUS_UNSPECIFIED' | 'SUBMITTED';
|
|
10556
10893
|
/** Protection tier for the workload. */
|
|
10557
10894
|
protectionTier?:
|
|
10558
|
-
| '
|
|
10559
|
-
| 'PROTECTION_TIER_UNSPECIFIED'
|
|
10560
|
-
| 'STANDARD';
|
|
10895
|
+
'CAPACITY_OPTIMIZED' | 'PROTECTION_TIER_UNSPECIFIED' | 'STANDARD';
|
|
10561
10896
|
/**
|
|
10562
10897
|
* The reservation mode which determines reservation-termination behavior and
|
|
10563
10898
|
* expected pricing.
|
|
@@ -10571,11 +10906,15 @@ declare namespace gapi.client {
|
|
|
10571
10906
|
* reservation_name or a name_prefix.
|
|
10572
10907
|
*/
|
|
10573
10908
|
reservationName?: string;
|
|
10909
|
+
/**
|
|
10910
|
+
* Name of the resource intended to be delivered. Name should conform to
|
|
10911
|
+
* RFC1035. This will be the name of storage pool or Exapool for persistent
|
|
10912
|
+
* disk FRs.
|
|
10913
|
+
*/
|
|
10914
|
+
resourceName?: string;
|
|
10574
10915
|
/** Maintenance information for this reservation */
|
|
10575
10916
|
schedulingType?:
|
|
10576
|
-
| '
|
|
10577
|
-
| 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED'
|
|
10578
|
-
| 'INDEPENDENT';
|
|
10917
|
+
'GROUPED' | 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED' | 'INDEPENDENT';
|
|
10579
10918
|
/** Output only. [Output Only] Server-defined fully-qualified URL for this resource. */
|
|
10580
10919
|
selfLink?: string;
|
|
10581
10920
|
/** Output only. [Output Only] Server-defined URL for this resource with the resource id. */
|
|
@@ -10595,6 +10934,8 @@ declare namespace gapi.client {
|
|
|
10595
10934
|
specificSkuProperties?: FutureReservationSpecificSKUProperties;
|
|
10596
10935
|
/** Output only. [Output only] Status of the Future Reservation */
|
|
10597
10936
|
status?: FutureReservationStatus;
|
|
10937
|
+
/** Storage pool details for the future reservation. */
|
|
10938
|
+
storagePoolProperties?: FutureReservationStoragePoolProperties;
|
|
10598
10939
|
/** Time window for this Future Reservation. */
|
|
10599
10940
|
timeWindow?: FutureReservationTimeWindow;
|
|
10600
10941
|
/** Output only. [Output Only] URL of the Zone where this future reservation resides. */
|
|
@@ -10909,6 +11250,8 @@ declare namespace gapi.client {
|
|
|
10909
11250
|
* start_time.
|
|
10910
11251
|
*/
|
|
10911
11252
|
autoCreatedReservations?: string[];
|
|
11253
|
+
/** Output only. Exapool provisioned capacities for each SKU type. */
|
|
11254
|
+
exapoolProvisionedCapacityGb?: StoragePoolExapoolProvisionedCapacityGb;
|
|
10912
11255
|
/**
|
|
10913
11256
|
* Output only. [Output Only] Represents the existing matching usage for the future
|
|
10914
11257
|
* reservation.
|
|
@@ -10952,6 +11295,8 @@ declare namespace gapi.client {
|
|
|
10952
11295
|
| 'PROCURING'
|
|
10953
11296
|
| 'PROVISIONING';
|
|
10954
11297
|
specificSkuProperties?: FutureReservationStatusSpecificSKUProperties;
|
|
11298
|
+
/** Output only. Storage pool provisioned capacities for each SKU type. */
|
|
11299
|
+
storagePoolProvisionedCapacity?: FutureReservationStoragePoolProvisionedCapacity;
|
|
10955
11300
|
}
|
|
10956
11301
|
interface FutureReservationStatusExistingMatchingUsageInfo {
|
|
10957
11302
|
/**
|
|
@@ -11021,6 +11366,28 @@ declare namespace gapi.client {
|
|
|
11021
11366
|
*/
|
|
11022
11367
|
sourceInstanceTemplateId?: string;
|
|
11023
11368
|
}
|
|
11369
|
+
interface FutureReservationStoragePoolProperties {
|
|
11370
|
+
/** Requested exapool provisioned capacity in GiB. */
|
|
11371
|
+
requestedExapoolProvisionedCapacityGb?: StoragePoolExapoolProvisionedCapacityGb;
|
|
11372
|
+
/** Requested storage pool provisioned capacity. */
|
|
11373
|
+
requestedStoragePoolProvisionedCapacity?: FutureReservationStoragePoolProvisionedCapacity;
|
|
11374
|
+
/** Type of the storage pool. */
|
|
11375
|
+
storagePoolType?: string;
|
|
11376
|
+
}
|
|
11377
|
+
interface FutureReservationStoragePoolProvisionedCapacity {
|
|
11378
|
+
/** Size of the storage pool in GiB. */
|
|
11379
|
+
poolProvisionedCapacityGb?: string;
|
|
11380
|
+
/**
|
|
11381
|
+
* Provisioned IOPS of the storage pool. Only relevant if the storage pool
|
|
11382
|
+
* type is hyperdisk-balanced.
|
|
11383
|
+
*/
|
|
11384
|
+
poolProvisionedIops?: string;
|
|
11385
|
+
/**
|
|
11386
|
+
* Provisioned throughput of the storage pool in MiB/s. Only relevant if
|
|
11387
|
+
* the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
|
|
11388
|
+
*/
|
|
11389
|
+
poolProvisionedThroughput?: string;
|
|
11390
|
+
}
|
|
11024
11391
|
interface FutureReservationTimeWindow {
|
|
11025
11392
|
duration?: Duration;
|
|
11026
11393
|
endTime?: string;
|
|
@@ -11051,8 +11418,7 @@ declare namespace gapi.client {
|
|
|
11051
11418
|
recommendationId?: string;
|
|
11052
11419
|
/** Type of recommendation. Currently only FUTURE_RESERVATION is supported. */
|
|
11053
11420
|
recommendationType?:
|
|
11054
|
-
| '
|
|
11055
|
-
| 'RECOMMENDATION_TYPE_UNSPECIFIED';
|
|
11421
|
+
'FUTURE_RESERVATION' | 'RECOMMENDATION_TYPE_UNSPECIFIED';
|
|
11056
11422
|
startTime?: string;
|
|
11057
11423
|
}
|
|
11058
11424
|
interface FutureResourcesRecommendationOtherLocation {
|
|
@@ -11587,9 +11953,7 @@ declare namespace gapi.client {
|
|
|
11587
11953
|
* plans for global policies.
|
|
11588
11954
|
*/
|
|
11589
11955
|
predefinedRolloutPlan?:
|
|
11590
|
-
| '
|
|
11591
|
-
| 'ROLLOUT_PLAN_UNSPECIFIED'
|
|
11592
|
-
| 'SLOW_ROLLOUT';
|
|
11956
|
+
'FAST_ROLLOUT' | 'ROLLOUT_PLAN_UNSPECIFIED' | 'SLOW_ROLLOUT';
|
|
11593
11957
|
/**
|
|
11594
11958
|
* Optional. The UUID that identifies a policy rollout retry attempt for update and
|
|
11595
11959
|
* delete operations. Set this field only when retrying a rollout for an
|
|
@@ -11623,7 +11987,9 @@ declare namespace gapi.client {
|
|
|
11623
11987
|
* locations is the same as the list of locations in the rollout plan.
|
|
11624
11988
|
*/
|
|
11625
11989
|
locationRolloutStatus?: {
|
|
11626
|
-
[
|
|
11990
|
+
[
|
|
11991
|
+
P in string
|
|
11992
|
+
]: GlobalVmExtensionPolicyRolloutOperationRolloutStatusRolloutMetadataLocationRolloutStatus;
|
|
11627
11993
|
};
|
|
11628
11994
|
/**
|
|
11629
11995
|
* Output only. [Output Only] The name of the rollout.
|
|
@@ -11672,9 +12038,7 @@ declare namespace gapi.client {
|
|
|
11672
12038
|
maintenancePendingCount?: number;
|
|
11673
12039
|
/** The type of maintenance for the reservation. */
|
|
11674
12040
|
schedulingType?:
|
|
11675
|
-
| '
|
|
11676
|
-
| 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED'
|
|
11677
|
-
| 'INDEPENDENT';
|
|
12041
|
+
'GROUPED' | 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED' | 'INDEPENDENT';
|
|
11678
12042
|
/**
|
|
11679
12043
|
* Describes number of subblock Infrastructure that has ongoing maintenance.
|
|
11680
12044
|
* Here, Subblock Infrastructure Maintenance pertains to upstream hardware
|
|
@@ -11738,9 +12102,7 @@ declare namespace gapi.client {
|
|
|
11738
12102
|
* the instance group's list of named ports.
|
|
11739
12103
|
*/
|
|
11740
12104
|
portSpecification?:
|
|
11741
|
-
| '
|
|
11742
|
-
| 'USE_NAMED_PORT'
|
|
11743
|
-
| 'USE_SERVING_PORT';
|
|
12105
|
+
'USE_FIXED_PORT' | 'USE_NAMED_PORT' | 'USE_SERVING_PORT';
|
|
11744
12106
|
}
|
|
11745
12107
|
interface GrpcServiceConfig {
|
|
11746
12108
|
/** The call credentials to access the SDS server. */
|
|
@@ -11794,9 +12156,7 @@ declare namespace gapi.client {
|
|
|
11794
12156
|
* the instance group's list of named ports.
|
|
11795
12157
|
*/
|
|
11796
12158
|
portSpecification?:
|
|
11797
|
-
| '
|
|
11798
|
-
| 'USE_NAMED_PORT'
|
|
11799
|
-
| 'USE_SERVING_PORT';
|
|
12159
|
+
'USE_FIXED_PORT' | 'USE_NAMED_PORT' | 'USE_SERVING_PORT';
|
|
11800
12160
|
}
|
|
11801
12161
|
interface GuestAttributes {
|
|
11802
12162
|
/** Output only. [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry. */
|
|
@@ -11894,8 +12254,7 @@ declare namespace gapi.client {
|
|
|
11894
12254
|
* Deprecated: This field is deprecated and has no effect.
|
|
11895
12255
|
*/
|
|
11896
12256
|
failoverCapacity?:
|
|
11897
|
-
| '
|
|
11898
|
-
| 'FAILOVER_CAPACITY_UNSPECIFIED';
|
|
12257
|
+
'BEST_EFFORT_CAPACITY' | 'FAILOVER_CAPACITY_UNSPECIFIED';
|
|
11899
12258
|
/** Indicates how failover should be initiated. */
|
|
11900
12259
|
failoverInitiation?: 'FAILOVER_INITIATION_UNSPECIFIED' | 'MANUAL_ONLY';
|
|
11901
12260
|
/**
|
|
@@ -11940,8 +12299,7 @@ declare namespace gapi.client {
|
|
|
11940
12299
|
region?: string;
|
|
11941
12300
|
/** Indicates the capacity guarantees in the secondary zone. */
|
|
11942
12301
|
secondaryZoneCapacity?:
|
|
11943
|
-
| '
|
|
11944
|
-
| 'SECONDARY_ZONE_CAPACITY_UNSPECIFIED';
|
|
12302
|
+
'BEST_EFFORT' | 'SECONDARY_ZONE_CAPACITY_UNSPECIFIED';
|
|
11945
12303
|
/** Output only. [Output only] Server-defined URL for the resource. */
|
|
11946
12304
|
selfLink?: string;
|
|
11947
12305
|
/** Output only. [Output Only] Server-defined URL for this resource with the resource id. */
|
|
@@ -14072,9 +14430,7 @@ declare namespace gapi.client {
|
|
|
14072
14430
|
* the instance group's list of named ports.
|
|
14073
14431
|
*/
|
|
14074
14432
|
portSpecification?:
|
|
14075
|
-
| '
|
|
14076
|
-
| 'USE_NAMED_PORT'
|
|
14077
|
-
| 'USE_SERVING_PORT';
|
|
14433
|
+
'USE_FIXED_PORT' | 'USE_NAMED_PORT' | 'USE_SERVING_PORT';
|
|
14078
14434
|
/**
|
|
14079
14435
|
* Specifies the type of proxy header to append before sending data to the
|
|
14080
14436
|
* backend, either NONE or PROXY_V1. The default
|
|
@@ -14387,9 +14743,7 @@ declare namespace gapi.client {
|
|
|
14387
14743
|
* the instance group's list of named ports.
|
|
14388
14744
|
*/
|
|
14389
14745
|
portSpecification?:
|
|
14390
|
-
| '
|
|
14391
|
-
| 'USE_NAMED_PORT'
|
|
14392
|
-
| 'USE_SERVING_PORT';
|
|
14746
|
+
'USE_FIXED_PORT' | 'USE_NAMED_PORT' | 'USE_SERVING_PORT';
|
|
14393
14747
|
/**
|
|
14394
14748
|
* Specifies the type of proxy header to append before sending data to the
|
|
14395
14749
|
* backend, either NONE or PROXY_V1. The default
|
|
@@ -15121,9 +15475,7 @@ declare namespace gapi.client {
|
|
|
15121
15475
|
* the instance group's list of named ports.
|
|
15122
15476
|
*/
|
|
15123
15477
|
portSpecification?:
|
|
15124
|
-
| '
|
|
15125
|
-
| 'USE_NAMED_PORT'
|
|
15126
|
-
| 'USE_SERVING_PORT';
|
|
15478
|
+
'USE_FIXED_PORT' | 'USE_NAMED_PORT' | 'USE_SERVING_PORT';
|
|
15127
15479
|
/**
|
|
15128
15480
|
* Specifies the type of proxy header to append before sending data to the
|
|
15129
15481
|
* backend, either NONE or PROXY_V1. The default
|
|
@@ -15631,9 +15983,7 @@ declare namespace gapi.client {
|
|
|
15631
15983
|
interface ImageOptimizationPolicy {
|
|
15632
15984
|
/** Specifies whether to interpret query parameters for image optimization. */
|
|
15633
15985
|
queryParameterInterpretation?:
|
|
15634
|
-
| '
|
|
15635
|
-
| 'ENABLED'
|
|
15636
|
-
| 'QUERY_PARAMETER_INTERPRETATION_UNSPECIFIED';
|
|
15986
|
+
'DISABLED' | 'ENABLED' | 'QUERY_PARAMETER_INTERPRETATION_UNSPECIFIED';
|
|
15637
15987
|
}
|
|
15638
15988
|
interface ImageParams {
|
|
15639
15989
|
/**
|
|
@@ -15814,9 +16164,7 @@ declare namespace gapi.client {
|
|
|
15814
16164
|
* "NONE". The default value is "NONE" if it is not specified.
|
|
15815
16165
|
*/
|
|
15816
16166
|
keyRevocationActionType?:
|
|
15817
|
-
| '
|
|
15818
|
-
| 'NONE'
|
|
15819
|
-
| 'STOP';
|
|
16167
|
+
'KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED' | 'NONE' | 'STOP';
|
|
15820
16168
|
/**
|
|
15821
16169
|
* Output only. [Output Only] Type of the resource. Always compute#instance
|
|
15822
16170
|
* for instances.
|
|
@@ -15844,6 +16192,14 @@ declare namespace gapi.client {
|
|
|
15844
16192
|
lastStopTimestamp?: string;
|
|
15845
16193
|
/** Output only. [Output Only] Last suspended timestamp inRFC3339 text format. */
|
|
15846
16194
|
lastSuspendedTimestamp?: string;
|
|
16195
|
+
/**
|
|
16196
|
+
* Specifies which method should be used for encrypting the
|
|
16197
|
+
* Local SSDs attached to the VM.
|
|
16198
|
+
*/
|
|
16199
|
+
localSsdEncryptionMode?:
|
|
16200
|
+
| 'EPHEMERAL_KEY_ENCRYPTION'
|
|
16201
|
+
| 'LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED'
|
|
16202
|
+
| 'STANDARD_ENCRYPTION';
|
|
15847
16203
|
/**
|
|
15848
16204
|
* Full or partial URL of the machine type resource to use for this instance,
|
|
15849
16205
|
* in the format:zones/zone/machineTypes/machine-type. This is provided by the client
|
|
@@ -15914,9 +16270,7 @@ declare namespace gapi.client {
|
|
|
15914
16270
|
partnerMetadata?: {[P in string]: StructuredEntries};
|
|
15915
16271
|
/** PostKeyRevocationActionType of the instance. */
|
|
15916
16272
|
postKeyRevocationActionType?:
|
|
15917
|
-
| '
|
|
15918
|
-
| 'POST_KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED'
|
|
15919
|
-
| 'SHUTDOWN';
|
|
16273
|
+
'NOOP' | 'POST_KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED' | 'SHUTDOWN';
|
|
15920
16274
|
/**
|
|
15921
16275
|
* Output only. Total amount of preserved state for SUSPENDED instances.
|
|
15922
16276
|
* Read-only in the api.
|
|
@@ -16880,14 +17234,18 @@ declare namespace gapi.client {
|
|
|
16880
17234
|
* when creating new VMs.
|
|
16881
17235
|
*/
|
|
16882
17236
|
instanceSelectionLists?: {
|
|
16883
|
-
[
|
|
17237
|
+
[
|
|
17238
|
+
P in string
|
|
17239
|
+
]: InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection;
|
|
16884
17240
|
};
|
|
16885
17241
|
/**
|
|
16886
17242
|
* Named instance selections configuring properties that the group will use
|
|
16887
17243
|
* when creating new VMs.
|
|
16888
17244
|
*/
|
|
16889
17245
|
instanceSelections?: {
|
|
16890
|
-
[
|
|
17246
|
+
[
|
|
17247
|
+
P in string
|
|
17248
|
+
]: InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection;
|
|
16891
17249
|
};
|
|
16892
17250
|
/**
|
|
16893
17251
|
* Provisioning model configuration used by this managed instance group to
|
|
@@ -17391,11 +17749,7 @@ declare namespace gapi.client {
|
|
|
17391
17749
|
allInstances?: boolean;
|
|
17392
17750
|
/** Actions that are allowed to update instances within MIG. */
|
|
17393
17751
|
allowedActions?:
|
|
17394
|
-
| '
|
|
17395
|
-
| 'REFRESH'
|
|
17396
|
-
| 'REPLACE'
|
|
17397
|
-
| 'RESTART'
|
|
17398
|
-
| 'RESTART_IN_PLACE'[];
|
|
17752
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE'[];
|
|
17399
17753
|
/** Whether the boot disk is allowed to be updated with restart. */
|
|
17400
17754
|
disruptionMode?: 'LEGACY' | 'OPTIMIZED';
|
|
17401
17755
|
/**
|
|
@@ -17409,11 +17763,7 @@ declare namespace gapi.client {
|
|
|
17409
17763
|
* This field is deprecated, please use most_disruptive_allowed_action.
|
|
17410
17764
|
*/
|
|
17411
17765
|
maximalAction?:
|
|
17412
|
-
| '
|
|
17413
|
-
| 'REFRESH'
|
|
17414
|
-
| 'REPLACE'
|
|
17415
|
-
| 'RESTART'
|
|
17416
|
-
| 'RESTART_IN_PLACE';
|
|
17766
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE';
|
|
17417
17767
|
/**
|
|
17418
17768
|
* The minimal action that you want to perform on each instance during the
|
|
17419
17769
|
* update:
|
|
@@ -17434,11 +17784,7 @@ declare namespace gapi.client {
|
|
|
17434
17784
|
* necessary action is performed to execute the update.
|
|
17435
17785
|
*/
|
|
17436
17786
|
minimalAction?:
|
|
17437
|
-
| '
|
|
17438
|
-
| 'REFRESH'
|
|
17439
|
-
| 'REPLACE'
|
|
17440
|
-
| 'RESTART'
|
|
17441
|
-
| 'RESTART_IN_PLACE';
|
|
17787
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE';
|
|
17442
17788
|
/**
|
|
17443
17789
|
* The most disruptive action that you want to perform on each instance during
|
|
17444
17790
|
* the update:
|
|
@@ -17457,11 +17803,7 @@ declare namespace gapi.client {
|
|
|
17457
17803
|
* the update request will fail.
|
|
17458
17804
|
*/
|
|
17459
17805
|
mostDisruptiveAllowedAction?:
|
|
17460
|
-
| '
|
|
17461
|
-
| 'REFRESH'
|
|
17462
|
-
| 'REPLACE'
|
|
17463
|
-
| 'RESTART'
|
|
17464
|
-
| 'RESTART_IN_PLACE';
|
|
17806
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE';
|
|
17465
17807
|
}
|
|
17466
17808
|
interface InstanceGroupManagersConfigureAcceleratorTopologiesRequest {
|
|
17467
17809
|
/**
|
|
@@ -17471,9 +17813,7 @@ declare namespace gapi.client {
|
|
|
17471
17813
|
*/
|
|
17472
17814
|
acceleratorTopologyActions?: {
|
|
17473
17815
|
[P in string]:
|
|
17474
|
-
| '
|
|
17475
|
-
| 'ACTIVATE'
|
|
17476
|
-
| 'DEACTIVATE';
|
|
17816
|
+
'ACCELERATOR_TOPOLOGY_ACTION_UNSPECIFIED' | 'ACTIVATE' | 'DEACTIVATE';
|
|
17477
17817
|
};
|
|
17478
17818
|
/**
|
|
17479
17819
|
* Map of accelerator topologies that should have their state changed to
|
|
@@ -17481,14 +17821,14 @@ declare namespace gapi.client {
|
|
|
17481
17821
|
* It can be obtained from the GetAvailableAcceleratorTopologies rpc.
|
|
17482
17822
|
*/
|
|
17483
17823
|
acceleratorTopologyConfigurations?: {
|
|
17484
|
-
[
|
|
17824
|
+
[
|
|
17825
|
+
P in string
|
|
17826
|
+
]: InstanceGroupManagersConfigureAcceleratorTopologiesRequestAcceleratorTopologyConfiguration;
|
|
17485
17827
|
};
|
|
17486
17828
|
}
|
|
17487
17829
|
interface InstanceGroupManagersConfigureAcceleratorTopologiesRequestAcceleratorTopologyConfiguration {
|
|
17488
17830
|
action?:
|
|
17489
|
-
| '
|
|
17490
|
-
| 'ACTIVATE'
|
|
17491
|
-
| 'DEACTIVATE';
|
|
17831
|
+
'ACCELERATOR_TOPOLOGY_ACTION_UNSPECIFIED' | 'ACTIVATE' | 'DEACTIVATE';
|
|
17492
17832
|
/**
|
|
17493
17833
|
* Identifier of the accelerator topology assigned externally to
|
|
17494
17834
|
* differentiate who is the owner of the topology. The format needs to
|
|
@@ -17541,7 +17881,9 @@ declare namespace gapi.client {
|
|
|
17541
17881
|
* location.
|
|
17542
17882
|
*/
|
|
17543
17883
|
acceleratorTopologiesInfo?: {
|
|
17544
|
-
[
|
|
17884
|
+
[
|
|
17885
|
+
P in string
|
|
17886
|
+
]: InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo;
|
|
17545
17887
|
};
|
|
17546
17888
|
/** URL to MMIG this MIG belongs to. */
|
|
17547
17889
|
multiMig?: string;
|
|
@@ -18202,11 +18544,7 @@ declare namespace gapi.client {
|
|
|
18202
18544
|
interface InstanceGroupManagerUpdatePolicy {
|
|
18203
18545
|
/** Actions that are allowed to update instances within MIG. */
|
|
18204
18546
|
allowedActions?:
|
|
18205
|
-
| '
|
|
18206
|
-
| 'REFRESH'
|
|
18207
|
-
| 'REPLACE'
|
|
18208
|
-
| 'RESTART'
|
|
18209
|
-
| 'RESTART_IN_PLACE'[];
|
|
18547
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE'[];
|
|
18210
18548
|
/** Whether the boot disk is allowed to be updated with restart. */
|
|
18211
18549
|
disruptionMode?: 'LEGACY' | 'OPTIMIZED';
|
|
18212
18550
|
/**
|
|
@@ -18270,11 +18608,7 @@ declare namespace gapi.client {
|
|
|
18270
18608
|
* order to pick up metadata changes.
|
|
18271
18609
|
*/
|
|
18272
18610
|
minimalAction?:
|
|
18273
|
-
| '
|
|
18274
|
-
| 'REFRESH'
|
|
18275
|
-
| 'REPLACE'
|
|
18276
|
-
| 'RESTART'
|
|
18277
|
-
| 'RESTART_IN_PLACE';
|
|
18611
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE';
|
|
18278
18612
|
/**
|
|
18279
18613
|
* Minimum number of seconds to wait for after a newly created instance
|
|
18280
18614
|
* becomes available. This value must be from range [0, 3600].
|
|
@@ -18290,11 +18624,7 @@ declare namespace gapi.client {
|
|
|
18290
18624
|
* specify it will not perform the update at all.
|
|
18291
18625
|
*/
|
|
18292
18626
|
mostDisruptiveAllowedAction?:
|
|
18293
|
-
| '
|
|
18294
|
-
| 'REFRESH'
|
|
18295
|
-
| 'REPLACE'
|
|
18296
|
-
| 'RESTART'
|
|
18297
|
-
| 'RESTART_IN_PLACE';
|
|
18627
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE';
|
|
18298
18628
|
/**
|
|
18299
18629
|
* What action should be used to replace instances.
|
|
18300
18630
|
* See minimal_action.REPLACE
|
|
@@ -18844,11 +19174,17 @@ declare namespace gapi.client {
|
|
|
18844
19174
|
* "NONE". The default value is "NONE" if it is not specified.
|
|
18845
19175
|
*/
|
|
18846
19176
|
keyRevocationActionType?:
|
|
18847
|
-
| '
|
|
18848
|
-
| 'NONE'
|
|
18849
|
-
| 'STOP';
|
|
19177
|
+
'KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED' | 'NONE' | 'STOP';
|
|
18850
19178
|
/** Labels to apply to instances that are created from these properties. */
|
|
18851
19179
|
labels?: {[P in string]: string};
|
|
19180
|
+
/**
|
|
19181
|
+
* Specifies which method should be used for encrypting the
|
|
19182
|
+
* Local SSDs attached to the VM.
|
|
19183
|
+
*/
|
|
19184
|
+
localSsdEncryptionMode?:
|
|
19185
|
+
| 'EPHEMERAL_KEY_ENCRYPTION'
|
|
19186
|
+
| 'LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED'
|
|
19187
|
+
| 'STANDARD_ENCRYPTION';
|
|
18852
19188
|
/**
|
|
18853
19189
|
* The machine type to use for instances that are created from these
|
|
18854
19190
|
* properties.
|
|
@@ -18884,9 +19220,7 @@ declare namespace gapi.client {
|
|
|
18884
19220
|
partnerMetadata?: {[P in string]: StructuredEntries};
|
|
18885
19221
|
/** PostKeyRevocationActionType of the instance. */
|
|
18886
19222
|
postKeyRevocationActionType?:
|
|
18887
|
-
| '
|
|
18888
|
-
| 'POST_KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED'
|
|
18889
|
-
| 'SHUTDOWN';
|
|
19223
|
+
'NOOP' | 'POST_KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED' | 'SHUTDOWN';
|
|
18890
19224
|
/**
|
|
18891
19225
|
* The private IPv6 google access type for VMs.
|
|
18892
19226
|
* If not specified, use INHERIT_FROM_SUBNETWORK as default.
|
|
@@ -19087,9 +19421,7 @@ declare namespace gapi.client {
|
|
|
19087
19421
|
| 'EXECUTE_ALL_RECOMMENDED_SCANS';
|
|
19088
19422
|
/** The disruption schedule for the VM. Required field, only allows IMMEDIATE. */
|
|
19089
19423
|
disruptionSchedule?:
|
|
19090
|
-
| '
|
|
19091
|
-
| 'FUTURE'
|
|
19092
|
-
| 'IMMEDIATE';
|
|
19424
|
+
'DISRUPTION_SCHEDULE_UNSPECIFIED' | 'FUTURE' | 'IMMEDIATE';
|
|
19093
19425
|
faultReasons?: InstancesReportHostAsFaultyRequestFaultReason[];
|
|
19094
19426
|
}
|
|
19095
19427
|
interface InstancesReportHostAsFaultyRequestFaultReason {
|
|
@@ -19850,12 +20182,7 @@ declare namespace gapi.client {
|
|
|
19850
20182
|
sourceConsistencyGroup?: string;
|
|
19851
20183
|
/** Output only. [Output Only] */
|
|
19852
20184
|
status?:
|
|
19853
|
-
| '
|
|
19854
|
-
| 'DELETING'
|
|
19855
|
-
| 'FAILED'
|
|
19856
|
-
| 'INVALID'
|
|
19857
|
-
| 'READY'
|
|
19858
|
-
| 'UNKNOWN';
|
|
20185
|
+
'CREATING' | 'DELETING' | 'FAILED' | 'INVALID' | 'READY' | 'UNKNOWN';
|
|
19859
20186
|
/**
|
|
19860
20187
|
* Output only. [Output Only] URL of the zone where the instant snapshot group resides.
|
|
19861
20188
|
* You must specify this field as part of the HTTP request URL. It is
|
|
@@ -20094,9 +20421,7 @@ declare namespace gapi.client {
|
|
|
20094
20421
|
* it for Cross-Site Networking will fail.
|
|
20095
20422
|
*/
|
|
20096
20423
|
availableFeatures?:
|
|
20097
|
-
| '
|
|
20098
|
-
| 'IF_L2_FORWARDING'
|
|
20099
|
-
| 'IF_MACSEC'[];
|
|
20424
|
+
'IF_CROSS_SITE_NETWORK' | 'IF_L2_FORWARDING' | 'IF_MACSEC'[];
|
|
20100
20425
|
/**
|
|
20101
20426
|
* Output only. [Output Only] A list of CircuitInfo objects, that describe the individual
|
|
20102
20427
|
* circuits in this LAG.
|
|
@@ -20275,9 +20600,7 @@ declare namespace gapi.client {
|
|
|
20275
20600
|
* Cross-Site Networking unless this feature is specified.
|
|
20276
20601
|
*/
|
|
20277
20602
|
requestedFeatures?:
|
|
20278
|
-
| '
|
|
20279
|
-
| 'IF_L2_FORWARDING'
|
|
20280
|
-
| 'IF_MACSEC'[];
|
|
20603
|
+
'IF_CROSS_SITE_NETWORK' | 'IF_L2_FORWARDING' | 'IF_MACSEC'[];
|
|
20281
20604
|
/**
|
|
20282
20605
|
* Target number of physical links in the link bundle, as requested by the
|
|
20283
20606
|
* customer.
|
|
@@ -21739,12 +22062,10 @@ declare namespace gapi.client {
|
|
|
21739
22062
|
arpCaches?: InterconnectDiagnosticsARPEntry[];
|
|
21740
22063
|
/** The aggregation type of the bundle interface. */
|
|
21741
22064
|
bundleAggregationType?:
|
|
21742
|
-
| '
|
|
21743
|
-
| 'BUNDLE_AGGREGATION_TYPE_STATIC';
|
|
22065
|
+
'BUNDLE_AGGREGATION_TYPE_LACP' | 'BUNDLE_AGGREGATION_TYPE_STATIC';
|
|
21744
22066
|
/** The operational status of the bundle interface. */
|
|
21745
22067
|
bundleOperationalStatus?:
|
|
21746
|
-
| '
|
|
21747
|
-
| 'BUNDLE_OPERATIONAL_STATUS_UP';
|
|
22068
|
+
'BUNDLE_OPERATIONAL_STATUS_DOWN' | 'BUNDLE_OPERATIONAL_STATUS_UP';
|
|
21748
22069
|
/**
|
|
21749
22070
|
* A list of InterconnectDiagnostics.LinkStatus objects,
|
|
21750
22071
|
* describing the status for each link on the Interconnect.
|
|
@@ -21791,11 +22112,7 @@ declare namespace gapi.client {
|
|
|
21791
22112
|
* threshold.
|
|
21792
22113
|
*/
|
|
21793
22114
|
state?:
|
|
21794
|
-
| '
|
|
21795
|
-
| 'HIGH_WARNING'
|
|
21796
|
-
| 'LOW_ALARM'
|
|
21797
|
-
| 'LOW_WARNING'
|
|
21798
|
-
| 'OK';
|
|
22115
|
+
'HIGH_ALARM' | 'HIGH_WARNING' | 'LOW_ALARM' | 'LOW_WARNING' | 'OK';
|
|
21799
22116
|
/**
|
|
21800
22117
|
* Value of the current receiving or transmitting optical power, read in
|
|
21801
22118
|
* dBm. Take a known good optical value, give it a 10% margin and trigger
|
|
@@ -21820,8 +22137,7 @@ declare namespace gapi.client {
|
|
|
21820
22137
|
macsec?: InterconnectDiagnosticsMacsecStatus;
|
|
21821
22138
|
/** The operational status of the link. */
|
|
21822
22139
|
operationalStatus?:
|
|
21823
|
-
| '
|
|
21824
|
-
| 'LINK_OPERATIONAL_STATUS_UP';
|
|
22140
|
+
'LINK_OPERATIONAL_STATUS_DOWN' | 'LINK_OPERATIONAL_STATUS_UP';
|
|
21825
22141
|
/**
|
|
21826
22142
|
* An InterconnectDiagnostics.LinkOpticalPower object,
|
|
21827
22143
|
* describing the current value and status of the received light level.
|
|
@@ -22092,9 +22408,7 @@ declare namespace gapi.client {
|
|
|
22092
22408
|
* Cross-Site Networking unless this feature is specified.
|
|
22093
22409
|
*/
|
|
22094
22410
|
requestedFeatures?:
|
|
22095
|
-
| '
|
|
22096
|
-
| 'IF_L2_FORWARDING'
|
|
22097
|
-
| 'IF_MACSEC'[];
|
|
22411
|
+
'IF_CROSS_SITE_NETWORK' | 'IF_L2_FORWARDING' | 'IF_MACSEC'[];
|
|
22098
22412
|
/**
|
|
22099
22413
|
* Target number of physical links in the link bundle, as requested by the
|
|
22100
22414
|
* customer.
|
|
@@ -22200,10 +22514,7 @@ declare namespace gapi.client {
|
|
|
22200
22514
|
configured?: InterconnectGroupConfigured;
|
|
22201
22515
|
/** Output only. Summarizes the status of the group. */
|
|
22202
22516
|
groupStatus?:
|
|
22203
|
-
| '
|
|
22204
|
-
| 'FULLY_DOWN'
|
|
22205
|
-
| 'FULLY_UP'
|
|
22206
|
-
| 'GROUPS_STATUS_UNSPECIFIED';
|
|
22517
|
+
'DEGRADED' | 'FULLY_DOWN' | 'FULLY_UP' | 'GROUPS_STATUS_UNSPECIFIED';
|
|
22207
22518
|
/** Output only. The intent of the resource, as returned by Get. */
|
|
22208
22519
|
intent?: InterconnectGroupIntent;
|
|
22209
22520
|
interconnectStatuses?: InterconnectGroupsOperationalStatusInterconnectStatus[];
|
|
@@ -22328,9 +22639,7 @@ declare namespace gapi.client {
|
|
|
22328
22639
|
* - IF_CROSS_SITE_NETWORK
|
|
22329
22640
|
*/
|
|
22330
22641
|
availableFeatures?:
|
|
22331
|
-
| '
|
|
22332
|
-
| 'IF_L2_FORWARDING'
|
|
22333
|
-
| 'IF_MACSEC'[];
|
|
22642
|
+
'IF_CROSS_SITE_NETWORK' | 'IF_L2_FORWARDING' | 'IF_MACSEC'[];
|
|
22334
22643
|
/**
|
|
22335
22644
|
* [Output only] List of link types available at this InterconnectLocation,
|
|
22336
22645
|
* which can take one of the following values:
|
|
@@ -22545,10 +22854,7 @@ declare namespace gapi.client {
|
|
|
22545
22854
|
l2ForwardingEnabled?: boolean;
|
|
22546
22855
|
/** Output only. Identifies the network presence of this location. */
|
|
22547
22856
|
locationPresence?:
|
|
22548
|
-
| '
|
|
22549
|
-
| 'LOCAL_REGION'
|
|
22550
|
-
| 'LP_GLOBAL'
|
|
22551
|
-
| 'LP_LOCAL_REGION';
|
|
22857
|
+
'GLOBAL' | 'LOCAL_REGION' | 'LP_GLOBAL' | 'LP_LOCAL_REGION';
|
|
22552
22858
|
/** Output only. URL for the region of this location. */
|
|
22553
22859
|
region?: string;
|
|
22554
22860
|
}
|
|
@@ -22642,10 +22948,7 @@ declare namespace gapi.client {
|
|
|
22642
22948
|
* deprecated in favor of the unprefixed values.
|
|
22643
22949
|
*/
|
|
22644
22950
|
issueType?:
|
|
22645
|
-
| '
|
|
22646
|
-
| 'IT_PARTIAL_OUTAGE'
|
|
22647
|
-
| 'OUTAGE'
|
|
22648
|
-
| 'PARTIAL_OUTAGE';
|
|
22951
|
+
'IT_OUTAGE' | 'IT_PARTIAL_OUTAGE' | 'OUTAGE' | 'PARTIAL_OUTAGE';
|
|
22649
22952
|
/** Unique identifier for this outage notification. */
|
|
22650
22953
|
name?: string;
|
|
22651
22954
|
/**
|
|
@@ -22679,11 +22982,7 @@ declare namespace gapi.client {
|
|
|
22679
22982
|
* deprecated in favor of the unprefixed values.
|
|
22680
22983
|
*/
|
|
22681
22984
|
state?:
|
|
22682
|
-
| '
|
|
22683
|
-
| 'CANCELLED'
|
|
22684
|
-
| 'COMPLETED'
|
|
22685
|
-
| 'NS_ACTIVE'
|
|
22686
|
-
| 'NS_CANCELED';
|
|
22985
|
+
'ACTIVE' | 'CANCELLED' | 'COMPLETED' | 'NS_ACTIVE' | 'NS_CANCELED';
|
|
22687
22986
|
}
|
|
22688
22987
|
interface InterconnectParams {
|
|
22689
22988
|
/**
|
|
@@ -22738,11 +23037,7 @@ declare namespace gapi.client {
|
|
|
22738
23037
|
* - SOUTH_AMERICA
|
|
22739
23038
|
*/
|
|
22740
23039
|
continent?:
|
|
22741
|
-
| '
|
|
22742
|
-
| 'ASIA_PAC'
|
|
22743
|
-
| 'EUROPE'
|
|
22744
|
-
| 'NORTH_AMERICA'
|
|
22745
|
-
| 'SOUTH_AMERICA';
|
|
23040
|
+
'AFRICA' | 'ASIA_PAC' | 'EUROPE' | 'NORTH_AMERICA' | 'SOUTH_AMERICA';
|
|
22746
23041
|
/**
|
|
22747
23042
|
* Output only. [Output Only] Creation timestamp inRFC3339
|
|
22748
23043
|
* text format.
|
|
@@ -24632,13 +24927,10 @@ declare namespace gapi.client {
|
|
|
24632
24927
|
* InstanceFlexibilityPolicy.
|
|
24633
24928
|
*/
|
|
24634
24929
|
propertiesFromFlexibilityPolicy?: ManagedInstancePropertiesFromFlexibilityPolicy;
|
|
24635
|
-
/**
|
|
24636
|
-
* Output only. [Output Only] Information about the termination timestamp of the instance,
|
|
24637
|
-
* if applicable.
|
|
24638
|
-
*/
|
|
24930
|
+
/** Output only. Information about the termination timestamp of the instance, if applicable. */
|
|
24639
24931
|
scheduling?: ManagedInstanceScheduling;
|
|
24640
24932
|
/**
|
|
24641
|
-
* Output only.
|
|
24933
|
+
* Output only. Specifies the graceful shutdown details if the instance is in
|
|
24642
24934
|
* `PENDING_STOP` state or there is a programmed stop scheduled.
|
|
24643
24935
|
*/
|
|
24644
24936
|
shutdownDetails?: ManagedInstanceShutdownDetails;
|
|
@@ -24656,11 +24948,7 @@ declare namespace gapi.client {
|
|
|
24656
24948
|
* its targetStatus.
|
|
24657
24949
|
*/
|
|
24658
24950
|
targetStatus?:
|
|
24659
|
-
| '
|
|
24660
|
-
| 'DELETED'
|
|
24661
|
-
| 'RUNNING'
|
|
24662
|
-
| 'STOPPED'
|
|
24663
|
-
| 'SUSPENDED';
|
|
24951
|
+
'ABANDONED' | 'DELETED' | 'RUNNING' | 'STOPPED' | 'SUSPENDED';
|
|
24664
24952
|
/** Output only. [Output Only] Intended version of this instance. */
|
|
24665
24953
|
version?: ManagedInstanceVersion;
|
|
24666
24954
|
}
|
|
@@ -24700,6 +24988,9 @@ declare namespace gapi.client {
|
|
|
24700
24988
|
* Policy.
|
|
24701
24989
|
* - TERMINATION_TIMESTAMP Instance reached termination time,
|
|
24702
24990
|
* thus managed instance group stops/deletes it.
|
|
24991
|
+
* - GRACEFUL_SHUTDOWN_TIMESTAMP Instance reached graceful
|
|
24992
|
+
* shutdown time, thus managed instance group stops/deletes it to
|
|
24993
|
+
* gracefully shut it down.
|
|
24703
24994
|
*/
|
|
24704
24995
|
trigger?:
|
|
24705
24996
|
| 'API'
|
|
@@ -24726,19 +25017,12 @@ declare namespace gapi.client {
|
|
|
24726
25017
|
minCpuPlatform?: string;
|
|
24727
25018
|
/** The provisioning model to be used for this instance. */
|
|
24728
25019
|
provisioningModel?:
|
|
24729
|
-
| '
|
|
24730
|
-
| 'RESERVATION_BOUND'
|
|
24731
|
-
| 'SPOT'
|
|
24732
|
-
| 'STANDARD';
|
|
25020
|
+
'FLEX_START' | 'RESERVATION_BOUND' | 'SPOT' | 'STANDARD';
|
|
24733
25021
|
}
|
|
24734
25022
|
interface ManagedInstanceInstanceHealth {
|
|
24735
25023
|
/** Output only. [Output Only] The current detailed instance health state. */
|
|
24736
25024
|
detailedHealthState?:
|
|
24737
|
-
| '
|
|
24738
|
-
| 'HEALTHY'
|
|
24739
|
-
| 'TIMEOUT'
|
|
24740
|
-
| 'UNHEALTHY'
|
|
24741
|
-
| 'UNKNOWN';
|
|
25025
|
+
'DRAINING' | 'HEALTHY' | 'TIMEOUT' | 'UNHEALTHY' | 'UNKNOWN';
|
|
24742
25026
|
/**
|
|
24743
25027
|
* Output only. [Output Only] The URL for the health check that verifies whether the
|
|
24744
25028
|
* instance is healthy.
|
|
@@ -24800,32 +25084,31 @@ declare namespace gapi.client {
|
|
|
24800
25084
|
minCpuPlatform?: string;
|
|
24801
25085
|
/** Output only. The provisioning model to be used for this instance. */
|
|
24802
25086
|
provisioningModel?:
|
|
24803
|
-
| '
|
|
24804
|
-
| 'RESERVATION_BOUND'
|
|
24805
|
-
| 'SPOT'
|
|
24806
|
-
| 'STANDARD';
|
|
25087
|
+
'FLEX_START' | 'RESERVATION_BOUND' | 'SPOT' | 'STANDARD';
|
|
24807
25088
|
}
|
|
24808
25089
|
interface ManagedInstanceScheduling {
|
|
24809
25090
|
/**
|
|
24810
|
-
* Output only.
|
|
25091
|
+
* Output only. The timestamp at which the underlying instance will be
|
|
24811
25092
|
* triggered for graceful shutdown if it is configured. This is in RFC3339 text format.
|
|
24812
25093
|
*/
|
|
24813
25094
|
gracefulShutdownTimestamp?: string;
|
|
24814
25095
|
/**
|
|
24815
|
-
* Output only.
|
|
24816
|
-
*
|
|
25096
|
+
* Output only. The timestamp at which the managed instance will be terminated. This is
|
|
25097
|
+
* in RFC3339 text
|
|
25098
|
+
* format.
|
|
24817
25099
|
*/
|
|
24818
25100
|
terminationTimestamp?: string;
|
|
24819
25101
|
}
|
|
24820
25102
|
interface ManagedInstanceShutdownDetails {
|
|
24821
25103
|
/**
|
|
24822
|
-
* Output only.
|
|
24823
|
-
*
|
|
25104
|
+
* Output only. The duration for graceful shutdown. Only applicable when the instance is
|
|
25105
|
+
* in `PENDING_STOP` state.
|
|
24824
25106
|
*/
|
|
24825
25107
|
maxDuration?: Duration;
|
|
24826
25108
|
/**
|
|
24827
|
-
* Output only.
|
|
24828
|
-
*
|
|
25109
|
+
* Output only. Past timestamp indicating the beginning of `PENDING_STOP` state of
|
|
25110
|
+
* instance in RFC3339
|
|
25111
|
+
* text format.
|
|
24829
25112
|
*/
|
|
24830
25113
|
requestTimestamp?: string;
|
|
24831
25114
|
}
|
|
@@ -24838,6 +25121,43 @@ declare namespace gapi.client {
|
|
|
24838
25121
|
/** Output only. [Output Only] Name of the version. */
|
|
24839
25122
|
name?: string;
|
|
24840
25123
|
}
|
|
25124
|
+
interface ManagementInterface {
|
|
25125
|
+
authenticationConfig?: AuthenticationConfig;
|
|
25126
|
+
/**
|
|
25127
|
+
* The IPv4 internal IP address assigned to this management interface
|
|
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
|
+
}
|
|
24841
25161
|
interface Metadata {
|
|
24842
25162
|
/**
|
|
24843
25163
|
* Specifies a fingerprint for this request, which is essentially a hash of
|
|
@@ -25407,8 +25727,7 @@ declare namespace gapi.client {
|
|
|
25407
25727
|
* AFTER_CLASSIC_FIREWALL if the field is not specified.
|
|
25408
25728
|
*/
|
|
25409
25729
|
networkFirewallPolicyEnforcementOrder?:
|
|
25410
|
-
| '
|
|
25411
|
-
| 'BEFORE_CLASSIC_FIREWALL';
|
|
25730
|
+
'AFTER_CLASSIC_FIREWALL' | 'BEFORE_CLASSIC_FIREWALL';
|
|
25412
25731
|
/**
|
|
25413
25732
|
* A full or partial URL of the network profile to apply to this network.
|
|
25414
25733
|
* This field can be set only at resource creation time. For example, the
|
|
@@ -25496,13 +25815,15 @@ declare namespace gapi.client {
|
|
|
25496
25815
|
*/
|
|
25497
25816
|
network?: string;
|
|
25498
25817
|
/**
|
|
25499
|
-
* Projects that are allowed to connect to this network
|
|
25500
|
-
* The project can be specified using its id or number.
|
|
25818
|
+
* Projects or service class ids that are allowed to connect to this network
|
|
25819
|
+
* attachment. The project can be specified using its id or number. Service
|
|
25820
|
+
* class id can be specified as "serviceclasses/{service_class_id}".
|
|
25501
25821
|
*/
|
|
25502
25822
|
producerAcceptLists?: string[];
|
|
25503
25823
|
/**
|
|
25504
|
-
* Projects that are not allowed to connect to this
|
|
25505
|
-
* The project can be specified using its id or number.
|
|
25824
|
+
* Projects or service class ids that are not allowed to connect to this
|
|
25825
|
+
* network attachment. The project can be specified using its id or number.
|
|
25826
|
+
* Service class id can be specified as "serviceclasses/{service_class_id}".
|
|
25506
25827
|
*/
|
|
25507
25828
|
producerRejectLists?: string[];
|
|
25508
25829
|
/**
|
|
@@ -27725,42 +28046,35 @@ declare namespace gapi.client {
|
|
|
27725
28046
|
| 'VPC_PEERING'[];
|
|
27726
28047
|
/** Specifies whether address creation is allowed. */
|
|
27727
28048
|
allowAddressCreation?:
|
|
27728
|
-
| '
|
|
27729
|
-
| 'ADDRESS_CREATION_BLOCKED';
|
|
28049
|
+
'ADDRESS_CREATION_ALLOWED' | 'ADDRESS_CREATION_BLOCKED';
|
|
27730
28050
|
/**
|
|
27731
28051
|
* Specifies whether alias IP ranges (and secondary address ranges) are
|
|
27732
28052
|
* allowed.
|
|
27733
28053
|
*/
|
|
27734
28054
|
allowAliasIpRanges?:
|
|
27735
|
-
| '
|
|
27736
|
-
| 'ALIAS_IP_RANGES_BLOCKED';
|
|
28055
|
+
'ALIAS_IP_RANGES_ALLOWED' | 'ALIAS_IP_RANGES_BLOCKED';
|
|
27737
28056
|
/** Specifies whether auto mode subnet creation is allowed. */
|
|
27738
28057
|
allowAutoModeSubnet?:
|
|
27739
|
-
| '
|
|
27740
|
-
| 'AUTO_MODE_SUBNET_BLOCKED';
|
|
28058
|
+
'AUTO_MODE_SUBNET_ALLOWED' | 'AUTO_MODE_SUBNET_BLOCKED';
|
|
27741
28059
|
/** Specifies whether firewalls for Class D address ranges are supported. */
|
|
27742
28060
|
allowClassDFirewalls?:
|
|
27743
|
-
| '
|
|
27744
|
-
| 'CLASS_D_FIREWALLS_BLOCKED';
|
|
28061
|
+
'CLASS_D_FIREWALLS_ALLOWED' | 'CLASS_D_FIREWALLS_BLOCKED';
|
|
27745
28062
|
/** Specifies whether cloud NAT creation is allowed. */
|
|
27746
28063
|
allowCloudNat?: 'CLOUD_NAT_ALLOWED' | 'CLOUD_NAT_BLOCKED';
|
|
27747
28064
|
/** Specifies whether cloud router creation is allowed. */
|
|
27748
28065
|
allowCloudRouter?: 'CLOUD_ROUTER_ALLOWED' | 'CLOUD_ROUTER_BLOCKED';
|
|
27749
28066
|
/** Specifies whether default NIC attachment is allowed. */
|
|
27750
28067
|
allowDefaultNicAttachment?:
|
|
27751
|
-
| '
|
|
27752
|
-
| 'DEFAULT_NIC_ATTACHMENT_BLOCKED';
|
|
28068
|
+
'DEFAULT_NIC_ATTACHMENT_ALLOWED' | 'DEFAULT_NIC_ATTACHMENT_BLOCKED';
|
|
27753
28069
|
/**
|
|
27754
28070
|
* Specifies whether VMs are allowed to have external IP access on network
|
|
27755
28071
|
* interfaces connected to this VPC.
|
|
27756
28072
|
*/
|
|
27757
28073
|
allowExternalIpAccess?:
|
|
27758
|
-
| '
|
|
27759
|
-
| 'EXTERNAL_IP_ACCESS_BLOCKED';
|
|
28074
|
+
'EXTERNAL_IP_ACCESS_ALLOWED' | 'EXTERNAL_IP_ACCESS_BLOCKED';
|
|
27760
28075
|
/** Specifies whether firewall policy can be attached to the network. */
|
|
27761
28076
|
allowFirewallPolicy?:
|
|
27762
|
-
| '
|
|
27763
|
-
| 'FIREWALL_POLICY_BLOCKED';
|
|
28077
|
+
'FIREWALL_POLICY_ALLOWED' | 'FIREWALL_POLICY_BLOCKED';
|
|
27764
28078
|
/** Specifies whether Cloud Interconnect creation is allowed. */
|
|
27765
28079
|
allowInterconnect?: 'INTERCONNECT_ALLOWED' | 'INTERCONNECT_BLOCKED';
|
|
27766
28080
|
/** Specifies whether IP forwarding is allowed. */
|
|
@@ -27781,34 +28095,28 @@ declare namespace gapi.client {
|
|
|
27781
28095
|
allowNcc?: 'NCC_ALLOWED' | 'NCC_BLOCKED';
|
|
27782
28096
|
/** Specifies whether VM network migration is allowed. */
|
|
27783
28097
|
allowNetworkMigration?:
|
|
27784
|
-
| '
|
|
27785
|
-
| 'NETWORK_MIGRATION_BLOCKED';
|
|
28098
|
+
'NETWORK_MIGRATION_ALLOWED' | 'NETWORK_MIGRATION_BLOCKED';
|
|
27786
28099
|
/** Specifies whether Packet Mirroring 1.0 is supported. */
|
|
27787
28100
|
allowPacketMirroring?:
|
|
27788
|
-
| '
|
|
27789
|
-
| 'PACKET_MIRRORING_BLOCKED';
|
|
28101
|
+
'PACKET_MIRRORING_ALLOWED' | 'PACKET_MIRRORING_BLOCKED';
|
|
27790
28102
|
/** Specifies whether private Google access is allowed. */
|
|
27791
28103
|
allowPrivateGoogleAccess?:
|
|
27792
|
-
| '
|
|
27793
|
-
| 'PRIVATE_GOOGLE_ACCESS_BLOCKED';
|
|
28104
|
+
'PRIVATE_GOOGLE_ACCESS_ALLOWED' | 'PRIVATE_GOOGLE_ACCESS_BLOCKED';
|
|
27794
28105
|
/** Specifies whether PSC creation is allowed. */
|
|
27795
28106
|
allowPsc?: 'PSC_ALLOWED' | 'PSC_BLOCKED';
|
|
27796
28107
|
/** Specifies whether unicast within the same network is allowed. */
|
|
27797
28108
|
allowSameNetworkUnicast?:
|
|
27798
|
-
| '
|
|
27799
|
-
| 'SAME_NETWORK_UNICAST_BLOCKED';
|
|
28109
|
+
'SAME_NETWORK_UNICAST_ALLOWED' | 'SAME_NETWORK_UNICAST_BLOCKED';
|
|
27800
28110
|
/** Specifies whether static route creation is allowed. */
|
|
27801
28111
|
allowStaticRoutes?: 'STATIC_ROUTES_ALLOWED' | 'STATIC_ROUTES_BLOCKED';
|
|
27802
28112
|
/** Specifies whether sub interfaces are allowed. */
|
|
27803
28113
|
allowSubInterfaces?: 'SUBINTERFACES_ALLOWED' | 'SUBINTERFACES_BLOCKED';
|
|
27804
28114
|
/** Specifies whether subnetwork creation is allowed. */
|
|
27805
28115
|
allowSubnetworkCreation?:
|
|
27806
|
-
| '
|
|
27807
|
-
| 'SUBNETWORK_CREATION_BLOCKED';
|
|
28116
|
+
'SUBNETWORK_CREATION_ALLOWED' | 'SUBNETWORK_CREATION_BLOCKED';
|
|
27808
28117
|
/** Specifies whether VPC firewall rules can be created under the network. */
|
|
27809
28118
|
allowVpcFirewallRules?:
|
|
27810
|
-
| '
|
|
27811
|
-
| 'VPC_FIREWALL_RULES_BLOCKED';
|
|
28119
|
+
'VPC_FIREWALL_RULES_ALLOWED' | 'VPC_FIREWALL_RULES_BLOCKED';
|
|
27812
28120
|
/** Specifies whether VPC peering is allowed. */
|
|
27813
28121
|
allowVpcPeering?: 'VPC_PEERING_ALLOWED' | 'VPC_PEERING_BLOCKED';
|
|
27814
28122
|
/** Specifies whether VPN creation is allowed. */
|
|
@@ -27837,8 +28145,7 @@ declare namespace gapi.client {
|
|
|
27837
28145
|
predefinedSubnetworkRanges?: NetworkProfileNetworkFeaturesPredefinedSubnetworkRange[];
|
|
27838
28146
|
/** Specifies which subnetwork purposes are supported. */
|
|
27839
28147
|
subnetPurposes?:
|
|
27840
|
-
| '
|
|
27841
|
-
| 'SUBNET_PURPOSE_PRIVATE'[];
|
|
28148
|
+
'SUBNET_PURPOSE_CUSTOM_HARDWARE' | 'SUBNET_PURPOSE_PRIVATE'[];
|
|
27842
28149
|
/** Specifies which subnetwork stack types are supported. */
|
|
27843
28150
|
subnetStackTypes?:
|
|
27844
28151
|
| 'SUBNET_STACK_TYPE_IPV4_IPV6'
|
|
@@ -28385,9 +28692,7 @@ declare namespace gapi.client {
|
|
|
28385
28692
|
consumedResources?: InstanceConsumptionInfo;
|
|
28386
28693
|
/** CPU overcommit. */
|
|
28387
28694
|
cpuOvercommitType?:
|
|
28388
|
-
| '
|
|
28389
|
-
| 'ENABLED'
|
|
28390
|
-
| 'NONE';
|
|
28695
|
+
'CPU_OVERCOMMIT_TYPE_UNSPECIFIED' | 'ENABLED' | 'NONE';
|
|
28391
28696
|
/** Local disk configurations. */
|
|
28392
28697
|
disks?: LocalDisk[];
|
|
28393
28698
|
/** Output only. Instance data that shows consumed resources on the node. */
|
|
@@ -28595,9 +28900,7 @@ declare namespace gapi.client {
|
|
|
28595
28900
|
accelerators?: AcceleratorConfig[];
|
|
28596
28901
|
/** CPU overcommit. */
|
|
28597
28902
|
cpuOvercommitType?:
|
|
28598
|
-
| '
|
|
28599
|
-
| 'ENABLED'
|
|
28600
|
-
| 'NONE';
|
|
28903
|
+
'CPU_OVERCOMMIT_TYPE_UNSPECIFIED' | 'ENABLED' | 'NONE';
|
|
28601
28904
|
/**
|
|
28602
28905
|
* Output only. [Output Only] Creation timestamp inRFC3339
|
|
28603
28906
|
* text format.
|
|
@@ -31146,9 +31449,7 @@ declare namespace gapi.client {
|
|
|
31146
31449
|
interface PreviewFeature {
|
|
31147
31450
|
/** Specifies whether the feature is enabled or disabled. */
|
|
31148
31451
|
activationStatus?:
|
|
31149
|
-
| '
|
|
31150
|
-
| 'DISABLED'
|
|
31151
|
-
| 'ENABLED';
|
|
31452
|
+
'ACTIVATION_STATE_UNSPECIFIED' | 'DISABLED' | 'ENABLED';
|
|
31152
31453
|
/**
|
|
31153
31454
|
* Output only. [Output Only] Creation timestamp inRFC3339
|
|
31154
31455
|
* text format.
|
|
@@ -31335,9 +31636,7 @@ declare namespace gapi.client {
|
|
|
31335
31636
|
* If this field is not specified, it is assumed to beCA_STANDARD.
|
|
31336
31637
|
*/
|
|
31337
31638
|
cloudArmorTier?:
|
|
31338
|
-
| '
|
|
31339
|
-
| 'CA_ENTERPRISE_PAYGO'
|
|
31340
|
-
| 'CA_STANDARD';
|
|
31639
|
+
'CA_ENTERPRISE_ANNUAL' | 'CA_ENTERPRISE_PAYGO' | 'CA_STANDARD';
|
|
31341
31640
|
/**
|
|
31342
31641
|
* Metadata key/value pairs available to all instances contained in this
|
|
31343
31642
|
* project. See Custom
|
|
@@ -31384,9 +31683,7 @@ declare namespace gapi.client {
|
|
|
31384
31683
|
* If this field is not specified, it is assumed to beCA_STANDARD.
|
|
31385
31684
|
*/
|
|
31386
31685
|
managedProtectionTier?:
|
|
31387
|
-
| '
|
|
31388
|
-
| 'CAMP_PLUS_PAYGO'
|
|
31389
|
-
| 'CA_STANDARD';
|
|
31686
|
+
'CAMP_PLUS_ANNUAL' | 'CAMP_PLUS_PAYGO' | 'CA_STANDARD';
|
|
31390
31687
|
/**
|
|
31391
31688
|
* The project ID. For example: my-example-project. Use the
|
|
31392
31689
|
* project ID to make requests to Compute Engine.
|
|
@@ -31464,9 +31761,7 @@ declare namespace gapi.client {
|
|
|
31464
31761
|
interface ProjectsSetCloudArmorTierRequest {
|
|
31465
31762
|
/** Managed protection tier to be set. */
|
|
31466
31763
|
cloudArmorTier?:
|
|
31467
|
-
| '
|
|
31468
|
-
| 'CA_ENTERPRISE_PAYGO'
|
|
31469
|
-
| 'CA_STANDARD';
|
|
31764
|
+
'CA_ENTERPRISE_ANNUAL' | 'CA_ENTERPRISE_PAYGO' | 'CA_STANDARD';
|
|
31470
31765
|
}
|
|
31471
31766
|
interface ProjectsSetDefaultNetworkTierRequest {
|
|
31472
31767
|
/** Default network tier to be set. */
|
|
@@ -31484,9 +31779,7 @@ declare namespace gapi.client {
|
|
|
31484
31779
|
interface ProjectsSetManagedProtectionTierRequest {
|
|
31485
31780
|
/** Managed protection tier to be set. */
|
|
31486
31781
|
managedProtectionTier?:
|
|
31487
|
-
| '
|
|
31488
|
-
| 'CAMP_PLUS_PAYGO'
|
|
31489
|
-
| 'CA_STANDARD';
|
|
31782
|
+
'CAMP_PLUS_ANNUAL' | 'CAMP_PLUS_PAYGO' | 'CA_STANDARD';
|
|
31490
31783
|
}
|
|
31491
31784
|
interface ProjectView {
|
|
31492
31785
|
/** The project data. */
|
|
@@ -32770,12 +33063,7 @@ declare namespace gapi.client {
|
|
|
32770
33063
|
selfLinkWithId?: string;
|
|
32771
33064
|
/** Output only. [Output Only] Status of the recoverable snapshot. */
|
|
32772
33065
|
status?:
|
|
32773
|
-
| '
|
|
32774
|
-
| 'DELETING'
|
|
32775
|
-
| 'FAILED'
|
|
32776
|
-
| 'READY'
|
|
32777
|
-
| 'RECOVERING'
|
|
32778
|
-
| 'UNKNOWN';
|
|
33066
|
+
'CREATING' | 'DELETING' | 'FAILED' | 'READY' | 'RECOVERING' | 'UNKNOWN';
|
|
32779
33067
|
}
|
|
32780
33068
|
interface RecoverableSnapshotAggregatedList {
|
|
32781
33069
|
etag?: string;
|
|
@@ -33916,11 +34204,7 @@ declare namespace gapi.client {
|
|
|
33916
34204
|
allInstances?: boolean;
|
|
33917
34205
|
/** Actions that are allowed to update instances within MIG. */
|
|
33918
34206
|
allowedActions?:
|
|
33919
|
-
| '
|
|
33920
|
-
| 'REFRESH'
|
|
33921
|
-
| 'REPLACE'
|
|
33922
|
-
| 'RESTART'
|
|
33923
|
-
| 'RESTART_IN_PLACE'[];
|
|
34207
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE'[];
|
|
33924
34208
|
/** Whether the boot disk is allowed to be updated with restart. */
|
|
33925
34209
|
disruptionMode?: 'LEGACY' | 'OPTIMIZED';
|
|
33926
34210
|
/**
|
|
@@ -33934,11 +34218,7 @@ declare namespace gapi.client {
|
|
|
33934
34218
|
* This field is deprecated, please use most_disruptive_allowed_action.
|
|
33935
34219
|
*/
|
|
33936
34220
|
maximalAction?:
|
|
33937
|
-
| '
|
|
33938
|
-
| 'REFRESH'
|
|
33939
|
-
| 'REPLACE'
|
|
33940
|
-
| 'RESTART'
|
|
33941
|
-
| 'RESTART_IN_PLACE';
|
|
34221
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE';
|
|
33942
34222
|
/**
|
|
33943
34223
|
* The minimal action that you want to perform on each instance during the
|
|
33944
34224
|
* update:
|
|
@@ -33959,11 +34239,7 @@ declare namespace gapi.client {
|
|
|
33959
34239
|
* necessary action is performed to execute the update.
|
|
33960
34240
|
*/
|
|
33961
34241
|
minimalAction?:
|
|
33962
|
-
| '
|
|
33963
|
-
| 'REFRESH'
|
|
33964
|
-
| 'REPLACE'
|
|
33965
|
-
| 'RESTART'
|
|
33966
|
-
| 'RESTART_IN_PLACE';
|
|
34242
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE';
|
|
33967
34243
|
/**
|
|
33968
34244
|
* The most disruptive action that you want to perform on each instance during
|
|
33969
34245
|
* the update:
|
|
@@ -33982,11 +34258,7 @@ declare namespace gapi.client {
|
|
|
33982
34258
|
* the update request will fail.
|
|
33983
34259
|
*/
|
|
33984
34260
|
mostDisruptiveAllowedAction?:
|
|
33985
|
-
| '
|
|
33986
|
-
| 'REFRESH'
|
|
33987
|
-
| 'REPLACE'
|
|
33988
|
-
| 'RESTART'
|
|
33989
|
-
| 'RESTART_IN_PLACE';
|
|
34261
|
+
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE';
|
|
33990
34262
|
}
|
|
33991
34263
|
interface RegionInstanceGroupManagersCreateInstancesRequest {
|
|
33992
34264
|
/** [Required] List of specifications of per-instance configs. */
|
|
@@ -34518,7 +34790,7 @@ declare namespace gapi.client {
|
|
|
34518
34790
|
}
|
|
34519
34791
|
interface ReliabilityRisk {
|
|
34520
34792
|
/**
|
|
34521
|
-
* Output only. [Output Only] Creation timestamp
|
|
34793
|
+
* Output only. [Output Only] Creation timestamp in RFC3339
|
|
34522
34794
|
* text format.
|
|
34523
34795
|
*/
|
|
34524
34796
|
creationTimestamp?: string;
|
|
@@ -34541,10 +34813,10 @@ declare namespace gapi.client {
|
|
|
34541
34813
|
kind?: string;
|
|
34542
34814
|
/**
|
|
34543
34815
|
* Name of the resource. The name must be 1-63 characters long and
|
|
34544
|
-
* comply
|
|
34816
|
+
* comply with RFC1035.
|
|
34545
34817
|
*/
|
|
34546
34818
|
name?: string;
|
|
34547
|
-
/** The
|
|
34819
|
+
/** The recommendation to mitigate the risk. */
|
|
34548
34820
|
recommendation?: RiskRecommendation;
|
|
34549
34821
|
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
34550
34822
|
selfLink?: string;
|
|
@@ -34753,9 +35025,7 @@ declare namespace gapi.client {
|
|
|
34753
35025
|
* and/or cooling failures).
|
|
34754
35026
|
*/
|
|
34755
35027
|
protectionTier?:
|
|
34756
|
-
| '
|
|
34757
|
-
| 'PROTECTION_TIER_UNSPECIFIED'
|
|
34758
|
-
| 'STANDARD';
|
|
35028
|
+
'CAPACITY_OPTIMIZED' | 'PROTECTION_TIER_UNSPECIFIED' | 'STANDARD';
|
|
34759
35029
|
/** Output only. [Output only] Indicates the reservation mode of the reservation. */
|
|
34760
35030
|
reservationMode?: 'CALENDAR' | 'DEFAULT' | 'RESERVATION_MODE_UNSPECIFIED';
|
|
34761
35031
|
/**
|
|
@@ -34775,9 +35045,7 @@ declare namespace gapi.client {
|
|
|
34775
35045
|
satisfiesPzs?: boolean;
|
|
34776
35046
|
/** The type of maintenance for the reservation. */
|
|
34777
35047
|
schedulingType?:
|
|
34778
|
-
| '
|
|
34779
|
-
| 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED'
|
|
34780
|
-
| 'INDEPENDENT';
|
|
35048
|
+
'GROUPED' | 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED' | 'INDEPENDENT';
|
|
34781
35049
|
/** Output only. [Output Only] Server-defined fully-qualified URL for this resource. */
|
|
34782
35050
|
selfLink?: string;
|
|
34783
35051
|
/** Output only. [Output Only] Server-defined URL for this resource with the resource id. */
|
|
@@ -35935,10 +36203,7 @@ declare namespace gapi.client {
|
|
|
35935
36203
|
availabilityDomainCount?: number;
|
|
35936
36204
|
/** Specifies network collocation */
|
|
35937
36205
|
collocation?:
|
|
35938
|
-
| '
|
|
35939
|
-
| 'COLLOCATED'
|
|
35940
|
-
| 'MAX_SPREAD'
|
|
35941
|
-
| 'UNSPECIFIED_COLLOCATION';
|
|
36206
|
+
'CLUSTERED' | 'COLLOCATED' | 'MAX_SPREAD' | 'UNSPECIFIED_COLLOCATION';
|
|
35942
36207
|
/**
|
|
35943
36208
|
* Specifies the shape of the GPU slice, in slice based GPU families eg.
|
|
35944
36209
|
* A4X.
|
|
@@ -36393,6 +36658,11 @@ declare namespace gapi.client {
|
|
|
36393
36658
|
* specified in the spread placement policy attached to the instance.
|
|
36394
36659
|
*/
|
|
36395
36660
|
availabilityDomain?: number;
|
|
36661
|
+
/**
|
|
36662
|
+
* Output only. Specifies the timestamp, when the instance will start graceful shutdown
|
|
36663
|
+
* process, in RFC3339 text format.
|
|
36664
|
+
*/
|
|
36665
|
+
gracefulShutdownTimestamp?: string;
|
|
36396
36666
|
/** Time in future when the instance will be terminated inRFC3339 text format. */
|
|
36397
36667
|
terminationTimestamp?: string;
|
|
36398
36668
|
}
|
|
@@ -36411,11 +36681,7 @@ declare namespace gapi.client {
|
|
|
36411
36681
|
* for the instance.
|
|
36412
36682
|
*/
|
|
36413
36683
|
state?:
|
|
36414
|
-
| '
|
|
36415
|
-
| 'CREATING'
|
|
36416
|
-
| 'DELETING'
|
|
36417
|
-
| 'FAILED'
|
|
36418
|
-
| 'STATE_UNSPECIFIED';
|
|
36684
|
+
'ACTIVE' | 'CREATING' | 'DELETING' | 'FAILED' | 'STATE_UNSPECIFIED';
|
|
36419
36685
|
}
|
|
36420
36686
|
interface ResourceStatusShutdownDetails {
|
|
36421
36687
|
/**
|
|
@@ -36433,27 +36699,24 @@ declare namespace gapi.client {
|
|
|
36433
36699
|
interface RiskDetails {
|
|
36434
36700
|
/** The duration of the risk since it was detected. */
|
|
36435
36701
|
duration?: string;
|
|
36702
|
+
/** Insight details for global DNS risk. */
|
|
36436
36703
|
globalDnsInsight?: RiskDetailsGlobalDnsInsight;
|
|
36437
36704
|
/** The last time the risk was updated. */
|
|
36438
36705
|
lastUpdateTimestamp?: string;
|
|
36439
36706
|
/** The severity of the risk. */
|
|
36440
36707
|
severity?:
|
|
36441
|
-
| '
|
|
36442
|
-
| 'HIGH'
|
|
36443
|
-
| 'LOW'
|
|
36444
|
-
| 'MEDIUM'
|
|
36445
|
-
| 'SEVERITY_UNSPECIFIED';
|
|
36708
|
+
'CRITICAL' | 'HIGH' | 'LOW' | 'MEDIUM' | 'SEVERITY_UNSPECIFIED';
|
|
36446
36709
|
/** The type of risk. */
|
|
36447
36710
|
type?: 'GLOBAL_DNS' | 'RISK_TYPE_UNSPECIFIED';
|
|
36448
36711
|
}
|
|
36449
36712
|
interface RiskDetailsGlobalDnsInsight {
|
|
36450
|
-
/**
|
|
36713
|
+
/** Indicates whether the project's default DNS setting is global DNS. */
|
|
36451
36714
|
projectDefaultIsGlobalDns?: boolean;
|
|
36452
36715
|
/** The observation window for the query counts. */
|
|
36453
36716
|
queryObservationWindow?: string;
|
|
36454
36717
|
/**
|
|
36455
|
-
* The number of queries that are risky. This
|
|
36456
|
-
* total_query_count.
|
|
36718
|
+
* The number of queries that are risky. This is always less than or
|
|
36719
|
+
* equal to total_query_count.
|
|
36457
36720
|
*/
|
|
36458
36721
|
riskyQueryCount?: string;
|
|
36459
36722
|
/** The total number of queries in the observation window. */
|
|
@@ -36718,9 +36981,7 @@ declare namespace gapi.client {
|
|
|
36718
36981
|
* Must be set to DELIMITER_UNSPECIFIED if no delay is to be added.
|
|
36719
36982
|
*/
|
|
36720
36983
|
delimiter?:
|
|
36721
|
-
| '
|
|
36722
|
-
| 'DELIMITER_LOCATION'
|
|
36723
|
-
| 'DELIMITER_UNSPECIFIED';
|
|
36984
|
+
'DELIMITER_BATCH' | 'DELIMITER_LOCATION' | 'DELIMITER_UNSPECIFIED';
|
|
36724
36985
|
/**
|
|
36725
36986
|
* Optional. The duration of the delay, if any, to be added between batches of
|
|
36726
36987
|
* projects. A zero duration corresponds to no delay.
|
|
@@ -37231,10 +37492,7 @@ declare namespace gapi.client {
|
|
|
37231
37492
|
* traversed
|
|
37232
37493
|
*/
|
|
37233
37494
|
pathSegmentType?:
|
|
37234
|
-
| '
|
|
37235
|
-
| 'AS_CONFED_SET'
|
|
37236
|
-
| 'AS_SEQUENCE'
|
|
37237
|
-
| 'AS_SET';
|
|
37495
|
+
'AS_CONFED_SEQUENCE' | 'AS_CONFED_SET' | 'AS_SEQUENCE' | 'AS_SET';
|
|
37238
37496
|
}
|
|
37239
37497
|
interface RouteList {
|
|
37240
37498
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
@@ -37559,9 +37817,7 @@ declare namespace gapi.client {
|
|
|
37559
37817
|
* Leave this field blank to advertise no custom groups.
|
|
37560
37818
|
*/
|
|
37561
37819
|
advertisedGroups?:
|
|
37562
|
-
| '
|
|
37563
|
-
| 'ALL_SUBNETS'
|
|
37564
|
-
| 'ALL_VPC_SUBNETS'[];
|
|
37820
|
+
'ALL_PEER_VPC_SUBNETS' | 'ALL_SUBNETS' | 'ALL_VPC_SUBNETS'[];
|
|
37565
37821
|
/**
|
|
37566
37822
|
* User-specified list of individual IP ranges to advertise in custom mode.
|
|
37567
37823
|
* This field can only be populated if advertise_mode is CUSTOM and
|
|
@@ -37628,9 +37884,7 @@ declare namespace gapi.client {
|
|
|
37628
37884
|
* Leave this field blank to advertise no custom groups.
|
|
37629
37885
|
*/
|
|
37630
37886
|
advertisedGroups?:
|
|
37631
|
-
| '
|
|
37632
|
-
| 'ALL_SUBNETS'
|
|
37633
|
-
| 'ALL_VPC_SUBNETS'[];
|
|
37887
|
+
'ALL_PEER_VPC_SUBNETS' | 'ALL_SUBNETS' | 'ALL_VPC_SUBNETS'[];
|
|
37634
37888
|
/**
|
|
37635
37889
|
* User-specified list of individual IP ranges to advertise in custom mode.
|
|
37636
37890
|
* This field can only be populated if advertise_mode is CUSTOM and
|
|
@@ -38177,8 +38431,7 @@ declare namespace gapi.client {
|
|
|
38177
38431
|
* present to enable NAT44 only.
|
|
38178
38432
|
*/
|
|
38179
38433
|
sourceSubnetworkIpRangesToNat64?:
|
|
38180
|
-
| '
|
|
38181
|
-
| 'LIST_OF_IPV6_SUBNETWORKS';
|
|
38434
|
+
'ALL_IPV6_SUBNETWORKS' | 'LIST_OF_IPV6_SUBNETWORKS';
|
|
38182
38435
|
/**
|
|
38183
38436
|
* A list of Subnetwork resources whose traffic should be translated by NAT
|
|
38184
38437
|
* Gateway. It is used only when LIST_OF_SUBNETWORKS is selected for the
|
|
@@ -38304,9 +38557,7 @@ declare namespace gapi.client {
|
|
|
38304
38557
|
* Default: [ALL_IP_RANGES]
|
|
38305
38558
|
*/
|
|
38306
38559
|
sourceIpRangesToNat?:
|
|
38307
|
-
| '
|
|
38308
|
-
| 'LIST_OF_SECONDARY_IP_RANGES'
|
|
38309
|
-
| 'PRIMARY_IP_RANGE'[];
|
|
38560
|
+
'ALL_IP_RANGES' | 'LIST_OF_SECONDARY_IP_RANGES' | 'PRIMARY_IP_RANGE'[];
|
|
38310
38561
|
}
|
|
38311
38562
|
interface RouterNatSubnetworkToNat64 {
|
|
38312
38563
|
/** URL for the subnetwork resource that will use NAT64. */
|
|
@@ -38711,6 +38962,8 @@ declare namespace gapi.client {
|
|
|
38711
38962
|
/** Routes that were advertised to the remote BGP peer */
|
|
38712
38963
|
advertisedRoutes?: Route[];
|
|
38713
38964
|
bfdStatus?: BfdStatus;
|
|
38965
|
+
/** Output only. [Output Only] Indicates whether the BGP peer is in a depreferenced state. */
|
|
38966
|
+
depreferenced?: boolean;
|
|
38714
38967
|
/**
|
|
38715
38968
|
* Output only. Enable IPv4 traffic over BGP Peer.
|
|
38716
38969
|
* It is enabled by default if the peerIpAddress is version 4.
|
|
@@ -38987,9 +39240,7 @@ declare namespace gapi.client {
|
|
|
38987
39240
|
hostErrorTimeoutSeconds?: number;
|
|
38988
39241
|
/** Specifies the termination action for the instance. */
|
|
38989
39242
|
instanceTerminationAction?:
|
|
38990
|
-
| '
|
|
38991
|
-
| 'INSTANCE_TERMINATION_ACTION_UNSPECIFIED'
|
|
38992
|
-
| 'STOP';
|
|
39243
|
+
'DELETE' | 'INSTANCE_TERMINATION_ACTION_UNSPECIFIED' | 'STOP';
|
|
38993
39244
|
/**
|
|
38994
39245
|
* Defines whether the instance is tolerant of higher cpu latency. This can
|
|
38995
39246
|
* only be set during instance creation, or when the instance is not currently
|
|
@@ -39063,10 +39314,7 @@ declare namespace gapi.client {
|
|
|
39063
39314
|
preemptionNoticeDuration?: Duration;
|
|
39064
39315
|
/** Specifies the provisioning model of the instance. */
|
|
39065
39316
|
provisioningModel?:
|
|
39066
|
-
| '
|
|
39067
|
-
| 'RESERVATION_BOUND'
|
|
39068
|
-
| 'SPOT'
|
|
39069
|
-
| 'STANDARD';
|
|
39317
|
+
'FLEX_START' | 'RESERVATION_BOUND' | 'SPOT' | 'STANDARD';
|
|
39070
39318
|
/**
|
|
39071
39319
|
* DEPRECATED: please use skipGuestOsShutdown.
|
|
39072
39320
|
* Timeout between GCE ACPI G2 Soft
|
|
@@ -39855,9 +40103,7 @@ declare namespace gapi.client {
|
|
|
39855
40103
|
* [Deprecated] Use requiredManagedProtectionTiers instead.
|
|
39856
40104
|
*/
|
|
39857
40105
|
ruleManagedProtectionTier?:
|
|
39858
|
-
| '
|
|
39859
|
-
| 'CAMP_PLUS_PAYGO'
|
|
39860
|
-
| 'CA_STANDARD';
|
|
40106
|
+
'CAMP_PLUS_ANNUAL' | 'CAMP_PLUS_PAYGO' | 'CA_STANDARD';
|
|
39861
40107
|
/**
|
|
39862
40108
|
* Identifier for the rule. This is only unique within the given security
|
|
39863
40109
|
* policy. This can only be set during rule creation, if rule number is not
|
|
@@ -40926,16 +41172,13 @@ declare namespace gapi.client {
|
|
|
40926
41172
|
* incoming encapsulated packet headers.
|
|
40927
41173
|
*/
|
|
40928
41174
|
encapsulationProfile?:
|
|
40929
|
-
| '
|
|
40930
|
-
| 'UNSPECIFIED_ENCAPSULATION_PROFILE';
|
|
41175
|
+
'GENEVE_SECURITY_V1' | 'UNSPECIFIED_ENCAPSULATION_PROFILE';
|
|
40931
41176
|
/**
|
|
40932
41177
|
* How this Service Attachment will treat traffic sent to the tunnel_ip,
|
|
40933
41178
|
* destined for the consumer network.
|
|
40934
41179
|
*/
|
|
40935
41180
|
routingMode?:
|
|
40936
|
-
| '
|
|
40937
|
-
| 'STANDARD_ROUTING'
|
|
40938
|
-
| 'UNSPECIFIED_ROUTING_MODE';
|
|
41181
|
+
'PACKET_INJECTION' | 'STANDARD_ROUTING' | 'UNSPECIFIED_ROUTING_MODE';
|
|
40939
41182
|
}
|
|
40940
41183
|
interface ServiceIntegrationSpec {
|
|
40941
41184
|
backupDr?: ServiceIntegrationSpecBackupDRSpec;
|
|
@@ -40956,7 +41199,9 @@ declare namespace gapi.client {
|
|
|
40956
41199
|
* Example key: zones/us-central1-a
|
|
40957
41200
|
*/
|
|
40958
41201
|
perLocationOperations?: {
|
|
40959
|
-
[
|
|
41202
|
+
[
|
|
41203
|
+
P in string
|
|
41204
|
+
]: SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo;
|
|
40960
41205
|
};
|
|
40961
41206
|
}
|
|
40962
41207
|
interface SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo {
|
|
@@ -41695,7 +41940,9 @@ declare namespace gapi.client {
|
|
|
41695
41940
|
* locations. Only one location can be specified.
|
|
41696
41941
|
*/
|
|
41697
41942
|
locations?: {
|
|
41698
|
-
[
|
|
41943
|
+
[
|
|
41944
|
+
P in string
|
|
41945
|
+
]: SnapshotSettingsStorageLocationSettingsStorageLocationPreference;
|
|
41699
41946
|
};
|
|
41700
41947
|
/** The chosen location policy. */
|
|
41701
41948
|
policy?:
|
|
@@ -41861,9 +42108,7 @@ declare namespace gapi.client {
|
|
|
41861
42108
|
* "NONE". The default value is "NONE" if it is not specified.
|
|
41862
42109
|
*/
|
|
41863
42110
|
keyRevocationActionType?:
|
|
41864
|
-
| '
|
|
41865
|
-
| 'NONE'
|
|
41866
|
-
| 'STOP';
|
|
42111
|
+
'KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED' | 'NONE' | 'STOP';
|
|
41867
42112
|
/** Labels to apply to instances that are created from this machine image. */
|
|
41868
42113
|
labels?: {[P in string]: string};
|
|
41869
42114
|
/**
|
|
@@ -41891,9 +42136,7 @@ declare namespace gapi.client {
|
|
|
41891
42136
|
networkInterfaces?: NetworkInterface[];
|
|
41892
42137
|
/** PostKeyRevocationActionType of the instance. */
|
|
41893
42138
|
postKeyRevocationActionType?:
|
|
41894
|
-
| '
|
|
41895
|
-
| 'POST_KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED'
|
|
41896
|
-
| 'SHUTDOWN';
|
|
42139
|
+
'NOOP' | 'POST_KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED' | 'SHUTDOWN';
|
|
41897
42140
|
/**
|
|
41898
42141
|
* Specifies the scheduling options for the instances that are created from
|
|
41899
42142
|
* this machine image.
|
|
@@ -42297,9 +42540,7 @@ declare namespace gapi.client {
|
|
|
42297
42540
|
* the instance group's list of named ports.
|
|
42298
42541
|
*/
|
|
42299
42542
|
portSpecification?:
|
|
42300
|
-
| '
|
|
42301
|
-
| 'USE_NAMED_PORT'
|
|
42302
|
-
| 'USE_SERVING_PORT';
|
|
42543
|
+
'USE_FIXED_PORT' | 'USE_NAMED_PORT' | 'USE_SERVING_PORT';
|
|
42303
42544
|
/**
|
|
42304
42545
|
* Specifies the type of proxy header to append before sending data to the
|
|
42305
42546
|
* backend, either NONE or PROXY_V1. The default
|
|
@@ -42632,11 +42873,7 @@ declare namespace gapi.client {
|
|
|
42632
42873
|
* the min_tls_version field must be set to TLS_1_2.
|
|
42633
42874
|
*/
|
|
42634
42875
|
profile?:
|
|
42635
|
-
| '
|
|
42636
|
-
| 'CUSTOM'
|
|
42637
|
-
| 'FIPS_202205'
|
|
42638
|
-
| 'MODERN'
|
|
42639
|
-
| 'RESTRICTED';
|
|
42876
|
+
'COMPATIBLE' | 'CUSTOM' | 'FIPS_202205' | 'MODERN' | 'RESTRICTED';
|
|
42640
42877
|
/**
|
|
42641
42878
|
* Output only. [Output Only] URL of the region where the regional SSL policy
|
|
42642
42879
|
* resides. This field is not applicable to global SSL policies.
|
|
@@ -42720,10 +42957,6 @@ declare namespace gapi.client {
|
|
|
42720
42957
|
}[];
|
|
42721
42958
|
}
|
|
42722
42959
|
interface SslPolicyReference {
|
|
42723
|
-
/**
|
|
42724
|
-
* URL of the SSL policy resource. Set this to empty string to clear any
|
|
42725
|
-
* existing SSL policy associated with the target proxy resource.
|
|
42726
|
-
*/
|
|
42727
42960
|
sslPolicy?: string;
|
|
42728
42961
|
}
|
|
42729
42962
|
interface StatefulPolicy {
|
|
@@ -44185,9 +44418,7 @@ declare namespace gapi.client {
|
|
|
44185
44418
|
* added to the reported VPC flow logs. Default isEXCLUDE_ALL_METADATA.
|
|
44186
44419
|
*/
|
|
44187
44420
|
metadata?:
|
|
44188
|
-
| '
|
|
44189
|
-
| 'EXCLUDE_ALL_METADATA'
|
|
44190
|
-
| 'INCLUDE_ALL_METADATA';
|
|
44421
|
+
'CUSTOM_METADATA' | 'EXCLUDE_ALL_METADATA' | 'INCLUDE_ALL_METADATA';
|
|
44191
44422
|
/**
|
|
44192
44423
|
* Can only be specified if VPC flow logs for this subnetwork is enabled and
|
|
44193
44424
|
* "metadata" was set to CUSTOM_METADATA.
|
|
@@ -46984,9 +47215,7 @@ declare namespace gapi.client {
|
|
|
46984
47215
|
* the instance group's list of named ports.
|
|
46985
47216
|
*/
|
|
46986
47217
|
portSpecification?:
|
|
46987
|
-
| '
|
|
46988
|
-
| 'USE_NAMED_PORT'
|
|
46989
|
-
| 'USE_SERVING_PORT';
|
|
47218
|
+
'USE_FIXED_PORT' | 'USE_NAMED_PORT' | 'USE_SERVING_PORT';
|
|
46990
47219
|
/**
|
|
46991
47220
|
* Specifies the type of proxy header to append before sending data to the
|
|
46992
47221
|
* backend, either NONE or PROXY_V1. The default
|
|
@@ -47149,9 +47378,7 @@ declare namespace gapi.client {
|
|
|
47149
47378
|
latestWindowStartTime?: string;
|
|
47150
47379
|
/** Output only. Maintenance method for the upcoming maintenance. */
|
|
47151
47380
|
maintenanceMethod?:
|
|
47152
|
-
| '
|
|
47153
|
-
| 'MAINTENANCE_METHOD_UNSPECIFIED'
|
|
47154
|
-
| 'TERMINATION';
|
|
47381
|
+
'LIVE_UPDATE' | 'MAINTENANCE_METHOD_UNSPECIFIED' | 'TERMINATION';
|
|
47155
47382
|
/** Indicates whether the UpcomingMaintenance will be triggered on VM shutdown. */
|
|
47156
47383
|
maintenanceOnShutdown?: boolean;
|
|
47157
47384
|
/** The reasons for the maintenance. Only valid for vms. */
|
|
@@ -47637,9 +47864,7 @@ declare namespace gapi.client {
|
|
|
47637
47864
|
* scheme of the backend service resources this Url map references.
|
|
47638
47865
|
*/
|
|
47639
47866
|
loadBalancingSchemes?:
|
|
47640
|
-
| '
|
|
47641
|
-
| 'EXTERNAL_MANAGED'
|
|
47642
|
-
| 'LOAD_BALANCING_SCHEME_UNSPECIFIED'[];
|
|
47867
|
+
'EXTERNAL' | 'EXTERNAL_MANAGED' | 'LOAD_BALANCING_SCHEME_UNSPECIFIED'[];
|
|
47643
47868
|
/** Content of the UrlMap to be validated. */
|
|
47644
47869
|
resource?: UrlMap;
|
|
47645
47870
|
}
|
|
@@ -49822,6 +50047,8 @@ declare namespace gapi.client {
|
|
|
49822
50047
|
interface WorkloadIdentityConfig {
|
|
49823
50048
|
identity?: string;
|
|
49824
50049
|
identityCertificateEnabled?: boolean;
|
|
50050
|
+
identityType?:
|
|
50051
|
+
'AGENT_IDENTITY' | 'IDENTITY_TYPE_UNSPECIFIED' | 'SERVICE_ACCOUNT';
|
|
49825
50052
|
}
|
|
49826
50053
|
interface XpnHostList {
|
|
49827
50054
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
@@ -50069,6 +50296,328 @@ declare namespace gapi.client {
|
|
|
50069
50296
|
*/
|
|
50070
50297
|
policy?: Policy;
|
|
50071
50298
|
}
|
|
50299
|
+
interface AcceleratorPodControllersResource {
|
|
50300
|
+
/** Deletes the specified AcceleratorPodController resource. */
|
|
50301
|
+
delete(request?: {
|
|
50302
|
+
/** V1 error format. */
|
|
50303
|
+
'$.xgafv'?: '1' | '2';
|
|
50304
|
+
/** OAuth access token. */
|
|
50305
|
+
access_token?: string;
|
|
50306
|
+
/** Data format for response. */
|
|
50307
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50308
|
+
/** JSONP */
|
|
50309
|
+
callback?: string;
|
|
50310
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50311
|
+
fields?: string;
|
|
50312
|
+
/** 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. */
|
|
50313
|
+
key?: string;
|
|
50314
|
+
/** OAuth 2.0 token for the current user. */
|
|
50315
|
+
oauth_token?: string;
|
|
50316
|
+
/** Returns response with indentations and line breaks. */
|
|
50317
|
+
prettyPrint?: boolean;
|
|
50318
|
+
project: string;
|
|
50319
|
+
/** 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. */
|
|
50320
|
+
quotaUser?: string;
|
|
50321
|
+
requestId?: string;
|
|
50322
|
+
resourceId: string;
|
|
50323
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50324
|
+
upload_protocol?: string;
|
|
50325
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50326
|
+
uploadType?: string;
|
|
50327
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50328
|
+
userIp?: string;
|
|
50329
|
+
zone: string;
|
|
50330
|
+
}): Request<Operation>;
|
|
50331
|
+
/** Gets the specified AcceleratorPodController resource. */
|
|
50332
|
+
get(request?: {
|
|
50333
|
+
/** V1 error format. */
|
|
50334
|
+
'$.xgafv'?: '1' | '2';
|
|
50335
|
+
/** OAuth access token. */
|
|
50336
|
+
access_token?: string;
|
|
50337
|
+
/** Data format for response. */
|
|
50338
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50339
|
+
/** JSONP */
|
|
50340
|
+
callback?: string;
|
|
50341
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50342
|
+
fields?: string;
|
|
50343
|
+
/** 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. */
|
|
50344
|
+
key?: string;
|
|
50345
|
+
/** OAuth 2.0 token for the current user. */
|
|
50346
|
+
oauth_token?: string;
|
|
50347
|
+
/** Returns response with indentations and line breaks. */
|
|
50348
|
+
prettyPrint?: boolean;
|
|
50349
|
+
project: string;
|
|
50350
|
+
/** 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. */
|
|
50351
|
+
quotaUser?: string;
|
|
50352
|
+
resourceId: string;
|
|
50353
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50354
|
+
upload_protocol?: string;
|
|
50355
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50356
|
+
uploadType?: string;
|
|
50357
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50358
|
+
userIp?: string;
|
|
50359
|
+
zone: string;
|
|
50360
|
+
}): Request<AcceleratorPodController>;
|
|
50361
|
+
/** Inserts a new AcceleratorPodController resource. */
|
|
50362
|
+
insert(request: {
|
|
50363
|
+
/** V1 error format. */
|
|
50364
|
+
'$.xgafv'?: '1' | '2';
|
|
50365
|
+
/** OAuth access token. */
|
|
50366
|
+
access_token?: string;
|
|
50367
|
+
/** Data format for response. */
|
|
50368
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50369
|
+
/** JSONP */
|
|
50370
|
+
callback?: string;
|
|
50371
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50372
|
+
fields?: string;
|
|
50373
|
+
/** 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. */
|
|
50374
|
+
key?: string;
|
|
50375
|
+
/** OAuth 2.0 token for the current user. */
|
|
50376
|
+
oauth_token?: string;
|
|
50377
|
+
/** Returns response with indentations and line breaks. */
|
|
50378
|
+
prettyPrint?: boolean;
|
|
50379
|
+
project: string;
|
|
50380
|
+
/** 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. */
|
|
50381
|
+
quotaUser?: string;
|
|
50382
|
+
requestId?: string;
|
|
50383
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50384
|
+
upload_protocol?: string;
|
|
50385
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50386
|
+
uploadType?: string;
|
|
50387
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50388
|
+
userIp?: string;
|
|
50389
|
+
zone: string;
|
|
50390
|
+
/** Request body */
|
|
50391
|
+
resource: AcceleratorPodController;
|
|
50392
|
+
}): Request<Operation>;
|
|
50393
|
+
insert(
|
|
50394
|
+
request: {
|
|
50395
|
+
/** V1 error format. */
|
|
50396
|
+
'$.xgafv'?: '1' | '2';
|
|
50397
|
+
/** OAuth access token. */
|
|
50398
|
+
access_token?: string;
|
|
50399
|
+
/** Data format for response. */
|
|
50400
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50401
|
+
/** JSONP */
|
|
50402
|
+
callback?: string;
|
|
50403
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50404
|
+
fields?: string;
|
|
50405
|
+
/** 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. */
|
|
50406
|
+
key?: string;
|
|
50407
|
+
/** OAuth 2.0 token for the current user. */
|
|
50408
|
+
oauth_token?: string;
|
|
50409
|
+
/** Returns response with indentations and line breaks. */
|
|
50410
|
+
prettyPrint?: boolean;
|
|
50411
|
+
project: string;
|
|
50412
|
+
/** 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. */
|
|
50413
|
+
quotaUser?: string;
|
|
50414
|
+
requestId?: string;
|
|
50415
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50416
|
+
upload_protocol?: string;
|
|
50417
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50418
|
+
uploadType?: string;
|
|
50419
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50420
|
+
userIp?: string;
|
|
50421
|
+
zone: string;
|
|
50422
|
+
},
|
|
50423
|
+
body: AcceleratorPodController,
|
|
50424
|
+
): Request<Operation>;
|
|
50425
|
+
/** Lists the AcceleratorPodController resources in the specified zone. */
|
|
50426
|
+
list(request?: {
|
|
50427
|
+
/** V1 error format. */
|
|
50428
|
+
'$.xgafv'?: '1' | '2';
|
|
50429
|
+
/** OAuth access token. */
|
|
50430
|
+
access_token?: string;
|
|
50431
|
+
/** Data format for response. */
|
|
50432
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50433
|
+
/** JSONP */
|
|
50434
|
+
callback?: string;
|
|
50435
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50436
|
+
fields?: string;
|
|
50437
|
+
/**
|
|
50438
|
+
* A filter expression that filters resources listed in the response. Most
|
|
50439
|
+
* Compute resources support two types of filter expressions:
|
|
50440
|
+
* expressions that support regular expressions and expressions that follow
|
|
50441
|
+
* API improvement proposal AIP-160.
|
|
50442
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
50443
|
+
*
|
|
50444
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
50445
|
+
* operator, and the value that you want to use for filtering. The value
|
|
50446
|
+
* must be a string, a number, or a boolean. The operator
|
|
50447
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
50448
|
+
*
|
|
50449
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
50450
|
+
* exclude instances named `example-instance` by specifying
|
|
50451
|
+
* `name != example-instance`.
|
|
50452
|
+
*
|
|
50453
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
50454
|
+
* For example, to find all objects with `owner` label use:
|
|
50455
|
+
* ```
|
|
50456
|
+
* labels.owner:*
|
|
50457
|
+
* ```
|
|
50458
|
+
*
|
|
50459
|
+
* You can also filter nested fields. For example, you could specify
|
|
50460
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
50461
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
50462
|
+
* on nested fields to filter based onresource labels.
|
|
50463
|
+
*
|
|
50464
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
50465
|
+
* parentheses. For example:
|
|
50466
|
+
* ```
|
|
50467
|
+
* (scheduling.automaticRestart = true)
|
|
50468
|
+
* (cpuPlatform = "Intel Skylake")
|
|
50469
|
+
* ```
|
|
50470
|
+
* By default, each expression is an `AND` expression. However, you
|
|
50471
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
50472
|
+
* For example:
|
|
50473
|
+
* ```
|
|
50474
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
50475
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
50476
|
+
* (scheduling.automaticRestart = true)
|
|
50477
|
+
* ```
|
|
50478
|
+
*
|
|
50479
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
50480
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
50481
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
50482
|
+
*
|
|
50483
|
+
* `fieldname eq unquoted literal`
|
|
50484
|
+
* `fieldname eq 'single quoted literal'`
|
|
50485
|
+
* `fieldname eq "double quoted literal"`
|
|
50486
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
50487
|
+
*
|
|
50488
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
50489
|
+
* The literal value must match the entire field.
|
|
50490
|
+
*
|
|
50491
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
50492
|
+
* you would use `name ne .*instance`.
|
|
50493
|
+
*
|
|
50494
|
+
* You cannot combine constraints on multiple fields using regular
|
|
50495
|
+
* expressions.
|
|
50496
|
+
*/
|
|
50497
|
+
filter?: string;
|
|
50498
|
+
/** 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. */
|
|
50499
|
+
key?: string;
|
|
50500
|
+
/**
|
|
50501
|
+
* The maximum number of results per page that should be returned.
|
|
50502
|
+
* If the number of available results is larger than `maxResults`,
|
|
50503
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
50504
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
50505
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
50506
|
+
*/
|
|
50507
|
+
maxResults?: number;
|
|
50508
|
+
/** OAuth 2.0 token for the current user. */
|
|
50509
|
+
oauth_token?: string;
|
|
50510
|
+
/**
|
|
50511
|
+
* Sorts list results by a certain order. By default, results
|
|
50512
|
+
* are returned in alphanumerical order based on the resource name.
|
|
50513
|
+
*
|
|
50514
|
+
* You can also sort results in descending order based on the creation
|
|
50515
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
50516
|
+
* results based on the `creationTimestamp` field in
|
|
50517
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
50518
|
+
* resources like operations so that the newest operation is returned first.
|
|
50519
|
+
*
|
|
50520
|
+
* Currently, only sorting by `name` or
|
|
50521
|
+
* `creationTimestamp desc` is supported.
|
|
50522
|
+
*/
|
|
50523
|
+
orderBy?: string;
|
|
50524
|
+
/**
|
|
50525
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
50526
|
+
* `nextPageToken` returned by a previous list request to get
|
|
50527
|
+
* the next page of results.
|
|
50528
|
+
*/
|
|
50529
|
+
pageToken?: string;
|
|
50530
|
+
/** Returns response with indentations and line breaks. */
|
|
50531
|
+
prettyPrint?: boolean;
|
|
50532
|
+
project: string;
|
|
50533
|
+
/** 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. */
|
|
50534
|
+
quotaUser?: string;
|
|
50535
|
+
/**
|
|
50536
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
50537
|
+
* of failure. The default value is false.
|
|
50538
|
+
*
|
|
50539
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
50540
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
50541
|
+
* with an error code.
|
|
50542
|
+
*/
|
|
50543
|
+
returnPartialSuccess?: boolean;
|
|
50544
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50545
|
+
upload_protocol?: string;
|
|
50546
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50547
|
+
uploadType?: string;
|
|
50548
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50549
|
+
userIp?: string;
|
|
50550
|
+
zone: string;
|
|
50551
|
+
}): Request<AcceleratorPodControllersListResponse>;
|
|
50552
|
+
/** Patches the specified AcceleratorPodController resource. */
|
|
50553
|
+
patch(request: {
|
|
50554
|
+
/** V1 error format. */
|
|
50555
|
+
'$.xgafv'?: '1' | '2';
|
|
50556
|
+
/** OAuth access token. */
|
|
50557
|
+
access_token?: string;
|
|
50558
|
+
/** Data format for response. */
|
|
50559
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50560
|
+
/** JSONP */
|
|
50561
|
+
callback?: string;
|
|
50562
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50563
|
+
fields?: string;
|
|
50564
|
+
/** 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. */
|
|
50565
|
+
key?: string;
|
|
50566
|
+
/** OAuth 2.0 token for the current user. */
|
|
50567
|
+
oauth_token?: string;
|
|
50568
|
+
/** Returns response with indentations and line breaks. */
|
|
50569
|
+
prettyPrint?: boolean;
|
|
50570
|
+
project: string;
|
|
50571
|
+
/** 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. */
|
|
50572
|
+
quotaUser?: string;
|
|
50573
|
+
requestId?: string;
|
|
50574
|
+
resourceId: string;
|
|
50575
|
+
updateMask?: string;
|
|
50576
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50577
|
+
upload_protocol?: string;
|
|
50578
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50579
|
+
uploadType?: string;
|
|
50580
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50581
|
+
userIp?: string;
|
|
50582
|
+
zone: string;
|
|
50583
|
+
/** Request body */
|
|
50584
|
+
resource: AcceleratorPodController;
|
|
50585
|
+
}): Request<Operation>;
|
|
50586
|
+
patch(
|
|
50587
|
+
request: {
|
|
50588
|
+
/** V1 error format. */
|
|
50589
|
+
'$.xgafv'?: '1' | '2';
|
|
50590
|
+
/** OAuth access token. */
|
|
50591
|
+
access_token?: string;
|
|
50592
|
+
/** Data format for response. */
|
|
50593
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50594
|
+
/** JSONP */
|
|
50595
|
+
callback?: string;
|
|
50596
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50597
|
+
fields?: string;
|
|
50598
|
+
/** 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. */
|
|
50599
|
+
key?: string;
|
|
50600
|
+
/** OAuth 2.0 token for the current user. */
|
|
50601
|
+
oauth_token?: string;
|
|
50602
|
+
/** Returns response with indentations and line breaks. */
|
|
50603
|
+
prettyPrint?: boolean;
|
|
50604
|
+
project: string;
|
|
50605
|
+
/** 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. */
|
|
50606
|
+
quotaUser?: string;
|
|
50607
|
+
requestId?: string;
|
|
50608
|
+
resourceId: string;
|
|
50609
|
+
updateMask?: string;
|
|
50610
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50611
|
+
upload_protocol?: string;
|
|
50612
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50613
|
+
uploadType?: string;
|
|
50614
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50615
|
+
userIp?: string;
|
|
50616
|
+
zone: string;
|
|
50617
|
+
},
|
|
50618
|
+
body: AcceleratorPodController,
|
|
50619
|
+
): Request<Operation>;
|
|
50620
|
+
}
|
|
50072
50621
|
interface AcceleratorTypesResource {
|
|
50073
50622
|
/**
|
|
50074
50623
|
* Retrieves an aggregated list of accelerator types.
|
|
@@ -53877,7 +54426,12 @@ declare namespace gapi.client {
|
|
|
53877
54426
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
53878
54427
|
userIp?: string;
|
|
53879
54428
|
}): Request<BackendServiceList>;
|
|
53880
|
-
/**
|
|
54429
|
+
/**
|
|
54430
|
+
* Retrieves a list of all usable backend services for Application Load
|
|
54431
|
+
* Balancers and Proxy Network Load Balancers in the specified project.
|
|
54432
|
+
* Backend services for external and internal passthrough Network Load
|
|
54433
|
+
* Balancers are not included in the response.
|
|
54434
|
+
*/
|
|
53881
54435
|
listUsable(request?: {
|
|
53882
54436
|
/** V1 error format. */
|
|
53883
54437
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54380,33 +54934,447 @@ declare namespace gapi.client {
|
|
|
54380
54934
|
project: string;
|
|
54381
54935
|
/** 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. */
|
|
54382
54936
|
quotaUser?: string;
|
|
54383
|
-
/** Name or id of the resource for this request. */
|
|
54384
|
-
resource: string;
|
|
54937
|
+
/** Name or id of the resource for this request. */
|
|
54938
|
+
resource: string;
|
|
54939
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54940
|
+
upload_protocol?: string;
|
|
54941
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54942
|
+
uploadType?: string;
|
|
54943
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54944
|
+
userIp?: string;
|
|
54945
|
+
},
|
|
54946
|
+
body: TestPermissionsRequest,
|
|
54947
|
+
): Request<TestPermissionsResponse>;
|
|
54948
|
+
/**
|
|
54949
|
+
* Updates the specified BackendService resource with the data included in the
|
|
54950
|
+
* request. For more information, seeBackend
|
|
54951
|
+
* services overview.
|
|
54952
|
+
*/
|
|
54953
|
+
update(request: {
|
|
54954
|
+
/** V1 error format. */
|
|
54955
|
+
'$.xgafv'?: '1' | '2';
|
|
54956
|
+
/** OAuth access token. */
|
|
54957
|
+
access_token?: string;
|
|
54958
|
+
/** Data format for response. */
|
|
54959
|
+
alt?: 'json' | 'media' | 'proto';
|
|
54960
|
+
/** Name of the BackendService resource to update. */
|
|
54961
|
+
backendService: string;
|
|
54962
|
+
/** JSONP */
|
|
54963
|
+
callback?: string;
|
|
54964
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
54965
|
+
fields?: string;
|
|
54966
|
+
/** 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. */
|
|
54967
|
+
key?: string;
|
|
54968
|
+
/** OAuth 2.0 token for the current user. */
|
|
54969
|
+
oauth_token?: string;
|
|
54970
|
+
/** Returns response with indentations and line breaks. */
|
|
54971
|
+
prettyPrint?: boolean;
|
|
54972
|
+
/** Project ID for this request. */
|
|
54973
|
+
project: string;
|
|
54974
|
+
/** 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. */
|
|
54975
|
+
quotaUser?: string;
|
|
54976
|
+
/**
|
|
54977
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54978
|
+
* that if you must retry your request, the server will know to ignore the
|
|
54979
|
+
* request if it has already been completed.
|
|
54980
|
+
*
|
|
54981
|
+
* For example, consider a situation where you make an initial request and
|
|
54982
|
+
* the request times out. If you make the request again with the same
|
|
54983
|
+
* request ID, the server can check if original operation with the same
|
|
54984
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
54985
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
54986
|
+
*
|
|
54987
|
+
* The request ID must be
|
|
54988
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
54989
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
54990
|
+
*/
|
|
54991
|
+
requestId?: string;
|
|
54992
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54993
|
+
upload_protocol?: string;
|
|
54994
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54995
|
+
uploadType?: string;
|
|
54996
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54997
|
+
userIp?: string;
|
|
54998
|
+
/** Request body */
|
|
54999
|
+
resource: BackendService;
|
|
55000
|
+
}): Request<Operation>;
|
|
55001
|
+
update(
|
|
55002
|
+
request: {
|
|
55003
|
+
/** V1 error format. */
|
|
55004
|
+
'$.xgafv'?: '1' | '2';
|
|
55005
|
+
/** OAuth access token. */
|
|
55006
|
+
access_token?: string;
|
|
55007
|
+
/** Data format for response. */
|
|
55008
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55009
|
+
/** Name of the BackendService resource to update. */
|
|
55010
|
+
backendService: string;
|
|
55011
|
+
/** JSONP */
|
|
55012
|
+
callback?: string;
|
|
55013
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55014
|
+
fields?: string;
|
|
55015
|
+
/** 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. */
|
|
55016
|
+
key?: string;
|
|
55017
|
+
/** OAuth 2.0 token for the current user. */
|
|
55018
|
+
oauth_token?: string;
|
|
55019
|
+
/** Returns response with indentations and line breaks. */
|
|
55020
|
+
prettyPrint?: boolean;
|
|
55021
|
+
/** Project ID for this request. */
|
|
55022
|
+
project: string;
|
|
55023
|
+
/** 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. */
|
|
55024
|
+
quotaUser?: string;
|
|
55025
|
+
/**
|
|
55026
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55027
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55028
|
+
* request if it has already been completed.
|
|
55029
|
+
*
|
|
55030
|
+
* For example, consider a situation where you make an initial request and
|
|
55031
|
+
* the request times out. If you make the request again with the same
|
|
55032
|
+
* request ID, the server can check if original operation with the same
|
|
55033
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55034
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55035
|
+
*
|
|
55036
|
+
* The request ID must be
|
|
55037
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55038
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55039
|
+
*/
|
|
55040
|
+
requestId?: string;
|
|
55041
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55042
|
+
upload_protocol?: string;
|
|
55043
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55044
|
+
uploadType?: string;
|
|
55045
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55046
|
+
userIp?: string;
|
|
55047
|
+
},
|
|
55048
|
+
body: BackendService,
|
|
55049
|
+
): Request<Operation>;
|
|
55050
|
+
}
|
|
55051
|
+
interface CrossSiteNetworksResource {
|
|
55052
|
+
/** Deletes the specified cross-site network in the given scope. */
|
|
55053
|
+
delete(request?: {
|
|
55054
|
+
/** V1 error format. */
|
|
55055
|
+
'$.xgafv'?: '1' | '2';
|
|
55056
|
+
/** OAuth access token. */
|
|
55057
|
+
access_token?: string;
|
|
55058
|
+
/** Data format for response. */
|
|
55059
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55060
|
+
/** JSONP */
|
|
55061
|
+
callback?: string;
|
|
55062
|
+
/** Name of the cross-site network to delete. */
|
|
55063
|
+
crossSiteNetwork: string;
|
|
55064
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55065
|
+
fields?: string;
|
|
55066
|
+
/** 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. */
|
|
55067
|
+
key?: string;
|
|
55068
|
+
/** OAuth 2.0 token for the current user. */
|
|
55069
|
+
oauth_token?: string;
|
|
55070
|
+
/** Returns response with indentations and line breaks. */
|
|
55071
|
+
prettyPrint?: boolean;
|
|
55072
|
+
/** Project ID for this request. */
|
|
55073
|
+
project: string;
|
|
55074
|
+
/** 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. */
|
|
55075
|
+
quotaUser?: string;
|
|
55076
|
+
/**
|
|
55077
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55078
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55079
|
+
* request if it has already been completed.
|
|
55080
|
+
*
|
|
55081
|
+
* For example, consider a situation where you make an initial request and
|
|
55082
|
+
* the request times out. If you make the request again with the same
|
|
55083
|
+
* request ID, the server can check if original operation with the same
|
|
55084
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55085
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55086
|
+
*
|
|
55087
|
+
* The request ID must be
|
|
55088
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55089
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55090
|
+
* end_interface: MixerMutationRequestBuilder
|
|
55091
|
+
*/
|
|
55092
|
+
requestId?: string;
|
|
55093
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55094
|
+
upload_protocol?: string;
|
|
55095
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55096
|
+
uploadType?: string;
|
|
55097
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55098
|
+
userIp?: string;
|
|
55099
|
+
}): Request<Operation>;
|
|
55100
|
+
/** Returns the specified cross-site network in the given scope. */
|
|
55101
|
+
get(request?: {
|
|
55102
|
+
/** V1 error format. */
|
|
55103
|
+
'$.xgafv'?: '1' | '2';
|
|
55104
|
+
/** OAuth access token. */
|
|
55105
|
+
access_token?: string;
|
|
55106
|
+
/** Data format for response. */
|
|
55107
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55108
|
+
/** JSONP */
|
|
55109
|
+
callback?: string;
|
|
55110
|
+
/** Name of the cross-site network to return. */
|
|
55111
|
+
crossSiteNetwork: string;
|
|
55112
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55113
|
+
fields?: string;
|
|
55114
|
+
/** 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. */
|
|
55115
|
+
key?: string;
|
|
55116
|
+
/** OAuth 2.0 token for the current user. */
|
|
55117
|
+
oauth_token?: string;
|
|
55118
|
+
/** Returns response with indentations and line breaks. */
|
|
55119
|
+
prettyPrint?: boolean;
|
|
55120
|
+
/** Project ID for this request. */
|
|
55121
|
+
project: string;
|
|
55122
|
+
/** 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. */
|
|
55123
|
+
quotaUser?: string;
|
|
55124
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55125
|
+
upload_protocol?: string;
|
|
55126
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55127
|
+
uploadType?: string;
|
|
55128
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55129
|
+
userIp?: string;
|
|
55130
|
+
}): Request<CrossSiteNetwork>;
|
|
55131
|
+
/**
|
|
55132
|
+
* Creates a cross-site network in the specified project in the given scope
|
|
55133
|
+
* using the parameters that are included in the request.
|
|
55134
|
+
*/
|
|
55135
|
+
insert(request: {
|
|
55136
|
+
/** V1 error format. */
|
|
55137
|
+
'$.xgafv'?: '1' | '2';
|
|
55138
|
+
/** OAuth access token. */
|
|
55139
|
+
access_token?: string;
|
|
55140
|
+
/** Data format for response. */
|
|
55141
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55142
|
+
/** JSONP */
|
|
55143
|
+
callback?: string;
|
|
55144
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55145
|
+
fields?: string;
|
|
55146
|
+
/** 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. */
|
|
55147
|
+
key?: string;
|
|
55148
|
+
/** OAuth 2.0 token for the current user. */
|
|
55149
|
+
oauth_token?: string;
|
|
55150
|
+
/** Returns response with indentations and line breaks. */
|
|
55151
|
+
prettyPrint?: boolean;
|
|
55152
|
+
/** Project ID for this request. */
|
|
55153
|
+
project: string;
|
|
55154
|
+
/** 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. */
|
|
55155
|
+
quotaUser?: string;
|
|
55156
|
+
/**
|
|
55157
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55158
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55159
|
+
* request if it has already been completed.
|
|
55160
|
+
*
|
|
55161
|
+
* For example, consider a situation where you make an initial request and
|
|
55162
|
+
* the request times out. If you make the request again with the same
|
|
55163
|
+
* request ID, the server can check if original operation with the same
|
|
55164
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55165
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55166
|
+
*
|
|
55167
|
+
* The request ID must be
|
|
55168
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55169
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55170
|
+
* end_interface: MixerMutationRequestBuilder
|
|
55171
|
+
*/
|
|
55172
|
+
requestId?: string;
|
|
55173
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55174
|
+
upload_protocol?: string;
|
|
55175
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55176
|
+
uploadType?: string;
|
|
55177
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55178
|
+
userIp?: string;
|
|
55179
|
+
/** [Input Only] Validate the new configuration, but don't create it. */
|
|
55180
|
+
validateOnly?: boolean;
|
|
55181
|
+
/** Request body */
|
|
55182
|
+
resource: CrossSiteNetwork;
|
|
55183
|
+
}): Request<Operation>;
|
|
55184
|
+
insert(
|
|
55185
|
+
request: {
|
|
55186
|
+
/** V1 error format. */
|
|
55187
|
+
'$.xgafv'?: '1' | '2';
|
|
55188
|
+
/** OAuth access token. */
|
|
55189
|
+
access_token?: string;
|
|
55190
|
+
/** Data format for response. */
|
|
55191
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55192
|
+
/** JSONP */
|
|
55193
|
+
callback?: string;
|
|
55194
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55195
|
+
fields?: string;
|
|
55196
|
+
/** 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. */
|
|
55197
|
+
key?: string;
|
|
55198
|
+
/** OAuth 2.0 token for the current user. */
|
|
55199
|
+
oauth_token?: string;
|
|
55200
|
+
/** Returns response with indentations and line breaks. */
|
|
55201
|
+
prettyPrint?: boolean;
|
|
55202
|
+
/** Project ID for this request. */
|
|
55203
|
+
project: string;
|
|
55204
|
+
/** 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. */
|
|
55205
|
+
quotaUser?: string;
|
|
55206
|
+
/**
|
|
55207
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55208
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55209
|
+
* request if it has already been completed.
|
|
55210
|
+
*
|
|
55211
|
+
* For example, consider a situation where you make an initial request and
|
|
55212
|
+
* the request times out. If you make the request again with the same
|
|
55213
|
+
* request ID, the server can check if original operation with the same
|
|
55214
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55215
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55216
|
+
*
|
|
55217
|
+
* The request ID must be
|
|
55218
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55219
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55220
|
+
* end_interface: MixerMutationRequestBuilder
|
|
55221
|
+
*/
|
|
55222
|
+
requestId?: string;
|
|
54385
55223
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54386
55224
|
upload_protocol?: string;
|
|
54387
55225
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54388
55226
|
uploadType?: string;
|
|
54389
55227
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54390
55228
|
userIp?: string;
|
|
55229
|
+
/** [Input Only] Validate the new configuration, but don't create it. */
|
|
55230
|
+
validateOnly?: boolean;
|
|
54391
55231
|
},
|
|
54392
|
-
body:
|
|
54393
|
-
): Request<
|
|
55232
|
+
body: CrossSiteNetwork,
|
|
55233
|
+
): Request<Operation>;
|
|
55234
|
+
/** Lists the cross-site networks for a project in the given scope. */
|
|
55235
|
+
list(request?: {
|
|
55236
|
+
/** V1 error format. */
|
|
55237
|
+
'$.xgafv'?: '1' | '2';
|
|
55238
|
+
/** OAuth access token. */
|
|
55239
|
+
access_token?: string;
|
|
55240
|
+
/** Data format for response. */
|
|
55241
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55242
|
+
/** JSONP */
|
|
55243
|
+
callback?: string;
|
|
55244
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55245
|
+
fields?: string;
|
|
55246
|
+
/**
|
|
55247
|
+
* A filter expression that filters resources listed in the response. Most
|
|
55248
|
+
* Compute resources support two types of filter expressions:
|
|
55249
|
+
* expressions that support regular expressions and expressions that follow
|
|
55250
|
+
* API improvement proposal AIP-160.
|
|
55251
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
55252
|
+
*
|
|
55253
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
55254
|
+
* operator, and the value that you want to use for filtering. The value
|
|
55255
|
+
* must be a string, a number, or a boolean. The operator
|
|
55256
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
55257
|
+
*
|
|
55258
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
55259
|
+
* exclude instances named `example-instance` by specifying
|
|
55260
|
+
* `name != example-instance`.
|
|
55261
|
+
*
|
|
55262
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
55263
|
+
* For example, to find all objects with `owner` label use:
|
|
55264
|
+
* ```
|
|
55265
|
+
* labels.owner:*
|
|
55266
|
+
* ```
|
|
55267
|
+
*
|
|
55268
|
+
* You can also filter nested fields. For example, you could specify
|
|
55269
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
55270
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
55271
|
+
* on nested fields to filter based onresource labels.
|
|
55272
|
+
*
|
|
55273
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
55274
|
+
* parentheses. For example:
|
|
55275
|
+
* ```
|
|
55276
|
+
* (scheduling.automaticRestart = true)
|
|
55277
|
+
* (cpuPlatform = "Intel Skylake")
|
|
55278
|
+
* ```
|
|
55279
|
+
* By default, each expression is an `AND` expression. However, you
|
|
55280
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
55281
|
+
* For example:
|
|
55282
|
+
* ```
|
|
55283
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
55284
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
55285
|
+
* (scheduling.automaticRestart = true)
|
|
55286
|
+
* ```
|
|
55287
|
+
*
|
|
55288
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
55289
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
55290
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
55291
|
+
*
|
|
55292
|
+
* `fieldname eq unquoted literal`
|
|
55293
|
+
* `fieldname eq 'single quoted literal'`
|
|
55294
|
+
* `fieldname eq "double quoted literal"`
|
|
55295
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
55296
|
+
*
|
|
55297
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
55298
|
+
* The literal value must match the entire field.
|
|
55299
|
+
*
|
|
55300
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
55301
|
+
* you would use `name ne .*instance`.
|
|
55302
|
+
*
|
|
55303
|
+
* You cannot combine constraints on multiple fields using regular
|
|
55304
|
+
* expressions.
|
|
55305
|
+
*/
|
|
55306
|
+
filter?: string;
|
|
55307
|
+
/** 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. */
|
|
55308
|
+
key?: string;
|
|
55309
|
+
/**
|
|
55310
|
+
* The maximum number of results per page that should be returned.
|
|
55311
|
+
* If the number of available results is larger than `maxResults`,
|
|
55312
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
55313
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
55314
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
55315
|
+
*/
|
|
55316
|
+
maxResults?: number;
|
|
55317
|
+
/** OAuth 2.0 token for the current user. */
|
|
55318
|
+
oauth_token?: string;
|
|
55319
|
+
/**
|
|
55320
|
+
* Sorts list results by a certain order. By default, results
|
|
55321
|
+
* are returned in alphanumerical order based on the resource name.
|
|
55322
|
+
*
|
|
55323
|
+
* You can also sort results in descending order based on the creation
|
|
55324
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
55325
|
+
* results based on the `creationTimestamp` field in
|
|
55326
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
55327
|
+
* resources like operations so that the newest operation is returned first.
|
|
55328
|
+
*
|
|
55329
|
+
* Currently, only sorting by `name` or
|
|
55330
|
+
* `creationTimestamp desc` is supported.
|
|
55331
|
+
*/
|
|
55332
|
+
orderBy?: string;
|
|
55333
|
+
/**
|
|
55334
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
55335
|
+
* `nextPageToken` returned by a previous list request to get
|
|
55336
|
+
* the next page of results.
|
|
55337
|
+
*/
|
|
55338
|
+
pageToken?: string;
|
|
55339
|
+
/** Returns response with indentations and line breaks. */
|
|
55340
|
+
prettyPrint?: boolean;
|
|
55341
|
+
/** Project ID for this request. */
|
|
55342
|
+
project: string;
|
|
55343
|
+
/** 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. */
|
|
55344
|
+
quotaUser?: string;
|
|
55345
|
+
/**
|
|
55346
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
55347
|
+
* of failure. The default value is false.
|
|
55348
|
+
*
|
|
55349
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
55350
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
55351
|
+
* with an error code.
|
|
55352
|
+
*/
|
|
55353
|
+
returnPartialSuccess?: boolean;
|
|
55354
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55355
|
+
upload_protocol?: string;
|
|
55356
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55357
|
+
uploadType?: string;
|
|
55358
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55359
|
+
userIp?: string;
|
|
55360
|
+
}): Request<CrossSiteNetworkList>;
|
|
54394
55361
|
/**
|
|
54395
|
-
* Updates the specified
|
|
54396
|
-
* request.
|
|
54397
|
-
*
|
|
55362
|
+
* Updates the specified cross-site network with the data included in
|
|
55363
|
+
* the request. This method supportsPATCH
|
|
55364
|
+
* semantics and uses theJSON merge
|
|
55365
|
+
* patch format and processing rules.
|
|
54398
55366
|
*/
|
|
54399
|
-
|
|
55367
|
+
patch(request: {
|
|
54400
55368
|
/** V1 error format. */
|
|
54401
55369
|
'$.xgafv'?: '1' | '2';
|
|
54402
55370
|
/** OAuth access token. */
|
|
54403
55371
|
access_token?: string;
|
|
54404
55372
|
/** Data format for response. */
|
|
54405
55373
|
alt?: 'json' | 'media' | 'proto';
|
|
54406
|
-
/** Name of the BackendService resource to update. */
|
|
54407
|
-
backendService: string;
|
|
54408
55374
|
/** JSONP */
|
|
54409
55375
|
callback?: string;
|
|
55376
|
+
/** Name of the cross-site network to update. */
|
|
55377
|
+
crossSiteNetwork: string;
|
|
54410
55378
|
/** Selector specifying which fields to include in a partial response. */
|
|
54411
55379
|
fields?: string;
|
|
54412
55380
|
/** 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. */
|
|
@@ -54433,18 +55401,23 @@ declare namespace gapi.client {
|
|
|
54433
55401
|
* The request ID must be
|
|
54434
55402
|
* a valid UUID with the exception that zero UUID is not supported
|
|
54435
55403
|
* (00000000-0000-0000-0000-000000000000).
|
|
55404
|
+
* end_interface: MixerMutationRequestBuilder
|
|
54436
55405
|
*/
|
|
54437
55406
|
requestId?: string;
|
|
55407
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
55408
|
+
updateMask?: string;
|
|
54438
55409
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54439
55410
|
upload_protocol?: string;
|
|
54440
55411
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54441
55412
|
uploadType?: string;
|
|
54442
55413
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54443
55414
|
userIp?: string;
|
|
55415
|
+
/** [Input Only] Validate the new configuration, but don't update it. */
|
|
55416
|
+
validateOnly?: boolean;
|
|
54444
55417
|
/** Request body */
|
|
54445
|
-
resource:
|
|
55418
|
+
resource: CrossSiteNetwork;
|
|
54446
55419
|
}): Request<Operation>;
|
|
54447
|
-
|
|
55420
|
+
patch(
|
|
54448
55421
|
request: {
|
|
54449
55422
|
/** V1 error format. */
|
|
54450
55423
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54452,10 +55425,10 @@ declare namespace gapi.client {
|
|
|
54452
55425
|
access_token?: string;
|
|
54453
55426
|
/** Data format for response. */
|
|
54454
55427
|
alt?: 'json' | 'media' | 'proto';
|
|
54455
|
-
/** Name of the BackendService resource to update. */
|
|
54456
|
-
backendService: string;
|
|
54457
55428
|
/** JSONP */
|
|
54458
55429
|
callback?: string;
|
|
55430
|
+
/** Name of the cross-site network to update. */
|
|
55431
|
+
crossSiteNetwork: string;
|
|
54459
55432
|
/** Selector specifying which fields to include in a partial response. */
|
|
54460
55433
|
fields?: string;
|
|
54461
55434
|
/** 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. */
|
|
@@ -54482,20 +55455,25 @@ declare namespace gapi.client {
|
|
|
54482
55455
|
* The request ID must be
|
|
54483
55456
|
* a valid UUID with the exception that zero UUID is not supported
|
|
54484
55457
|
* (00000000-0000-0000-0000-000000000000).
|
|
55458
|
+
* end_interface: MixerMutationRequestBuilder
|
|
54485
55459
|
*/
|
|
54486
55460
|
requestId?: string;
|
|
55461
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
55462
|
+
updateMask?: string;
|
|
54487
55463
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54488
55464
|
upload_protocol?: string;
|
|
54489
55465
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54490
55466
|
uploadType?: string;
|
|
54491
55467
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54492
55468
|
userIp?: string;
|
|
55469
|
+
/** [Input Only] Validate the new configuration, but don't update it. */
|
|
55470
|
+
validateOnly?: boolean;
|
|
54493
55471
|
},
|
|
54494
|
-
body:
|
|
55472
|
+
body: CrossSiteNetwork,
|
|
54495
55473
|
): Request<Operation>;
|
|
54496
55474
|
}
|
|
54497
|
-
interface
|
|
54498
|
-
/** Deletes the specified
|
|
55475
|
+
interface DhcpOptionsConfigsResource {
|
|
55476
|
+
/** Deletes the specified DhcpOptionsConfig in the given location */
|
|
54499
55477
|
delete(request?: {
|
|
54500
55478
|
/** V1 error format. */
|
|
54501
55479
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54505,8 +55483,8 @@ declare namespace gapi.client {
|
|
|
54505
55483
|
alt?: 'json' | 'media' | 'proto';
|
|
54506
55484
|
/** JSONP */
|
|
54507
55485
|
callback?: string;
|
|
54508
|
-
/** Name of the
|
|
54509
|
-
|
|
55486
|
+
/** Name of the DhcpOptionsConfig resource to delete. */
|
|
55487
|
+
dhcpOptionsConfig: string;
|
|
54510
55488
|
/** Selector specifying which fields to include in a partial response. */
|
|
54511
55489
|
fields?: string;
|
|
54512
55490
|
/** 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. */
|
|
@@ -54519,6 +55497,8 @@ declare namespace gapi.client {
|
|
|
54519
55497
|
project: string;
|
|
54520
55498
|
/** 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. */
|
|
54521
55499
|
quotaUser?: string;
|
|
55500
|
+
/** Name of the region of this request. */
|
|
55501
|
+
region: string;
|
|
54522
55502
|
/**
|
|
54523
55503
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54524
55504
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54543,7 +55523,7 @@ declare namespace gapi.client {
|
|
|
54543
55523
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54544
55524
|
userIp?: string;
|
|
54545
55525
|
}): Request<Operation>;
|
|
54546
|
-
/** Returns the specified
|
|
55526
|
+
/** Returns the specified DhcpOptionsConfig resource in the given location. */
|
|
54547
55527
|
get(request?: {
|
|
54548
55528
|
/** V1 error format. */
|
|
54549
55529
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54553,8 +55533,8 @@ declare namespace gapi.client {
|
|
|
54553
55533
|
alt?: 'json' | 'media' | 'proto';
|
|
54554
55534
|
/** JSONP */
|
|
54555
55535
|
callback?: string;
|
|
54556
|
-
/** Name of the
|
|
54557
|
-
|
|
55536
|
+
/** Name of the DhcpOptionsConfig resource to return. */
|
|
55537
|
+
dhcpOptionsConfig: string;
|
|
54558
55538
|
/** Selector specifying which fields to include in a partial response. */
|
|
54559
55539
|
fields?: string;
|
|
54560
55540
|
/** 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. */
|
|
@@ -54567,15 +55547,17 @@ declare namespace gapi.client {
|
|
|
54567
55547
|
project: string;
|
|
54568
55548
|
/** 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. */
|
|
54569
55549
|
quotaUser?: string;
|
|
55550
|
+
/** Name of the region of this request. */
|
|
55551
|
+
region: string;
|
|
54570
55552
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54571
55553
|
upload_protocol?: string;
|
|
54572
55554
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54573
55555
|
uploadType?: string;
|
|
54574
55556
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54575
55557
|
userIp?: string;
|
|
54576
|
-
}): Request<
|
|
55558
|
+
}): Request<DhcpOptionsConfig>;
|
|
54577
55559
|
/**
|
|
54578
|
-
* Creates a
|
|
55560
|
+
* Creates a DhcpOptionsConfig in the specified project in the given location
|
|
54579
55561
|
* using the parameters that are included in the request.
|
|
54580
55562
|
*/
|
|
54581
55563
|
insert(request: {
|
|
@@ -54599,6 +55581,8 @@ declare namespace gapi.client {
|
|
|
54599
55581
|
project: string;
|
|
54600
55582
|
/** 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. */
|
|
54601
55583
|
quotaUser?: string;
|
|
55584
|
+
/** Name of the region of this request. */
|
|
55585
|
+
region: string;
|
|
54602
55586
|
/**
|
|
54603
55587
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54604
55588
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54622,10 +55606,8 @@ declare namespace gapi.client {
|
|
|
54622
55606
|
uploadType?: string;
|
|
54623
55607
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54624
55608
|
userIp?: string;
|
|
54625
|
-
/** [Input Only] Validate the new configuration, but don't create it. */
|
|
54626
|
-
validateOnly?: boolean;
|
|
54627
55609
|
/** Request body */
|
|
54628
|
-
resource:
|
|
55610
|
+
resource: DhcpOptionsConfig;
|
|
54629
55611
|
}): Request<Operation>;
|
|
54630
55612
|
insert(
|
|
54631
55613
|
request: {
|
|
@@ -54649,6 +55631,8 @@ declare namespace gapi.client {
|
|
|
54649
55631
|
project: string;
|
|
54650
55632
|
/** 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. */
|
|
54651
55633
|
quotaUser?: string;
|
|
55634
|
+
/** Name of the region of this request. */
|
|
55635
|
+
region: string;
|
|
54652
55636
|
/**
|
|
54653
55637
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54654
55638
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54672,12 +55656,10 @@ declare namespace gapi.client {
|
|
|
54672
55656
|
uploadType?: string;
|
|
54673
55657
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54674
55658
|
userIp?: string;
|
|
54675
|
-
/** [Input Only] Validate the new configuration, but don't create it. */
|
|
54676
|
-
validateOnly?: boolean;
|
|
54677
55659
|
},
|
|
54678
|
-
body:
|
|
55660
|
+
body: DhcpOptionsConfig,
|
|
54679
55661
|
): Request<Operation>;
|
|
54680
|
-
/** Lists the
|
|
55662
|
+
/** Lists the DhcpOptionsConfigs for a project in the given location. */
|
|
54681
55663
|
list(request?: {
|
|
54682
55664
|
/** V1 error format. */
|
|
54683
55665
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54788,6 +55770,8 @@ declare namespace gapi.client {
|
|
|
54788
55770
|
project: string;
|
|
54789
55771
|
/** 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. */
|
|
54790
55772
|
quotaUser?: string;
|
|
55773
|
+
/** Name of the region of this request. */
|
|
55774
|
+
region: string;
|
|
54791
55775
|
/**
|
|
54792
55776
|
* Opt-in for partial success behavior which provides partial results in case
|
|
54793
55777
|
* of failure. The default value is false.
|
|
@@ -54803,11 +55787,11 @@ declare namespace gapi.client {
|
|
|
54803
55787
|
uploadType?: string;
|
|
54804
55788
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54805
55789
|
userIp?: string;
|
|
54806
|
-
}): Request<
|
|
55790
|
+
}): Request<DhcpOptionsConfigList>;
|
|
54807
55791
|
/**
|
|
54808
|
-
*
|
|
54809
|
-
* the request. This method
|
|
54810
|
-
* semantics and
|
|
55792
|
+
* Patches the specified DhcpOptionsConfig resource with the data included in
|
|
55793
|
+
* the request. This method supports PATCH
|
|
55794
|
+
* semantics and usesJSON merge
|
|
54811
55795
|
* patch format and processing rules.
|
|
54812
55796
|
*/
|
|
54813
55797
|
patch(request: {
|
|
@@ -54819,8 +55803,8 @@ declare namespace gapi.client {
|
|
|
54819
55803
|
alt?: 'json' | 'media' | 'proto';
|
|
54820
55804
|
/** JSONP */
|
|
54821
55805
|
callback?: string;
|
|
54822
|
-
/** Name of the
|
|
54823
|
-
|
|
55806
|
+
/** Name of the DhcpOptionsConfig resource to patch. */
|
|
55807
|
+
dhcpOptionsConfig: string;
|
|
54824
55808
|
/** Selector specifying which fields to include in a partial response. */
|
|
54825
55809
|
fields?: string;
|
|
54826
55810
|
/** 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. */
|
|
@@ -54833,6 +55817,8 @@ declare namespace gapi.client {
|
|
|
54833
55817
|
project: string;
|
|
54834
55818
|
/** 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. */
|
|
54835
55819
|
quotaUser?: string;
|
|
55820
|
+
/** Name of the region for this request. */
|
|
55821
|
+
region: string;
|
|
54836
55822
|
/**
|
|
54837
55823
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54838
55824
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54858,10 +55844,8 @@ declare namespace gapi.client {
|
|
|
54858
55844
|
uploadType?: string;
|
|
54859
55845
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54860
55846
|
userIp?: string;
|
|
54861
|
-
/** [Input Only] Validate the new configuration, but don't update it. */
|
|
54862
|
-
validateOnly?: boolean;
|
|
54863
55847
|
/** Request body */
|
|
54864
|
-
resource:
|
|
55848
|
+
resource: DhcpOptionsConfig;
|
|
54865
55849
|
}): Request<Operation>;
|
|
54866
55850
|
patch(
|
|
54867
55851
|
request: {
|
|
@@ -54873,8 +55857,8 @@ declare namespace gapi.client {
|
|
|
54873
55857
|
alt?: 'json' | 'media' | 'proto';
|
|
54874
55858
|
/** JSONP */
|
|
54875
55859
|
callback?: string;
|
|
54876
|
-
/** Name of the
|
|
54877
|
-
|
|
55860
|
+
/** Name of the DhcpOptionsConfig resource to patch. */
|
|
55861
|
+
dhcpOptionsConfig: string;
|
|
54878
55862
|
/** Selector specifying which fields to include in a partial response. */
|
|
54879
55863
|
fields?: string;
|
|
54880
55864
|
/** 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. */
|
|
@@ -54887,6 +55871,8 @@ declare namespace gapi.client {
|
|
|
54887
55871
|
project: string;
|
|
54888
55872
|
/** 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. */
|
|
54889
55873
|
quotaUser?: string;
|
|
55874
|
+
/** Name of the region for this request. */
|
|
55875
|
+
region: string;
|
|
54890
55876
|
/**
|
|
54891
55877
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54892
55878
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54912,11 +55898,45 @@ declare namespace gapi.client {
|
|
|
54912
55898
|
uploadType?: string;
|
|
54913
55899
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54914
55900
|
userIp?: string;
|
|
54915
|
-
/** [Input Only] Validate the new configuration, but don't update it. */
|
|
54916
|
-
validateOnly?: boolean;
|
|
54917
55901
|
},
|
|
54918
|
-
body:
|
|
55902
|
+
body: DhcpOptionsConfig,
|
|
54919
55903
|
): Request<Operation>;
|
|
55904
|
+
/** Returns permissions that a caller has on the specified resource. */
|
|
55905
|
+
testIamPermissions(
|
|
55906
|
+
request: {
|
|
55907
|
+
/** V1 error format. */
|
|
55908
|
+
'$.xgafv'?: '1' | '2';
|
|
55909
|
+
/** OAuth access token. */
|
|
55910
|
+
access_token?: string;
|
|
55911
|
+
/** Data format for response. */
|
|
55912
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55913
|
+
/** JSONP */
|
|
55914
|
+
callback?: string;
|
|
55915
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55916
|
+
fields?: string;
|
|
55917
|
+
/** 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. */
|
|
55918
|
+
key?: string;
|
|
55919
|
+
/** OAuth 2.0 token for the current user. */
|
|
55920
|
+
oauth_token?: string;
|
|
55921
|
+
/** Returns response with indentations and line breaks. */
|
|
55922
|
+
prettyPrint?: boolean;
|
|
55923
|
+
/** Project ID for this request. */
|
|
55924
|
+
project: string;
|
|
55925
|
+
/** 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. */
|
|
55926
|
+
quotaUser?: string;
|
|
55927
|
+
/** The name of the region for this request. */
|
|
55928
|
+
region: string;
|
|
55929
|
+
/** Name or id of the resource for this request. */
|
|
55930
|
+
resource: string;
|
|
55931
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55932
|
+
upload_protocol?: string;
|
|
55933
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55934
|
+
uploadType?: string;
|
|
55935
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55936
|
+
userIp?: string;
|
|
55937
|
+
},
|
|
55938
|
+
body: TestPermissionsRequest,
|
|
55939
|
+
): Request<TestPermissionsResponse>;
|
|
54920
55940
|
}
|
|
54921
55941
|
interface DisksResource {
|
|
54922
55942
|
/**
|
|
@@ -78835,10 +79855,7 @@ declare namespace gapi.client {
|
|
|
78835
79855
|
* NO_EFFECT, REFRESH, and RESTART.
|
|
78836
79856
|
*/
|
|
78837
79857
|
mostDisruptiveAllowedAction?:
|
|
78838
|
-
| '
|
|
78839
|
-
| 'NO_EFFECT'
|
|
78840
|
-
| 'REFRESH'
|
|
78841
|
-
| 'RESTART';
|
|
79858
|
+
'INVALID' | 'NO_EFFECT' | 'REFRESH' | 'RESTART';
|
|
78842
79859
|
/** OAuth 2.0 token for the current user. */
|
|
78843
79860
|
oauth_token?: string;
|
|
78844
79861
|
/** Returns response with indentations and line breaks. */
|
|
@@ -78916,10 +79933,7 @@ declare namespace gapi.client {
|
|
|
78916
79933
|
* NO_EFFECT, REFRESH, and RESTART.
|
|
78917
79934
|
*/
|
|
78918
79935
|
mostDisruptiveAllowedAction?:
|
|
78919
|
-
| '
|
|
78920
|
-
| 'NO_EFFECT'
|
|
78921
|
-
| 'REFRESH'
|
|
78922
|
-
| 'RESTART';
|
|
79936
|
+
'INVALID' | 'NO_EFFECT' | 'REFRESH' | 'RESTART';
|
|
78923
79937
|
/** OAuth 2.0 token for the current user. */
|
|
78924
79938
|
oauth_token?: string;
|
|
78925
79939
|
/** Returns response with indentations and line breaks. */
|
|
@@ -102561,8 +103575,10 @@ declare namespace gapi.client {
|
|
|
102561
103575
|
userIp?: string;
|
|
102562
103576
|
}): Request<BackendServiceList>;
|
|
102563
103577
|
/**
|
|
102564
|
-
* Retrieves a list of all usable backend services
|
|
102565
|
-
* the
|
|
103578
|
+
* Retrieves a list of all usable backend services for Application Load
|
|
103579
|
+
* Balancers and Proxy Network Load Balancers in the specified project in the
|
|
103580
|
+
* given region. Backend services for external and internal passthrough
|
|
103581
|
+
* Network Load Balancers are not included in the response.
|
|
102566
103582
|
*/
|
|
102567
103583
|
listUsable(request?: {
|
|
102568
103584
|
/** V1 error format. */
|
|
@@ -135510,9 +136526,7 @@ declare namespace gapi.client {
|
|
|
135510
136526
|
* response.
|
|
135511
136527
|
*/
|
|
135512
136528
|
views?:
|
|
135513
|
-
| 'DEFAULT'
|
|
135514
|
-
| 'WITH_UTILIZATION'
|
|
135515
|
-
| ('DEFAULT' | 'WITH_UTILIZATION')[];
|
|
136529
|
+
'DEFAULT' | 'WITH_UTILIZATION' | ('DEFAULT' | 'WITH_UTILIZATION')[];
|
|
135516
136530
|
}): Request<SubnetworkAggregatedList>;
|
|
135517
136531
|
/** Deletes the specified subnetwork. */
|
|
135518
136532
|
delete(request?: {
|
|
@@ -135705,9 +136719,7 @@ declare namespace gapi.client {
|
|
|
135705
136719
|
* response.
|
|
135706
136720
|
*/
|
|
135707
136721
|
views?:
|
|
135708
|
-
| 'DEFAULT'
|
|
135709
|
-
| 'WITH_UTILIZATION'
|
|
135710
|
-
| ('DEFAULT' | 'WITH_UTILIZATION')[];
|
|
136722
|
+
'DEFAULT' | 'WITH_UTILIZATION' | ('DEFAULT' | 'WITH_UTILIZATION')[];
|
|
135711
136723
|
}): Request<Subnetwork>;
|
|
135712
136724
|
/**
|
|
135713
136725
|
* Gets the access control policy for a resource. May be empty if no such
|
|
@@ -135987,9 +136999,7 @@ declare namespace gapi.client {
|
|
|
135987
136999
|
* response.
|
|
135988
137000
|
*/
|
|
135989
137001
|
views?:
|
|
135990
|
-
| 'DEFAULT'
|
|
135991
|
-
| 'WITH_UTILIZATION'
|
|
135992
|
-
| ('DEFAULT' | 'WITH_UTILIZATION')[];
|
|
137002
|
+
'DEFAULT' | 'WITH_UTILIZATION' | ('DEFAULT' | 'WITH_UTILIZATION')[];
|
|
135993
137003
|
}): Request<SubnetworkList>;
|
|
135994
137004
|
/** Retrieves an aggregated list of all usable subnetworks in the project. */
|
|
135995
137005
|
listUsable(request?: {
|
|
@@ -146893,6 +147903,8 @@ declare namespace gapi.client {
|
|
|
146893
147903
|
): Request<Operation>;
|
|
146894
147904
|
}
|
|
146895
147905
|
|
|
147906
|
+
const acceleratorPodControllers: AcceleratorPodControllersResource;
|
|
147907
|
+
|
|
146896
147908
|
const acceleratorTypes: AcceleratorTypesResource;
|
|
146897
147909
|
|
|
146898
147910
|
const addresses: AddressesResource;
|
|
@@ -146907,6 +147919,8 @@ declare namespace gapi.client {
|
|
|
146907
147919
|
|
|
146908
147920
|
const crossSiteNetworks: CrossSiteNetworksResource;
|
|
146909
147921
|
|
|
147922
|
+
const dhcpOptionsConfigs: DhcpOptionsConfigsResource;
|
|
147923
|
+
|
|
146910
147924
|
const diskSettings: DiskSettingsResource;
|
|
146911
147925
|
|
|
146912
147926
|
const diskTypes: DiskTypesResource;
|