@maxim_mazurok/gapi.client.compute-alpha 0.2.20260625 → 0.2.20260709
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 +2105 -121
- package/package.json +1 -1
- package/readme.md +87 -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: 20260709
|
|
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[];
|
|
@@ -433,21 +543,34 @@ declare namespace gapi.client {
|
|
|
433
543
|
*/
|
|
434
544
|
id?: string;
|
|
435
545
|
/**
|
|
436
|
-
* Reference to the source of
|
|
437
|
-
* like a PublicDelegatedPrefix (PDP) for BYOIP.
|
|
438
|
-
* The PDP must support enhanced IPv4 allocations.
|
|
546
|
+
* Reference to the source of IP addresses.
|
|
439
547
|
*
|
|
440
|
-
*
|
|
441
|
-
* external IPv4 address using BYOIP.
|
|
548
|
+
* It supports the following cases:
|
|
442
549
|
*
|
|
443
550
|
* -
|
|
444
|
-
*
|
|
551
|
+
* Case 1: PublicDelegatedPrefix (PDP) for BYOIP external IPv4
|
|
552
|
+
* addresses. The PDP must support enhanced IPv4 allocations.
|
|
445
553
|
* -
|
|
446
|
-
*
|
|
554
|
+
* Case 2: Internal Range for global internal addresses.
|
|
555
|
+
*
|
|
556
|
+
*
|
|
557
|
+
*
|
|
558
|
+
* Use one of the following formats to specify the resource:
|
|
447
559
|
*
|
|
560
|
+
* For a Public Delegated Prefix:
|
|
448
561
|
*
|
|
562
|
+
* -
|
|
563
|
+
* Full resource URL:https://www.googleapis.com/compute/v1/projects/projectId/regions/region/publicDelegatedPrefixes/pdp
|
|
564
|
+
* - Partial URL:
|
|
449
565
|
* - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
|
|
450
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
|
|
451
574
|
*/
|
|
452
575
|
ipCollection?: string;
|
|
453
576
|
/**
|
|
@@ -863,6 +986,19 @@ declare namespace gapi.client {
|
|
|
863
986
|
visibleCoreCount?: number;
|
|
864
987
|
}
|
|
865
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;
|
|
866
1002
|
/**
|
|
867
1003
|
* The IP alias ranges to allocate for this interface. This IP CIDR range
|
|
868
1004
|
* must belong to the specified subnetwork and cannot contain IP addresses
|
|
@@ -1388,6 +1524,14 @@ declare namespace gapi.client {
|
|
|
1388
1524
|
logType?:
|
|
1389
1525
|
'ADMIN_READ' | 'DATA_READ' | 'DATA_WRITE' | 'LOG_TYPE_UNSPECIFIED';
|
|
1390
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;
|
|
1534
|
+
}
|
|
1391
1535
|
interface AuthenticationPolicy {
|
|
1392
1536
|
/**
|
|
1393
1537
|
* List of authentication methods that can be used for origin authentication.
|
|
@@ -5496,17 +5640,33 @@ declare namespace gapi.client {
|
|
|
5496
5640
|
location?: string;
|
|
5497
5641
|
}
|
|
5498
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
|
+
*/
|
|
5499
5647
|
location?: string;
|
|
5648
|
+
/** The machine type for which the capacity history is returned. */
|
|
5500
5649
|
machineType?: string;
|
|
5650
|
+
/** The preemption history for the requested machine type and location. */
|
|
5501
5651
|
preemptionHistory?: CapacityHistoryResponsePreemptionRecord[];
|
|
5652
|
+
/** The price history for the requested machine type and location. */
|
|
5502
5653
|
priceHistory?: CapacityHistoryResponsePriceRecord[];
|
|
5503
5654
|
}
|
|
5504
5655
|
interface CapacityHistoryResponsePreemptionRecord {
|
|
5656
|
+
/** The time interval for this preemption record. */
|
|
5505
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
|
+
*/
|
|
5506
5664
|
preemptionRate?: number;
|
|
5507
5665
|
}
|
|
5508
5666
|
interface CapacityHistoryResponsePriceRecord {
|
|
5667
|
+
/** The time interval for this price record. */
|
|
5509
5668
|
interval?: Interval;
|
|
5669
|
+
/** The Spot VM list price during the interval. */
|
|
5510
5670
|
listPrice?: Money;
|
|
5511
5671
|
}
|
|
5512
5672
|
interface ChannelCredentials {
|
|
@@ -5803,6 +5963,9 @@ declare namespace gapi.client {
|
|
|
5803
5963
|
| 'MEMORY_OPTIMIZED_X4_960_12T'
|
|
5804
5964
|
| 'MEMORY_OPTIMIZED_X4_960_16T'
|
|
5805
5965
|
| 'NETWORK_OPTIMIZED_C4N'
|
|
5966
|
+
| 'NETWORK_OPTIMIZED_U4C'
|
|
5967
|
+
| 'NETWORK_OPTIMIZED_U4P'
|
|
5968
|
+
| 'NETWORK_OPTIMIZED_U4S'
|
|
5806
5969
|
| 'STORAGE_OPTIMIZED_Z3'
|
|
5807
5970
|
| 'STORAGE_OPTIMIZED_Z4D'
|
|
5808
5971
|
| 'TYPE_UNSPECIFIED';
|
|
@@ -6905,6 +7068,225 @@ declare namespace gapi.client {
|
|
|
6905
7068
|
*/
|
|
6906
7069
|
stateOverride?: RolloutPolicy;
|
|
6907
7070
|
}
|
|
7071
|
+
interface DhcpOptionsConfig {
|
|
7072
|
+
/** Mapping of user-defined keys to DhcpOptionsConfig to Network associations. */
|
|
7073
|
+
associations?: {[P in string]: DhcpOptionsConfigAssociation};
|
|
7074
|
+
/**
|
|
7075
|
+
* The file path and name of the boot image/file on the TFTP server that the
|
|
7076
|
+
* client VM guest OS should download and execute during network boot. Used
|
|
7077
|
+
* when the standard DHCP header 'file' field is overloaded. Corresponds to
|
|
7078
|
+
* DHCPv4 Option 67.
|
|
7079
|
+
*/
|
|
7080
|
+
bootFileIpv4Name?: string;
|
|
7081
|
+
/**
|
|
7082
|
+
* A list of UTF-8 encoded parameter strings to be passed as arguments to the
|
|
7083
|
+
* bootloader program or OS kernel after downloading the boot file.
|
|
7084
|
+
* Corresponds to DHCPv6 Option 60.
|
|
7085
|
+
*/
|
|
7086
|
+
bootFileIpv6Parameters?: string[];
|
|
7087
|
+
/**
|
|
7088
|
+
* The Uniform Resource Locator (URL) specifying the protocol, server address,
|
|
7089
|
+
* and file path of the boot file that the client VM guest OS should download
|
|
7090
|
+
* and execute for network boot (e.g., 'tftp://[2001:db8::1]/bootx64.efi' or
|
|
7091
|
+
* 'http://[2001:db8::1]/boot.img'). Corresponds to DHCPv6 Option 59.
|
|
7092
|
+
*/
|
|
7093
|
+
bootFileIpv6Url?: string;
|
|
7094
|
+
/**
|
|
7095
|
+
* Output only. [Output Only] Creation timestamp inRFC3339
|
|
7096
|
+
* text format.
|
|
7097
|
+
*/
|
|
7098
|
+
creationTimestamp?: string;
|
|
7099
|
+
/**
|
|
7100
|
+
* An optional description of this resource. Provide this property when you
|
|
7101
|
+
* create the resource.
|
|
7102
|
+
*/
|
|
7103
|
+
description?: string;
|
|
7104
|
+
/**
|
|
7105
|
+
* An ordered list of domain suffixes (search paths) that the client VM guest
|
|
7106
|
+
* OS should append to resolve hostnames that are not fully qualified. Applies
|
|
7107
|
+
* to both DHCPv4 Option 119 and DHCPv6 Option 24.
|
|
7108
|
+
*/
|
|
7109
|
+
dnsSearchPaths?: string[];
|
|
7110
|
+
/**
|
|
7111
|
+
* An ordered list of IPv4 addresses of DNS recursive name servers available
|
|
7112
|
+
* to the client VM guest OS, specified in order of preference. Corresponds to
|
|
7113
|
+
* DHCPv4 Option 6.
|
|
7114
|
+
*/
|
|
7115
|
+
dnsServerIpv4Addresses?: string[];
|
|
7116
|
+
/**
|
|
7117
|
+
* An ordered list of IPv6 addresses of DNS recursive name servers available
|
|
7118
|
+
* to the client VM guest OS, specified in order of preference. Corresponds to
|
|
7119
|
+
* DHCPv6 Option 23.
|
|
7120
|
+
*/
|
|
7121
|
+
dnsServerIpv6Addresses?: string[];
|
|
7122
|
+
/**
|
|
7123
|
+
* The domain name that the client VM guest OS should use when resolving
|
|
7124
|
+
* hostnames via DNS (e.g., 'example.com'). It defines the default domain
|
|
7125
|
+
* suffix for the client. Corresponds to DHCPv4 Option 15.
|
|
7126
|
+
*/
|
|
7127
|
+
domainName?: string;
|
|
7128
|
+
/**
|
|
7129
|
+
* Output only. [Output Only] The unique identifier for the resource type. The server
|
|
7130
|
+
* generates this identifier.
|
|
7131
|
+
*/
|
|
7132
|
+
id?: string;
|
|
7133
|
+
/** Output only. [Output Only] Type of the resource. Alwayscompute#dhcpOptionsConfig for dhcp options configs. */
|
|
7134
|
+
kind?: string;
|
|
7135
|
+
/**
|
|
7136
|
+
* The duration, in seconds, of the IPv4 address lease offered by the DHCP
|
|
7137
|
+
* server to the client VM guest OS. Corresponds to DHCPv4 Option 51.
|
|
7138
|
+
*/
|
|
7139
|
+
leaseTimeSec?: string;
|
|
7140
|
+
/**
|
|
7141
|
+
* Name of the resource. Provided by the client when the resource is created.
|
|
7142
|
+
* The name must be 1-63 characters long, and comply withRFC1035.
|
|
7143
|
+
* Specifically, the name must be 1-63 characters long and match the regular
|
|
7144
|
+
* expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
7145
|
+
* character must be a lowercase letter, and all following characters must
|
|
7146
|
+
* be a dash, lowercase letter, or digit, except the last character, which
|
|
7147
|
+
* cannot be a dash.
|
|
7148
|
+
*/
|
|
7149
|
+
name?: string;
|
|
7150
|
+
/**
|
|
7151
|
+
* An ordered list of IPv4 addresses of Network Time Protocol (NTP) servers
|
|
7152
|
+
* available to the client VM guest OS for system clock synchronization,
|
|
7153
|
+
* listed in order of preference. Corresponds to DHCPv4 Option 42.
|
|
7154
|
+
*/
|
|
7155
|
+
ntpServerIpv4Addresses?: string[];
|
|
7156
|
+
/**
|
|
7157
|
+
* An ordered list of IPv6 addresses of Network Time Protocol (NTP) servers
|
|
7158
|
+
* available to the client VM guest OS for system clock synchronization.
|
|
7159
|
+
* Corresponds to DHCPv6 Option 56.
|
|
7160
|
+
*/
|
|
7161
|
+
ntpServerIpv6Addresses?: string[];
|
|
7162
|
+
/** Output only. [Output Only] URL of the region where the resource resides. */
|
|
7163
|
+
region?: string;
|
|
7164
|
+
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
7165
|
+
selfLink?: string;
|
|
7166
|
+
/**
|
|
7167
|
+
* An ordered list of one or more IPv4 addresses of TFTP servers. Provides
|
|
7168
|
+
* server redundancy and failover support, and is generally prioritized by
|
|
7169
|
+
* clients over the single hostname specified in Option 66. Corresponds to
|
|
7170
|
+
* DHCPv4 Option 150.
|
|
7171
|
+
*/
|
|
7172
|
+
tftpServerIpv4Addresses?: string[];
|
|
7173
|
+
/**
|
|
7174
|
+
* The hostname or IP address of the Trivial File Transfer Protocol (TFTP)
|
|
7175
|
+
* server from which the client VM guest OS can download boot files. Typically
|
|
7176
|
+
* used in network booting (PXE) when the standard DHCP header 'sname' field
|
|
7177
|
+
* is overloaded. Corresponds to DHCPv4 Option 66.
|
|
7178
|
+
*/
|
|
7179
|
+
tftpServerIpv4Name?: string;
|
|
7180
|
+
}
|
|
7181
|
+
interface DhcpOptionsConfigAssociation {
|
|
7182
|
+
/**
|
|
7183
|
+
* Required. The target network this DHCP option is attached to.
|
|
7184
|
+
* You can specify this as a full or partial URL. For example, the following
|
|
7185
|
+
* are all valid URLs:
|
|
7186
|
+
*
|
|
7187
|
+
*
|
|
7188
|
+
* - https://www.googleapis.com/compute/v1/projects/project/global/networks/network
|
|
7189
|
+
*
|
|
7190
|
+
* - projects/project/global/networks/network
|
|
7191
|
+
*/
|
|
7192
|
+
network?: string;
|
|
7193
|
+
/** Output only. [Output Only] The server-defined ID of the associated Network. */
|
|
7194
|
+
networkId?: string;
|
|
7195
|
+
/** Output only. [Output Only] State of the association. */
|
|
7196
|
+
state?: 'ACTIVE' | 'ORPHANED' | 'STATE_UNSPECIFIED';
|
|
7197
|
+
}
|
|
7198
|
+
interface DhcpOptionsConfigList {
|
|
7199
|
+
/** Server-defined ETag for optimistic concurrency control. */
|
|
7200
|
+
etag?: string;
|
|
7201
|
+
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
7202
|
+
id?: string;
|
|
7203
|
+
/** A list of DhcpOptionsConfig resources. */
|
|
7204
|
+
items?: DhcpOptionsConfig[];
|
|
7205
|
+
/**
|
|
7206
|
+
* Output only. [Output Only] Type of the resource. Alwayscompute#dhcpOptionsConfigList for a list of dhcp options
|
|
7207
|
+
* configs.
|
|
7208
|
+
*/
|
|
7209
|
+
kind?: string;
|
|
7210
|
+
/**
|
|
7211
|
+
* [Output Only] This token allows you to get the next page of results for
|
|
7212
|
+
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
|
|
7213
|
+
* the query parameter pageToken in the next list request.
|
|
7214
|
+
* Subsequent list requests will have their own nextPageToken to
|
|
7215
|
+
* continue paging through the results.
|
|
7216
|
+
*/
|
|
7217
|
+
nextPageToken?: string;
|
|
7218
|
+
/** [Output Only] Server-defined URL for this resource. */
|
|
7219
|
+
selfLink?: string;
|
|
7220
|
+
/**
|
|
7221
|
+
* Output only. [Output Only] Unreachable resources.
|
|
7222
|
+
* end_interface: MixerListResponseWithEtagBuilder
|
|
7223
|
+
*/
|
|
7224
|
+
unreachables?: string[];
|
|
7225
|
+
/** [Output Only] Informational warning message. */
|
|
7226
|
+
warning?: {
|
|
7227
|
+
/**
|
|
7228
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
7229
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
7230
|
+
* are no results in the response.
|
|
7231
|
+
*/
|
|
7232
|
+
code?:
|
|
7233
|
+
| 'CLEANUP_FAILED'
|
|
7234
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
7235
|
+
| 'DEPRECATED_TYPE_USED'
|
|
7236
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
7237
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
7238
|
+
| 'EXTERNAL_API_WARNING'
|
|
7239
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
7240
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
7241
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
7242
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
7243
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
7244
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
7245
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
7246
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
7247
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
7248
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
7249
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
7250
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
7251
|
+
| 'NOT_CRITICAL_ERROR'
|
|
7252
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
7253
|
+
| 'PARTIAL_SUCCESS'
|
|
7254
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
7255
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
7256
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
7257
|
+
| 'RESOURCE_NOT_DELETED'
|
|
7258
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
7259
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
7260
|
+
| 'UNDECLARED_PROPERTIES'
|
|
7261
|
+
| 'UNREACHABLE';
|
|
7262
|
+
/**
|
|
7263
|
+
* [Output Only] Metadata about this warning in key:
|
|
7264
|
+
* value format. For example:
|
|
7265
|
+
*
|
|
7266
|
+
* "data": [
|
|
7267
|
+
* {
|
|
7268
|
+
* "key": "scope",
|
|
7269
|
+
* "value": "zones/us-east1-d"
|
|
7270
|
+
* }
|
|
7271
|
+
*/
|
|
7272
|
+
data?: {
|
|
7273
|
+
/**
|
|
7274
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
7275
|
+
* returned. For example, for warnings where there are no results in a list
|
|
7276
|
+
* request for a particular zone, this key might be scope and
|
|
7277
|
+
* the key value might be the zone name. Other examples might be a key
|
|
7278
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
7279
|
+
* warning about invalid network settings (for example, if an instance
|
|
7280
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
7281
|
+
*/
|
|
7282
|
+
key?: string;
|
|
7283
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
7284
|
+
value?: string;
|
|
7285
|
+
}[];
|
|
7286
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
7287
|
+
message?: string;
|
|
7288
|
+
};
|
|
7289
|
+
}
|
|
6908
7290
|
interface Disk {
|
|
6909
7291
|
/**
|
|
6910
7292
|
* The access mode of the disk.
|
|
@@ -9299,7 +9681,9 @@ declare namespace gapi.client {
|
|
|
9299
9681
|
/**
|
|
9300
9682
|
* The Action to perform when the client connection triggers the rule.
|
|
9301
9683
|
* Valid actions for firewall rules are: "allow", "deny",
|
|
9302
|
-
* "apply_security_profile_group" and "goto_next"
|
|
9684
|
+
* "apply_security_profile_group" and "goto_next" (
|
|
9685
|
+
* "apply_security_profile_group" can be specified only for global
|
|
9686
|
+
* network firewall policies or hierarchical firewall policies).
|
|
9303
9687
|
* Valid actions for packet mirroring rules are: "mirror", "do_not_mirror"
|
|
9304
9688
|
* and "goto_next".
|
|
9305
9689
|
*/
|
|
@@ -9347,11 +9731,12 @@ declare namespace gapi.client {
|
|
|
9347
9731
|
*/
|
|
9348
9732
|
ruleTupleCount?: number;
|
|
9349
9733
|
/**
|
|
9350
|
-
* A fully-qualified URL of a
|
|
9734
|
+
* A fully-qualified URL of a SecurityProfileGroup resource instance.
|
|
9351
9735
|
* Example:
|
|
9352
9736
|
* https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
|
9353
9737
|
* Must be specified if action is one of 'apply_security_profile_group' or
|
|
9354
|
-
* 'mirror'. Cannot be specified for other actions.
|
|
9738
|
+
* 'mirror'. Cannot be specified for other actions. Can be specified only
|
|
9739
|
+
* for global network firewall policies or hierarchical firewall policies.
|
|
9355
9740
|
*/
|
|
9356
9741
|
securityProfileGroup?: string;
|
|
9357
9742
|
/**
|
|
@@ -9564,6 +9949,13 @@ declare namespace gapi.client {
|
|
|
9564
9949
|
*/
|
|
9565
9950
|
ports?: string[];
|
|
9566
9951
|
}
|
|
9952
|
+
interface FirewallPolicyRuleOperationMetadata {
|
|
9953
|
+
/**
|
|
9954
|
+
* Output only. [Output Only] The priority allocated for the firewall policy rule if query
|
|
9955
|
+
* parameters specified minPriority/maxPriority.
|
|
9956
|
+
*/
|
|
9957
|
+
allocatedPriority?: number;
|
|
9958
|
+
}
|
|
9567
9959
|
interface FirewallPolicyRuleSecureTag {
|
|
9568
9960
|
/** Name of the secure tag, created with TagManager's TagValue API. */
|
|
9569
9961
|
name?: string;
|
|
@@ -10524,6 +10916,12 @@ declare namespace gapi.client {
|
|
|
10524
10916
|
* reservation_name or a name_prefix.
|
|
10525
10917
|
*/
|
|
10526
10918
|
reservationName?: string;
|
|
10919
|
+
/**
|
|
10920
|
+
* Name of the resource intended to be delivered. Name should conform to
|
|
10921
|
+
* RFC1035. This will be the name of storage pool or Exapool for persistent
|
|
10922
|
+
* disk FRs.
|
|
10923
|
+
*/
|
|
10924
|
+
resourceName?: string;
|
|
10527
10925
|
/** Maintenance information for this reservation */
|
|
10528
10926
|
schedulingType?:
|
|
10529
10927
|
'GROUPED' | 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED' | 'INDEPENDENT';
|
|
@@ -10546,6 +10944,8 @@ declare namespace gapi.client {
|
|
|
10546
10944
|
specificSkuProperties?: FutureReservationSpecificSKUProperties;
|
|
10547
10945
|
/** Output only. [Output only] Status of the Future Reservation */
|
|
10548
10946
|
status?: FutureReservationStatus;
|
|
10947
|
+
/** Storage pool details for the future reservation. */
|
|
10948
|
+
storagePoolProperties?: FutureReservationStoragePoolProperties;
|
|
10549
10949
|
/** Time window for this Future Reservation. */
|
|
10550
10950
|
timeWindow?: FutureReservationTimeWindow;
|
|
10551
10951
|
/** Output only. [Output Only] URL of the Zone where this future reservation resides. */
|
|
@@ -10860,6 +11260,8 @@ declare namespace gapi.client {
|
|
|
10860
11260
|
* start_time.
|
|
10861
11261
|
*/
|
|
10862
11262
|
autoCreatedReservations?: string[];
|
|
11263
|
+
/** Output only. Exapool provisioned capacities for each SKU type. */
|
|
11264
|
+
exapoolProvisionedCapacityGb?: StoragePoolExapoolProvisionedCapacityGb;
|
|
10863
11265
|
/**
|
|
10864
11266
|
* Output only. [Output Only] Represents the existing matching usage for the future
|
|
10865
11267
|
* reservation.
|
|
@@ -10903,6 +11305,8 @@ declare namespace gapi.client {
|
|
|
10903
11305
|
| 'PROCURING'
|
|
10904
11306
|
| 'PROVISIONING';
|
|
10905
11307
|
specificSkuProperties?: FutureReservationStatusSpecificSKUProperties;
|
|
11308
|
+
/** Output only. Storage pool provisioned capacities for each SKU type. */
|
|
11309
|
+
storagePoolProvisionedCapacity?: FutureReservationStoragePoolProvisionedCapacity;
|
|
10906
11310
|
}
|
|
10907
11311
|
interface FutureReservationStatusExistingMatchingUsageInfo {
|
|
10908
11312
|
/**
|
|
@@ -10972,6 +11376,28 @@ declare namespace gapi.client {
|
|
|
10972
11376
|
*/
|
|
10973
11377
|
sourceInstanceTemplateId?: string;
|
|
10974
11378
|
}
|
|
11379
|
+
interface FutureReservationStoragePoolProperties {
|
|
11380
|
+
/** Requested exapool provisioned capacity in GiB. */
|
|
11381
|
+
requestedExapoolProvisionedCapacityGb?: StoragePoolExapoolProvisionedCapacityGb;
|
|
11382
|
+
/** Requested storage pool provisioned capacity. */
|
|
11383
|
+
requestedStoragePoolProvisionedCapacity?: FutureReservationStoragePoolProvisionedCapacity;
|
|
11384
|
+
/** Type of the storage pool. */
|
|
11385
|
+
storagePoolType?: string;
|
|
11386
|
+
}
|
|
11387
|
+
interface FutureReservationStoragePoolProvisionedCapacity {
|
|
11388
|
+
/** Size of the storage pool in GiB. */
|
|
11389
|
+
poolProvisionedCapacityGb?: string;
|
|
11390
|
+
/**
|
|
11391
|
+
* Provisioned IOPS of the storage pool. Only relevant if the storage pool
|
|
11392
|
+
* type is hyperdisk-balanced.
|
|
11393
|
+
*/
|
|
11394
|
+
poolProvisionedIops?: string;
|
|
11395
|
+
/**
|
|
11396
|
+
* Provisioned throughput of the storage pool in MiB/s. Only relevant if
|
|
11397
|
+
* the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
|
|
11398
|
+
*/
|
|
11399
|
+
poolProvisionedThroughput?: string;
|
|
11400
|
+
}
|
|
10975
11401
|
interface FutureReservationTimeWindow {
|
|
10976
11402
|
duration?: Duration;
|
|
10977
11403
|
endTime?: string;
|
|
@@ -12234,9 +12660,13 @@ declare namespace gapi.client {
|
|
|
12234
12660
|
* QUOTA_EXCEEDED.
|
|
12235
12661
|
*/
|
|
12236
12662
|
errorDetails?: {
|
|
12663
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
12237
12664
|
errorInfo?: ErrorInfo;
|
|
12665
|
+
/** Links and information to help the user resolve the error. */
|
|
12238
12666
|
help?: Help;
|
|
12667
|
+
/** A localized human-readable error message intended for end users. */
|
|
12239
12668
|
localizedMessage?: LocalizedMessage;
|
|
12669
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
12240
12670
|
quotaInfo?: QuotaExceededInfo;
|
|
12241
12671
|
}[];
|
|
12242
12672
|
/**
|
|
@@ -12283,9 +12713,13 @@ declare namespace gapi.client {
|
|
|
12283
12713
|
* QUOTA_EXCEEDED.
|
|
12284
12714
|
*/
|
|
12285
12715
|
errorDetails?: {
|
|
12716
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
12286
12717
|
errorInfo?: ErrorInfo;
|
|
12718
|
+
/** Links and information to help the user resolve the error. */
|
|
12287
12719
|
help?: Help;
|
|
12720
|
+
/** A localized human-readable error message intended for end users. */
|
|
12288
12721
|
localizedMessage?: LocalizedMessage;
|
|
12722
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
12289
12723
|
quotaInfo?: QuotaExceededInfo;
|
|
12290
12724
|
}[];
|
|
12291
12725
|
/**
|
|
@@ -15776,6 +16210,14 @@ declare namespace gapi.client {
|
|
|
15776
16210
|
lastStopTimestamp?: string;
|
|
15777
16211
|
/** Output only. [Output Only] Last suspended timestamp inRFC3339 text format. */
|
|
15778
16212
|
lastSuspendedTimestamp?: string;
|
|
16213
|
+
/**
|
|
16214
|
+
* Specifies which method should be used for encrypting the
|
|
16215
|
+
* Local SSDs attached to the VM.
|
|
16216
|
+
*/
|
|
16217
|
+
localSsdEncryptionMode?:
|
|
16218
|
+
| 'EPHEMERAL_KEY_ENCRYPTION'
|
|
16219
|
+
| 'LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED'
|
|
16220
|
+
| 'STANDARD_ENCRYPTION';
|
|
15779
16221
|
/**
|
|
15780
16222
|
* Full or partial URL of the machine type resource to use for this instance,
|
|
15781
16223
|
* in the format:zones/zone/machineTypes/machine-type. This is provided by the client
|
|
@@ -17230,9 +17672,13 @@ declare namespace gapi.client {
|
|
|
17230
17672
|
* QUOTA_EXCEEDED.
|
|
17231
17673
|
*/
|
|
17232
17674
|
errorDetails?: {
|
|
17675
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
17233
17676
|
errorInfo?: ErrorInfo;
|
|
17677
|
+
/** Links and information to help the user resolve the error. */
|
|
17234
17678
|
help?: Help;
|
|
17679
|
+
/** A localized human-readable error message intended for end users. */
|
|
17235
17680
|
localizedMessage?: LocalizedMessage;
|
|
17681
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
17236
17682
|
quotaInfo?: QuotaExceededInfo;
|
|
17237
17683
|
}[];
|
|
17238
17684
|
/**
|
|
@@ -17280,9 +17726,13 @@ declare namespace gapi.client {
|
|
|
17280
17726
|
* QUOTA_EXCEEDED.
|
|
17281
17727
|
*/
|
|
17282
17728
|
errorDetails?: {
|
|
17729
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
17283
17730
|
errorInfo?: ErrorInfo;
|
|
17731
|
+
/** Links and information to help the user resolve the error. */
|
|
17284
17732
|
help?: Help;
|
|
17733
|
+
/** A localized human-readable error message intended for end users. */
|
|
17285
17734
|
localizedMessage?: LocalizedMessage;
|
|
17735
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
17286
17736
|
quotaInfo?: QuotaExceededInfo;
|
|
17287
17737
|
}[];
|
|
17288
17738
|
/**
|
|
@@ -17318,7 +17768,7 @@ declare namespace gapi.client {
|
|
|
17318
17768
|
}
|
|
17319
17769
|
interface InstanceGroupManagersApplyUpdatesRequest {
|
|
17320
17770
|
/**
|
|
17321
|
-
* Flag to update all instances instead of specified list of
|
|
17771
|
+
* Flag to update all instances instead of specified list of "instances".
|
|
17322
17772
|
* If the flag is set to true then the instances may not be specified
|
|
17323
17773
|
* in the request.
|
|
17324
17774
|
*/
|
|
@@ -17502,9 +17952,13 @@ declare namespace gapi.client {
|
|
|
17502
17952
|
* QUOTA_EXCEEDED.
|
|
17503
17953
|
*/
|
|
17504
17954
|
errorDetails?: {
|
|
17955
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
17505
17956
|
errorInfo?: ErrorInfo;
|
|
17957
|
+
/** Links and information to help the user resolve the error. */
|
|
17506
17958
|
help?: Help;
|
|
17959
|
+
/** A localized human-readable error message intended for end users. */
|
|
17507
17960
|
localizedMessage?: LocalizedMessage;
|
|
17961
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
17508
17962
|
quotaInfo?: QuotaExceededInfo;
|
|
17509
17963
|
}[];
|
|
17510
17964
|
/**
|
|
@@ -17528,11 +17982,12 @@ declare namespace gapi.client {
|
|
|
17528
17982
|
externalId?: string;
|
|
17529
17983
|
}
|
|
17530
17984
|
interface InstanceGroupManagersListErrorsResponse {
|
|
17531
|
-
/** Output only.
|
|
17985
|
+
/** Output only. The list of errors of the managed instance group. */
|
|
17532
17986
|
items?: InstanceManagedByIgmError[];
|
|
17533
17987
|
/**
|
|
17534
|
-
* Output only.
|
|
17535
|
-
*
|
|
17988
|
+
* Output only. This token allows you to get the next page of results for list requests.
|
|
17989
|
+
* If the number of results is larger than maxResults
|
|
17990
|
+
* , then use the nextPageToken as a value for
|
|
17536
17991
|
* the query parameter pageToken in the next list request.
|
|
17537
17992
|
* Subsequent list requests will have their own nextPageToken to
|
|
17538
17993
|
* continue paging through the results.
|
|
@@ -17911,9 +18366,13 @@ declare namespace gapi.client {
|
|
|
17911
18366
|
* QUOTA_EXCEEDED.
|
|
17912
18367
|
*/
|
|
17913
18368
|
errorDetails?: {
|
|
18369
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
17914
18370
|
errorInfo?: ErrorInfo;
|
|
18371
|
+
/** Links and information to help the user resolve the error. */
|
|
17915
18372
|
help?: Help;
|
|
18373
|
+
/** A localized human-readable error message intended for end users. */
|
|
17916
18374
|
localizedMessage?: LocalizedMessage;
|
|
18375
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
17917
18376
|
quotaInfo?: QuotaExceededInfo;
|
|
17918
18377
|
}[];
|
|
17919
18378
|
/**
|
|
@@ -17971,9 +18430,13 @@ declare namespace gapi.client {
|
|
|
17971
18430
|
* QUOTA_EXCEEDED.
|
|
17972
18431
|
*/
|
|
17973
18432
|
errorDetails?: {
|
|
18433
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
17974
18434
|
errorInfo?: ErrorInfo;
|
|
18435
|
+
/** Links and information to help the user resolve the error. */
|
|
17975
18436
|
help?: Help;
|
|
18437
|
+
/** A localized human-readable error message intended for end users. */
|
|
17976
18438
|
localizedMessage?: LocalizedMessage;
|
|
18439
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
17977
18440
|
quotaInfo?: QuotaExceededInfo;
|
|
17978
18441
|
}[];
|
|
17979
18442
|
/**
|
|
@@ -18753,6 +19216,14 @@ declare namespace gapi.client {
|
|
|
18753
19216
|
'KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED' | 'NONE' | 'STOP';
|
|
18754
19217
|
/** Labels to apply to instances that are created from these properties. */
|
|
18755
19218
|
labels?: {[P in string]: string};
|
|
19219
|
+
/**
|
|
19220
|
+
* Specifies which method should be used for encrypting the
|
|
19221
|
+
* Local SSDs attached to the VM.
|
|
19222
|
+
*/
|
|
19223
|
+
localSsdEncryptionMode?:
|
|
19224
|
+
| 'EPHEMERAL_KEY_ENCRYPTION'
|
|
19225
|
+
| 'LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED'
|
|
19226
|
+
| 'STANDARD_ENCRYPTION';
|
|
18756
19227
|
/**
|
|
18757
19228
|
* The machine type to use for instances that are created from these
|
|
18758
19229
|
* properties.
|
|
@@ -22831,6 +23302,18 @@ declare namespace gapi.client {
|
|
|
22831
23302
|
etag?: string;
|
|
22832
23303
|
result?: InterconnectMacsecConfig;
|
|
22833
23304
|
}
|
|
23305
|
+
interface InterconnectsSetNameRequest {
|
|
23306
|
+
/**
|
|
23307
|
+
* The current name of the interconnect.
|
|
23308
|
+
* The name must be 1-63 characters long, and comply with RFC1035.
|
|
23309
|
+
*/
|
|
23310
|
+
currentName?: string;
|
|
23311
|
+
/**
|
|
23312
|
+
* The new name of the interconnect.
|
|
23313
|
+
* The name must be 1-63 characters long, and comply with RFC1035.
|
|
23314
|
+
*/
|
|
23315
|
+
name?: string;
|
|
23316
|
+
}
|
|
22834
23317
|
interface InternalIpAddress {
|
|
22835
23318
|
/** IP CIDR address or range. */
|
|
22836
23319
|
cidr?: string;
|
|
@@ -24495,13 +24978,10 @@ declare namespace gapi.client {
|
|
|
24495
24978
|
* InstanceFlexibilityPolicy.
|
|
24496
24979
|
*/
|
|
24497
24980
|
propertiesFromFlexibilityPolicy?: ManagedInstancePropertiesFromFlexibilityPolicy;
|
|
24498
|
-
/**
|
|
24499
|
-
* Output only. [Output Only] Information about the termination timestamp of the instance,
|
|
24500
|
-
* if applicable.
|
|
24501
|
-
*/
|
|
24981
|
+
/** Output only. Information about the termination timestamp of the instance, if applicable. */
|
|
24502
24982
|
scheduling?: ManagedInstanceScheduling;
|
|
24503
24983
|
/**
|
|
24504
|
-
* Output only.
|
|
24984
|
+
* Output only. Specifies the graceful shutdown details if the instance is in
|
|
24505
24985
|
* `PENDING_STOP` state or there is a programmed stop scheduled.
|
|
24506
24986
|
*/
|
|
24507
24987
|
shutdownDetails?: ManagedInstanceShutdownDetails;
|
|
@@ -24559,6 +25039,9 @@ declare namespace gapi.client {
|
|
|
24559
25039
|
* Policy.
|
|
24560
25040
|
* - TERMINATION_TIMESTAMP Instance reached termination time,
|
|
24561
25041
|
* thus managed instance group stops/deletes it.
|
|
25042
|
+
* - GRACEFUL_SHUTDOWN_TIMESTAMP Instance reached graceful
|
|
25043
|
+
* shutdown time, thus managed instance group stops/deletes it to
|
|
25044
|
+
* gracefully shut it down.
|
|
24562
25045
|
*/
|
|
24563
25046
|
trigger?:
|
|
24564
25047
|
| 'API'
|
|
@@ -24625,9 +25108,13 @@ declare namespace gapi.client {
|
|
|
24625
25108
|
* QUOTA_EXCEEDED.
|
|
24626
25109
|
*/
|
|
24627
25110
|
errorDetails?: {
|
|
25111
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
24628
25112
|
errorInfo?: ErrorInfo;
|
|
25113
|
+
/** Links and information to help the user resolve the error. */
|
|
24629
25114
|
help?: Help;
|
|
25115
|
+
/** A localized human-readable error message intended for end users. */
|
|
24630
25116
|
localizedMessage?: LocalizedMessage;
|
|
25117
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
24631
25118
|
quotaInfo?: QuotaExceededInfo;
|
|
24632
25119
|
}[];
|
|
24633
25120
|
/**
|
|
@@ -24656,25 +25143,27 @@ declare namespace gapi.client {
|
|
|
24656
25143
|
}
|
|
24657
25144
|
interface ManagedInstanceScheduling {
|
|
24658
25145
|
/**
|
|
24659
|
-
* Output only.
|
|
25146
|
+
* Output only. The timestamp at which the underlying instance will be
|
|
24660
25147
|
* triggered for graceful shutdown if it is configured. This is in RFC3339 text format.
|
|
24661
25148
|
*/
|
|
24662
25149
|
gracefulShutdownTimestamp?: string;
|
|
24663
25150
|
/**
|
|
24664
|
-
* Output only.
|
|
24665
|
-
*
|
|
25151
|
+
* Output only. The timestamp at which the managed instance will be terminated. This is
|
|
25152
|
+
* in RFC3339 text
|
|
25153
|
+
* format.
|
|
24666
25154
|
*/
|
|
24667
25155
|
terminationTimestamp?: string;
|
|
24668
25156
|
}
|
|
24669
25157
|
interface ManagedInstanceShutdownDetails {
|
|
24670
25158
|
/**
|
|
24671
|
-
* Output only.
|
|
24672
|
-
*
|
|
25159
|
+
* Output only. The duration for graceful shutdown. Only applicable when the instance is
|
|
25160
|
+
* in `PENDING_STOP` state.
|
|
24673
25161
|
*/
|
|
24674
25162
|
maxDuration?: Duration;
|
|
24675
25163
|
/**
|
|
24676
|
-
* Output only.
|
|
24677
|
-
*
|
|
25164
|
+
* Output only. Past timestamp indicating the beginning of `PENDING_STOP` state of
|
|
25165
|
+
* instance in RFC3339
|
|
25166
|
+
* text format.
|
|
24678
25167
|
*/
|
|
24679
25168
|
requestTimestamp?: string;
|
|
24680
25169
|
}
|
|
@@ -24687,6 +25176,147 @@ declare namespace gapi.client {
|
|
|
24687
25176
|
/** Output only. [Output Only] Name of the version. */
|
|
24688
25177
|
name?: string;
|
|
24689
25178
|
}
|
|
25179
|
+
interface ManagedRuleset {
|
|
25180
|
+
/** Output only. [Output Only] The change log for this managed ruleset. */
|
|
25181
|
+
changeLog?: string;
|
|
25182
|
+
/** Output only. [Output Only] Creation timestamp in RFC3339 text format. */
|
|
25183
|
+
creationTimestamp?: string;
|
|
25184
|
+
/** [Output Only] An optional description of this resource. */
|
|
25185
|
+
description?: string;
|
|
25186
|
+
/**
|
|
25187
|
+
* Output only. [Output Only] The unique identifier for the resource. This identifier is
|
|
25188
|
+
* defined by the server.
|
|
25189
|
+
*/
|
|
25190
|
+
id?: string;
|
|
25191
|
+
/**
|
|
25192
|
+
* Name of the resource. Generated internally when the resource is created.
|
|
25193
|
+
* The name must be 1-63 characters long, and comply withRFC1035.
|
|
25194
|
+
* Specifically, the name must be 1-63 characters long and match the regular
|
|
25195
|
+
* expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
25196
|
+
* character must be a lowercase letter, and all following characters must
|
|
25197
|
+
* be a dash, lowercase letter, or digit, except the last character, which
|
|
25198
|
+
* cannot be a dash.
|
|
25199
|
+
*/
|
|
25200
|
+
name?: string;
|
|
25201
|
+
/**
|
|
25202
|
+
* Output only. [Output Only] The list of managed rule IDs that are included in
|
|
25203
|
+
* this managed ruleset.
|
|
25204
|
+
*/
|
|
25205
|
+
ruleIds?: string[];
|
|
25206
|
+
/**
|
|
25207
|
+
* Output only. [Output Only] The managed ruleset identifier that can be configured in
|
|
25208
|
+
* Security Policy rules.
|
|
25209
|
+
*/
|
|
25210
|
+
rulesetId?: string;
|
|
25211
|
+
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
25212
|
+
selfLink?: string;
|
|
25213
|
+
}
|
|
25214
|
+
interface ManagedRulesetList {
|
|
25215
|
+
id?: string;
|
|
25216
|
+
items?: ManagedRuleset[];
|
|
25217
|
+
nextPageToken?: string;
|
|
25218
|
+
warning?: {
|
|
25219
|
+
/**
|
|
25220
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
25221
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
25222
|
+
* are no results in the response.
|
|
25223
|
+
*/
|
|
25224
|
+
code?:
|
|
25225
|
+
| 'CLEANUP_FAILED'
|
|
25226
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
25227
|
+
| 'DEPRECATED_TYPE_USED'
|
|
25228
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
25229
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
25230
|
+
| 'EXTERNAL_API_WARNING'
|
|
25231
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
25232
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
25233
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
25234
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
25235
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
25236
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
25237
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
25238
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
25239
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
25240
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
25241
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
25242
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
25243
|
+
| 'NOT_CRITICAL_ERROR'
|
|
25244
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
25245
|
+
| 'PARTIAL_SUCCESS'
|
|
25246
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
25247
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
25248
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
25249
|
+
| 'RESOURCE_NOT_DELETED'
|
|
25250
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
25251
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
25252
|
+
| 'UNDECLARED_PROPERTIES'
|
|
25253
|
+
| 'UNREACHABLE';
|
|
25254
|
+
/**
|
|
25255
|
+
* [Output Only] Metadata about this warning in key:
|
|
25256
|
+
* value format. For example:
|
|
25257
|
+
*
|
|
25258
|
+
* "data": [
|
|
25259
|
+
* {
|
|
25260
|
+
* "key": "scope",
|
|
25261
|
+
* "value": "zones/us-east1-d"
|
|
25262
|
+
* }
|
|
25263
|
+
*/
|
|
25264
|
+
data?: {
|
|
25265
|
+
/**
|
|
25266
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
25267
|
+
* returned. For example, for warnings where there are no results in a list
|
|
25268
|
+
* request for a particular zone, this key might be scope and
|
|
25269
|
+
* the key value might be the zone name. Other examples might be a key
|
|
25270
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
25271
|
+
* warning about invalid network settings (for example, if an instance
|
|
25272
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
25273
|
+
*/
|
|
25274
|
+
key?: string;
|
|
25275
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
25276
|
+
value?: string;
|
|
25277
|
+
}[];
|
|
25278
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
25279
|
+
message?: string;
|
|
25280
|
+
};
|
|
25281
|
+
}
|
|
25282
|
+
interface ManagementInterface {
|
|
25283
|
+
authenticationConfig?: AuthenticationConfig;
|
|
25284
|
+
/**
|
|
25285
|
+
* The IPv4 internal IP address assigned to this management interface
|
|
25286
|
+
* endpoint. This address will be used by the customer to route traffic to the
|
|
25287
|
+
* management interface.
|
|
25288
|
+
*/
|
|
25289
|
+
ipv4Address?: string;
|
|
25290
|
+
/**
|
|
25291
|
+
* The IPv6 internal IP address assigned to this management interface
|
|
25292
|
+
* endpoint. This address will be used by the customer to route traffic to the
|
|
25293
|
+
* management interface if IPv6 is supported and configured.
|
|
25294
|
+
*/
|
|
25295
|
+
ipv6Address?: string;
|
|
25296
|
+
/**
|
|
25297
|
+
* The URL of the VPC network to which the management interface endpoint is
|
|
25298
|
+
* attached. The customer must ensure that this network is correctly
|
|
25299
|
+
* configured for routing to the accelerator domain.
|
|
25300
|
+
*/
|
|
25301
|
+
network?: string;
|
|
25302
|
+
state?: 'ACTIVE' | 'INACTIVE' | 'PENDING' | 'STATE_UNSPECIFIED';
|
|
25303
|
+
/**
|
|
25304
|
+
* The URL of the subnetwork from which to assign the IP address for the
|
|
25305
|
+
* endpoint. The subnetwork must belong to the specified network and have
|
|
25306
|
+
* available IP addresses.
|
|
25307
|
+
*/
|
|
25308
|
+
subnetwork?: string;
|
|
25309
|
+
/**
|
|
25310
|
+
* Required. The type of management service this interface provides.
|
|
25311
|
+
* Supported types include NMX-C for partition management, gNMI for switch
|
|
25312
|
+
* monitoring, and TPU slice management.
|
|
25313
|
+
*/
|
|
25314
|
+
type?:
|
|
25315
|
+
| 'TYPE_NVLINK_PARTITION_MANAGEMENT'
|
|
25316
|
+
| 'TYPE_NVLINK_SWITCH_MONITORING'
|
|
25317
|
+
| 'TYPE_TPU_SLICE_MANAGEMENT'
|
|
25318
|
+
| 'TYPE_UNSPECIFIED';
|
|
25319
|
+
}
|
|
24690
25320
|
interface Metadata {
|
|
24691
25321
|
/**
|
|
24692
25322
|
* Specifies a fingerprint for this request, which is essentially a hash of
|
|
@@ -25078,9 +25708,13 @@ declare namespace gapi.client {
|
|
|
25078
25708
|
* QUOTA_EXCEEDED.
|
|
25079
25709
|
*/
|
|
25080
25710
|
errorDetails?: {
|
|
25711
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
25081
25712
|
errorInfo?: ErrorInfo;
|
|
25713
|
+
/** Links and information to help the user resolve the error. */
|
|
25082
25714
|
help?: Help;
|
|
25715
|
+
/** A localized human-readable error message intended for end users. */
|
|
25083
25716
|
localizedMessage?: LocalizedMessage;
|
|
25717
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
25084
25718
|
quotaInfo?: QuotaExceededInfo;
|
|
25085
25719
|
}[];
|
|
25086
25720
|
/**
|
|
@@ -25344,13 +25978,15 @@ declare namespace gapi.client {
|
|
|
25344
25978
|
*/
|
|
25345
25979
|
network?: string;
|
|
25346
25980
|
/**
|
|
25347
|
-
* Projects that are allowed to connect to this network
|
|
25348
|
-
* The project can be specified using its id or number.
|
|
25981
|
+
* Projects or service class ids that are allowed to connect to this network
|
|
25982
|
+
* attachment. The project can be specified using its id or number. Service
|
|
25983
|
+
* class id can be specified as "serviceclasses/{service_class_id}".
|
|
25349
25984
|
*/
|
|
25350
25985
|
producerAcceptLists?: string[];
|
|
25351
25986
|
/**
|
|
25352
|
-
* Projects that are not allowed to connect to this
|
|
25353
|
-
* The project can be specified using its id or number.
|
|
25987
|
+
* Projects or service class ids that are not allowed to connect to this
|
|
25988
|
+
* network attachment. The project can be specified using its id or number.
|
|
25989
|
+
* Service class id can be specified as "serviceclasses/{service_class_id}".
|
|
25354
25990
|
*/
|
|
25355
25991
|
producerRejectLists?: string[];
|
|
25356
25992
|
/**
|
|
@@ -27480,6 +28116,13 @@ declare namespace gapi.client {
|
|
|
27480
28116
|
type?: string;
|
|
27481
28117
|
}
|
|
27482
28118
|
interface NetworkPolicyTrafficClassificationRuleMatcher {
|
|
28119
|
+
/**
|
|
28120
|
+
* Address groups which should be matched against the traffic destination.
|
|
28121
|
+
* Maximum number of destination address groups is 10.
|
|
28122
|
+
* Example:
|
|
28123
|
+
* projects//locations//addressGroups/.
|
|
28124
|
+
*/
|
|
28125
|
+
destAddressGroups?: string[];
|
|
27483
28126
|
/**
|
|
27484
28127
|
* CIDR IP address range.
|
|
27485
28128
|
* Maximum number of destination CIDR IP ranges allowed is 5000.
|
|
@@ -29378,9 +30021,13 @@ declare namespace gapi.client {
|
|
|
29378
30021
|
* QUOTA_EXCEEDED.
|
|
29379
30022
|
*/
|
|
29380
30023
|
errorDetails?: {
|
|
30024
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
29381
30025
|
errorInfo?: ErrorInfo;
|
|
30026
|
+
/** Links and information to help the user resolve the error. */
|
|
29382
30027
|
help?: Help;
|
|
30028
|
+
/** A localized human-readable error message intended for end users. */
|
|
29383
30029
|
localizedMessage?: LocalizedMessage;
|
|
30030
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
29384
30031
|
quotaInfo?: QuotaExceededInfo;
|
|
29385
30032
|
}[];
|
|
29386
30033
|
/**
|
|
@@ -29392,6 +30039,12 @@ declare namespace gapi.client {
|
|
|
29392
30039
|
message?: string;
|
|
29393
30040
|
}[];
|
|
29394
30041
|
};
|
|
30042
|
+
/**
|
|
30043
|
+
* Output only. [Output Only] Metadata containing the allocated priority from the
|
|
30044
|
+
* networkFirewallPolicies.addRule and regionNetworkFirewallPolicies.addRule
|
|
30045
|
+
* methods if not explicitly provided by the user.
|
|
30046
|
+
*/
|
|
30047
|
+
firewallPolicyRuleOperationMetadata?: FirewallPolicyRuleOperationMetadata;
|
|
29395
30048
|
getVersionOperationMetadata?: GetVersionOperationMetadata;
|
|
29396
30049
|
/**
|
|
29397
30050
|
* [Output Only] If the operation fails, this field contains the HTTP error
|
|
@@ -32308,9 +32961,13 @@ declare namespace gapi.client {
|
|
|
32308
32961
|
* QUOTA_EXCEEDED.
|
|
32309
32962
|
*/
|
|
32310
32963
|
errorDetails?: {
|
|
32964
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
32311
32965
|
errorInfo?: ErrorInfo;
|
|
32966
|
+
/** Links and information to help the user resolve the error. */
|
|
32312
32967
|
help?: Help;
|
|
32968
|
+
/** A localized human-readable error message intended for end users. */
|
|
32313
32969
|
localizedMessage?: LocalizedMessage;
|
|
32970
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
32314
32971
|
quotaInfo?: QuotaExceededInfo;
|
|
32315
32972
|
}[];
|
|
32316
32973
|
/**
|
|
@@ -33724,7 +34381,7 @@ declare namespace gapi.client {
|
|
|
33724
34381
|
}
|
|
33725
34382
|
interface RegionInstanceGroupManagersApplyUpdatesRequest {
|
|
33726
34383
|
/**
|
|
33727
|
-
* Flag to update all instances instead of specified list of
|
|
34384
|
+
* Flag to update all instances instead of specified list of "instances".
|
|
33728
34385
|
* If the flag is set to true then the instances may not be specified
|
|
33729
34386
|
* in the request.
|
|
33730
34387
|
*/
|
|
@@ -34317,7 +34974,7 @@ declare namespace gapi.client {
|
|
|
34317
34974
|
}
|
|
34318
34975
|
interface ReliabilityRisk {
|
|
34319
34976
|
/**
|
|
34320
|
-
* Output only. [Output Only] Creation timestamp
|
|
34977
|
+
* Output only. [Output Only] Creation timestamp in RFC3339
|
|
34321
34978
|
* text format.
|
|
34322
34979
|
*/
|
|
34323
34980
|
creationTimestamp?: string;
|
|
@@ -34340,10 +34997,10 @@ declare namespace gapi.client {
|
|
|
34340
34997
|
kind?: string;
|
|
34341
34998
|
/**
|
|
34342
34999
|
* Name of the resource. The name must be 1-63 characters long and
|
|
34343
|
-
* comply
|
|
35000
|
+
* comply with RFC1035.
|
|
34344
35001
|
*/
|
|
34345
35002
|
name?: string;
|
|
34346
|
-
/** The
|
|
35003
|
+
/** The recommendation to mitigate the risk. */
|
|
34347
35004
|
recommendation?: RiskRecommendation;
|
|
34348
35005
|
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
34349
35006
|
selfLink?: string;
|
|
@@ -34907,6 +35564,133 @@ declare namespace gapi.client {
|
|
|
34907
35564
|
message?: string;
|
|
34908
35565
|
};
|
|
34909
35566
|
}
|
|
35567
|
+
interface ReservationConsumedInstance {
|
|
35568
|
+
/** The full URI of the instance resource. */
|
|
35569
|
+
instance?: string;
|
|
35570
|
+
/** The service to which the instance belongs. Typically "COMPUTE". */
|
|
35571
|
+
service?: string;
|
|
35572
|
+
/** Output only. [Output Only] The status of the consumed instance. */
|
|
35573
|
+
status?: ReservationConsumedInstanceStatus;
|
|
35574
|
+
}
|
|
35575
|
+
interface ReservationConsumedInstancesListResponse {
|
|
35576
|
+
/** Uniquely identifies the type of this resource. */
|
|
35577
|
+
id?: string;
|
|
35578
|
+
/** A list of ReservationConsumedInstance resources. */
|
|
35579
|
+
items?: ReservationConsumedInstance[];
|
|
35580
|
+
/** Identifies the resource as a list of reservation consumed instances. */
|
|
35581
|
+
kind?: string;
|
|
35582
|
+
/**
|
|
35583
|
+
* [Output Only] This token allows you to get the next page of results for
|
|
35584
|
+
* list requests.
|
|
35585
|
+
*/
|
|
35586
|
+
nextPageToken?: string;
|
|
35587
|
+
/** Output only. [Output Only] Server-defined URL for this resource. */
|
|
35588
|
+
selfLink?: string;
|
|
35589
|
+
/**
|
|
35590
|
+
* [Output Only] Informational warning which replaces the result in some
|
|
35591
|
+
* cases.
|
|
35592
|
+
*/
|
|
35593
|
+
warning?: {
|
|
35594
|
+
/**
|
|
35595
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
35596
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
35597
|
+
* are no results in the response.
|
|
35598
|
+
*/
|
|
35599
|
+
code?:
|
|
35600
|
+
| 'CLEANUP_FAILED'
|
|
35601
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
35602
|
+
| 'DEPRECATED_TYPE_USED'
|
|
35603
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
35604
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
35605
|
+
| 'EXTERNAL_API_WARNING'
|
|
35606
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
35607
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
35608
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
35609
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
35610
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
35611
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
35612
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
35613
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
35614
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
35615
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
35616
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
35617
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
35618
|
+
| 'NOT_CRITICAL_ERROR'
|
|
35619
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
35620
|
+
| 'PARTIAL_SUCCESS'
|
|
35621
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
35622
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
35623
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
35624
|
+
| 'RESOURCE_NOT_DELETED'
|
|
35625
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
35626
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
35627
|
+
| 'UNDECLARED_PROPERTIES'
|
|
35628
|
+
| 'UNREACHABLE';
|
|
35629
|
+
/**
|
|
35630
|
+
* [Output Only] Metadata about this warning in key:
|
|
35631
|
+
* value format. For example:
|
|
35632
|
+
*
|
|
35633
|
+
* "data": [
|
|
35634
|
+
* {
|
|
35635
|
+
* "key": "scope",
|
|
35636
|
+
* "value": "zones/us-east1-d"
|
|
35637
|
+
* }
|
|
35638
|
+
*/
|
|
35639
|
+
data?: {
|
|
35640
|
+
/**
|
|
35641
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
35642
|
+
* returned. For example, for warnings where there are no results in a list
|
|
35643
|
+
* request for a particular zone, this key might be scope and
|
|
35644
|
+
* the key value might be the zone name. Other examples might be a key
|
|
35645
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
35646
|
+
* warning about invalid network settings (for example, if an instance
|
|
35647
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
35648
|
+
*/
|
|
35649
|
+
key?: string;
|
|
35650
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
35651
|
+
value?: string;
|
|
35652
|
+
}[];
|
|
35653
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
35654
|
+
message?: string;
|
|
35655
|
+
};
|
|
35656
|
+
}
|
|
35657
|
+
interface ReservationConsumedInstanceStatus {
|
|
35658
|
+
/** A list of issues related to this instance's linkage to the reservation. */
|
|
35659
|
+
linkageErrors?: {
|
|
35660
|
+
/**
|
|
35661
|
+
* [Output Only] The array of errors encountered while processing this
|
|
35662
|
+
* operation.
|
|
35663
|
+
*/
|
|
35664
|
+
errors?: {
|
|
35665
|
+
/** [Output Only] The error type identifier for this error. */
|
|
35666
|
+
code?: string;
|
|
35667
|
+
/**
|
|
35668
|
+
* [Output Only] An optional list of messages that contain the error
|
|
35669
|
+
* details. There is a set of defined message types to use for providing
|
|
35670
|
+
* details.The syntax depends on the error code. For example,
|
|
35671
|
+
* QuotaExceededInfo will have details when the error code is
|
|
35672
|
+
* QUOTA_EXCEEDED.
|
|
35673
|
+
*/
|
|
35674
|
+
errorDetails?: {
|
|
35675
|
+
/** Error information containing structured domain, reason, and metadata. */
|
|
35676
|
+
errorInfo?: ErrorInfo;
|
|
35677
|
+
/** Links and information to help the user resolve the error. */
|
|
35678
|
+
help?: Help;
|
|
35679
|
+
/** A localized human-readable error message intended for end users. */
|
|
35680
|
+
localizedMessage?: LocalizedMessage;
|
|
35681
|
+
/** Details about quota limits and metrics when a quota is exceeded. */
|
|
35682
|
+
quotaInfo?: QuotaExceededInfo;
|
|
35683
|
+
}[];
|
|
35684
|
+
/**
|
|
35685
|
+
* [Output Only] Indicates the field in the request that caused the error.
|
|
35686
|
+
* This property is optional.
|
|
35687
|
+
*/
|
|
35688
|
+
location?: string;
|
|
35689
|
+
/** [Output Only] An optional, human-readable error message. */
|
|
35690
|
+
message?: string;
|
|
35691
|
+
}[];
|
|
35692
|
+
};
|
|
35693
|
+
}
|
|
34910
35694
|
interface ReservationList {
|
|
34911
35695
|
/**
|
|
34912
35696
|
* [Output Only] The unique identifier for the resource. This identifier is
|
|
@@ -36185,6 +36969,11 @@ declare namespace gapi.client {
|
|
|
36185
36969
|
* specified in the spread placement policy attached to the instance.
|
|
36186
36970
|
*/
|
|
36187
36971
|
availabilityDomain?: number;
|
|
36972
|
+
/**
|
|
36973
|
+
* Output only. Specifies the timestamp, when the instance will start graceful shutdown
|
|
36974
|
+
* process, in RFC3339 text format.
|
|
36975
|
+
*/
|
|
36976
|
+
gracefulShutdownTimestamp?: string;
|
|
36188
36977
|
/** Time in future when the instance will be terminated inRFC3339 text format. */
|
|
36189
36978
|
terminationTimestamp?: string;
|
|
36190
36979
|
}
|
|
@@ -36221,6 +37010,7 @@ declare namespace gapi.client {
|
|
|
36221
37010
|
interface RiskDetails {
|
|
36222
37011
|
/** The duration of the risk since it was detected. */
|
|
36223
37012
|
duration?: string;
|
|
37013
|
+
/** Insight details for global DNS risk. */
|
|
36224
37014
|
globalDnsInsight?: RiskDetailsGlobalDnsInsight;
|
|
36225
37015
|
/** The last time the risk was updated. */
|
|
36226
37016
|
lastUpdateTimestamp?: string;
|
|
@@ -36231,13 +37021,13 @@ declare namespace gapi.client {
|
|
|
36231
37021
|
type?: 'GLOBAL_DNS' | 'RISK_TYPE_UNSPECIFIED';
|
|
36232
37022
|
}
|
|
36233
37023
|
interface RiskDetailsGlobalDnsInsight {
|
|
36234
|
-
/**
|
|
37024
|
+
/** Indicates whether the project's default DNS setting is global DNS. */
|
|
36235
37025
|
projectDefaultIsGlobalDns?: boolean;
|
|
36236
37026
|
/** The observation window for the query counts. */
|
|
36237
37027
|
queryObservationWindow?: string;
|
|
36238
37028
|
/**
|
|
36239
|
-
* The number of queries that are risky. This
|
|
36240
|
-
* total_query_count.
|
|
37029
|
+
* The number of queries that are risky. This is always less than or
|
|
37030
|
+
* equal to total_query_count.
|
|
36241
37031
|
*/
|
|
36242
37032
|
riskyQueryCount?: string;
|
|
36243
37033
|
/** The total number of queries in the observation window. */
|
|
@@ -38483,6 +39273,8 @@ declare namespace gapi.client {
|
|
|
38483
39273
|
/** Routes that were advertised to the remote BGP peer */
|
|
38484
39274
|
advertisedRoutes?: Route[];
|
|
38485
39275
|
bfdStatus?: BfdStatus;
|
|
39276
|
+
/** Output only. [Output Only] Indicates whether the BGP peer is in a depreferenced state. */
|
|
39277
|
+
depreferenced?: boolean;
|
|
38486
39278
|
/**
|
|
38487
39279
|
* Output only. Enable IPv4 traffic over BGP Peer.
|
|
38488
39280
|
* It is enabled by default if the peerIpAddress is version 4.
|
|
@@ -42476,10 +43268,6 @@ declare namespace gapi.client {
|
|
|
42476
43268
|
}[];
|
|
42477
43269
|
}
|
|
42478
43270
|
interface SslPolicyReference {
|
|
42479
|
-
/**
|
|
42480
|
-
* URL of the SSL policy resource. Set this to empty string to clear any
|
|
42481
|
-
* existing SSL policy associated with the target proxy resource.
|
|
42482
|
-
*/
|
|
42483
43271
|
sslPolicy?: string;
|
|
42484
43272
|
}
|
|
42485
43273
|
interface StatefulPolicy {
|
|
@@ -49570,6 +50358,8 @@ declare namespace gapi.client {
|
|
|
49570
50358
|
interface WorkloadIdentityConfig {
|
|
49571
50359
|
identity?: string;
|
|
49572
50360
|
identityCertificateEnabled?: boolean;
|
|
50361
|
+
identityType?:
|
|
50362
|
+
'AGENT_IDENTITY' | 'IDENTITY_TYPE_UNSPECIFIED' | 'SERVICE_ACCOUNT';
|
|
49573
50363
|
}
|
|
49574
50364
|
interface XpnHostList {
|
|
49575
50365
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
@@ -49817,14 +50607,134 @@ declare namespace gapi.client {
|
|
|
49817
50607
|
*/
|
|
49818
50608
|
policy?: Policy;
|
|
49819
50609
|
}
|
|
49820
|
-
interface
|
|
49821
|
-
/**
|
|
49822
|
-
|
|
49823
|
-
|
|
49824
|
-
|
|
49825
|
-
|
|
49826
|
-
|
|
49827
|
-
|
|
50610
|
+
interface AcceleratorPodControllersResource {
|
|
50611
|
+
/** Deletes the specified AcceleratorPodController resource. */
|
|
50612
|
+
delete(request?: {
|
|
50613
|
+
/** V1 error format. */
|
|
50614
|
+
'$.xgafv'?: '1' | '2';
|
|
50615
|
+
/** OAuth access token. */
|
|
50616
|
+
access_token?: string;
|
|
50617
|
+
/** Data format for response. */
|
|
50618
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50619
|
+
/** JSONP */
|
|
50620
|
+
callback?: string;
|
|
50621
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50622
|
+
fields?: string;
|
|
50623
|
+
/** 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. */
|
|
50624
|
+
key?: string;
|
|
50625
|
+
/** OAuth 2.0 token for the current user. */
|
|
50626
|
+
oauth_token?: string;
|
|
50627
|
+
/** Returns response with indentations and line breaks. */
|
|
50628
|
+
prettyPrint?: boolean;
|
|
50629
|
+
project: string;
|
|
50630
|
+
/** 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. */
|
|
50631
|
+
quotaUser?: string;
|
|
50632
|
+
requestId?: string;
|
|
50633
|
+
resourceId: string;
|
|
50634
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50635
|
+
upload_protocol?: string;
|
|
50636
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50637
|
+
uploadType?: string;
|
|
50638
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50639
|
+
userIp?: string;
|
|
50640
|
+
zone: string;
|
|
50641
|
+
}): Request<Operation>;
|
|
50642
|
+
/** Gets the specified AcceleratorPodController resource. */
|
|
50643
|
+
get(request?: {
|
|
50644
|
+
/** V1 error format. */
|
|
50645
|
+
'$.xgafv'?: '1' | '2';
|
|
50646
|
+
/** OAuth access token. */
|
|
50647
|
+
access_token?: string;
|
|
50648
|
+
/** Data format for response. */
|
|
50649
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50650
|
+
/** JSONP */
|
|
50651
|
+
callback?: string;
|
|
50652
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50653
|
+
fields?: string;
|
|
50654
|
+
/** 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. */
|
|
50655
|
+
key?: string;
|
|
50656
|
+
/** OAuth 2.0 token for the current user. */
|
|
50657
|
+
oauth_token?: string;
|
|
50658
|
+
/** Returns response with indentations and line breaks. */
|
|
50659
|
+
prettyPrint?: boolean;
|
|
50660
|
+
project: string;
|
|
50661
|
+
/** 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. */
|
|
50662
|
+
quotaUser?: string;
|
|
50663
|
+
resourceId: string;
|
|
50664
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50665
|
+
upload_protocol?: string;
|
|
50666
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50667
|
+
uploadType?: string;
|
|
50668
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50669
|
+
userIp?: string;
|
|
50670
|
+
zone: string;
|
|
50671
|
+
}): Request<AcceleratorPodController>;
|
|
50672
|
+
/** Inserts a new AcceleratorPodController resource. */
|
|
50673
|
+
insert(request: {
|
|
50674
|
+
/** V1 error format. */
|
|
50675
|
+
'$.xgafv'?: '1' | '2';
|
|
50676
|
+
/** OAuth access token. */
|
|
50677
|
+
access_token?: string;
|
|
50678
|
+
/** Data format for response. */
|
|
50679
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50680
|
+
/** JSONP */
|
|
50681
|
+
callback?: string;
|
|
50682
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50683
|
+
fields?: string;
|
|
50684
|
+
/** 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. */
|
|
50685
|
+
key?: string;
|
|
50686
|
+
/** OAuth 2.0 token for the current user. */
|
|
50687
|
+
oauth_token?: string;
|
|
50688
|
+
/** Returns response with indentations and line breaks. */
|
|
50689
|
+
prettyPrint?: boolean;
|
|
50690
|
+
project: string;
|
|
50691
|
+
/** 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. */
|
|
50692
|
+
quotaUser?: string;
|
|
50693
|
+
requestId?: string;
|
|
50694
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50695
|
+
upload_protocol?: string;
|
|
50696
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50697
|
+
uploadType?: string;
|
|
50698
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50699
|
+
userIp?: string;
|
|
50700
|
+
zone: string;
|
|
50701
|
+
/** Request body */
|
|
50702
|
+
resource: AcceleratorPodController;
|
|
50703
|
+
}): Request<Operation>;
|
|
50704
|
+
insert(
|
|
50705
|
+
request: {
|
|
50706
|
+
/** V1 error format. */
|
|
50707
|
+
'$.xgafv'?: '1' | '2';
|
|
50708
|
+
/** OAuth access token. */
|
|
50709
|
+
access_token?: string;
|
|
50710
|
+
/** Data format for response. */
|
|
50711
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50712
|
+
/** JSONP */
|
|
50713
|
+
callback?: string;
|
|
50714
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50715
|
+
fields?: string;
|
|
50716
|
+
/** 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. */
|
|
50717
|
+
key?: string;
|
|
50718
|
+
/** OAuth 2.0 token for the current user. */
|
|
50719
|
+
oauth_token?: string;
|
|
50720
|
+
/** Returns response with indentations and line breaks. */
|
|
50721
|
+
prettyPrint?: boolean;
|
|
50722
|
+
project: string;
|
|
50723
|
+
/** 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. */
|
|
50724
|
+
quotaUser?: string;
|
|
50725
|
+
requestId?: string;
|
|
50726
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50727
|
+
upload_protocol?: string;
|
|
50728
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50729
|
+
uploadType?: string;
|
|
50730
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50731
|
+
userIp?: string;
|
|
50732
|
+
zone: string;
|
|
50733
|
+
},
|
|
50734
|
+
body: AcceleratorPodController,
|
|
50735
|
+
): Request<Operation>;
|
|
50736
|
+
/** Lists the AcceleratorPodController resources in the specified zone. */
|
|
50737
|
+
list(request?: {
|
|
49828
50738
|
/** V1 error format. */
|
|
49829
50739
|
'$.xgafv'?: '1' | '2';
|
|
49830
50740
|
/** OAuth access token. */
|
|
@@ -49896,16 +50806,6 @@ declare namespace gapi.client {
|
|
|
49896
50806
|
* expressions.
|
|
49897
50807
|
*/
|
|
49898
50808
|
filter?: string;
|
|
49899
|
-
/**
|
|
49900
|
-
* Indicates whether every visible scope for each scope type (zone, region,
|
|
49901
|
-
* global) should be included in the response. For new resource types added
|
|
49902
|
-
* after this field, the flag has no effect as new resource types will always
|
|
49903
|
-
* include every visible scope for each scope type in response. For resource
|
|
49904
|
-
* types which predate this field, if this flag is omitted or false, only
|
|
49905
|
-
* scopes of the scope types where the resource type is expected to be found
|
|
49906
|
-
* will be included.
|
|
49907
|
-
*/
|
|
49908
|
-
includeAllScopes?: boolean;
|
|
49909
50809
|
/** 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. */
|
|
49910
50810
|
key?: string;
|
|
49911
50811
|
/**
|
|
@@ -49940,7 +50840,6 @@ declare namespace gapi.client {
|
|
|
49940
50840
|
pageToken?: string;
|
|
49941
50841
|
/** Returns response with indentations and line breaks. */
|
|
49942
50842
|
prettyPrint?: boolean;
|
|
49943
|
-
/** Project ID for this request. */
|
|
49944
50843
|
project: string;
|
|
49945
50844
|
/** 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. */
|
|
49946
50845
|
quotaUser?: string;
|
|
@@ -49953,24 +50852,18 @@ declare namespace gapi.client {
|
|
|
49953
50852
|
* with an error code.
|
|
49954
50853
|
*/
|
|
49955
50854
|
returnPartialSuccess?: boolean;
|
|
49956
|
-
/**
|
|
49957
|
-
* The Shared VPC service project id or service project number for which
|
|
49958
|
-
* aggregated list request is invoked for subnetworks list-usable api.
|
|
49959
|
-
*/
|
|
49960
|
-
serviceProjectNumber?: string;
|
|
49961
50855
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
49962
50856
|
upload_protocol?: string;
|
|
49963
50857
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
49964
50858
|
uploadType?: string;
|
|
49965
50859
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
49966
50860
|
userIp?: string;
|
|
49967
|
-
|
|
49968
|
-
|
|
49969
|
-
|
|
50861
|
+
zone: string;
|
|
50862
|
+
}): Request<AcceleratorPodControllersListResponse>;
|
|
50863
|
+
/** Patches the specified AcceleratorPodController resource. */
|
|
50864
|
+
patch(request: {
|
|
49970
50865
|
/** V1 error format. */
|
|
49971
50866
|
'$.xgafv'?: '1' | '2';
|
|
49972
|
-
/** Name of the accelerator type to return. */
|
|
49973
|
-
acceleratorType: string;
|
|
49974
50867
|
/** OAuth access token. */
|
|
49975
50868
|
access_token?: string;
|
|
49976
50869
|
/** Data format for response. */
|
|
@@ -49985,24 +50878,65 @@ declare namespace gapi.client {
|
|
|
49985
50878
|
oauth_token?: string;
|
|
49986
50879
|
/** Returns response with indentations and line breaks. */
|
|
49987
50880
|
prettyPrint?: boolean;
|
|
49988
|
-
/** Project ID for this request. */
|
|
49989
50881
|
project: string;
|
|
49990
50882
|
/** 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. */
|
|
49991
50883
|
quotaUser?: string;
|
|
50884
|
+
requestId?: string;
|
|
50885
|
+
resourceId: string;
|
|
50886
|
+
updateMask?: string;
|
|
49992
50887
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
49993
50888
|
upload_protocol?: string;
|
|
49994
50889
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
49995
50890
|
uploadType?: string;
|
|
49996
50891
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
49997
50892
|
userIp?: string;
|
|
49998
|
-
/** The name of the zone for this request. */
|
|
49999
50893
|
zone: string;
|
|
50000
|
-
|
|
50894
|
+
/** Request body */
|
|
50895
|
+
resource: AcceleratorPodController;
|
|
50896
|
+
}): Request<Operation>;
|
|
50897
|
+
patch(
|
|
50898
|
+
request: {
|
|
50899
|
+
/** V1 error format. */
|
|
50900
|
+
'$.xgafv'?: '1' | '2';
|
|
50901
|
+
/** OAuth access token. */
|
|
50902
|
+
access_token?: string;
|
|
50903
|
+
/** Data format for response. */
|
|
50904
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50905
|
+
/** JSONP */
|
|
50906
|
+
callback?: string;
|
|
50907
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50908
|
+
fields?: string;
|
|
50909
|
+
/** 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. */
|
|
50910
|
+
key?: string;
|
|
50911
|
+
/** OAuth 2.0 token for the current user. */
|
|
50912
|
+
oauth_token?: string;
|
|
50913
|
+
/** Returns response with indentations and line breaks. */
|
|
50914
|
+
prettyPrint?: boolean;
|
|
50915
|
+
project: string;
|
|
50916
|
+
/** 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. */
|
|
50917
|
+
quotaUser?: string;
|
|
50918
|
+
requestId?: string;
|
|
50919
|
+
resourceId: string;
|
|
50920
|
+
updateMask?: string;
|
|
50921
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50922
|
+
upload_protocol?: string;
|
|
50923
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50924
|
+
uploadType?: string;
|
|
50925
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50926
|
+
userIp?: string;
|
|
50927
|
+
zone: string;
|
|
50928
|
+
},
|
|
50929
|
+
body: AcceleratorPodController,
|
|
50930
|
+
): Request<Operation>;
|
|
50931
|
+
}
|
|
50932
|
+
interface AcceleratorTypesResource {
|
|
50001
50933
|
/**
|
|
50002
|
-
* Retrieves
|
|
50003
|
-
*
|
|
50934
|
+
* Retrieves an aggregated list of accelerator types.
|
|
50935
|
+
*
|
|
50936
|
+
* To prevent failure, it is recommended that you set the
|
|
50937
|
+
* `returnPartialSuccess` parameter to `true`.
|
|
50004
50938
|
*/
|
|
50005
|
-
|
|
50939
|
+
aggregatedList(request?: {
|
|
50006
50940
|
/** V1 error format. */
|
|
50007
50941
|
'$.xgafv'?: '1' | '2';
|
|
50008
50942
|
/** OAuth access token. */
|
|
@@ -50074,6 +51008,16 @@ declare namespace gapi.client {
|
|
|
50074
51008
|
* expressions.
|
|
50075
51009
|
*/
|
|
50076
51010
|
filter?: string;
|
|
51011
|
+
/**
|
|
51012
|
+
* Indicates whether every visible scope for each scope type (zone, region,
|
|
51013
|
+
* global) should be included in the response. For new resource types added
|
|
51014
|
+
* after this field, the flag has no effect as new resource types will always
|
|
51015
|
+
* include every visible scope for each scope type in response. For resource
|
|
51016
|
+
* types which predate this field, if this flag is omitted or false, only
|
|
51017
|
+
* scopes of the scope types where the resource type is expected to be found
|
|
51018
|
+
* will be included.
|
|
51019
|
+
*/
|
|
51020
|
+
includeAllScopes?: boolean;
|
|
50077
51021
|
/** 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. */
|
|
50078
51022
|
key?: string;
|
|
50079
51023
|
/**
|
|
@@ -50121,6 +51065,42 @@ declare namespace gapi.client {
|
|
|
50121
51065
|
* with an error code.
|
|
50122
51066
|
*/
|
|
50123
51067
|
returnPartialSuccess?: boolean;
|
|
51068
|
+
/**
|
|
51069
|
+
* The Shared VPC service project id or service project number for which
|
|
51070
|
+
* aggregated list request is invoked for subnetworks list-usable api.
|
|
51071
|
+
*/
|
|
51072
|
+
serviceProjectNumber?: string;
|
|
51073
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
51074
|
+
upload_protocol?: string;
|
|
51075
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
51076
|
+
uploadType?: string;
|
|
51077
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
51078
|
+
userIp?: string;
|
|
51079
|
+
}): Request<AcceleratorTypeAggregatedList>;
|
|
51080
|
+
/** Returns the specified accelerator type. */
|
|
51081
|
+
get(request?: {
|
|
51082
|
+
/** V1 error format. */
|
|
51083
|
+
'$.xgafv'?: '1' | '2';
|
|
51084
|
+
/** Name of the accelerator type to return. */
|
|
51085
|
+
acceleratorType: string;
|
|
51086
|
+
/** OAuth access token. */
|
|
51087
|
+
access_token?: string;
|
|
51088
|
+
/** Data format for response. */
|
|
51089
|
+
alt?: 'json' | 'media' | 'proto';
|
|
51090
|
+
/** JSONP */
|
|
51091
|
+
callback?: string;
|
|
51092
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
51093
|
+
fields?: string;
|
|
51094
|
+
/** 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. */
|
|
51095
|
+
key?: string;
|
|
51096
|
+
/** OAuth 2.0 token for the current user. */
|
|
51097
|
+
oauth_token?: string;
|
|
51098
|
+
/** Returns response with indentations and line breaks. */
|
|
51099
|
+
prettyPrint?: boolean;
|
|
51100
|
+
/** Project ID for this request. */
|
|
51101
|
+
project: string;
|
|
51102
|
+
/** 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. */
|
|
51103
|
+
quotaUser?: string;
|
|
50124
51104
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50125
51105
|
upload_protocol?: string;
|
|
50126
51106
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -50129,16 +51109,148 @@ declare namespace gapi.client {
|
|
|
50129
51109
|
userIp?: string;
|
|
50130
51110
|
/** The name of the zone for this request. */
|
|
50131
51111
|
zone: string;
|
|
50132
|
-
}): Request<
|
|
50133
|
-
}
|
|
50134
|
-
interface AddressesResource {
|
|
51112
|
+
}): Request<AcceleratorType>;
|
|
50135
51113
|
/**
|
|
50136
|
-
* Retrieves
|
|
50137
|
-
*
|
|
50138
|
-
* To prevent failure, it is recommended that you set the
|
|
50139
|
-
* `returnPartialSuccess` parameter to `true`.
|
|
51114
|
+
* Retrieves a list of accelerator types that are available to the specified
|
|
51115
|
+
* project.
|
|
50140
51116
|
*/
|
|
50141
|
-
|
|
51117
|
+
list(request?: {
|
|
51118
|
+
/** V1 error format. */
|
|
51119
|
+
'$.xgafv'?: '1' | '2';
|
|
51120
|
+
/** OAuth access token. */
|
|
51121
|
+
access_token?: string;
|
|
51122
|
+
/** Data format for response. */
|
|
51123
|
+
alt?: 'json' | 'media' | 'proto';
|
|
51124
|
+
/** JSONP */
|
|
51125
|
+
callback?: string;
|
|
51126
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
51127
|
+
fields?: string;
|
|
51128
|
+
/**
|
|
51129
|
+
* A filter expression that filters resources listed in the response. Most
|
|
51130
|
+
* Compute resources support two types of filter expressions:
|
|
51131
|
+
* expressions that support regular expressions and expressions that follow
|
|
51132
|
+
* API improvement proposal AIP-160.
|
|
51133
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
51134
|
+
*
|
|
51135
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
51136
|
+
* operator, and the value that you want to use for filtering. The value
|
|
51137
|
+
* must be a string, a number, or a boolean. The operator
|
|
51138
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
51139
|
+
*
|
|
51140
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
51141
|
+
* exclude instances named `example-instance` by specifying
|
|
51142
|
+
* `name != example-instance`.
|
|
51143
|
+
*
|
|
51144
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
51145
|
+
* For example, to find all objects with `owner` label use:
|
|
51146
|
+
* ```
|
|
51147
|
+
* labels.owner:*
|
|
51148
|
+
* ```
|
|
51149
|
+
*
|
|
51150
|
+
* You can also filter nested fields. For example, you could specify
|
|
51151
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
51152
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
51153
|
+
* on nested fields to filter based onresource labels.
|
|
51154
|
+
*
|
|
51155
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
51156
|
+
* parentheses. For example:
|
|
51157
|
+
* ```
|
|
51158
|
+
* (scheduling.automaticRestart = true)
|
|
51159
|
+
* (cpuPlatform = "Intel Skylake")
|
|
51160
|
+
* ```
|
|
51161
|
+
* By default, each expression is an `AND` expression. However, you
|
|
51162
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
51163
|
+
* For example:
|
|
51164
|
+
* ```
|
|
51165
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
51166
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
51167
|
+
* (scheduling.automaticRestart = true)
|
|
51168
|
+
* ```
|
|
51169
|
+
*
|
|
51170
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
51171
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
51172
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
51173
|
+
*
|
|
51174
|
+
* `fieldname eq unquoted literal`
|
|
51175
|
+
* `fieldname eq 'single quoted literal'`
|
|
51176
|
+
* `fieldname eq "double quoted literal"`
|
|
51177
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
51178
|
+
*
|
|
51179
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
51180
|
+
* The literal value must match the entire field.
|
|
51181
|
+
*
|
|
51182
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
51183
|
+
* you would use `name ne .*instance`.
|
|
51184
|
+
*
|
|
51185
|
+
* You cannot combine constraints on multiple fields using regular
|
|
51186
|
+
* expressions.
|
|
51187
|
+
*/
|
|
51188
|
+
filter?: string;
|
|
51189
|
+
/** 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. */
|
|
51190
|
+
key?: string;
|
|
51191
|
+
/**
|
|
51192
|
+
* The maximum number of results per page that should be returned.
|
|
51193
|
+
* If the number of available results is larger than `maxResults`,
|
|
51194
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
51195
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
51196
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
51197
|
+
*/
|
|
51198
|
+
maxResults?: number;
|
|
51199
|
+
/** OAuth 2.0 token for the current user. */
|
|
51200
|
+
oauth_token?: string;
|
|
51201
|
+
/**
|
|
51202
|
+
* Sorts list results by a certain order. By default, results
|
|
51203
|
+
* are returned in alphanumerical order based on the resource name.
|
|
51204
|
+
*
|
|
51205
|
+
* You can also sort results in descending order based on the creation
|
|
51206
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
51207
|
+
* results based on the `creationTimestamp` field in
|
|
51208
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
51209
|
+
* resources like operations so that the newest operation is returned first.
|
|
51210
|
+
*
|
|
51211
|
+
* Currently, only sorting by `name` or
|
|
51212
|
+
* `creationTimestamp desc` is supported.
|
|
51213
|
+
*/
|
|
51214
|
+
orderBy?: string;
|
|
51215
|
+
/**
|
|
51216
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
51217
|
+
* `nextPageToken` returned by a previous list request to get
|
|
51218
|
+
* the next page of results.
|
|
51219
|
+
*/
|
|
51220
|
+
pageToken?: string;
|
|
51221
|
+
/** Returns response with indentations and line breaks. */
|
|
51222
|
+
prettyPrint?: boolean;
|
|
51223
|
+
/** Project ID for this request. */
|
|
51224
|
+
project: string;
|
|
51225
|
+
/** 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. */
|
|
51226
|
+
quotaUser?: string;
|
|
51227
|
+
/**
|
|
51228
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
51229
|
+
* of failure. The default value is false.
|
|
51230
|
+
*
|
|
51231
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
51232
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
51233
|
+
* with an error code.
|
|
51234
|
+
*/
|
|
51235
|
+
returnPartialSuccess?: boolean;
|
|
51236
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
51237
|
+
upload_protocol?: string;
|
|
51238
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
51239
|
+
uploadType?: string;
|
|
51240
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
51241
|
+
userIp?: string;
|
|
51242
|
+
/** The name of the zone for this request. */
|
|
51243
|
+
zone: string;
|
|
51244
|
+
}): Request<AcceleratorTypeList>;
|
|
51245
|
+
}
|
|
51246
|
+
interface AddressesResource {
|
|
51247
|
+
/**
|
|
51248
|
+
* Retrieves an aggregated list of addresses.
|
|
51249
|
+
*
|
|
51250
|
+
* To prevent failure, it is recommended that you set the
|
|
51251
|
+
* `returnPartialSuccess` parameter to `true`.
|
|
51252
|
+
*/
|
|
51253
|
+
aggregatedList(request?: {
|
|
50142
51254
|
/** V1 error format. */
|
|
50143
51255
|
'$.xgafv'?: '1' | '2';
|
|
50144
51256
|
/** OAuth access token. */
|
|
@@ -53625,7 +54737,12 @@ declare namespace gapi.client {
|
|
|
53625
54737
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
53626
54738
|
userIp?: string;
|
|
53627
54739
|
}): Request<BackendServiceList>;
|
|
53628
|
-
/**
|
|
54740
|
+
/**
|
|
54741
|
+
* Retrieves a list of all usable backend services for Application Load
|
|
54742
|
+
* Balancers and Proxy Network Load Balancers in the specified project.
|
|
54743
|
+
* Backend services for external and internal passthrough Network Load
|
|
54744
|
+
* Balancers are not included in the response.
|
|
54745
|
+
*/
|
|
53629
54746
|
listUsable(request?: {
|
|
53630
54747
|
/** V1 error format. */
|
|
53631
54748
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54666,13 +55783,95 @@ declare namespace gapi.client {
|
|
|
54666
55783
|
body: CrossSiteNetwork,
|
|
54667
55784
|
): Request<Operation>;
|
|
54668
55785
|
}
|
|
54669
|
-
interface
|
|
55786
|
+
interface DhcpOptionsConfigsResource {
|
|
55787
|
+
/** Deletes the specified DhcpOptionsConfig in the given location */
|
|
55788
|
+
delete(request?: {
|
|
55789
|
+
/** V1 error format. */
|
|
55790
|
+
'$.xgafv'?: '1' | '2';
|
|
55791
|
+
/** OAuth access token. */
|
|
55792
|
+
access_token?: string;
|
|
55793
|
+
/** Data format for response. */
|
|
55794
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55795
|
+
/** JSONP */
|
|
55796
|
+
callback?: string;
|
|
55797
|
+
/** Name of the DhcpOptionsConfig resource to delete. */
|
|
55798
|
+
dhcpOptionsConfig: string;
|
|
55799
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55800
|
+
fields?: string;
|
|
55801
|
+
/** 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. */
|
|
55802
|
+
key?: string;
|
|
55803
|
+
/** OAuth 2.0 token for the current user. */
|
|
55804
|
+
oauth_token?: string;
|
|
55805
|
+
/** Returns response with indentations and line breaks. */
|
|
55806
|
+
prettyPrint?: boolean;
|
|
55807
|
+
/** Project ID for this request. */
|
|
55808
|
+
project: string;
|
|
55809
|
+
/** 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. */
|
|
55810
|
+
quotaUser?: string;
|
|
55811
|
+
/** Name of the region of this request. */
|
|
55812
|
+
region: string;
|
|
55813
|
+
/**
|
|
55814
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55815
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55816
|
+
* request if it has already been completed.
|
|
55817
|
+
*
|
|
55818
|
+
* For example, consider a situation where you make an initial request and
|
|
55819
|
+
* the request times out. If you make the request again with the same
|
|
55820
|
+
* request ID, the server can check if original operation with the same
|
|
55821
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55822
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55823
|
+
*
|
|
55824
|
+
* The request ID must be
|
|
55825
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55826
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55827
|
+
* end_interface: MixerMutationRequestBuilder
|
|
55828
|
+
*/
|
|
55829
|
+
requestId?: string;
|
|
55830
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55831
|
+
upload_protocol?: string;
|
|
55832
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55833
|
+
uploadType?: string;
|
|
55834
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55835
|
+
userIp?: string;
|
|
55836
|
+
}): Request<Operation>;
|
|
55837
|
+
/** Returns the specified DhcpOptionsConfig resource in the given location. */
|
|
55838
|
+
get(request?: {
|
|
55839
|
+
/** V1 error format. */
|
|
55840
|
+
'$.xgafv'?: '1' | '2';
|
|
55841
|
+
/** OAuth access token. */
|
|
55842
|
+
access_token?: string;
|
|
55843
|
+
/** Data format for response. */
|
|
55844
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55845
|
+
/** JSONP */
|
|
55846
|
+
callback?: string;
|
|
55847
|
+
/** Name of the DhcpOptionsConfig resource to return. */
|
|
55848
|
+
dhcpOptionsConfig: string;
|
|
55849
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55850
|
+
fields?: string;
|
|
55851
|
+
/** 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. */
|
|
55852
|
+
key?: string;
|
|
55853
|
+
/** OAuth 2.0 token for the current user. */
|
|
55854
|
+
oauth_token?: string;
|
|
55855
|
+
/** Returns response with indentations and line breaks. */
|
|
55856
|
+
prettyPrint?: boolean;
|
|
55857
|
+
/** Project ID for this request. */
|
|
55858
|
+
project: string;
|
|
55859
|
+
/** 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. */
|
|
55860
|
+
quotaUser?: string;
|
|
55861
|
+
/** Name of the region of this request. */
|
|
55862
|
+
region: string;
|
|
55863
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55864
|
+
upload_protocol?: string;
|
|
55865
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55866
|
+
uploadType?: string;
|
|
55867
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55868
|
+
userIp?: string;
|
|
55869
|
+
}): Request<DhcpOptionsConfig>;
|
|
54670
55870
|
/**
|
|
54671
|
-
*
|
|
54672
|
-
*
|
|
54673
|
-
* creation.
|
|
55871
|
+
* Creates a DhcpOptionsConfig in the specified project in the given location
|
|
55872
|
+
* using the parameters that are included in the request.
|
|
54674
55873
|
*/
|
|
54675
|
-
|
|
55874
|
+
insert(request: {
|
|
54676
55875
|
/** V1 error format. */
|
|
54677
55876
|
'$.xgafv'?: '1' | '2';
|
|
54678
55877
|
/** OAuth access token. */
|
|
@@ -54681,8 +55880,6 @@ declare namespace gapi.client {
|
|
|
54681
55880
|
alt?: 'json' | 'media' | 'proto';
|
|
54682
55881
|
/** JSONP */
|
|
54683
55882
|
callback?: string;
|
|
54684
|
-
/** The disk name for this request. */
|
|
54685
|
-
disk: string;
|
|
54686
55883
|
/** Selector specifying which fields to include in a partial response. */
|
|
54687
55884
|
fields?: string;
|
|
54688
55885
|
/** 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. */
|
|
@@ -54695,6 +55892,8 @@ declare namespace gapi.client {
|
|
|
54695
55892
|
project: string;
|
|
54696
55893
|
/** 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. */
|
|
54697
55894
|
quotaUser?: string;
|
|
55895
|
+
/** Name of the region of this request. */
|
|
55896
|
+
region: string;
|
|
54698
55897
|
/**
|
|
54699
55898
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54700
55899
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54709,6 +55908,7 @@ declare namespace gapi.client {
|
|
|
54709
55908
|
* The request ID must be
|
|
54710
55909
|
* a valid UUID with the exception that zero UUID is not supported
|
|
54711
55910
|
* (00000000-0000-0000-0000-000000000000).
|
|
55911
|
+
* end_interface: MixerMutationRequestBuilder
|
|
54712
55912
|
*/
|
|
54713
55913
|
requestId?: string;
|
|
54714
55914
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
@@ -54717,12 +55917,10 @@ declare namespace gapi.client {
|
|
|
54717
55917
|
uploadType?: string;
|
|
54718
55918
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54719
55919
|
userIp?: string;
|
|
54720
|
-
/** The name of the zone for this request. */
|
|
54721
|
-
zone: string;
|
|
54722
55920
|
/** Request body */
|
|
54723
|
-
resource:
|
|
55921
|
+
resource: DhcpOptionsConfig;
|
|
54724
55922
|
}): Request<Operation>;
|
|
54725
|
-
|
|
55923
|
+
insert(
|
|
54726
55924
|
request: {
|
|
54727
55925
|
/** V1 error format. */
|
|
54728
55926
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54732,8 +55930,6 @@ declare namespace gapi.client {
|
|
|
54732
55930
|
alt?: 'json' | 'media' | 'proto';
|
|
54733
55931
|
/** JSONP */
|
|
54734
55932
|
callback?: string;
|
|
54735
|
-
/** The disk name for this request. */
|
|
54736
|
-
disk: string;
|
|
54737
55933
|
/** Selector specifying which fields to include in a partial response. */
|
|
54738
55934
|
fields?: string;
|
|
54739
55935
|
/** 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. */
|
|
@@ -54746,6 +55942,8 @@ declare namespace gapi.client {
|
|
|
54746
55942
|
project: string;
|
|
54747
55943
|
/** 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. */
|
|
54748
55944
|
quotaUser?: string;
|
|
55945
|
+
/** Name of the region of this request. */
|
|
55946
|
+
region: string;
|
|
54749
55947
|
/**
|
|
54750
55948
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54751
55949
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54760,6 +55958,7 @@ declare namespace gapi.client {
|
|
|
54760
55958
|
* The request ID must be
|
|
54761
55959
|
* a valid UUID with the exception that zero UUID is not supported
|
|
54762
55960
|
* (00000000-0000-0000-0000-000000000000).
|
|
55961
|
+
* end_interface: MixerMutationRequestBuilder
|
|
54763
55962
|
*/
|
|
54764
55963
|
requestId?: string;
|
|
54765
55964
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
@@ -54768,18 +55967,11 @@ declare namespace gapi.client {
|
|
|
54768
55967
|
uploadType?: string;
|
|
54769
55968
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54770
55969
|
userIp?: string;
|
|
54771
|
-
/** The name of the zone for this request. */
|
|
54772
|
-
zone: string;
|
|
54773
55970
|
},
|
|
54774
|
-
body:
|
|
55971
|
+
body: DhcpOptionsConfig,
|
|
54775
55972
|
): Request<Operation>;
|
|
54776
|
-
/**
|
|
54777
|
-
|
|
54778
|
-
*
|
|
54779
|
-
* To prevent failure, it is recommended that you set the
|
|
54780
|
-
* `returnPartialSuccess` parameter to `true`.
|
|
54781
|
-
*/
|
|
54782
|
-
aggregatedList(request?: {
|
|
55973
|
+
/** Lists the DhcpOptionsConfigs for a project in the given location. */
|
|
55974
|
+
list(request?: {
|
|
54783
55975
|
/** V1 error format. */
|
|
54784
55976
|
'$.xgafv'?: '1' | '2';
|
|
54785
55977
|
/** OAuth access token. */
|
|
@@ -54851,16 +56043,407 @@ declare namespace gapi.client {
|
|
|
54851
56043
|
* expressions.
|
|
54852
56044
|
*/
|
|
54853
56045
|
filter?: string;
|
|
54854
|
-
/**
|
|
54855
|
-
|
|
54856
|
-
|
|
54857
|
-
*
|
|
54858
|
-
*
|
|
54859
|
-
*
|
|
54860
|
-
*
|
|
54861
|
-
*
|
|
54862
|
-
*/
|
|
54863
|
-
|
|
56046
|
+
/** 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. */
|
|
56047
|
+
key?: string;
|
|
56048
|
+
/**
|
|
56049
|
+
* The maximum number of results per page that should be returned.
|
|
56050
|
+
* If the number of available results is larger than `maxResults`,
|
|
56051
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
56052
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
56053
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
56054
|
+
*/
|
|
56055
|
+
maxResults?: number;
|
|
56056
|
+
/** OAuth 2.0 token for the current user. */
|
|
56057
|
+
oauth_token?: string;
|
|
56058
|
+
/**
|
|
56059
|
+
* Sorts list results by a certain order. By default, results
|
|
56060
|
+
* are returned in alphanumerical order based on the resource name.
|
|
56061
|
+
*
|
|
56062
|
+
* You can also sort results in descending order based on the creation
|
|
56063
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
56064
|
+
* results based on the `creationTimestamp` field in
|
|
56065
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
56066
|
+
* resources like operations so that the newest operation is returned first.
|
|
56067
|
+
*
|
|
56068
|
+
* Currently, only sorting by `name` or
|
|
56069
|
+
* `creationTimestamp desc` is supported.
|
|
56070
|
+
*/
|
|
56071
|
+
orderBy?: string;
|
|
56072
|
+
/**
|
|
56073
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
56074
|
+
* `nextPageToken` returned by a previous list request to get
|
|
56075
|
+
* the next page of results.
|
|
56076
|
+
*/
|
|
56077
|
+
pageToken?: string;
|
|
56078
|
+
/** Returns response with indentations and line breaks. */
|
|
56079
|
+
prettyPrint?: boolean;
|
|
56080
|
+
/** Project ID for this request. */
|
|
56081
|
+
project: string;
|
|
56082
|
+
/** 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. */
|
|
56083
|
+
quotaUser?: string;
|
|
56084
|
+
/** Name of the region of this request. */
|
|
56085
|
+
region: string;
|
|
56086
|
+
/**
|
|
56087
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
56088
|
+
* of failure. The default value is false.
|
|
56089
|
+
*
|
|
56090
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
56091
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
56092
|
+
* with an error code.
|
|
56093
|
+
*/
|
|
56094
|
+
returnPartialSuccess?: boolean;
|
|
56095
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
56096
|
+
upload_protocol?: string;
|
|
56097
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
56098
|
+
uploadType?: string;
|
|
56099
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
56100
|
+
userIp?: string;
|
|
56101
|
+
}): Request<DhcpOptionsConfigList>;
|
|
56102
|
+
/**
|
|
56103
|
+
* Patches the specified DhcpOptionsConfig resource with the data included in
|
|
56104
|
+
* the request. This method supports PATCH
|
|
56105
|
+
* semantics and usesJSON merge
|
|
56106
|
+
* patch format and processing rules.
|
|
56107
|
+
*/
|
|
56108
|
+
patch(request: {
|
|
56109
|
+
/** V1 error format. */
|
|
56110
|
+
'$.xgafv'?: '1' | '2';
|
|
56111
|
+
/** OAuth access token. */
|
|
56112
|
+
access_token?: string;
|
|
56113
|
+
/** Data format for response. */
|
|
56114
|
+
alt?: 'json' | 'media' | 'proto';
|
|
56115
|
+
/** JSONP */
|
|
56116
|
+
callback?: string;
|
|
56117
|
+
/** Name of the DhcpOptionsConfig resource to patch. */
|
|
56118
|
+
dhcpOptionsConfig: string;
|
|
56119
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
56120
|
+
fields?: string;
|
|
56121
|
+
/** 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. */
|
|
56122
|
+
key?: string;
|
|
56123
|
+
/** OAuth 2.0 token for the current user. */
|
|
56124
|
+
oauth_token?: string;
|
|
56125
|
+
/** Returns response with indentations and line breaks. */
|
|
56126
|
+
prettyPrint?: boolean;
|
|
56127
|
+
/** Project ID for this request. */
|
|
56128
|
+
project: string;
|
|
56129
|
+
/** 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. */
|
|
56130
|
+
quotaUser?: string;
|
|
56131
|
+
/** Name of the region for this request. */
|
|
56132
|
+
region: string;
|
|
56133
|
+
/**
|
|
56134
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
56135
|
+
* that if you must retry your request, the server will know to ignore the
|
|
56136
|
+
* request if it has already been completed.
|
|
56137
|
+
*
|
|
56138
|
+
* For example, consider a situation where you make an initial request and
|
|
56139
|
+
* the request times out. If you make the request again with the same
|
|
56140
|
+
* request ID, the server can check if original operation with the same
|
|
56141
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
56142
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
56143
|
+
*
|
|
56144
|
+
* The request ID must be
|
|
56145
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
56146
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
56147
|
+
* end_interface: MixerMutationRequestBuilder
|
|
56148
|
+
*/
|
|
56149
|
+
requestId?: string;
|
|
56150
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
56151
|
+
updateMask?: string;
|
|
56152
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
56153
|
+
upload_protocol?: string;
|
|
56154
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
56155
|
+
uploadType?: string;
|
|
56156
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
56157
|
+
userIp?: string;
|
|
56158
|
+
/** Request body */
|
|
56159
|
+
resource: DhcpOptionsConfig;
|
|
56160
|
+
}): Request<Operation>;
|
|
56161
|
+
patch(
|
|
56162
|
+
request: {
|
|
56163
|
+
/** V1 error format. */
|
|
56164
|
+
'$.xgafv'?: '1' | '2';
|
|
56165
|
+
/** OAuth access token. */
|
|
56166
|
+
access_token?: string;
|
|
56167
|
+
/** Data format for response. */
|
|
56168
|
+
alt?: 'json' | 'media' | 'proto';
|
|
56169
|
+
/** JSONP */
|
|
56170
|
+
callback?: string;
|
|
56171
|
+
/** Name of the DhcpOptionsConfig resource to patch. */
|
|
56172
|
+
dhcpOptionsConfig: string;
|
|
56173
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
56174
|
+
fields?: string;
|
|
56175
|
+
/** 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. */
|
|
56176
|
+
key?: string;
|
|
56177
|
+
/** OAuth 2.0 token for the current user. */
|
|
56178
|
+
oauth_token?: string;
|
|
56179
|
+
/** Returns response with indentations and line breaks. */
|
|
56180
|
+
prettyPrint?: boolean;
|
|
56181
|
+
/** Project ID for this request. */
|
|
56182
|
+
project: string;
|
|
56183
|
+
/** 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. */
|
|
56184
|
+
quotaUser?: string;
|
|
56185
|
+
/** Name of the region for this request. */
|
|
56186
|
+
region: string;
|
|
56187
|
+
/**
|
|
56188
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
56189
|
+
* that if you must retry your request, the server will know to ignore the
|
|
56190
|
+
* request if it has already been completed.
|
|
56191
|
+
*
|
|
56192
|
+
* For example, consider a situation where you make an initial request and
|
|
56193
|
+
* the request times out. If you make the request again with the same
|
|
56194
|
+
* request ID, the server can check if original operation with the same
|
|
56195
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
56196
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
56197
|
+
*
|
|
56198
|
+
* The request ID must be
|
|
56199
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
56200
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
56201
|
+
* end_interface: MixerMutationRequestBuilder
|
|
56202
|
+
*/
|
|
56203
|
+
requestId?: string;
|
|
56204
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
56205
|
+
updateMask?: string;
|
|
56206
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
56207
|
+
upload_protocol?: string;
|
|
56208
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
56209
|
+
uploadType?: string;
|
|
56210
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
56211
|
+
userIp?: string;
|
|
56212
|
+
},
|
|
56213
|
+
body: DhcpOptionsConfig,
|
|
56214
|
+
): Request<Operation>;
|
|
56215
|
+
/** Returns permissions that a caller has on the specified resource. */
|
|
56216
|
+
testIamPermissions(
|
|
56217
|
+
request: {
|
|
56218
|
+
/** V1 error format. */
|
|
56219
|
+
'$.xgafv'?: '1' | '2';
|
|
56220
|
+
/** OAuth access token. */
|
|
56221
|
+
access_token?: string;
|
|
56222
|
+
/** Data format for response. */
|
|
56223
|
+
alt?: 'json' | 'media' | 'proto';
|
|
56224
|
+
/** JSONP */
|
|
56225
|
+
callback?: string;
|
|
56226
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
56227
|
+
fields?: string;
|
|
56228
|
+
/** 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. */
|
|
56229
|
+
key?: string;
|
|
56230
|
+
/** OAuth 2.0 token for the current user. */
|
|
56231
|
+
oauth_token?: string;
|
|
56232
|
+
/** Returns response with indentations and line breaks. */
|
|
56233
|
+
prettyPrint?: boolean;
|
|
56234
|
+
/** Project ID for this request. */
|
|
56235
|
+
project: string;
|
|
56236
|
+
/** 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. */
|
|
56237
|
+
quotaUser?: string;
|
|
56238
|
+
/** The name of the region for this request. */
|
|
56239
|
+
region: string;
|
|
56240
|
+
/** Name or id of the resource for this request. */
|
|
56241
|
+
resource: string;
|
|
56242
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
56243
|
+
upload_protocol?: string;
|
|
56244
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
56245
|
+
uploadType?: string;
|
|
56246
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
56247
|
+
userIp?: string;
|
|
56248
|
+
},
|
|
56249
|
+
body: TestPermissionsRequest,
|
|
56250
|
+
): Request<TestPermissionsResponse>;
|
|
56251
|
+
}
|
|
56252
|
+
interface DisksResource {
|
|
56253
|
+
/**
|
|
56254
|
+
* Adds existing resource policies to a disk. You can only add one
|
|
56255
|
+
* policy which will be applied to this disk for scheduling snapshot
|
|
56256
|
+
* creation.
|
|
56257
|
+
*/
|
|
56258
|
+
addResourcePolicies(request: {
|
|
56259
|
+
/** V1 error format. */
|
|
56260
|
+
'$.xgafv'?: '1' | '2';
|
|
56261
|
+
/** OAuth access token. */
|
|
56262
|
+
access_token?: string;
|
|
56263
|
+
/** Data format for response. */
|
|
56264
|
+
alt?: 'json' | 'media' | 'proto';
|
|
56265
|
+
/** JSONP */
|
|
56266
|
+
callback?: string;
|
|
56267
|
+
/** The disk name for this request. */
|
|
56268
|
+
disk: string;
|
|
56269
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
56270
|
+
fields?: string;
|
|
56271
|
+
/** 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. */
|
|
56272
|
+
key?: string;
|
|
56273
|
+
/** OAuth 2.0 token for the current user. */
|
|
56274
|
+
oauth_token?: string;
|
|
56275
|
+
/** Returns response with indentations and line breaks. */
|
|
56276
|
+
prettyPrint?: boolean;
|
|
56277
|
+
/** Project ID for this request. */
|
|
56278
|
+
project: string;
|
|
56279
|
+
/** 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. */
|
|
56280
|
+
quotaUser?: string;
|
|
56281
|
+
/**
|
|
56282
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
56283
|
+
* that if you must retry your request, the server will know to ignore the
|
|
56284
|
+
* request if it has already been completed.
|
|
56285
|
+
*
|
|
56286
|
+
* For example, consider a situation where you make an initial request and
|
|
56287
|
+
* the request times out. If you make the request again with the same
|
|
56288
|
+
* request ID, the server can check if original operation with the same
|
|
56289
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
56290
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
56291
|
+
*
|
|
56292
|
+
* The request ID must be
|
|
56293
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
56294
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
56295
|
+
*/
|
|
56296
|
+
requestId?: string;
|
|
56297
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
56298
|
+
upload_protocol?: string;
|
|
56299
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
56300
|
+
uploadType?: string;
|
|
56301
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
56302
|
+
userIp?: string;
|
|
56303
|
+
/** The name of the zone for this request. */
|
|
56304
|
+
zone: string;
|
|
56305
|
+
/** Request body */
|
|
56306
|
+
resource: DisksAddResourcePoliciesRequest;
|
|
56307
|
+
}): Request<Operation>;
|
|
56308
|
+
addResourcePolicies(
|
|
56309
|
+
request: {
|
|
56310
|
+
/** V1 error format. */
|
|
56311
|
+
'$.xgafv'?: '1' | '2';
|
|
56312
|
+
/** OAuth access token. */
|
|
56313
|
+
access_token?: string;
|
|
56314
|
+
/** Data format for response. */
|
|
56315
|
+
alt?: 'json' | 'media' | 'proto';
|
|
56316
|
+
/** JSONP */
|
|
56317
|
+
callback?: string;
|
|
56318
|
+
/** The disk name for this request. */
|
|
56319
|
+
disk: string;
|
|
56320
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
56321
|
+
fields?: string;
|
|
56322
|
+
/** 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. */
|
|
56323
|
+
key?: string;
|
|
56324
|
+
/** OAuth 2.0 token for the current user. */
|
|
56325
|
+
oauth_token?: string;
|
|
56326
|
+
/** Returns response with indentations and line breaks. */
|
|
56327
|
+
prettyPrint?: boolean;
|
|
56328
|
+
/** Project ID for this request. */
|
|
56329
|
+
project: string;
|
|
56330
|
+
/** 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. */
|
|
56331
|
+
quotaUser?: string;
|
|
56332
|
+
/**
|
|
56333
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
56334
|
+
* that if you must retry your request, the server will know to ignore the
|
|
56335
|
+
* request if it has already been completed.
|
|
56336
|
+
*
|
|
56337
|
+
* For example, consider a situation where you make an initial request and
|
|
56338
|
+
* the request times out. If you make the request again with the same
|
|
56339
|
+
* request ID, the server can check if original operation with the same
|
|
56340
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
56341
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
56342
|
+
*
|
|
56343
|
+
* The request ID must be
|
|
56344
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
56345
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
56346
|
+
*/
|
|
56347
|
+
requestId?: string;
|
|
56348
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
56349
|
+
upload_protocol?: string;
|
|
56350
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
56351
|
+
uploadType?: string;
|
|
56352
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
56353
|
+
userIp?: string;
|
|
56354
|
+
/** The name of the zone for this request. */
|
|
56355
|
+
zone: string;
|
|
56356
|
+
},
|
|
56357
|
+
body: DisksAddResourcePoliciesRequest,
|
|
56358
|
+
): Request<Operation>;
|
|
56359
|
+
/**
|
|
56360
|
+
* Retrieves an aggregated list of persistent disks.
|
|
56361
|
+
*
|
|
56362
|
+
* To prevent failure, it is recommended that you set the
|
|
56363
|
+
* `returnPartialSuccess` parameter to `true`.
|
|
56364
|
+
*/
|
|
56365
|
+
aggregatedList(request?: {
|
|
56366
|
+
/** V1 error format. */
|
|
56367
|
+
'$.xgafv'?: '1' | '2';
|
|
56368
|
+
/** OAuth access token. */
|
|
56369
|
+
access_token?: string;
|
|
56370
|
+
/** Data format for response. */
|
|
56371
|
+
alt?: 'json' | 'media' | 'proto';
|
|
56372
|
+
/** JSONP */
|
|
56373
|
+
callback?: string;
|
|
56374
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
56375
|
+
fields?: string;
|
|
56376
|
+
/**
|
|
56377
|
+
* A filter expression that filters resources listed in the response. Most
|
|
56378
|
+
* Compute resources support two types of filter expressions:
|
|
56379
|
+
* expressions that support regular expressions and expressions that follow
|
|
56380
|
+
* API improvement proposal AIP-160.
|
|
56381
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
56382
|
+
*
|
|
56383
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
56384
|
+
* operator, and the value that you want to use for filtering. The value
|
|
56385
|
+
* must be a string, a number, or a boolean. The operator
|
|
56386
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
56387
|
+
*
|
|
56388
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
56389
|
+
* exclude instances named `example-instance` by specifying
|
|
56390
|
+
* `name != example-instance`.
|
|
56391
|
+
*
|
|
56392
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
56393
|
+
* For example, to find all objects with `owner` label use:
|
|
56394
|
+
* ```
|
|
56395
|
+
* labels.owner:*
|
|
56396
|
+
* ```
|
|
56397
|
+
*
|
|
56398
|
+
* You can also filter nested fields. For example, you could specify
|
|
56399
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
56400
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
56401
|
+
* on nested fields to filter based onresource labels.
|
|
56402
|
+
*
|
|
56403
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
56404
|
+
* parentheses. For example:
|
|
56405
|
+
* ```
|
|
56406
|
+
* (scheduling.automaticRestart = true)
|
|
56407
|
+
* (cpuPlatform = "Intel Skylake")
|
|
56408
|
+
* ```
|
|
56409
|
+
* By default, each expression is an `AND` expression. However, you
|
|
56410
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
56411
|
+
* For example:
|
|
56412
|
+
* ```
|
|
56413
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
56414
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
56415
|
+
* (scheduling.automaticRestart = true)
|
|
56416
|
+
* ```
|
|
56417
|
+
*
|
|
56418
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
56419
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
56420
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
56421
|
+
*
|
|
56422
|
+
* `fieldname eq unquoted literal`
|
|
56423
|
+
* `fieldname eq 'single quoted literal'`
|
|
56424
|
+
* `fieldname eq "double quoted literal"`
|
|
56425
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
56426
|
+
*
|
|
56427
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
56428
|
+
* The literal value must match the entire field.
|
|
56429
|
+
*
|
|
56430
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
56431
|
+
* you would use `name ne .*instance`.
|
|
56432
|
+
*
|
|
56433
|
+
* You cannot combine constraints on multiple fields using regular
|
|
56434
|
+
* expressions.
|
|
56435
|
+
*/
|
|
56436
|
+
filter?: string;
|
|
56437
|
+
/**
|
|
56438
|
+
* Indicates whether every visible scope for each scope type (zone, region,
|
|
56439
|
+
* global) should be included in the response. For new resource types added
|
|
56440
|
+
* after this field, the flag has no effect as new resource types will always
|
|
56441
|
+
* include every visible scope for each scope type in response. For resource
|
|
56442
|
+
* types which predate this field, if this flag is omitted or false, only
|
|
56443
|
+
* scopes of the scope types where the resource type is expected to be found
|
|
56444
|
+
* will be included.
|
|
56445
|
+
*/
|
|
56446
|
+
includeAllScopes?: boolean;
|
|
54864
56447
|
/** 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. */
|
|
54865
56448
|
key?: string;
|
|
54866
56449
|
/**
|
|
@@ -83948,6 +85531,104 @@ declare namespace gapi.client {
|
|
|
83948
85531
|
},
|
|
83949
85532
|
body: GlobalSetLabelsRequest,
|
|
83950
85533
|
): Request<Operation>;
|
|
85534
|
+
/** Sets name of an interconnect. */
|
|
85535
|
+
setName(request: {
|
|
85536
|
+
/** V1 error format. */
|
|
85537
|
+
'$.xgafv'?: '1' | '2';
|
|
85538
|
+
/** OAuth access token. */
|
|
85539
|
+
access_token?: string;
|
|
85540
|
+
/** Data format for response. */
|
|
85541
|
+
alt?: 'json' | 'media' | 'proto';
|
|
85542
|
+
/** JSONP */
|
|
85543
|
+
callback?: string;
|
|
85544
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
85545
|
+
fields?: string;
|
|
85546
|
+
/** Name of the interconnect to update. */
|
|
85547
|
+
interconnect: string;
|
|
85548
|
+
/** 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. */
|
|
85549
|
+
key?: string;
|
|
85550
|
+
/** OAuth 2.0 token for the current user. */
|
|
85551
|
+
oauth_token?: string;
|
|
85552
|
+
/** Returns response with indentations and line breaks. */
|
|
85553
|
+
prettyPrint?: boolean;
|
|
85554
|
+
/** Project ID for this request. */
|
|
85555
|
+
project: string;
|
|
85556
|
+
/** 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. */
|
|
85557
|
+
quotaUser?: string;
|
|
85558
|
+
/**
|
|
85559
|
+
* An optional request ID to identify requests. Specify a unique request ID
|
|
85560
|
+
* so that if you must retry your request, the server will know to ignore
|
|
85561
|
+
* the request if it has already been completed.
|
|
85562
|
+
*
|
|
85563
|
+
* For example, consider a situation where you make an initial request and
|
|
85564
|
+
* the request times out. If you make the request again with the same
|
|
85565
|
+
* request ID, the server can check if original operation with the same
|
|
85566
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
85567
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
85568
|
+
*
|
|
85569
|
+
* The request ID must be
|
|
85570
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
85571
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
85572
|
+
*/
|
|
85573
|
+
requestId?: string;
|
|
85574
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
85575
|
+
upload_protocol?: string;
|
|
85576
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
85577
|
+
uploadType?: string;
|
|
85578
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
85579
|
+
userIp?: string;
|
|
85580
|
+
/** Request body */
|
|
85581
|
+
resource: InterconnectsSetNameRequest;
|
|
85582
|
+
}): Request<Operation>;
|
|
85583
|
+
setName(
|
|
85584
|
+
request: {
|
|
85585
|
+
/** V1 error format. */
|
|
85586
|
+
'$.xgafv'?: '1' | '2';
|
|
85587
|
+
/** OAuth access token. */
|
|
85588
|
+
access_token?: string;
|
|
85589
|
+
/** Data format for response. */
|
|
85590
|
+
alt?: 'json' | 'media' | 'proto';
|
|
85591
|
+
/** JSONP */
|
|
85592
|
+
callback?: string;
|
|
85593
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
85594
|
+
fields?: string;
|
|
85595
|
+
/** Name of the interconnect to update. */
|
|
85596
|
+
interconnect: string;
|
|
85597
|
+
/** 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. */
|
|
85598
|
+
key?: string;
|
|
85599
|
+
/** OAuth 2.0 token for the current user. */
|
|
85600
|
+
oauth_token?: string;
|
|
85601
|
+
/** Returns response with indentations and line breaks. */
|
|
85602
|
+
prettyPrint?: boolean;
|
|
85603
|
+
/** Project ID for this request. */
|
|
85604
|
+
project: string;
|
|
85605
|
+
/** 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. */
|
|
85606
|
+
quotaUser?: string;
|
|
85607
|
+
/**
|
|
85608
|
+
* An optional request ID to identify requests. Specify a unique request ID
|
|
85609
|
+
* so that if you must retry your request, the server will know to ignore
|
|
85610
|
+
* the request if it has already been completed.
|
|
85611
|
+
*
|
|
85612
|
+
* For example, consider a situation where you make an initial request and
|
|
85613
|
+
* the request times out. If you make the request again with the same
|
|
85614
|
+
* request ID, the server can check if original operation with the same
|
|
85615
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
85616
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
85617
|
+
*
|
|
85618
|
+
* The request ID must be
|
|
85619
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
85620
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
85621
|
+
*/
|
|
85622
|
+
requestId?: string;
|
|
85623
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
85624
|
+
upload_protocol?: string;
|
|
85625
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
85626
|
+
uploadType?: string;
|
|
85627
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
85628
|
+
userIp?: string;
|
|
85629
|
+
},
|
|
85630
|
+
body: InterconnectsSetNameRequest,
|
|
85631
|
+
): Request<Operation>;
|
|
83951
85632
|
/** Returns permissions that a caller has on the specified resource. */
|
|
83952
85633
|
testIamPermissions(
|
|
83953
85634
|
request: {
|
|
@@ -85466,6 +87147,166 @@ declare namespace gapi.client {
|
|
|
85466
87147
|
zone: string;
|
|
85467
87148
|
}): Request<MachineTypeList>;
|
|
85468
87149
|
}
|
|
87150
|
+
interface ManagedRulesetsResource {
|
|
87151
|
+
/** Gets the details for the specified managed ruleset name. */
|
|
87152
|
+
get(request?: {
|
|
87153
|
+
/** V1 error format. */
|
|
87154
|
+
'$.xgafv'?: '1' | '2';
|
|
87155
|
+
/** OAuth access token. */
|
|
87156
|
+
access_token?: string;
|
|
87157
|
+
/** Data format for response. */
|
|
87158
|
+
alt?: 'json' | 'media' | 'proto';
|
|
87159
|
+
/** JSONP */
|
|
87160
|
+
callback?: string;
|
|
87161
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
87162
|
+
fields?: string;
|
|
87163
|
+
/** 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. */
|
|
87164
|
+
key?: string;
|
|
87165
|
+
/** Name of the managed ruleset to return. */
|
|
87166
|
+
managedRuleset: string;
|
|
87167
|
+
/** OAuth 2.0 token for the current user. */
|
|
87168
|
+
oauth_token?: string;
|
|
87169
|
+
/** Returns response with indentations and line breaks. */
|
|
87170
|
+
prettyPrint?: boolean;
|
|
87171
|
+
/** Project ID for this request. */
|
|
87172
|
+
project: string;
|
|
87173
|
+
/** 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. */
|
|
87174
|
+
quotaUser?: string;
|
|
87175
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
87176
|
+
upload_protocol?: string;
|
|
87177
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
87178
|
+
uploadType?: string;
|
|
87179
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
87180
|
+
userIp?: string;
|
|
87181
|
+
}): Request<ManagedRuleset>;
|
|
87182
|
+
/** Retrieves the list of all the managed rulesets available. */
|
|
87183
|
+
list(request?: {
|
|
87184
|
+
/** V1 error format. */
|
|
87185
|
+
'$.xgafv'?: '1' | '2';
|
|
87186
|
+
/** OAuth access token. */
|
|
87187
|
+
access_token?: string;
|
|
87188
|
+
/** Data format for response. */
|
|
87189
|
+
alt?: 'json' | 'media' | 'proto';
|
|
87190
|
+
/** JSONP */
|
|
87191
|
+
callback?: string;
|
|
87192
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
87193
|
+
fields?: string;
|
|
87194
|
+
/**
|
|
87195
|
+
* A filter expression that filters resources listed in the response. Most
|
|
87196
|
+
* Compute resources support two types of filter expressions:
|
|
87197
|
+
* expressions that support regular expressions and expressions that follow
|
|
87198
|
+
* API improvement proposal AIP-160.
|
|
87199
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
87200
|
+
*
|
|
87201
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
87202
|
+
* operator, and the value that you want to use for filtering. The value
|
|
87203
|
+
* must be a string, a number, or a boolean. The operator
|
|
87204
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
87205
|
+
*
|
|
87206
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
87207
|
+
* exclude instances named `example-instance` by specifying
|
|
87208
|
+
* `name != example-instance`.
|
|
87209
|
+
*
|
|
87210
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
87211
|
+
* For example, to find all objects with `owner` label use:
|
|
87212
|
+
* ```
|
|
87213
|
+
* labels.owner:*
|
|
87214
|
+
* ```
|
|
87215
|
+
*
|
|
87216
|
+
* You can also filter nested fields. For example, you could specify
|
|
87217
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
87218
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
87219
|
+
* on nested fields to filter based onresource labels.
|
|
87220
|
+
*
|
|
87221
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
87222
|
+
* parentheses. For example:
|
|
87223
|
+
* ```
|
|
87224
|
+
* (scheduling.automaticRestart = true)
|
|
87225
|
+
* (cpuPlatform = "Intel Skylake")
|
|
87226
|
+
* ```
|
|
87227
|
+
* By default, each expression is an `AND` expression. However, you
|
|
87228
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
87229
|
+
* For example:
|
|
87230
|
+
* ```
|
|
87231
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
87232
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
87233
|
+
* (scheduling.automaticRestart = true)
|
|
87234
|
+
* ```
|
|
87235
|
+
*
|
|
87236
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
87237
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
87238
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
87239
|
+
*
|
|
87240
|
+
* `fieldname eq unquoted literal`
|
|
87241
|
+
* `fieldname eq 'single quoted literal'`
|
|
87242
|
+
* `fieldname eq "double quoted literal"`
|
|
87243
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
87244
|
+
*
|
|
87245
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
87246
|
+
* The literal value must match the entire field.
|
|
87247
|
+
*
|
|
87248
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
87249
|
+
* you would use `name ne .*instance`.
|
|
87250
|
+
*
|
|
87251
|
+
* You cannot combine constraints on multiple fields using regular
|
|
87252
|
+
* expressions.
|
|
87253
|
+
*/
|
|
87254
|
+
filter?: string;
|
|
87255
|
+
/** 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. */
|
|
87256
|
+
key?: string;
|
|
87257
|
+
/**
|
|
87258
|
+
* The maximum number of results per page that should be returned.
|
|
87259
|
+
* If the number of available results is larger than `maxResults`,
|
|
87260
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
87261
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
87262
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
87263
|
+
*/
|
|
87264
|
+
maxResults?: number;
|
|
87265
|
+
/** OAuth 2.0 token for the current user. */
|
|
87266
|
+
oauth_token?: string;
|
|
87267
|
+
/**
|
|
87268
|
+
* Sorts list results by a certain order. By default, results
|
|
87269
|
+
* are returned in alphanumerical order based on the resource name.
|
|
87270
|
+
*
|
|
87271
|
+
* You can also sort results in descending order based on the creation
|
|
87272
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
87273
|
+
* results based on the `creationTimestamp` field in
|
|
87274
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
87275
|
+
* resources like operations so that the newest operation is returned first.
|
|
87276
|
+
*
|
|
87277
|
+
* Currently, only sorting by `name` or
|
|
87278
|
+
* `creationTimestamp desc` is supported.
|
|
87279
|
+
*/
|
|
87280
|
+
orderBy?: string;
|
|
87281
|
+
/**
|
|
87282
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
87283
|
+
* `nextPageToken` returned by a previous list request to get
|
|
87284
|
+
* the next page of results.
|
|
87285
|
+
*/
|
|
87286
|
+
pageToken?: string;
|
|
87287
|
+
/** Returns response with indentations and line breaks. */
|
|
87288
|
+
prettyPrint?: boolean;
|
|
87289
|
+
/** Project ID for this request. */
|
|
87290
|
+
project: string;
|
|
87291
|
+
/** 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. */
|
|
87292
|
+
quotaUser?: string;
|
|
87293
|
+
/**
|
|
87294
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
87295
|
+
* of failure. The default value is false.
|
|
87296
|
+
*
|
|
87297
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
87298
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
87299
|
+
* with an error code.
|
|
87300
|
+
*/
|
|
87301
|
+
returnPartialSuccess?: boolean;
|
|
87302
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
87303
|
+
upload_protocol?: string;
|
|
87304
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
87305
|
+
uploadType?: string;
|
|
87306
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
87307
|
+
userIp?: string;
|
|
87308
|
+
}): Request<ManagedRulesetList>;
|
|
87309
|
+
}
|
|
85469
87310
|
interface NetworkAttachmentsResource {
|
|
85470
87311
|
/**
|
|
85471
87312
|
* Retrieves the list of all NetworkAttachment resources,
|
|
@@ -102303,8 +104144,10 @@ declare namespace gapi.client {
|
|
|
102303
104144
|
userIp?: string;
|
|
102304
104145
|
}): Request<BackendServiceList>;
|
|
102305
104146
|
/**
|
|
102306
|
-
* Retrieves a list of all usable backend services
|
|
102307
|
-
* the
|
|
104147
|
+
* Retrieves a list of all usable backend services for Application Load
|
|
104148
|
+
* Balancers and Proxy Network Load Balancers in the specified project in the
|
|
104149
|
+
* given region. Backend services for external and internal passthrough
|
|
104150
|
+
* Network Load Balancers are not included in the response.
|
|
102308
104151
|
*/
|
|
102309
104152
|
listUsable(request?: {
|
|
102310
104153
|
/** V1 error format. */
|
|
@@ -123998,6 +125841,139 @@ declare namespace gapi.client {
|
|
|
123998
125841
|
body: ReservationsBlocksPerformMaintenanceRequest,
|
|
123999
125842
|
): Request<Operation>;
|
|
124000
125843
|
}
|
|
125844
|
+
interface ReservationConsumedInstancesResource {
|
|
125845
|
+
/** Lists the instances consuming capacity from a specific reservation. */
|
|
125846
|
+
list(request?: {
|
|
125847
|
+
/** V1 error format. */
|
|
125848
|
+
'$.xgafv'?: '1' | '2';
|
|
125849
|
+
/** OAuth access token. */
|
|
125850
|
+
access_token?: string;
|
|
125851
|
+
/** Data format for response. */
|
|
125852
|
+
alt?: 'json' | 'media' | 'proto';
|
|
125853
|
+
/** JSONP */
|
|
125854
|
+
callback?: string;
|
|
125855
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
125856
|
+
fields?: string;
|
|
125857
|
+
/**
|
|
125858
|
+
* A filter expression that filters resources listed in the response. Most
|
|
125859
|
+
* Compute resources support two types of filter expressions:
|
|
125860
|
+
* expressions that support regular expressions and expressions that follow
|
|
125861
|
+
* API improvement proposal AIP-160.
|
|
125862
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
125863
|
+
*
|
|
125864
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
125865
|
+
* operator, and the value that you want to use for filtering. The value
|
|
125866
|
+
* must be a string, a number, or a boolean. The operator
|
|
125867
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
125868
|
+
*
|
|
125869
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
125870
|
+
* exclude instances named `example-instance` by specifying
|
|
125871
|
+
* `name != example-instance`.
|
|
125872
|
+
*
|
|
125873
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
125874
|
+
* For example, to find all objects with `owner` label use:
|
|
125875
|
+
* ```
|
|
125876
|
+
* labels.owner:*
|
|
125877
|
+
* ```
|
|
125878
|
+
*
|
|
125879
|
+
* You can also filter nested fields. For example, you could specify
|
|
125880
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
125881
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
125882
|
+
* on nested fields to filter based onresource labels.
|
|
125883
|
+
*
|
|
125884
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
125885
|
+
* parentheses. For example:
|
|
125886
|
+
* ```
|
|
125887
|
+
* (scheduling.automaticRestart = true)
|
|
125888
|
+
* (cpuPlatform = "Intel Skylake")
|
|
125889
|
+
* ```
|
|
125890
|
+
* By default, each expression is an `AND` expression. However, you
|
|
125891
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
125892
|
+
* For example:
|
|
125893
|
+
* ```
|
|
125894
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
125895
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
125896
|
+
* (scheduling.automaticRestart = true)
|
|
125897
|
+
* ```
|
|
125898
|
+
*
|
|
125899
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
125900
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
125901
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
125902
|
+
*
|
|
125903
|
+
* `fieldname eq unquoted literal`
|
|
125904
|
+
* `fieldname eq 'single quoted literal'`
|
|
125905
|
+
* `fieldname eq "double quoted literal"`
|
|
125906
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
125907
|
+
*
|
|
125908
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
125909
|
+
* The literal value must match the entire field.
|
|
125910
|
+
*
|
|
125911
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
125912
|
+
* you would use `name ne .*instance`.
|
|
125913
|
+
*
|
|
125914
|
+
* You cannot combine constraints on multiple fields using regular
|
|
125915
|
+
* expressions.
|
|
125916
|
+
*/
|
|
125917
|
+
filter?: string;
|
|
125918
|
+
/** 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. */
|
|
125919
|
+
key?: string;
|
|
125920
|
+
/**
|
|
125921
|
+
* The maximum number of results per page that should be returned.
|
|
125922
|
+
* If the number of available results is larger than `maxResults`,
|
|
125923
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
125924
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
125925
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
125926
|
+
*/
|
|
125927
|
+
maxResults?: number;
|
|
125928
|
+
/** OAuth 2.0 token for the current user. */
|
|
125929
|
+
oauth_token?: string;
|
|
125930
|
+
/**
|
|
125931
|
+
* Sorts list results by a certain order. By default, results
|
|
125932
|
+
* are returned in alphanumerical order based on the resource name.
|
|
125933
|
+
*
|
|
125934
|
+
* You can also sort results in descending order based on the creation
|
|
125935
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
125936
|
+
* results based on the `creationTimestamp` field in
|
|
125937
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
125938
|
+
* resources like operations so that the newest operation is returned first.
|
|
125939
|
+
*
|
|
125940
|
+
* Currently, only sorting by `name` or
|
|
125941
|
+
* `creationTimestamp desc` is supported.
|
|
125942
|
+
*/
|
|
125943
|
+
orderBy?: string;
|
|
125944
|
+
/**
|
|
125945
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
125946
|
+
* `nextPageToken` returned by a previous list request to get
|
|
125947
|
+
* the next page of results.
|
|
125948
|
+
*/
|
|
125949
|
+
pageToken?: string;
|
|
125950
|
+
/** Returns response with indentations and line breaks. */
|
|
125951
|
+
prettyPrint?: boolean;
|
|
125952
|
+
/** Required. Project ID for this request. */
|
|
125953
|
+
project: string;
|
|
125954
|
+
/** 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. */
|
|
125955
|
+
quotaUser?: string;
|
|
125956
|
+
/** Required. The name of the reservation to list consumed instances for. */
|
|
125957
|
+
reservation: string;
|
|
125958
|
+
/**
|
|
125959
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
125960
|
+
* of failure. The default value is false.
|
|
125961
|
+
*
|
|
125962
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
125963
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
125964
|
+
* with an error code.
|
|
125965
|
+
*/
|
|
125966
|
+
returnPartialSuccess?: boolean;
|
|
125967
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
125968
|
+
upload_protocol?: string;
|
|
125969
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
125970
|
+
uploadType?: string;
|
|
125971
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
125972
|
+
userIp?: string;
|
|
125973
|
+
/** Required. Zone name for this request. */
|
|
125974
|
+
zone: string;
|
|
125975
|
+
}): Request<ReservationConsumedInstancesListResponse>;
|
|
125976
|
+
}
|
|
124001
125977
|
interface ReservationsResource {
|
|
124002
125978
|
/**
|
|
124003
125979
|
* Retrieves an aggregated list of reservations.
|
|
@@ -146629,6 +148605,8 @@ declare namespace gapi.client {
|
|
|
146629
148605
|
): Request<Operation>;
|
|
146630
148606
|
}
|
|
146631
148607
|
|
|
148608
|
+
const acceleratorPodControllers: AcceleratorPodControllersResource;
|
|
148609
|
+
|
|
146632
148610
|
const acceleratorTypes: AcceleratorTypesResource;
|
|
146633
148611
|
|
|
146634
148612
|
const addresses: AddressesResource;
|
|
@@ -146643,6 +148621,8 @@ declare namespace gapi.client {
|
|
|
146643
148621
|
|
|
146644
148622
|
const crossSiteNetworks: CrossSiteNetworksResource;
|
|
146645
148623
|
|
|
148624
|
+
const dhcpOptionsConfigs: DhcpOptionsConfigsResource;
|
|
148625
|
+
|
|
146646
148626
|
const diskSettings: DiskSettingsResource;
|
|
146647
148627
|
|
|
146648
148628
|
const diskTypes: DiskTypesResource;
|
|
@@ -146731,6 +148711,8 @@ declare namespace gapi.client {
|
|
|
146731
148711
|
|
|
146732
148712
|
const machineTypes: MachineTypesResource;
|
|
146733
148713
|
|
|
148714
|
+
const managedRulesets: ManagedRulesetsResource;
|
|
148715
|
+
|
|
146734
148716
|
const networkAttachments: NetworkAttachmentsResource;
|
|
146735
148717
|
|
|
146736
148718
|
const networkEdgeSecurityServices: NetworkEdgeSecurityServicesResource;
|
|
@@ -146857,6 +148839,8 @@ declare namespace gapi.client {
|
|
|
146857
148839
|
|
|
146858
148840
|
const reservationBlocks: ReservationBlocksResource;
|
|
146859
148841
|
|
|
148842
|
+
const reservationConsumedInstances: ReservationConsumedInstancesResource;
|
|
148843
|
+
|
|
146860
148844
|
const reservationSlots: ReservationSlotsResource;
|
|
146861
148845
|
|
|
146862
148846
|
const reservationSubBlocks: ReservationSubBlocksResource;
|