@maxim_mazurok/gapi.client.compute-alpha 0.2.20260625 → 0.2.20260629
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1398 -120
- package/package.json +1 -1
- package/readme.md +67 -3
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://www.googleapis.com/discovery/v1/apis/compute/alpha/rest
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260629
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -37,6 +37,116 @@ declare namespace gapi.client {
|
|
|
37
37
|
*/
|
|
38
38
|
acceleratorType?: string;
|
|
39
39
|
}
|
|
40
|
+
interface AcceleratorPodController {
|
|
41
|
+
/** Output only. [Output Only] Creation timestamp inRFC3339 text format. */
|
|
42
|
+
creationTimestamp?: string;
|
|
43
|
+
/** An optional description of this resource. */
|
|
44
|
+
description?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Output only. [Output Only] The unique identifier for the resource. This identifier is
|
|
47
|
+
* defined by the server.
|
|
48
|
+
*/
|
|
49
|
+
id?: string;
|
|
50
|
+
kind?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Map of management interfaces. Keys must be valid RFC1035 names and at most
|
|
53
|
+
* 63 characters long.
|
|
54
|
+
*/
|
|
55
|
+
managementInterfaces?: {[P in string]: ManagementInterface};
|
|
56
|
+
/**
|
|
57
|
+
* Required. The name of the resource, provided by the client when initially creating
|
|
58
|
+
* the resource. The resource name must be 1-63 characters long, and comply
|
|
59
|
+
* withRFC1035.
|
|
60
|
+
* Specifically, the name must match the regular expression
|
|
61
|
+
* `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a
|
|
62
|
+
* lowercase letter, and all following characters must be a dash, lowercase
|
|
63
|
+
* letter, or digit, except the last character, which cannot be a dash.
|
|
64
|
+
*/
|
|
65
|
+
name?: string;
|
|
66
|
+
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
67
|
+
selfLink?: string;
|
|
68
|
+
/** Output only. [Output Only] Server-defined URL for the resource with the resource ID. */
|
|
69
|
+
selfLinkWithId?: string;
|
|
70
|
+
/**
|
|
71
|
+
* Required. The target accelerator domain this controller manages.
|
|
72
|
+
* This must be a resolvable identifier for the specific NVLink Domain or
|
|
73
|
+
* TPU system (e.g., a Reservation Sub-block URI).
|
|
74
|
+
* Example:
|
|
75
|
+
* "projects/my-project/reservations/my-reservation/subBlocks/subblock-1".
|
|
76
|
+
*/
|
|
77
|
+
target?: string;
|
|
78
|
+
/** Output only. [Output Only] URL of the zone where the accelerator pod controller resides. */
|
|
79
|
+
zone?: string;
|
|
80
|
+
}
|
|
81
|
+
interface AcceleratorPodControllersListResponse {
|
|
82
|
+
items?: AcceleratorPodController[];
|
|
83
|
+
kind?: string;
|
|
84
|
+
nextPageToken?: string;
|
|
85
|
+
selfLink?: string;
|
|
86
|
+
warning?: {
|
|
87
|
+
/**
|
|
88
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
89
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
90
|
+
* are no results in the response.
|
|
91
|
+
*/
|
|
92
|
+
code?:
|
|
93
|
+
| 'CLEANUP_FAILED'
|
|
94
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
95
|
+
| 'DEPRECATED_TYPE_USED'
|
|
96
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
97
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
98
|
+
| 'EXTERNAL_API_WARNING'
|
|
99
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
100
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
101
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
102
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
103
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
104
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
105
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
106
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
107
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
108
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
109
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
110
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
111
|
+
| 'NOT_CRITICAL_ERROR'
|
|
112
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
113
|
+
| 'PARTIAL_SUCCESS'
|
|
114
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
115
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
116
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
117
|
+
| 'RESOURCE_NOT_DELETED'
|
|
118
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
119
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
120
|
+
| 'UNDECLARED_PROPERTIES'
|
|
121
|
+
| 'UNREACHABLE';
|
|
122
|
+
/**
|
|
123
|
+
* [Output Only] Metadata about this warning in key:
|
|
124
|
+
* value format. For example:
|
|
125
|
+
*
|
|
126
|
+
* "data": [
|
|
127
|
+
* {
|
|
128
|
+
* "key": "scope",
|
|
129
|
+
* "value": "zones/us-east1-d"
|
|
130
|
+
* }
|
|
131
|
+
*/
|
|
132
|
+
data?: {
|
|
133
|
+
/**
|
|
134
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
135
|
+
* returned. For example, for warnings where there are no results in a list
|
|
136
|
+
* request for a particular zone, this key might be scope and
|
|
137
|
+
* the key value might be the zone name. Other examples might be a key
|
|
138
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
139
|
+
* warning about invalid network settings (for example, if an instance
|
|
140
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
141
|
+
*/
|
|
142
|
+
key?: string;
|
|
143
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
144
|
+
value?: string;
|
|
145
|
+
}[];
|
|
146
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
147
|
+
message?: string;
|
|
148
|
+
};
|
|
149
|
+
}
|
|
40
150
|
interface AcceleratorTopologiesInfo {
|
|
41
151
|
/** Info for each accelerator topology. */
|
|
42
152
|
acceleratorTopologyInfos?: AcceleratorTopologiesInfoAcceleratorTopologyInfo[];
|
|
@@ -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 {
|
|
@@ -6905,6 +7065,225 @@ declare namespace gapi.client {
|
|
|
6905
7065
|
*/
|
|
6906
7066
|
stateOverride?: RolloutPolicy;
|
|
6907
7067
|
}
|
|
7068
|
+
interface DhcpOptionsConfig {
|
|
7069
|
+
/** Mapping of user-defined keys to DhcpOptionsConfig to Network associations. */
|
|
7070
|
+
associations?: {[P in string]: DhcpOptionsConfigAssociation};
|
|
7071
|
+
/**
|
|
7072
|
+
* The file path and name of the boot image/file on the TFTP server that the
|
|
7073
|
+
* client VM guest OS should download and execute during network boot. Used
|
|
7074
|
+
* when the standard DHCP header 'file' field is overloaded. Corresponds to
|
|
7075
|
+
* DHCPv4 Option 67.
|
|
7076
|
+
*/
|
|
7077
|
+
bootFileIpv4Name?: string;
|
|
7078
|
+
/**
|
|
7079
|
+
* A list of UTF-8 encoded parameter strings to be passed as arguments to the
|
|
7080
|
+
* bootloader program or OS kernel after downloading the boot file.
|
|
7081
|
+
* Corresponds to DHCPv6 Option 60.
|
|
7082
|
+
*/
|
|
7083
|
+
bootFileIpv6Parameters?: string[];
|
|
7084
|
+
/**
|
|
7085
|
+
* The Uniform Resource Locator (URL) specifying the protocol, server address,
|
|
7086
|
+
* and file path of the boot file that the client VM guest OS should download
|
|
7087
|
+
* and execute for network boot (e.g., 'tftp://[2001:db8::1]/bootx64.efi' or
|
|
7088
|
+
* 'http://[2001:db8::1]/boot.img'). Corresponds to DHCPv6 Option 59.
|
|
7089
|
+
*/
|
|
7090
|
+
bootFileIpv6Url?: string;
|
|
7091
|
+
/**
|
|
7092
|
+
* Output only. [Output Only] Creation timestamp inRFC3339
|
|
7093
|
+
* text format.
|
|
7094
|
+
*/
|
|
7095
|
+
creationTimestamp?: string;
|
|
7096
|
+
/**
|
|
7097
|
+
* An optional description of this resource. Provide this property when you
|
|
7098
|
+
* create the resource.
|
|
7099
|
+
*/
|
|
7100
|
+
description?: string;
|
|
7101
|
+
/**
|
|
7102
|
+
* An ordered list of domain suffixes (search paths) that the client VM guest
|
|
7103
|
+
* OS should append to resolve hostnames that are not fully qualified. Applies
|
|
7104
|
+
* to both DHCPv4 Option 119 and DHCPv6 Option 24.
|
|
7105
|
+
*/
|
|
7106
|
+
dnsSearchPaths?: string[];
|
|
7107
|
+
/**
|
|
7108
|
+
* An ordered list of IPv4 addresses of DNS recursive name servers available
|
|
7109
|
+
* to the client VM guest OS, specified in order of preference. Corresponds to
|
|
7110
|
+
* DHCPv4 Option 6.
|
|
7111
|
+
*/
|
|
7112
|
+
dnsServerIpv4Addresses?: string[];
|
|
7113
|
+
/**
|
|
7114
|
+
* An ordered list of IPv6 addresses of DNS recursive name servers available
|
|
7115
|
+
* to the client VM guest OS, specified in order of preference. Corresponds to
|
|
7116
|
+
* DHCPv6 Option 23.
|
|
7117
|
+
*/
|
|
7118
|
+
dnsServerIpv6Addresses?: string[];
|
|
7119
|
+
/**
|
|
7120
|
+
* The domain name that the client VM guest OS should use when resolving
|
|
7121
|
+
* hostnames via DNS (e.g., 'example.com'). It defines the default domain
|
|
7122
|
+
* suffix for the client. Corresponds to DHCPv4 Option 15.
|
|
7123
|
+
*/
|
|
7124
|
+
domainName?: string;
|
|
7125
|
+
/**
|
|
7126
|
+
* Output only. [Output Only] The unique identifier for the resource type. The server
|
|
7127
|
+
* generates this identifier.
|
|
7128
|
+
*/
|
|
7129
|
+
id?: string;
|
|
7130
|
+
/** Output only. [Output Only] Type of the resource. Alwayscompute#dhcpOptionsConfig for dhcp options configs. */
|
|
7131
|
+
kind?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
* The duration, in seconds, of the IPv4 address lease offered by the DHCP
|
|
7134
|
+
* server to the client VM guest OS. Corresponds to DHCPv4 Option 51.
|
|
7135
|
+
*/
|
|
7136
|
+
leaseTimeSec?: string;
|
|
7137
|
+
/**
|
|
7138
|
+
* Name of the resource. Provided by the client when the resource is created.
|
|
7139
|
+
* The name must be 1-63 characters long, and comply withRFC1035.
|
|
7140
|
+
* Specifically, the name must be 1-63 characters long and match the regular
|
|
7141
|
+
* expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
7142
|
+
* character must be a lowercase letter, and all following characters must
|
|
7143
|
+
* be a dash, lowercase letter, or digit, except the last character, which
|
|
7144
|
+
* cannot be a dash.
|
|
7145
|
+
*/
|
|
7146
|
+
name?: string;
|
|
7147
|
+
/**
|
|
7148
|
+
* An ordered list of IPv4 addresses of Network Time Protocol (NTP) servers
|
|
7149
|
+
* available to the client VM guest OS for system clock synchronization,
|
|
7150
|
+
* listed in order of preference. Corresponds to DHCPv4 Option 42.
|
|
7151
|
+
*/
|
|
7152
|
+
ntpServerIpv4Addresses?: string[];
|
|
7153
|
+
/**
|
|
7154
|
+
* An ordered list of IPv6 addresses of Network Time Protocol (NTP) servers
|
|
7155
|
+
* available to the client VM guest OS for system clock synchronization.
|
|
7156
|
+
* Corresponds to DHCPv6 Option 56.
|
|
7157
|
+
*/
|
|
7158
|
+
ntpServerIpv6Addresses?: string[];
|
|
7159
|
+
/** Output only. [Output Only] URL of the region where the resource resides. */
|
|
7160
|
+
region?: string;
|
|
7161
|
+
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
7162
|
+
selfLink?: string;
|
|
7163
|
+
/**
|
|
7164
|
+
* An ordered list of one or more IPv4 addresses of TFTP servers. Provides
|
|
7165
|
+
* server redundancy and failover support, and is generally prioritized by
|
|
7166
|
+
* clients over the single hostname specified in Option 66. Corresponds to
|
|
7167
|
+
* DHCPv4 Option 150.
|
|
7168
|
+
*/
|
|
7169
|
+
tftpServerIpv4Addresses?: string[];
|
|
7170
|
+
/**
|
|
7171
|
+
* The hostname or IP address of the Trivial File Transfer Protocol (TFTP)
|
|
7172
|
+
* server from which the client VM guest OS can download boot files. Typically
|
|
7173
|
+
* used in network booting (PXE) when the standard DHCP header 'sname' field
|
|
7174
|
+
* is overloaded. Corresponds to DHCPv4 Option 66.
|
|
7175
|
+
*/
|
|
7176
|
+
tftpServerIpv4Name?: string;
|
|
7177
|
+
}
|
|
7178
|
+
interface DhcpOptionsConfigAssociation {
|
|
7179
|
+
/**
|
|
7180
|
+
* Required. The target network this DHCP option is attached to.
|
|
7181
|
+
* You can specify this as a full or partial URL. For example, the following
|
|
7182
|
+
* are all valid URLs:
|
|
7183
|
+
*
|
|
7184
|
+
*
|
|
7185
|
+
* - https://www.googleapis.com/compute/v1/projects/project/global/networks/network
|
|
7186
|
+
*
|
|
7187
|
+
* - projects/project/global/networks/network
|
|
7188
|
+
*/
|
|
7189
|
+
network?: string;
|
|
7190
|
+
/** Output only. [Output Only] The server-defined ID of the associated Network. */
|
|
7191
|
+
networkId?: string;
|
|
7192
|
+
/** Output only. [Output Only] State of the association. */
|
|
7193
|
+
state?: 'ACTIVE' | 'ORPHANED' | 'STATE_UNSPECIFIED';
|
|
7194
|
+
}
|
|
7195
|
+
interface DhcpOptionsConfigList {
|
|
7196
|
+
/** Server-defined ETag for optimistic concurrency control. */
|
|
7197
|
+
etag?: string;
|
|
7198
|
+
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
7199
|
+
id?: string;
|
|
7200
|
+
/** A list of DhcpOptionsConfig resources. */
|
|
7201
|
+
items?: DhcpOptionsConfig[];
|
|
7202
|
+
/**
|
|
7203
|
+
* Output only. [Output Only] Type of the resource. Alwayscompute#dhcpOptionsConfigList for a list of dhcp options
|
|
7204
|
+
* configs.
|
|
7205
|
+
*/
|
|
7206
|
+
kind?: string;
|
|
7207
|
+
/**
|
|
7208
|
+
* [Output Only] This token allows you to get the next page of results for
|
|
7209
|
+
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
|
|
7210
|
+
* the query parameter pageToken in the next list request.
|
|
7211
|
+
* Subsequent list requests will have their own nextPageToken to
|
|
7212
|
+
* continue paging through the results.
|
|
7213
|
+
*/
|
|
7214
|
+
nextPageToken?: string;
|
|
7215
|
+
/** [Output Only] Server-defined URL for this resource. */
|
|
7216
|
+
selfLink?: string;
|
|
7217
|
+
/**
|
|
7218
|
+
* Output only. [Output Only] Unreachable resources.
|
|
7219
|
+
* end_interface: MixerListResponseWithEtagBuilder
|
|
7220
|
+
*/
|
|
7221
|
+
unreachables?: string[];
|
|
7222
|
+
/** [Output Only] Informational warning message. */
|
|
7223
|
+
warning?: {
|
|
7224
|
+
/**
|
|
7225
|
+
* [Output Only] A warning code, if applicable. For example, Compute
|
|
7226
|
+
* Engine returns NO_RESULTS_ON_PAGE if there
|
|
7227
|
+
* are no results in the response.
|
|
7228
|
+
*/
|
|
7229
|
+
code?:
|
|
7230
|
+
| 'CLEANUP_FAILED'
|
|
7231
|
+
| 'DEPRECATED_RESOURCE_USED'
|
|
7232
|
+
| 'DEPRECATED_TYPE_USED'
|
|
7233
|
+
| 'DISK_SIZE_LARGER_THAN_IMAGE_SIZE'
|
|
7234
|
+
| 'EXPERIMENTAL_TYPE_USED'
|
|
7235
|
+
| 'EXTERNAL_API_WARNING'
|
|
7236
|
+
| 'FIELD_VALUE_OVERRIDEN'
|
|
7237
|
+
| 'INJECTED_KERNELS_DEPRECATED'
|
|
7238
|
+
| 'INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB'
|
|
7239
|
+
| 'LARGE_DEPLOYMENT_WARNING'
|
|
7240
|
+
| 'LIST_OVERHEAD_QUOTA_EXCEED'
|
|
7241
|
+
| 'MISSING_TYPE_DEPENDENCY'
|
|
7242
|
+
| 'NEXT_HOP_ADDRESS_NOT_ASSIGNED'
|
|
7243
|
+
| 'NEXT_HOP_CANNOT_IP_FORWARD'
|
|
7244
|
+
| 'NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE'
|
|
7245
|
+
| 'NEXT_HOP_INSTANCE_NOT_FOUND'
|
|
7246
|
+
| 'NEXT_HOP_INSTANCE_NOT_ON_NETWORK'
|
|
7247
|
+
| 'NEXT_HOP_NOT_RUNNING'
|
|
7248
|
+
| 'NOT_CRITICAL_ERROR'
|
|
7249
|
+
| 'NO_RESULTS_ON_PAGE'
|
|
7250
|
+
| 'PARTIAL_SUCCESS'
|
|
7251
|
+
| 'QUOTA_INFO_UNAVAILABLE'
|
|
7252
|
+
| 'REQUIRED_TOS_AGREEMENT'
|
|
7253
|
+
| 'RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING'
|
|
7254
|
+
| 'RESOURCE_NOT_DELETED'
|
|
7255
|
+
| 'SCHEMA_VALIDATION_IGNORED'
|
|
7256
|
+
| 'SINGLE_INSTANCE_PROPERTY_TEMPLATE'
|
|
7257
|
+
| 'UNDECLARED_PROPERTIES'
|
|
7258
|
+
| 'UNREACHABLE';
|
|
7259
|
+
/**
|
|
7260
|
+
* [Output Only] Metadata about this warning in key:
|
|
7261
|
+
* value format. For example:
|
|
7262
|
+
*
|
|
7263
|
+
* "data": [
|
|
7264
|
+
* {
|
|
7265
|
+
* "key": "scope",
|
|
7266
|
+
* "value": "zones/us-east1-d"
|
|
7267
|
+
* }
|
|
7268
|
+
*/
|
|
7269
|
+
data?: {
|
|
7270
|
+
/**
|
|
7271
|
+
* [Output Only] A key that provides more detail on the warning being
|
|
7272
|
+
* returned. For example, for warnings where there are no results in a list
|
|
7273
|
+
* request for a particular zone, this key might be scope and
|
|
7274
|
+
* the key value might be the zone name. Other examples might be a key
|
|
7275
|
+
* indicating a deprecated resource and a suggested replacement, or a
|
|
7276
|
+
* warning about invalid network settings (for example, if an instance
|
|
7277
|
+
* attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
7278
|
+
*/
|
|
7279
|
+
key?: string;
|
|
7280
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
7281
|
+
value?: string;
|
|
7282
|
+
}[];
|
|
7283
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
7284
|
+
message?: string;
|
|
7285
|
+
};
|
|
7286
|
+
}
|
|
6908
7287
|
interface Disk {
|
|
6909
7288
|
/**
|
|
6910
7289
|
* The access mode of the disk.
|
|
@@ -9299,7 +9678,9 @@ declare namespace gapi.client {
|
|
|
9299
9678
|
/**
|
|
9300
9679
|
* The Action to perform when the client connection triggers the rule.
|
|
9301
9680
|
* Valid actions for firewall rules are: "allow", "deny",
|
|
9302
|
-
* "apply_security_profile_group" and "goto_next"
|
|
9681
|
+
* "apply_security_profile_group" and "goto_next" (
|
|
9682
|
+
* "apply_security_profile_group" can be specified only for global
|
|
9683
|
+
* network firewall policies or hierarchical firewall policies).
|
|
9303
9684
|
* Valid actions for packet mirroring rules are: "mirror", "do_not_mirror"
|
|
9304
9685
|
* and "goto_next".
|
|
9305
9686
|
*/
|
|
@@ -9347,11 +9728,12 @@ declare namespace gapi.client {
|
|
|
9347
9728
|
*/
|
|
9348
9729
|
ruleTupleCount?: number;
|
|
9349
9730
|
/**
|
|
9350
|
-
* A fully-qualified URL of a
|
|
9731
|
+
* A fully-qualified URL of a SecurityProfileGroup resource instance.
|
|
9351
9732
|
* Example:
|
|
9352
9733
|
* https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
|
9353
9734
|
* Must be specified if action is one of 'apply_security_profile_group' or
|
|
9354
|
-
* 'mirror'. Cannot be specified for other actions.
|
|
9735
|
+
* 'mirror'. Cannot be specified for other actions. Can be specified only
|
|
9736
|
+
* for global network firewall policies or hierarchical firewall policies.
|
|
9355
9737
|
*/
|
|
9356
9738
|
securityProfileGroup?: string;
|
|
9357
9739
|
/**
|
|
@@ -10524,6 +10906,12 @@ declare namespace gapi.client {
|
|
|
10524
10906
|
* reservation_name or a name_prefix.
|
|
10525
10907
|
*/
|
|
10526
10908
|
reservationName?: string;
|
|
10909
|
+
/**
|
|
10910
|
+
* Name of the resource intended to be delivered. Name should conform to
|
|
10911
|
+
* RFC1035. This will be the name of storage pool or Exapool for persistent
|
|
10912
|
+
* disk FRs.
|
|
10913
|
+
*/
|
|
10914
|
+
resourceName?: string;
|
|
10527
10915
|
/** Maintenance information for this reservation */
|
|
10528
10916
|
schedulingType?:
|
|
10529
10917
|
'GROUPED' | 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED' | 'INDEPENDENT';
|
|
@@ -10546,6 +10934,8 @@ declare namespace gapi.client {
|
|
|
10546
10934
|
specificSkuProperties?: FutureReservationSpecificSKUProperties;
|
|
10547
10935
|
/** Output only. [Output only] Status of the Future Reservation */
|
|
10548
10936
|
status?: FutureReservationStatus;
|
|
10937
|
+
/** Storage pool details for the future reservation. */
|
|
10938
|
+
storagePoolProperties?: FutureReservationStoragePoolProperties;
|
|
10549
10939
|
/** Time window for this Future Reservation. */
|
|
10550
10940
|
timeWindow?: FutureReservationTimeWindow;
|
|
10551
10941
|
/** Output only. [Output Only] URL of the Zone where this future reservation resides. */
|
|
@@ -10860,6 +11250,8 @@ declare namespace gapi.client {
|
|
|
10860
11250
|
* start_time.
|
|
10861
11251
|
*/
|
|
10862
11252
|
autoCreatedReservations?: string[];
|
|
11253
|
+
/** Output only. Exapool provisioned capacities for each SKU type. */
|
|
11254
|
+
exapoolProvisionedCapacityGb?: StoragePoolExapoolProvisionedCapacityGb;
|
|
10863
11255
|
/**
|
|
10864
11256
|
* Output only. [Output Only] Represents the existing matching usage for the future
|
|
10865
11257
|
* reservation.
|
|
@@ -10903,6 +11295,8 @@ declare namespace gapi.client {
|
|
|
10903
11295
|
| 'PROCURING'
|
|
10904
11296
|
| 'PROVISIONING';
|
|
10905
11297
|
specificSkuProperties?: FutureReservationStatusSpecificSKUProperties;
|
|
11298
|
+
/** Output only. Storage pool provisioned capacities for each SKU type. */
|
|
11299
|
+
storagePoolProvisionedCapacity?: FutureReservationStoragePoolProvisionedCapacity;
|
|
10906
11300
|
}
|
|
10907
11301
|
interface FutureReservationStatusExistingMatchingUsageInfo {
|
|
10908
11302
|
/**
|
|
@@ -10972,6 +11366,28 @@ declare namespace gapi.client {
|
|
|
10972
11366
|
*/
|
|
10973
11367
|
sourceInstanceTemplateId?: string;
|
|
10974
11368
|
}
|
|
11369
|
+
interface FutureReservationStoragePoolProperties {
|
|
11370
|
+
/** Requested exapool provisioned capacity in GiB. */
|
|
11371
|
+
requestedExapoolProvisionedCapacityGb?: StoragePoolExapoolProvisionedCapacityGb;
|
|
11372
|
+
/** Requested storage pool provisioned capacity. */
|
|
11373
|
+
requestedStoragePoolProvisionedCapacity?: FutureReservationStoragePoolProvisionedCapacity;
|
|
11374
|
+
/** Type of the storage pool. */
|
|
11375
|
+
storagePoolType?: string;
|
|
11376
|
+
}
|
|
11377
|
+
interface FutureReservationStoragePoolProvisionedCapacity {
|
|
11378
|
+
/** Size of the storage pool in GiB. */
|
|
11379
|
+
poolProvisionedCapacityGb?: string;
|
|
11380
|
+
/**
|
|
11381
|
+
* Provisioned IOPS of the storage pool. Only relevant if the storage pool
|
|
11382
|
+
* type is hyperdisk-balanced.
|
|
11383
|
+
*/
|
|
11384
|
+
poolProvisionedIops?: string;
|
|
11385
|
+
/**
|
|
11386
|
+
* Provisioned throughput of the storage pool in MiB/s. Only relevant if
|
|
11387
|
+
* the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
|
|
11388
|
+
*/
|
|
11389
|
+
poolProvisionedThroughput?: string;
|
|
11390
|
+
}
|
|
10975
11391
|
interface FutureReservationTimeWindow {
|
|
10976
11392
|
duration?: Duration;
|
|
10977
11393
|
endTime?: string;
|
|
@@ -15776,6 +16192,14 @@ declare namespace gapi.client {
|
|
|
15776
16192
|
lastStopTimestamp?: string;
|
|
15777
16193
|
/** Output only. [Output Only] Last suspended timestamp inRFC3339 text format. */
|
|
15778
16194
|
lastSuspendedTimestamp?: string;
|
|
16195
|
+
/**
|
|
16196
|
+
* Specifies which method should be used for encrypting the
|
|
16197
|
+
* Local SSDs attached to the VM.
|
|
16198
|
+
*/
|
|
16199
|
+
localSsdEncryptionMode?:
|
|
16200
|
+
| 'EPHEMERAL_KEY_ENCRYPTION'
|
|
16201
|
+
| 'LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED'
|
|
16202
|
+
| 'STANDARD_ENCRYPTION';
|
|
15779
16203
|
/**
|
|
15780
16204
|
* Full or partial URL of the machine type resource to use for this instance,
|
|
15781
16205
|
* in the format:zones/zone/machineTypes/machine-type. This is provided by the client
|
|
@@ -18753,6 +19177,14 @@ declare namespace gapi.client {
|
|
|
18753
19177
|
'KEY_REVOCATION_ACTION_TYPE_UNSPECIFIED' | 'NONE' | 'STOP';
|
|
18754
19178
|
/** Labels to apply to instances that are created from these properties. */
|
|
18755
19179
|
labels?: {[P in string]: string};
|
|
19180
|
+
/**
|
|
19181
|
+
* Specifies which method should be used for encrypting the
|
|
19182
|
+
* Local SSDs attached to the VM.
|
|
19183
|
+
*/
|
|
19184
|
+
localSsdEncryptionMode?:
|
|
19185
|
+
| 'EPHEMERAL_KEY_ENCRYPTION'
|
|
19186
|
+
| 'LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED'
|
|
19187
|
+
| 'STANDARD_ENCRYPTION';
|
|
18756
19188
|
/**
|
|
18757
19189
|
* The machine type to use for instances that are created from these
|
|
18758
19190
|
* properties.
|
|
@@ -24495,13 +24927,10 @@ declare namespace gapi.client {
|
|
|
24495
24927
|
* InstanceFlexibilityPolicy.
|
|
24496
24928
|
*/
|
|
24497
24929
|
propertiesFromFlexibilityPolicy?: ManagedInstancePropertiesFromFlexibilityPolicy;
|
|
24498
|
-
/**
|
|
24499
|
-
* Output only. [Output Only] Information about the termination timestamp of the instance,
|
|
24500
|
-
* if applicable.
|
|
24501
|
-
*/
|
|
24930
|
+
/** Output only. Information about the termination timestamp of the instance, if applicable. */
|
|
24502
24931
|
scheduling?: ManagedInstanceScheduling;
|
|
24503
24932
|
/**
|
|
24504
|
-
* Output only.
|
|
24933
|
+
* Output only. Specifies the graceful shutdown details if the instance is in
|
|
24505
24934
|
* `PENDING_STOP` state or there is a programmed stop scheduled.
|
|
24506
24935
|
*/
|
|
24507
24936
|
shutdownDetails?: ManagedInstanceShutdownDetails;
|
|
@@ -24559,6 +24988,9 @@ declare namespace gapi.client {
|
|
|
24559
24988
|
* Policy.
|
|
24560
24989
|
* - TERMINATION_TIMESTAMP Instance reached termination time,
|
|
24561
24990
|
* thus managed instance group stops/deletes it.
|
|
24991
|
+
* - GRACEFUL_SHUTDOWN_TIMESTAMP Instance reached graceful
|
|
24992
|
+
* shutdown time, thus managed instance group stops/deletes it to
|
|
24993
|
+
* gracefully shut it down.
|
|
24562
24994
|
*/
|
|
24563
24995
|
trigger?:
|
|
24564
24996
|
| 'API'
|
|
@@ -24656,25 +25088,27 @@ declare namespace gapi.client {
|
|
|
24656
25088
|
}
|
|
24657
25089
|
interface ManagedInstanceScheduling {
|
|
24658
25090
|
/**
|
|
24659
|
-
* Output only.
|
|
25091
|
+
* Output only. The timestamp at which the underlying instance will be
|
|
24660
25092
|
* triggered for graceful shutdown if it is configured. This is in RFC3339 text format.
|
|
24661
25093
|
*/
|
|
24662
25094
|
gracefulShutdownTimestamp?: string;
|
|
24663
25095
|
/**
|
|
24664
|
-
* Output only.
|
|
24665
|
-
*
|
|
25096
|
+
* Output only. The timestamp at which the managed instance will be terminated. This is
|
|
25097
|
+
* in RFC3339 text
|
|
25098
|
+
* format.
|
|
24666
25099
|
*/
|
|
24667
25100
|
terminationTimestamp?: string;
|
|
24668
25101
|
}
|
|
24669
25102
|
interface ManagedInstanceShutdownDetails {
|
|
24670
25103
|
/**
|
|
24671
|
-
* Output only.
|
|
24672
|
-
*
|
|
25104
|
+
* Output only. The duration for graceful shutdown. Only applicable when the instance is
|
|
25105
|
+
* in `PENDING_STOP` state.
|
|
24673
25106
|
*/
|
|
24674
25107
|
maxDuration?: Duration;
|
|
24675
25108
|
/**
|
|
24676
|
-
* Output only.
|
|
24677
|
-
*
|
|
25109
|
+
* Output only. Past timestamp indicating the beginning of `PENDING_STOP` state of
|
|
25110
|
+
* instance in RFC3339
|
|
25111
|
+
* text format.
|
|
24678
25112
|
*/
|
|
24679
25113
|
requestTimestamp?: string;
|
|
24680
25114
|
}
|
|
@@ -24687,6 +25121,43 @@ declare namespace gapi.client {
|
|
|
24687
25121
|
/** Output only. [Output Only] Name of the version. */
|
|
24688
25122
|
name?: string;
|
|
24689
25123
|
}
|
|
25124
|
+
interface ManagementInterface {
|
|
25125
|
+
authenticationConfig?: AuthenticationConfig;
|
|
25126
|
+
/**
|
|
25127
|
+
* The IPv4 internal IP address assigned to this management interface
|
|
25128
|
+
* endpoint. This address will be used by the customer to route traffic to the
|
|
25129
|
+
* management interface.
|
|
25130
|
+
*/
|
|
25131
|
+
ipv4Address?: string;
|
|
25132
|
+
/**
|
|
25133
|
+
* The IPv6 internal IP address assigned to this management interface
|
|
25134
|
+
* endpoint. This address will be used by the customer to route traffic to the
|
|
25135
|
+
* management interface if IPv6 is supported and configured.
|
|
25136
|
+
*/
|
|
25137
|
+
ipv6Address?: string;
|
|
25138
|
+
/**
|
|
25139
|
+
* The URL of the VPC network to which the management interface endpoint is
|
|
25140
|
+
* attached. The customer must ensure that this network is correctly
|
|
25141
|
+
* configured for routing to the accelerator domain.
|
|
25142
|
+
*/
|
|
25143
|
+
network?: string;
|
|
25144
|
+
state?: 'ACTIVE' | 'INACTIVE' | 'PENDING' | 'STATE_UNSPECIFIED';
|
|
25145
|
+
/**
|
|
25146
|
+
* The URL of the subnetwork from which to assign the IP address for the
|
|
25147
|
+
* endpoint. The subnetwork must belong to the specified network and have
|
|
25148
|
+
* available IP addresses.
|
|
25149
|
+
*/
|
|
25150
|
+
subnetwork?: string;
|
|
25151
|
+
/**
|
|
25152
|
+
* Required. The type of management service this interface provides.
|
|
25153
|
+
* Supported types include NMX-C for partition management and gNMI for switch
|
|
25154
|
+
* monitoring.
|
|
25155
|
+
*/
|
|
25156
|
+
type?:
|
|
25157
|
+
| 'TYPE_NVLINK_PARTITION_MANAGEMENT'
|
|
25158
|
+
| 'TYPE_NVLINK_SWITCH_MONITORING'
|
|
25159
|
+
| 'TYPE_UNSPECIFIED';
|
|
25160
|
+
}
|
|
24690
25161
|
interface Metadata {
|
|
24691
25162
|
/**
|
|
24692
25163
|
* Specifies a fingerprint for this request, which is essentially a hash of
|
|
@@ -25344,13 +25815,15 @@ declare namespace gapi.client {
|
|
|
25344
25815
|
*/
|
|
25345
25816
|
network?: string;
|
|
25346
25817
|
/**
|
|
25347
|
-
* Projects that are allowed to connect to this network
|
|
25348
|
-
* The project can be specified using its id or number.
|
|
25818
|
+
* Projects or service class ids that are allowed to connect to this network
|
|
25819
|
+
* attachment. The project can be specified using its id or number. Service
|
|
25820
|
+
* class id can be specified as "serviceclasses/{service_class_id}".
|
|
25349
25821
|
*/
|
|
25350
25822
|
producerAcceptLists?: string[];
|
|
25351
25823
|
/**
|
|
25352
|
-
* Projects that are not allowed to connect to this
|
|
25353
|
-
* The project can be specified using its id or number.
|
|
25824
|
+
* Projects or service class ids that are not allowed to connect to this
|
|
25825
|
+
* network attachment. The project can be specified using its id or number.
|
|
25826
|
+
* Service class id can be specified as "serviceclasses/{service_class_id}".
|
|
25354
25827
|
*/
|
|
25355
25828
|
producerRejectLists?: string[];
|
|
25356
25829
|
/**
|
|
@@ -34317,7 +34790,7 @@ declare namespace gapi.client {
|
|
|
34317
34790
|
}
|
|
34318
34791
|
interface ReliabilityRisk {
|
|
34319
34792
|
/**
|
|
34320
|
-
* Output only. [Output Only] Creation timestamp
|
|
34793
|
+
* Output only. [Output Only] Creation timestamp in RFC3339
|
|
34321
34794
|
* text format.
|
|
34322
34795
|
*/
|
|
34323
34796
|
creationTimestamp?: string;
|
|
@@ -34340,10 +34813,10 @@ declare namespace gapi.client {
|
|
|
34340
34813
|
kind?: string;
|
|
34341
34814
|
/**
|
|
34342
34815
|
* Name of the resource. The name must be 1-63 characters long and
|
|
34343
|
-
* comply
|
|
34816
|
+
* comply with RFC1035.
|
|
34344
34817
|
*/
|
|
34345
34818
|
name?: string;
|
|
34346
|
-
/** The
|
|
34819
|
+
/** The recommendation to mitigate the risk. */
|
|
34347
34820
|
recommendation?: RiskRecommendation;
|
|
34348
34821
|
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
34349
34822
|
selfLink?: string;
|
|
@@ -36185,6 +36658,11 @@ declare namespace gapi.client {
|
|
|
36185
36658
|
* specified in the spread placement policy attached to the instance.
|
|
36186
36659
|
*/
|
|
36187
36660
|
availabilityDomain?: number;
|
|
36661
|
+
/**
|
|
36662
|
+
* Output only. Specifies the timestamp, when the instance will start graceful shutdown
|
|
36663
|
+
* process, in RFC3339 text format.
|
|
36664
|
+
*/
|
|
36665
|
+
gracefulShutdownTimestamp?: string;
|
|
36188
36666
|
/** Time in future when the instance will be terminated inRFC3339 text format. */
|
|
36189
36667
|
terminationTimestamp?: string;
|
|
36190
36668
|
}
|
|
@@ -36221,6 +36699,7 @@ declare namespace gapi.client {
|
|
|
36221
36699
|
interface RiskDetails {
|
|
36222
36700
|
/** The duration of the risk since it was detected. */
|
|
36223
36701
|
duration?: string;
|
|
36702
|
+
/** Insight details for global DNS risk. */
|
|
36224
36703
|
globalDnsInsight?: RiskDetailsGlobalDnsInsight;
|
|
36225
36704
|
/** The last time the risk was updated. */
|
|
36226
36705
|
lastUpdateTimestamp?: string;
|
|
@@ -36231,13 +36710,13 @@ declare namespace gapi.client {
|
|
|
36231
36710
|
type?: 'GLOBAL_DNS' | 'RISK_TYPE_UNSPECIFIED';
|
|
36232
36711
|
}
|
|
36233
36712
|
interface RiskDetailsGlobalDnsInsight {
|
|
36234
|
-
/**
|
|
36713
|
+
/** Indicates whether the project's default DNS setting is global DNS. */
|
|
36235
36714
|
projectDefaultIsGlobalDns?: boolean;
|
|
36236
36715
|
/** The observation window for the query counts. */
|
|
36237
36716
|
queryObservationWindow?: string;
|
|
36238
36717
|
/**
|
|
36239
|
-
* The number of queries that are risky. This
|
|
36240
|
-
* total_query_count.
|
|
36718
|
+
* The number of queries that are risky. This is always less than or
|
|
36719
|
+
* equal to total_query_count.
|
|
36241
36720
|
*/
|
|
36242
36721
|
riskyQueryCount?: string;
|
|
36243
36722
|
/** The total number of queries in the observation window. */
|
|
@@ -38483,6 +38962,8 @@ declare namespace gapi.client {
|
|
|
38483
38962
|
/** Routes that were advertised to the remote BGP peer */
|
|
38484
38963
|
advertisedRoutes?: Route[];
|
|
38485
38964
|
bfdStatus?: BfdStatus;
|
|
38965
|
+
/** Output only. [Output Only] Indicates whether the BGP peer is in a depreferenced state. */
|
|
38966
|
+
depreferenced?: boolean;
|
|
38486
38967
|
/**
|
|
38487
38968
|
* Output only. Enable IPv4 traffic over BGP Peer.
|
|
38488
38969
|
* It is enabled by default if the peerIpAddress is version 4.
|
|
@@ -42476,10 +42957,6 @@ declare namespace gapi.client {
|
|
|
42476
42957
|
}[];
|
|
42477
42958
|
}
|
|
42478
42959
|
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
42960
|
sslPolicy?: string;
|
|
42484
42961
|
}
|
|
42485
42962
|
interface StatefulPolicy {
|
|
@@ -49570,6 +50047,8 @@ declare namespace gapi.client {
|
|
|
49570
50047
|
interface WorkloadIdentityConfig {
|
|
49571
50048
|
identity?: string;
|
|
49572
50049
|
identityCertificateEnabled?: boolean;
|
|
50050
|
+
identityType?:
|
|
50051
|
+
'AGENT_IDENTITY' | 'IDENTITY_TYPE_UNSPECIFIED' | 'SERVICE_ACCOUNT';
|
|
49573
50052
|
}
|
|
49574
50053
|
interface XpnHostList {
|
|
49575
50054
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
@@ -49817,14 +50296,134 @@ declare namespace gapi.client {
|
|
|
49817
50296
|
*/
|
|
49818
50297
|
policy?: Policy;
|
|
49819
50298
|
}
|
|
49820
|
-
interface
|
|
49821
|
-
/**
|
|
49822
|
-
|
|
49823
|
-
|
|
49824
|
-
|
|
49825
|
-
|
|
49826
|
-
|
|
49827
|
-
|
|
50299
|
+
interface AcceleratorPodControllersResource {
|
|
50300
|
+
/** Deletes the specified AcceleratorPodController resource. */
|
|
50301
|
+
delete(request?: {
|
|
50302
|
+
/** V1 error format. */
|
|
50303
|
+
'$.xgafv'?: '1' | '2';
|
|
50304
|
+
/** OAuth access token. */
|
|
50305
|
+
access_token?: string;
|
|
50306
|
+
/** Data format for response. */
|
|
50307
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50308
|
+
/** JSONP */
|
|
50309
|
+
callback?: string;
|
|
50310
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50311
|
+
fields?: string;
|
|
50312
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
50313
|
+
key?: string;
|
|
50314
|
+
/** OAuth 2.0 token for the current user. */
|
|
50315
|
+
oauth_token?: string;
|
|
50316
|
+
/** Returns response with indentations and line breaks. */
|
|
50317
|
+
prettyPrint?: boolean;
|
|
50318
|
+
project: string;
|
|
50319
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
50320
|
+
quotaUser?: string;
|
|
50321
|
+
requestId?: string;
|
|
50322
|
+
resourceId: string;
|
|
50323
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50324
|
+
upload_protocol?: string;
|
|
50325
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50326
|
+
uploadType?: string;
|
|
50327
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50328
|
+
userIp?: string;
|
|
50329
|
+
zone: string;
|
|
50330
|
+
}): Request<Operation>;
|
|
50331
|
+
/** Gets the specified AcceleratorPodController resource. */
|
|
50332
|
+
get(request?: {
|
|
50333
|
+
/** V1 error format. */
|
|
50334
|
+
'$.xgafv'?: '1' | '2';
|
|
50335
|
+
/** OAuth access token. */
|
|
50336
|
+
access_token?: string;
|
|
50337
|
+
/** Data format for response. */
|
|
50338
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50339
|
+
/** JSONP */
|
|
50340
|
+
callback?: string;
|
|
50341
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50342
|
+
fields?: string;
|
|
50343
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
50344
|
+
key?: string;
|
|
50345
|
+
/** OAuth 2.0 token for the current user. */
|
|
50346
|
+
oauth_token?: string;
|
|
50347
|
+
/** Returns response with indentations and line breaks. */
|
|
50348
|
+
prettyPrint?: boolean;
|
|
50349
|
+
project: string;
|
|
50350
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
50351
|
+
quotaUser?: string;
|
|
50352
|
+
resourceId: string;
|
|
50353
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50354
|
+
upload_protocol?: string;
|
|
50355
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50356
|
+
uploadType?: string;
|
|
50357
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50358
|
+
userIp?: string;
|
|
50359
|
+
zone: string;
|
|
50360
|
+
}): Request<AcceleratorPodController>;
|
|
50361
|
+
/** Inserts a new AcceleratorPodController resource. */
|
|
50362
|
+
insert(request: {
|
|
50363
|
+
/** V1 error format. */
|
|
50364
|
+
'$.xgafv'?: '1' | '2';
|
|
50365
|
+
/** OAuth access token. */
|
|
50366
|
+
access_token?: string;
|
|
50367
|
+
/** Data format for response. */
|
|
50368
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50369
|
+
/** JSONP */
|
|
50370
|
+
callback?: string;
|
|
50371
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50372
|
+
fields?: string;
|
|
50373
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
50374
|
+
key?: string;
|
|
50375
|
+
/** OAuth 2.0 token for the current user. */
|
|
50376
|
+
oauth_token?: string;
|
|
50377
|
+
/** Returns response with indentations and line breaks. */
|
|
50378
|
+
prettyPrint?: boolean;
|
|
50379
|
+
project: string;
|
|
50380
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
50381
|
+
quotaUser?: string;
|
|
50382
|
+
requestId?: string;
|
|
50383
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50384
|
+
upload_protocol?: string;
|
|
50385
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50386
|
+
uploadType?: string;
|
|
50387
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50388
|
+
userIp?: string;
|
|
50389
|
+
zone: string;
|
|
50390
|
+
/** Request body */
|
|
50391
|
+
resource: AcceleratorPodController;
|
|
50392
|
+
}): Request<Operation>;
|
|
50393
|
+
insert(
|
|
50394
|
+
request: {
|
|
50395
|
+
/** V1 error format. */
|
|
50396
|
+
'$.xgafv'?: '1' | '2';
|
|
50397
|
+
/** OAuth access token. */
|
|
50398
|
+
access_token?: string;
|
|
50399
|
+
/** Data format for response. */
|
|
50400
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50401
|
+
/** JSONP */
|
|
50402
|
+
callback?: string;
|
|
50403
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50404
|
+
fields?: string;
|
|
50405
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
50406
|
+
key?: string;
|
|
50407
|
+
/** OAuth 2.0 token for the current user. */
|
|
50408
|
+
oauth_token?: string;
|
|
50409
|
+
/** Returns response with indentations and line breaks. */
|
|
50410
|
+
prettyPrint?: boolean;
|
|
50411
|
+
project: string;
|
|
50412
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
50413
|
+
quotaUser?: string;
|
|
50414
|
+
requestId?: string;
|
|
50415
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50416
|
+
upload_protocol?: string;
|
|
50417
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50418
|
+
uploadType?: string;
|
|
50419
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50420
|
+
userIp?: string;
|
|
50421
|
+
zone: string;
|
|
50422
|
+
},
|
|
50423
|
+
body: AcceleratorPodController,
|
|
50424
|
+
): Request<Operation>;
|
|
50425
|
+
/** Lists the AcceleratorPodController resources in the specified zone. */
|
|
50426
|
+
list(request?: {
|
|
49828
50427
|
/** V1 error format. */
|
|
49829
50428
|
'$.xgafv'?: '1' | '2';
|
|
49830
50429
|
/** OAuth access token. */
|
|
@@ -49896,16 +50495,6 @@ declare namespace gapi.client {
|
|
|
49896
50495
|
* expressions.
|
|
49897
50496
|
*/
|
|
49898
50497
|
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
50498
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
49910
50499
|
key?: string;
|
|
49911
50500
|
/**
|
|
@@ -49940,7 +50529,6 @@ declare namespace gapi.client {
|
|
|
49940
50529
|
pageToken?: string;
|
|
49941
50530
|
/** Returns response with indentations and line breaks. */
|
|
49942
50531
|
prettyPrint?: boolean;
|
|
49943
|
-
/** Project ID for this request. */
|
|
49944
50532
|
project: string;
|
|
49945
50533
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
49946
50534
|
quotaUser?: string;
|
|
@@ -49953,24 +50541,18 @@ declare namespace gapi.client {
|
|
|
49953
50541
|
* with an error code.
|
|
49954
50542
|
*/
|
|
49955
50543
|
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
50544
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
49962
50545
|
upload_protocol?: string;
|
|
49963
50546
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
49964
50547
|
uploadType?: string;
|
|
49965
50548
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
49966
50549
|
userIp?: string;
|
|
49967
|
-
|
|
49968
|
-
|
|
49969
|
-
|
|
50550
|
+
zone: string;
|
|
50551
|
+
}): Request<AcceleratorPodControllersListResponse>;
|
|
50552
|
+
/** Patches the specified AcceleratorPodController resource. */
|
|
50553
|
+
patch(request: {
|
|
49970
50554
|
/** V1 error format. */
|
|
49971
50555
|
'$.xgafv'?: '1' | '2';
|
|
49972
|
-
/** Name of the accelerator type to return. */
|
|
49973
|
-
acceleratorType: string;
|
|
49974
50556
|
/** OAuth access token. */
|
|
49975
50557
|
access_token?: string;
|
|
49976
50558
|
/** Data format for response. */
|
|
@@ -49985,24 +50567,243 @@ declare namespace gapi.client {
|
|
|
49985
50567
|
oauth_token?: string;
|
|
49986
50568
|
/** Returns response with indentations and line breaks. */
|
|
49987
50569
|
prettyPrint?: boolean;
|
|
49988
|
-
/** Project ID for this request. */
|
|
49989
50570
|
project: string;
|
|
49990
50571
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
49991
50572
|
quotaUser?: string;
|
|
50573
|
+
requestId?: string;
|
|
50574
|
+
resourceId: string;
|
|
50575
|
+
updateMask?: string;
|
|
49992
50576
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
49993
50577
|
upload_protocol?: string;
|
|
49994
50578
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
49995
50579
|
uploadType?: string;
|
|
49996
50580
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
49997
50581
|
userIp?: string;
|
|
49998
|
-
/** The name of the zone for this request. */
|
|
49999
50582
|
zone: string;
|
|
50000
|
-
|
|
50583
|
+
/** Request body */
|
|
50584
|
+
resource: AcceleratorPodController;
|
|
50585
|
+
}): Request<Operation>;
|
|
50586
|
+
patch(
|
|
50587
|
+
request: {
|
|
50588
|
+
/** V1 error format. */
|
|
50589
|
+
'$.xgafv'?: '1' | '2';
|
|
50590
|
+
/** OAuth access token. */
|
|
50591
|
+
access_token?: string;
|
|
50592
|
+
/** Data format for response. */
|
|
50593
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50594
|
+
/** JSONP */
|
|
50595
|
+
callback?: string;
|
|
50596
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50597
|
+
fields?: string;
|
|
50598
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
50599
|
+
key?: string;
|
|
50600
|
+
/** OAuth 2.0 token for the current user. */
|
|
50601
|
+
oauth_token?: string;
|
|
50602
|
+
/** Returns response with indentations and line breaks. */
|
|
50603
|
+
prettyPrint?: boolean;
|
|
50604
|
+
project: string;
|
|
50605
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
50606
|
+
quotaUser?: string;
|
|
50607
|
+
requestId?: string;
|
|
50608
|
+
resourceId: string;
|
|
50609
|
+
updateMask?: string;
|
|
50610
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50611
|
+
upload_protocol?: string;
|
|
50612
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50613
|
+
uploadType?: string;
|
|
50614
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50615
|
+
userIp?: string;
|
|
50616
|
+
zone: string;
|
|
50617
|
+
},
|
|
50618
|
+
body: AcceleratorPodController,
|
|
50619
|
+
): Request<Operation>;
|
|
50620
|
+
}
|
|
50621
|
+
interface AcceleratorTypesResource {
|
|
50001
50622
|
/**
|
|
50002
|
-
* Retrieves
|
|
50003
|
-
*
|
|
50623
|
+
* Retrieves an aggregated list of accelerator types.
|
|
50624
|
+
*
|
|
50625
|
+
* To prevent failure, it is recommended that you set the
|
|
50626
|
+
* `returnPartialSuccess` parameter to `true`.
|
|
50004
50627
|
*/
|
|
50005
|
-
|
|
50628
|
+
aggregatedList(request?: {
|
|
50629
|
+
/** V1 error format. */
|
|
50630
|
+
'$.xgafv'?: '1' | '2';
|
|
50631
|
+
/** OAuth access token. */
|
|
50632
|
+
access_token?: string;
|
|
50633
|
+
/** Data format for response. */
|
|
50634
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50635
|
+
/** JSONP */
|
|
50636
|
+
callback?: string;
|
|
50637
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50638
|
+
fields?: string;
|
|
50639
|
+
/**
|
|
50640
|
+
* A filter expression that filters resources listed in the response. Most
|
|
50641
|
+
* Compute resources support two types of filter expressions:
|
|
50642
|
+
* expressions that support regular expressions and expressions that follow
|
|
50643
|
+
* API improvement proposal AIP-160.
|
|
50644
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
50645
|
+
*
|
|
50646
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
50647
|
+
* operator, and the value that you want to use for filtering. The value
|
|
50648
|
+
* must be a string, a number, or a boolean. The operator
|
|
50649
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
50650
|
+
*
|
|
50651
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
50652
|
+
* exclude instances named `example-instance` by specifying
|
|
50653
|
+
* `name != example-instance`.
|
|
50654
|
+
*
|
|
50655
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
50656
|
+
* For example, to find all objects with `owner` label use:
|
|
50657
|
+
* ```
|
|
50658
|
+
* labels.owner:*
|
|
50659
|
+
* ```
|
|
50660
|
+
*
|
|
50661
|
+
* You can also filter nested fields. For example, you could specify
|
|
50662
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
50663
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
50664
|
+
* on nested fields to filter based onresource labels.
|
|
50665
|
+
*
|
|
50666
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
50667
|
+
* parentheses. For example:
|
|
50668
|
+
* ```
|
|
50669
|
+
* (scheduling.automaticRestart = true)
|
|
50670
|
+
* (cpuPlatform = "Intel Skylake")
|
|
50671
|
+
* ```
|
|
50672
|
+
* By default, each expression is an `AND` expression. However, you
|
|
50673
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
50674
|
+
* For example:
|
|
50675
|
+
* ```
|
|
50676
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
50677
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
50678
|
+
* (scheduling.automaticRestart = true)
|
|
50679
|
+
* ```
|
|
50680
|
+
*
|
|
50681
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
50682
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
50683
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
50684
|
+
*
|
|
50685
|
+
* `fieldname eq unquoted literal`
|
|
50686
|
+
* `fieldname eq 'single quoted literal'`
|
|
50687
|
+
* `fieldname eq "double quoted literal"`
|
|
50688
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
50689
|
+
*
|
|
50690
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
50691
|
+
* The literal value must match the entire field.
|
|
50692
|
+
*
|
|
50693
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
50694
|
+
* you would use `name ne .*instance`.
|
|
50695
|
+
*
|
|
50696
|
+
* You cannot combine constraints on multiple fields using regular
|
|
50697
|
+
* expressions.
|
|
50698
|
+
*/
|
|
50699
|
+
filter?: string;
|
|
50700
|
+
/**
|
|
50701
|
+
* Indicates whether every visible scope for each scope type (zone, region,
|
|
50702
|
+
* global) should be included in the response. For new resource types added
|
|
50703
|
+
* after this field, the flag has no effect as new resource types will always
|
|
50704
|
+
* include every visible scope for each scope type in response. For resource
|
|
50705
|
+
* types which predate this field, if this flag is omitted or false, only
|
|
50706
|
+
* scopes of the scope types where the resource type is expected to be found
|
|
50707
|
+
* will be included.
|
|
50708
|
+
*/
|
|
50709
|
+
includeAllScopes?: boolean;
|
|
50710
|
+
/** 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. */
|
|
50711
|
+
key?: string;
|
|
50712
|
+
/**
|
|
50713
|
+
* The maximum number of results per page that should be returned.
|
|
50714
|
+
* If the number of available results is larger than `maxResults`,
|
|
50715
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
50716
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
50717
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
50718
|
+
*/
|
|
50719
|
+
maxResults?: number;
|
|
50720
|
+
/** OAuth 2.0 token for the current user. */
|
|
50721
|
+
oauth_token?: string;
|
|
50722
|
+
/**
|
|
50723
|
+
* Sorts list results by a certain order. By default, results
|
|
50724
|
+
* are returned in alphanumerical order based on the resource name.
|
|
50725
|
+
*
|
|
50726
|
+
* You can also sort results in descending order based on the creation
|
|
50727
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
50728
|
+
* results based on the `creationTimestamp` field in
|
|
50729
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
50730
|
+
* resources like operations so that the newest operation is returned first.
|
|
50731
|
+
*
|
|
50732
|
+
* Currently, only sorting by `name` or
|
|
50733
|
+
* `creationTimestamp desc` is supported.
|
|
50734
|
+
*/
|
|
50735
|
+
orderBy?: string;
|
|
50736
|
+
/**
|
|
50737
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
50738
|
+
* `nextPageToken` returned by a previous list request to get
|
|
50739
|
+
* the next page of results.
|
|
50740
|
+
*/
|
|
50741
|
+
pageToken?: string;
|
|
50742
|
+
/** Returns response with indentations and line breaks. */
|
|
50743
|
+
prettyPrint?: boolean;
|
|
50744
|
+
/** Project ID for this request. */
|
|
50745
|
+
project: string;
|
|
50746
|
+
/** 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. */
|
|
50747
|
+
quotaUser?: string;
|
|
50748
|
+
/**
|
|
50749
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
50750
|
+
* of failure. The default value is false.
|
|
50751
|
+
*
|
|
50752
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
50753
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
50754
|
+
* with an error code.
|
|
50755
|
+
*/
|
|
50756
|
+
returnPartialSuccess?: boolean;
|
|
50757
|
+
/**
|
|
50758
|
+
* The Shared VPC service project id or service project number for which
|
|
50759
|
+
* aggregated list request is invoked for subnetworks list-usable api.
|
|
50760
|
+
*/
|
|
50761
|
+
serviceProjectNumber?: string;
|
|
50762
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50763
|
+
upload_protocol?: string;
|
|
50764
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50765
|
+
uploadType?: string;
|
|
50766
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50767
|
+
userIp?: string;
|
|
50768
|
+
}): Request<AcceleratorTypeAggregatedList>;
|
|
50769
|
+
/** Returns the specified accelerator type. */
|
|
50770
|
+
get(request?: {
|
|
50771
|
+
/** V1 error format. */
|
|
50772
|
+
'$.xgafv'?: '1' | '2';
|
|
50773
|
+
/** Name of the accelerator type to return. */
|
|
50774
|
+
acceleratorType: string;
|
|
50775
|
+
/** OAuth access token. */
|
|
50776
|
+
access_token?: string;
|
|
50777
|
+
/** Data format for response. */
|
|
50778
|
+
alt?: 'json' | 'media' | 'proto';
|
|
50779
|
+
/** JSONP */
|
|
50780
|
+
callback?: string;
|
|
50781
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
50782
|
+
fields?: string;
|
|
50783
|
+
/** 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. */
|
|
50784
|
+
key?: string;
|
|
50785
|
+
/** OAuth 2.0 token for the current user. */
|
|
50786
|
+
oauth_token?: string;
|
|
50787
|
+
/** Returns response with indentations and line breaks. */
|
|
50788
|
+
prettyPrint?: boolean;
|
|
50789
|
+
/** Project ID for this request. */
|
|
50790
|
+
project: string;
|
|
50791
|
+
/** 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. */
|
|
50792
|
+
quotaUser?: string;
|
|
50793
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
50794
|
+
upload_protocol?: string;
|
|
50795
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
50796
|
+
uploadType?: string;
|
|
50797
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
50798
|
+
userIp?: string;
|
|
50799
|
+
/** The name of the zone for this request. */
|
|
50800
|
+
zone: string;
|
|
50801
|
+
}): Request<AcceleratorType>;
|
|
50802
|
+
/**
|
|
50803
|
+
* Retrieves a list of accelerator types that are available to the specified
|
|
50804
|
+
* project.
|
|
50805
|
+
*/
|
|
50806
|
+
list(request?: {
|
|
50006
50807
|
/** V1 error format. */
|
|
50007
50808
|
'$.xgafv'?: '1' | '2';
|
|
50008
50809
|
/** OAuth access token. */
|
|
@@ -53625,7 +54426,12 @@ declare namespace gapi.client {
|
|
|
53625
54426
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
53626
54427
|
userIp?: string;
|
|
53627
54428
|
}): Request<BackendServiceList>;
|
|
53628
|
-
/**
|
|
54429
|
+
/**
|
|
54430
|
+
* Retrieves a list of all usable backend services for Application Load
|
|
54431
|
+
* Balancers and Proxy Network Load Balancers in the specified project.
|
|
54432
|
+
* Backend services for external and internal passthrough Network Load
|
|
54433
|
+
* Balancers are not included in the response.
|
|
54434
|
+
*/
|
|
53629
54435
|
listUsable(request?: {
|
|
53630
54436
|
/** V1 error format. */
|
|
53631
54437
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54128,33 +54934,447 @@ declare namespace gapi.client {
|
|
|
54128
54934
|
project: string;
|
|
54129
54935
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54130
54936
|
quotaUser?: string;
|
|
54131
|
-
/** Name or id of the resource for this request. */
|
|
54132
|
-
resource: string;
|
|
54937
|
+
/** Name or id of the resource for this request. */
|
|
54938
|
+
resource: string;
|
|
54939
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54940
|
+
upload_protocol?: string;
|
|
54941
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54942
|
+
uploadType?: string;
|
|
54943
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54944
|
+
userIp?: string;
|
|
54945
|
+
},
|
|
54946
|
+
body: TestPermissionsRequest,
|
|
54947
|
+
): Request<TestPermissionsResponse>;
|
|
54948
|
+
/**
|
|
54949
|
+
* Updates the specified BackendService resource with the data included in the
|
|
54950
|
+
* request. For more information, seeBackend
|
|
54951
|
+
* services overview.
|
|
54952
|
+
*/
|
|
54953
|
+
update(request: {
|
|
54954
|
+
/** V1 error format. */
|
|
54955
|
+
'$.xgafv'?: '1' | '2';
|
|
54956
|
+
/** OAuth access token. */
|
|
54957
|
+
access_token?: string;
|
|
54958
|
+
/** Data format for response. */
|
|
54959
|
+
alt?: 'json' | 'media' | 'proto';
|
|
54960
|
+
/** Name of the BackendService resource to update. */
|
|
54961
|
+
backendService: string;
|
|
54962
|
+
/** JSONP */
|
|
54963
|
+
callback?: string;
|
|
54964
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
54965
|
+
fields?: string;
|
|
54966
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
54967
|
+
key?: string;
|
|
54968
|
+
/** OAuth 2.0 token for the current user. */
|
|
54969
|
+
oauth_token?: string;
|
|
54970
|
+
/** Returns response with indentations and line breaks. */
|
|
54971
|
+
prettyPrint?: boolean;
|
|
54972
|
+
/** Project ID for this request. */
|
|
54973
|
+
project: string;
|
|
54974
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54975
|
+
quotaUser?: string;
|
|
54976
|
+
/**
|
|
54977
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54978
|
+
* that if you must retry your request, the server will know to ignore the
|
|
54979
|
+
* request if it has already been completed.
|
|
54980
|
+
*
|
|
54981
|
+
* For example, consider a situation where you make an initial request and
|
|
54982
|
+
* the request times out. If you make the request again with the same
|
|
54983
|
+
* request ID, the server can check if original operation with the same
|
|
54984
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
54985
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
54986
|
+
*
|
|
54987
|
+
* The request ID must be
|
|
54988
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
54989
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
54990
|
+
*/
|
|
54991
|
+
requestId?: string;
|
|
54992
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54993
|
+
upload_protocol?: string;
|
|
54994
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54995
|
+
uploadType?: string;
|
|
54996
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54997
|
+
userIp?: string;
|
|
54998
|
+
/** Request body */
|
|
54999
|
+
resource: BackendService;
|
|
55000
|
+
}): Request<Operation>;
|
|
55001
|
+
update(
|
|
55002
|
+
request: {
|
|
55003
|
+
/** V1 error format. */
|
|
55004
|
+
'$.xgafv'?: '1' | '2';
|
|
55005
|
+
/** OAuth access token. */
|
|
55006
|
+
access_token?: string;
|
|
55007
|
+
/** Data format for response. */
|
|
55008
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55009
|
+
/** Name of the BackendService resource to update. */
|
|
55010
|
+
backendService: string;
|
|
55011
|
+
/** JSONP */
|
|
55012
|
+
callback?: string;
|
|
55013
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55014
|
+
fields?: string;
|
|
55015
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
55016
|
+
key?: string;
|
|
55017
|
+
/** OAuth 2.0 token for the current user. */
|
|
55018
|
+
oauth_token?: string;
|
|
55019
|
+
/** Returns response with indentations and line breaks. */
|
|
55020
|
+
prettyPrint?: boolean;
|
|
55021
|
+
/** Project ID for this request. */
|
|
55022
|
+
project: string;
|
|
55023
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
55024
|
+
quotaUser?: string;
|
|
55025
|
+
/**
|
|
55026
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55027
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55028
|
+
* request if it has already been completed.
|
|
55029
|
+
*
|
|
55030
|
+
* For example, consider a situation where you make an initial request and
|
|
55031
|
+
* the request times out. If you make the request again with the same
|
|
55032
|
+
* request ID, the server can check if original operation with the same
|
|
55033
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55034
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55035
|
+
*
|
|
55036
|
+
* The request ID must be
|
|
55037
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55038
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55039
|
+
*/
|
|
55040
|
+
requestId?: string;
|
|
55041
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55042
|
+
upload_protocol?: string;
|
|
55043
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55044
|
+
uploadType?: string;
|
|
55045
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55046
|
+
userIp?: string;
|
|
55047
|
+
},
|
|
55048
|
+
body: BackendService,
|
|
55049
|
+
): Request<Operation>;
|
|
55050
|
+
}
|
|
55051
|
+
interface CrossSiteNetworksResource {
|
|
55052
|
+
/** Deletes the specified cross-site network in the given scope. */
|
|
55053
|
+
delete(request?: {
|
|
55054
|
+
/** V1 error format. */
|
|
55055
|
+
'$.xgafv'?: '1' | '2';
|
|
55056
|
+
/** OAuth access token. */
|
|
55057
|
+
access_token?: string;
|
|
55058
|
+
/** Data format for response. */
|
|
55059
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55060
|
+
/** JSONP */
|
|
55061
|
+
callback?: string;
|
|
55062
|
+
/** Name of the cross-site network to delete. */
|
|
55063
|
+
crossSiteNetwork: string;
|
|
55064
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55065
|
+
fields?: string;
|
|
55066
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
55067
|
+
key?: string;
|
|
55068
|
+
/** OAuth 2.0 token for the current user. */
|
|
55069
|
+
oauth_token?: string;
|
|
55070
|
+
/** Returns response with indentations and line breaks. */
|
|
55071
|
+
prettyPrint?: boolean;
|
|
55072
|
+
/** Project ID for this request. */
|
|
55073
|
+
project: string;
|
|
55074
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
55075
|
+
quotaUser?: string;
|
|
55076
|
+
/**
|
|
55077
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55078
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55079
|
+
* request if it has already been completed.
|
|
55080
|
+
*
|
|
55081
|
+
* For example, consider a situation where you make an initial request and
|
|
55082
|
+
* the request times out. If you make the request again with the same
|
|
55083
|
+
* request ID, the server can check if original operation with the same
|
|
55084
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55085
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55086
|
+
*
|
|
55087
|
+
* The request ID must be
|
|
55088
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55089
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55090
|
+
* end_interface: MixerMutationRequestBuilder
|
|
55091
|
+
*/
|
|
55092
|
+
requestId?: string;
|
|
55093
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55094
|
+
upload_protocol?: string;
|
|
55095
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55096
|
+
uploadType?: string;
|
|
55097
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55098
|
+
userIp?: string;
|
|
55099
|
+
}): Request<Operation>;
|
|
55100
|
+
/** Returns the specified cross-site network in the given scope. */
|
|
55101
|
+
get(request?: {
|
|
55102
|
+
/** V1 error format. */
|
|
55103
|
+
'$.xgafv'?: '1' | '2';
|
|
55104
|
+
/** OAuth access token. */
|
|
55105
|
+
access_token?: string;
|
|
55106
|
+
/** Data format for response. */
|
|
55107
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55108
|
+
/** JSONP */
|
|
55109
|
+
callback?: string;
|
|
55110
|
+
/** Name of the cross-site network to return. */
|
|
55111
|
+
crossSiteNetwork: string;
|
|
55112
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55113
|
+
fields?: string;
|
|
55114
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
55115
|
+
key?: string;
|
|
55116
|
+
/** OAuth 2.0 token for the current user. */
|
|
55117
|
+
oauth_token?: string;
|
|
55118
|
+
/** Returns response with indentations and line breaks. */
|
|
55119
|
+
prettyPrint?: boolean;
|
|
55120
|
+
/** Project ID for this request. */
|
|
55121
|
+
project: string;
|
|
55122
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
55123
|
+
quotaUser?: string;
|
|
55124
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55125
|
+
upload_protocol?: string;
|
|
55126
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55127
|
+
uploadType?: string;
|
|
55128
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55129
|
+
userIp?: string;
|
|
55130
|
+
}): Request<CrossSiteNetwork>;
|
|
55131
|
+
/**
|
|
55132
|
+
* Creates a cross-site network in the specified project in the given scope
|
|
55133
|
+
* using the parameters that are included in the request.
|
|
55134
|
+
*/
|
|
55135
|
+
insert(request: {
|
|
55136
|
+
/** V1 error format. */
|
|
55137
|
+
'$.xgafv'?: '1' | '2';
|
|
55138
|
+
/** OAuth access token. */
|
|
55139
|
+
access_token?: string;
|
|
55140
|
+
/** Data format for response. */
|
|
55141
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55142
|
+
/** JSONP */
|
|
55143
|
+
callback?: string;
|
|
55144
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55145
|
+
fields?: string;
|
|
55146
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
55147
|
+
key?: string;
|
|
55148
|
+
/** OAuth 2.0 token for the current user. */
|
|
55149
|
+
oauth_token?: string;
|
|
55150
|
+
/** Returns response with indentations and line breaks. */
|
|
55151
|
+
prettyPrint?: boolean;
|
|
55152
|
+
/** Project ID for this request. */
|
|
55153
|
+
project: string;
|
|
55154
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
55155
|
+
quotaUser?: string;
|
|
55156
|
+
/**
|
|
55157
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55158
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55159
|
+
* request if it has already been completed.
|
|
55160
|
+
*
|
|
55161
|
+
* For example, consider a situation where you make an initial request and
|
|
55162
|
+
* the request times out. If you make the request again with the same
|
|
55163
|
+
* request ID, the server can check if original operation with the same
|
|
55164
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55165
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55166
|
+
*
|
|
55167
|
+
* The request ID must be
|
|
55168
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55169
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55170
|
+
* end_interface: MixerMutationRequestBuilder
|
|
55171
|
+
*/
|
|
55172
|
+
requestId?: string;
|
|
55173
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55174
|
+
upload_protocol?: string;
|
|
55175
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55176
|
+
uploadType?: string;
|
|
55177
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55178
|
+
userIp?: string;
|
|
55179
|
+
/** [Input Only] Validate the new configuration, but don't create it. */
|
|
55180
|
+
validateOnly?: boolean;
|
|
55181
|
+
/** Request body */
|
|
55182
|
+
resource: CrossSiteNetwork;
|
|
55183
|
+
}): Request<Operation>;
|
|
55184
|
+
insert(
|
|
55185
|
+
request: {
|
|
55186
|
+
/** V1 error format. */
|
|
55187
|
+
'$.xgafv'?: '1' | '2';
|
|
55188
|
+
/** OAuth access token. */
|
|
55189
|
+
access_token?: string;
|
|
55190
|
+
/** Data format for response. */
|
|
55191
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55192
|
+
/** JSONP */
|
|
55193
|
+
callback?: string;
|
|
55194
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55195
|
+
fields?: string;
|
|
55196
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
55197
|
+
key?: string;
|
|
55198
|
+
/** OAuth 2.0 token for the current user. */
|
|
55199
|
+
oauth_token?: string;
|
|
55200
|
+
/** Returns response with indentations and line breaks. */
|
|
55201
|
+
prettyPrint?: boolean;
|
|
55202
|
+
/** Project ID for this request. */
|
|
55203
|
+
project: string;
|
|
55204
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
55205
|
+
quotaUser?: string;
|
|
55206
|
+
/**
|
|
55207
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
55208
|
+
* that if you must retry your request, the server will know to ignore the
|
|
55209
|
+
* request if it has already been completed.
|
|
55210
|
+
*
|
|
55211
|
+
* For example, consider a situation where you make an initial request and
|
|
55212
|
+
* the request times out. If you make the request again with the same
|
|
55213
|
+
* request ID, the server can check if original operation with the same
|
|
55214
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
55215
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
55216
|
+
*
|
|
55217
|
+
* The request ID must be
|
|
55218
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
55219
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
55220
|
+
* end_interface: MixerMutationRequestBuilder
|
|
55221
|
+
*/
|
|
55222
|
+
requestId?: string;
|
|
54133
55223
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54134
55224
|
upload_protocol?: string;
|
|
54135
55225
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54136
55226
|
uploadType?: string;
|
|
54137
55227
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54138
55228
|
userIp?: string;
|
|
55229
|
+
/** [Input Only] Validate the new configuration, but don't create it. */
|
|
55230
|
+
validateOnly?: boolean;
|
|
54139
55231
|
},
|
|
54140
|
-
body:
|
|
54141
|
-
): Request<
|
|
55232
|
+
body: CrossSiteNetwork,
|
|
55233
|
+
): Request<Operation>;
|
|
55234
|
+
/** Lists the cross-site networks for a project in the given scope. */
|
|
55235
|
+
list(request?: {
|
|
55236
|
+
/** V1 error format. */
|
|
55237
|
+
'$.xgafv'?: '1' | '2';
|
|
55238
|
+
/** OAuth access token. */
|
|
55239
|
+
access_token?: string;
|
|
55240
|
+
/** Data format for response. */
|
|
55241
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55242
|
+
/** JSONP */
|
|
55243
|
+
callback?: string;
|
|
55244
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55245
|
+
fields?: string;
|
|
55246
|
+
/**
|
|
55247
|
+
* A filter expression that filters resources listed in the response. Most
|
|
55248
|
+
* Compute resources support two types of filter expressions:
|
|
55249
|
+
* expressions that support regular expressions and expressions that follow
|
|
55250
|
+
* API improvement proposal AIP-160.
|
|
55251
|
+
* These two types of filter expressions cannot be mixed in one request.
|
|
55252
|
+
*
|
|
55253
|
+
* If you want to use AIP-160, your expression must specify the field name, an
|
|
55254
|
+
* operator, and the value that you want to use for filtering. The value
|
|
55255
|
+
* must be a string, a number, or a boolean. The operator
|
|
55256
|
+
* must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
55257
|
+
*
|
|
55258
|
+
* For example, if you are filtering Compute Engine instances, you can
|
|
55259
|
+
* exclude instances named `example-instance` by specifying
|
|
55260
|
+
* `name != example-instance`.
|
|
55261
|
+
*
|
|
55262
|
+
* The `:*` comparison can be used to test whether a key has been defined.
|
|
55263
|
+
* For example, to find all objects with `owner` label use:
|
|
55264
|
+
* ```
|
|
55265
|
+
* labels.owner:*
|
|
55266
|
+
* ```
|
|
55267
|
+
*
|
|
55268
|
+
* You can also filter nested fields. For example, you could specify
|
|
55269
|
+
* `scheduling.automaticRestart = false` to include instances only
|
|
55270
|
+
* if they are not scheduled for automatic restarts. You can use filtering
|
|
55271
|
+
* on nested fields to filter based onresource labels.
|
|
55272
|
+
*
|
|
55273
|
+
* To filter on multiple expressions, provide each separate expression within
|
|
55274
|
+
* parentheses. For example:
|
|
55275
|
+
* ```
|
|
55276
|
+
* (scheduling.automaticRestart = true)
|
|
55277
|
+
* (cpuPlatform = "Intel Skylake")
|
|
55278
|
+
* ```
|
|
55279
|
+
* By default, each expression is an `AND` expression. However, you
|
|
55280
|
+
* can include `AND` and `OR` expressions explicitly.
|
|
55281
|
+
* For example:
|
|
55282
|
+
* ```
|
|
55283
|
+
* (cpuPlatform = "Intel Skylake") OR
|
|
55284
|
+
* (cpuPlatform = "Intel Broadwell") AND
|
|
55285
|
+
* (scheduling.automaticRestart = true)
|
|
55286
|
+
* ```
|
|
55287
|
+
*
|
|
55288
|
+
* If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
55289
|
+
* (not equal) operator against a single un-parenthesized expression with or
|
|
55290
|
+
* without quotes or against multiple parenthesized expressions. Examples:
|
|
55291
|
+
*
|
|
55292
|
+
* `fieldname eq unquoted literal`
|
|
55293
|
+
* `fieldname eq 'single quoted literal'`
|
|
55294
|
+
* `fieldname eq "double quoted literal"`
|
|
55295
|
+
* `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
55296
|
+
*
|
|
55297
|
+
* The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
55298
|
+
* The literal value must match the entire field.
|
|
55299
|
+
*
|
|
55300
|
+
* For example, to filter for instances that do not end with name "instance",
|
|
55301
|
+
* you would use `name ne .*instance`.
|
|
55302
|
+
*
|
|
55303
|
+
* You cannot combine constraints on multiple fields using regular
|
|
55304
|
+
* expressions.
|
|
55305
|
+
*/
|
|
55306
|
+
filter?: string;
|
|
55307
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
55308
|
+
key?: string;
|
|
55309
|
+
/**
|
|
55310
|
+
* The maximum number of results per page that should be returned.
|
|
55311
|
+
* If the number of available results is larger than `maxResults`,
|
|
55312
|
+
* Compute Engine returns a `nextPageToken` that can be used to get
|
|
55313
|
+
* the next page of results in subsequent list requests. Acceptable values are
|
|
55314
|
+
* `0` to `500`, inclusive. (Default: `500`)
|
|
55315
|
+
*/
|
|
55316
|
+
maxResults?: number;
|
|
55317
|
+
/** OAuth 2.0 token for the current user. */
|
|
55318
|
+
oauth_token?: string;
|
|
55319
|
+
/**
|
|
55320
|
+
* Sorts list results by a certain order. By default, results
|
|
55321
|
+
* are returned in alphanumerical order based on the resource name.
|
|
55322
|
+
*
|
|
55323
|
+
* You can also sort results in descending order based on the creation
|
|
55324
|
+
* timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
55325
|
+
* results based on the `creationTimestamp` field in
|
|
55326
|
+
* reverse chronological order (newest result first). Use this to sort
|
|
55327
|
+
* resources like operations so that the newest operation is returned first.
|
|
55328
|
+
*
|
|
55329
|
+
* Currently, only sorting by `name` or
|
|
55330
|
+
* `creationTimestamp desc` is supported.
|
|
55331
|
+
*/
|
|
55332
|
+
orderBy?: string;
|
|
55333
|
+
/**
|
|
55334
|
+
* Specifies a page token to use. Set `pageToken` to the
|
|
55335
|
+
* `nextPageToken` returned by a previous list request to get
|
|
55336
|
+
* the next page of results.
|
|
55337
|
+
*/
|
|
55338
|
+
pageToken?: string;
|
|
55339
|
+
/** Returns response with indentations and line breaks. */
|
|
55340
|
+
prettyPrint?: boolean;
|
|
55341
|
+
/** Project ID for this request. */
|
|
55342
|
+
project: string;
|
|
55343
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
55344
|
+
quotaUser?: string;
|
|
55345
|
+
/**
|
|
55346
|
+
* Opt-in for partial success behavior which provides partial results in case
|
|
55347
|
+
* of failure. The default value is false.
|
|
55348
|
+
*
|
|
55349
|
+
* For example, when partial success behavior is enabled, aggregatedList for a
|
|
55350
|
+
* single zone scope either returns all resources in the zone or no resources,
|
|
55351
|
+
* with an error code.
|
|
55352
|
+
*/
|
|
55353
|
+
returnPartialSuccess?: boolean;
|
|
55354
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55355
|
+
upload_protocol?: string;
|
|
55356
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55357
|
+
uploadType?: string;
|
|
55358
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55359
|
+
userIp?: string;
|
|
55360
|
+
}): Request<CrossSiteNetworkList>;
|
|
54142
55361
|
/**
|
|
54143
|
-
* Updates the specified
|
|
54144
|
-
* request.
|
|
54145
|
-
*
|
|
55362
|
+
* Updates the specified cross-site network with the data included in
|
|
55363
|
+
* the request. This method supportsPATCH
|
|
55364
|
+
* semantics and uses theJSON merge
|
|
55365
|
+
* patch format and processing rules.
|
|
54146
55366
|
*/
|
|
54147
|
-
|
|
55367
|
+
patch(request: {
|
|
54148
55368
|
/** V1 error format. */
|
|
54149
55369
|
'$.xgafv'?: '1' | '2';
|
|
54150
55370
|
/** OAuth access token. */
|
|
54151
55371
|
access_token?: string;
|
|
54152
55372
|
/** Data format for response. */
|
|
54153
55373
|
alt?: 'json' | 'media' | 'proto';
|
|
54154
|
-
/** Name of the BackendService resource to update. */
|
|
54155
|
-
backendService: string;
|
|
54156
55374
|
/** JSONP */
|
|
54157
55375
|
callback?: string;
|
|
55376
|
+
/** Name of the cross-site network to update. */
|
|
55377
|
+
crossSiteNetwork: string;
|
|
54158
55378
|
/** Selector specifying which fields to include in a partial response. */
|
|
54159
55379
|
fields?: string;
|
|
54160
55380
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
@@ -54181,18 +55401,23 @@ declare namespace gapi.client {
|
|
|
54181
55401
|
* The request ID must be
|
|
54182
55402
|
* a valid UUID with the exception that zero UUID is not supported
|
|
54183
55403
|
* (00000000-0000-0000-0000-000000000000).
|
|
55404
|
+
* end_interface: MixerMutationRequestBuilder
|
|
54184
55405
|
*/
|
|
54185
55406
|
requestId?: string;
|
|
55407
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
55408
|
+
updateMask?: string;
|
|
54186
55409
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54187
55410
|
upload_protocol?: string;
|
|
54188
55411
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54189
55412
|
uploadType?: string;
|
|
54190
55413
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54191
55414
|
userIp?: string;
|
|
55415
|
+
/** [Input Only] Validate the new configuration, but don't update it. */
|
|
55416
|
+
validateOnly?: boolean;
|
|
54192
55417
|
/** Request body */
|
|
54193
|
-
resource:
|
|
55418
|
+
resource: CrossSiteNetwork;
|
|
54194
55419
|
}): Request<Operation>;
|
|
54195
|
-
|
|
55420
|
+
patch(
|
|
54196
55421
|
request: {
|
|
54197
55422
|
/** V1 error format. */
|
|
54198
55423
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54200,10 +55425,10 @@ declare namespace gapi.client {
|
|
|
54200
55425
|
access_token?: string;
|
|
54201
55426
|
/** Data format for response. */
|
|
54202
55427
|
alt?: 'json' | 'media' | 'proto';
|
|
54203
|
-
/** Name of the BackendService resource to update. */
|
|
54204
|
-
backendService: string;
|
|
54205
55428
|
/** JSONP */
|
|
54206
55429
|
callback?: string;
|
|
55430
|
+
/** Name of the cross-site network to update. */
|
|
55431
|
+
crossSiteNetwork: string;
|
|
54207
55432
|
/** Selector specifying which fields to include in a partial response. */
|
|
54208
55433
|
fields?: string;
|
|
54209
55434
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
@@ -54230,20 +55455,25 @@ declare namespace gapi.client {
|
|
|
54230
55455
|
* The request ID must be
|
|
54231
55456
|
* a valid UUID with the exception that zero UUID is not supported
|
|
54232
55457
|
* (00000000-0000-0000-0000-000000000000).
|
|
55458
|
+
* end_interface: MixerMutationRequestBuilder
|
|
54233
55459
|
*/
|
|
54234
55460
|
requestId?: string;
|
|
55461
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
55462
|
+
updateMask?: string;
|
|
54235
55463
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54236
55464
|
upload_protocol?: string;
|
|
54237
55465
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54238
55466
|
uploadType?: string;
|
|
54239
55467
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54240
55468
|
userIp?: string;
|
|
55469
|
+
/** [Input Only] Validate the new configuration, but don't update it. */
|
|
55470
|
+
validateOnly?: boolean;
|
|
54241
55471
|
},
|
|
54242
|
-
body:
|
|
55472
|
+
body: CrossSiteNetwork,
|
|
54243
55473
|
): Request<Operation>;
|
|
54244
55474
|
}
|
|
54245
|
-
interface
|
|
54246
|
-
/** Deletes the specified
|
|
55475
|
+
interface DhcpOptionsConfigsResource {
|
|
55476
|
+
/** Deletes the specified DhcpOptionsConfig in the given location */
|
|
54247
55477
|
delete(request?: {
|
|
54248
55478
|
/** V1 error format. */
|
|
54249
55479
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54253,8 +55483,8 @@ declare namespace gapi.client {
|
|
|
54253
55483
|
alt?: 'json' | 'media' | 'proto';
|
|
54254
55484
|
/** JSONP */
|
|
54255
55485
|
callback?: string;
|
|
54256
|
-
/** Name of the
|
|
54257
|
-
|
|
55486
|
+
/** Name of the DhcpOptionsConfig resource to delete. */
|
|
55487
|
+
dhcpOptionsConfig: string;
|
|
54258
55488
|
/** Selector specifying which fields to include in a partial response. */
|
|
54259
55489
|
fields?: string;
|
|
54260
55490
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
@@ -54267,6 +55497,8 @@ declare namespace gapi.client {
|
|
|
54267
55497
|
project: string;
|
|
54268
55498
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54269
55499
|
quotaUser?: string;
|
|
55500
|
+
/** Name of the region of this request. */
|
|
55501
|
+
region: string;
|
|
54270
55502
|
/**
|
|
54271
55503
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54272
55504
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54291,7 +55523,7 @@ declare namespace gapi.client {
|
|
|
54291
55523
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54292
55524
|
userIp?: string;
|
|
54293
55525
|
}): Request<Operation>;
|
|
54294
|
-
/** Returns the specified
|
|
55526
|
+
/** Returns the specified DhcpOptionsConfig resource in the given location. */
|
|
54295
55527
|
get(request?: {
|
|
54296
55528
|
/** V1 error format. */
|
|
54297
55529
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54301,8 +55533,8 @@ declare namespace gapi.client {
|
|
|
54301
55533
|
alt?: 'json' | 'media' | 'proto';
|
|
54302
55534
|
/** JSONP */
|
|
54303
55535
|
callback?: string;
|
|
54304
|
-
/** Name of the
|
|
54305
|
-
|
|
55536
|
+
/** Name of the DhcpOptionsConfig resource to return. */
|
|
55537
|
+
dhcpOptionsConfig: string;
|
|
54306
55538
|
/** Selector specifying which fields to include in a partial response. */
|
|
54307
55539
|
fields?: string;
|
|
54308
55540
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
@@ -54315,15 +55547,17 @@ declare namespace gapi.client {
|
|
|
54315
55547
|
project: string;
|
|
54316
55548
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54317
55549
|
quotaUser?: string;
|
|
55550
|
+
/** Name of the region of this request. */
|
|
55551
|
+
region: string;
|
|
54318
55552
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
54319
55553
|
upload_protocol?: string;
|
|
54320
55554
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
54321
55555
|
uploadType?: string;
|
|
54322
55556
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54323
55557
|
userIp?: string;
|
|
54324
|
-
}): Request<
|
|
55558
|
+
}): Request<DhcpOptionsConfig>;
|
|
54325
55559
|
/**
|
|
54326
|
-
* Creates a
|
|
55560
|
+
* Creates a DhcpOptionsConfig in the specified project in the given location
|
|
54327
55561
|
* using the parameters that are included in the request.
|
|
54328
55562
|
*/
|
|
54329
55563
|
insert(request: {
|
|
@@ -54347,6 +55581,8 @@ declare namespace gapi.client {
|
|
|
54347
55581
|
project: string;
|
|
54348
55582
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54349
55583
|
quotaUser?: string;
|
|
55584
|
+
/** Name of the region of this request. */
|
|
55585
|
+
region: string;
|
|
54350
55586
|
/**
|
|
54351
55587
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54352
55588
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54370,10 +55606,8 @@ declare namespace gapi.client {
|
|
|
54370
55606
|
uploadType?: string;
|
|
54371
55607
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54372
55608
|
userIp?: string;
|
|
54373
|
-
/** [Input Only] Validate the new configuration, but don't create it. */
|
|
54374
|
-
validateOnly?: boolean;
|
|
54375
55609
|
/** Request body */
|
|
54376
|
-
resource:
|
|
55610
|
+
resource: DhcpOptionsConfig;
|
|
54377
55611
|
}): Request<Operation>;
|
|
54378
55612
|
insert(
|
|
54379
55613
|
request: {
|
|
@@ -54397,6 +55631,8 @@ declare namespace gapi.client {
|
|
|
54397
55631
|
project: string;
|
|
54398
55632
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54399
55633
|
quotaUser?: string;
|
|
55634
|
+
/** Name of the region of this request. */
|
|
55635
|
+
region: string;
|
|
54400
55636
|
/**
|
|
54401
55637
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54402
55638
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54420,12 +55656,10 @@ declare namespace gapi.client {
|
|
|
54420
55656
|
uploadType?: string;
|
|
54421
55657
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54422
55658
|
userIp?: string;
|
|
54423
|
-
/** [Input Only] Validate the new configuration, but don't create it. */
|
|
54424
|
-
validateOnly?: boolean;
|
|
54425
55659
|
},
|
|
54426
|
-
body:
|
|
55660
|
+
body: DhcpOptionsConfig,
|
|
54427
55661
|
): Request<Operation>;
|
|
54428
|
-
/** Lists the
|
|
55662
|
+
/** Lists the DhcpOptionsConfigs for a project in the given location. */
|
|
54429
55663
|
list(request?: {
|
|
54430
55664
|
/** V1 error format. */
|
|
54431
55665
|
'$.xgafv'?: '1' | '2';
|
|
@@ -54536,6 +55770,8 @@ declare namespace gapi.client {
|
|
|
54536
55770
|
project: string;
|
|
54537
55771
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54538
55772
|
quotaUser?: string;
|
|
55773
|
+
/** Name of the region of this request. */
|
|
55774
|
+
region: string;
|
|
54539
55775
|
/**
|
|
54540
55776
|
* Opt-in for partial success behavior which provides partial results in case
|
|
54541
55777
|
* of failure. The default value is false.
|
|
@@ -54551,11 +55787,11 @@ declare namespace gapi.client {
|
|
|
54551
55787
|
uploadType?: string;
|
|
54552
55788
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54553
55789
|
userIp?: string;
|
|
54554
|
-
}): Request<
|
|
55790
|
+
}): Request<DhcpOptionsConfigList>;
|
|
54555
55791
|
/**
|
|
54556
|
-
*
|
|
54557
|
-
* the request. This method
|
|
54558
|
-
* semantics and
|
|
55792
|
+
* Patches the specified DhcpOptionsConfig resource with the data included in
|
|
55793
|
+
* the request. This method supports PATCH
|
|
55794
|
+
* semantics and usesJSON merge
|
|
54559
55795
|
* patch format and processing rules.
|
|
54560
55796
|
*/
|
|
54561
55797
|
patch(request: {
|
|
@@ -54567,8 +55803,8 @@ declare namespace gapi.client {
|
|
|
54567
55803
|
alt?: 'json' | 'media' | 'proto';
|
|
54568
55804
|
/** JSONP */
|
|
54569
55805
|
callback?: string;
|
|
54570
|
-
/** Name of the
|
|
54571
|
-
|
|
55806
|
+
/** Name of the DhcpOptionsConfig resource to patch. */
|
|
55807
|
+
dhcpOptionsConfig: string;
|
|
54572
55808
|
/** Selector specifying which fields to include in a partial response. */
|
|
54573
55809
|
fields?: string;
|
|
54574
55810
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
@@ -54581,6 +55817,8 @@ declare namespace gapi.client {
|
|
|
54581
55817
|
project: string;
|
|
54582
55818
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54583
55819
|
quotaUser?: string;
|
|
55820
|
+
/** Name of the region for this request. */
|
|
55821
|
+
region: string;
|
|
54584
55822
|
/**
|
|
54585
55823
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54586
55824
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54606,10 +55844,8 @@ declare namespace gapi.client {
|
|
|
54606
55844
|
uploadType?: string;
|
|
54607
55845
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54608
55846
|
userIp?: string;
|
|
54609
|
-
/** [Input Only] Validate the new configuration, but don't update it. */
|
|
54610
|
-
validateOnly?: boolean;
|
|
54611
55847
|
/** Request body */
|
|
54612
|
-
resource:
|
|
55848
|
+
resource: DhcpOptionsConfig;
|
|
54613
55849
|
}): Request<Operation>;
|
|
54614
55850
|
patch(
|
|
54615
55851
|
request: {
|
|
@@ -54621,8 +55857,8 @@ declare namespace gapi.client {
|
|
|
54621
55857
|
alt?: 'json' | 'media' | 'proto';
|
|
54622
55858
|
/** JSONP */
|
|
54623
55859
|
callback?: string;
|
|
54624
|
-
/** Name of the
|
|
54625
|
-
|
|
55860
|
+
/** Name of the DhcpOptionsConfig resource to patch. */
|
|
55861
|
+
dhcpOptionsConfig: string;
|
|
54626
55862
|
/** Selector specifying which fields to include in a partial response. */
|
|
54627
55863
|
fields?: string;
|
|
54628
55864
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
@@ -54635,6 +55871,8 @@ declare namespace gapi.client {
|
|
|
54635
55871
|
project: string;
|
|
54636
55872
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
54637
55873
|
quotaUser?: string;
|
|
55874
|
+
/** Name of the region for this request. */
|
|
55875
|
+
region: string;
|
|
54638
55876
|
/**
|
|
54639
55877
|
* An optional request ID to identify requests. Specify a unique request ID so
|
|
54640
55878
|
* that if you must retry your request, the server will know to ignore the
|
|
@@ -54660,11 +55898,45 @@ declare namespace gapi.client {
|
|
|
54660
55898
|
uploadType?: string;
|
|
54661
55899
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
54662
55900
|
userIp?: string;
|
|
54663
|
-
/** [Input Only] Validate the new configuration, but don't update it. */
|
|
54664
|
-
validateOnly?: boolean;
|
|
54665
55901
|
},
|
|
54666
|
-
body:
|
|
55902
|
+
body: DhcpOptionsConfig,
|
|
54667
55903
|
): Request<Operation>;
|
|
55904
|
+
/** Returns permissions that a caller has on the specified resource. */
|
|
55905
|
+
testIamPermissions(
|
|
55906
|
+
request: {
|
|
55907
|
+
/** V1 error format. */
|
|
55908
|
+
'$.xgafv'?: '1' | '2';
|
|
55909
|
+
/** OAuth access token. */
|
|
55910
|
+
access_token?: string;
|
|
55911
|
+
/** Data format for response. */
|
|
55912
|
+
alt?: 'json' | 'media' | 'proto';
|
|
55913
|
+
/** JSONP */
|
|
55914
|
+
callback?: string;
|
|
55915
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
55916
|
+
fields?: string;
|
|
55917
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
55918
|
+
key?: string;
|
|
55919
|
+
/** OAuth 2.0 token for the current user. */
|
|
55920
|
+
oauth_token?: string;
|
|
55921
|
+
/** Returns response with indentations and line breaks. */
|
|
55922
|
+
prettyPrint?: boolean;
|
|
55923
|
+
/** Project ID for this request. */
|
|
55924
|
+
project: string;
|
|
55925
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
55926
|
+
quotaUser?: string;
|
|
55927
|
+
/** The name of the region for this request. */
|
|
55928
|
+
region: string;
|
|
55929
|
+
/** Name or id of the resource for this request. */
|
|
55930
|
+
resource: string;
|
|
55931
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
55932
|
+
upload_protocol?: string;
|
|
55933
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
55934
|
+
uploadType?: string;
|
|
55935
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
55936
|
+
userIp?: string;
|
|
55937
|
+
},
|
|
55938
|
+
body: TestPermissionsRequest,
|
|
55939
|
+
): Request<TestPermissionsResponse>;
|
|
54668
55940
|
}
|
|
54669
55941
|
interface DisksResource {
|
|
54670
55942
|
/**
|
|
@@ -102303,8 +103575,10 @@ declare namespace gapi.client {
|
|
|
102303
103575
|
userIp?: string;
|
|
102304
103576
|
}): Request<BackendServiceList>;
|
|
102305
103577
|
/**
|
|
102306
|
-
* Retrieves a list of all usable backend services
|
|
102307
|
-
* the
|
|
103578
|
+
* Retrieves a list of all usable backend services for Application Load
|
|
103579
|
+
* Balancers and Proxy Network Load Balancers in the specified project in the
|
|
103580
|
+
* given region. Backend services for external and internal passthrough
|
|
103581
|
+
* Network Load Balancers are not included in the response.
|
|
102308
103582
|
*/
|
|
102309
103583
|
listUsable(request?: {
|
|
102310
103584
|
/** V1 error format. */
|
|
@@ -146629,6 +147903,8 @@ declare namespace gapi.client {
|
|
|
146629
147903
|
): Request<Operation>;
|
|
146630
147904
|
}
|
|
146631
147905
|
|
|
147906
|
+
const acceleratorPodControllers: AcceleratorPodControllersResource;
|
|
147907
|
+
|
|
146632
147908
|
const acceleratorTypes: AcceleratorTypesResource;
|
|
146633
147909
|
|
|
146634
147910
|
const addresses: AddressesResource;
|
|
@@ -146643,6 +147919,8 @@ declare namespace gapi.client {
|
|
|
146643
147919
|
|
|
146644
147920
|
const crossSiteNetworks: CrossSiteNetworksResource;
|
|
146645
147921
|
|
|
147922
|
+
const dhcpOptionsConfigs: DhcpOptionsConfigsResource;
|
|
147923
|
+
|
|
146646
147924
|
const diskSettings: DiskSettingsResource;
|
|
146647
147925
|
|
|
146648
147926
|
const diskTypes: DiskTypesResource;
|